diff --git a/grammar.js b/grammar.js index c9fa60b5f..57b6ff2d1 100644 --- a/grammar.js +++ b/grammar.js @@ -314,6 +314,16 @@ module.exports = grammar({ curly_group_impl: $ => seq('{', repeat($._text_content), '}'), + curly_group_author_list: $ => + seq( + '{', + sepBy( + alias(repeat1($._text_content), $.author), + alias('\\and', $.command_name) + ), + '}' + ), + brack_group: $ => seq( '[', @@ -545,6 +555,8 @@ module.exports = grammar({ _command: $ => choice( + $.title_declaration, + $.author_declaration, $.package_include, $.class_include, $.latex_include, @@ -588,6 +600,10 @@ module.exports = grammar({ command_name: $ => /\\([^\r\n]|[@a-zA-Z:_]+\*?)?/, + title_declaration: $ => seq('\\title', $.curly_group), + + author_declaration: $ => seq('\\author', $.curly_group_author_list), + package_include: $ => seq( field('command', choice('\\usepackage', '\\RequirePackage')), diff --git a/src/grammar.json b/src/grammar.json index e72e2b632..584589dc5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1393,6 +1393,73 @@ } ] }, + "curly_group_author_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_text_content" + } + }, + "named": true, + "value": "author" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "\\and" + }, + "named": true, + "value": "command_name" + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_text_content" + } + }, + "named": true, + "value": "author" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, "brack_group": { "type": "SEQ", "members": [ @@ -2661,6 +2728,14 @@ "_command": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "title_declaration" + }, + { + "type": "SYMBOL", + "name": "author_declaration" + }, { "type": "SYMBOL", "name": "package_include" @@ -2828,6 +2903,32 @@ "type": "PATTERN", "value": "\\\\([^\\r\\n]|[@a-zA-Z:_]+\\*?)?" }, + "title_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\title" + }, + { + "type": "SYMBOL", + "name": "curly_group" + } + ] + }, + "author_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\author" + }, + { + "type": "SYMBOL", + "name": "curly_group_author_list" + } + ] + }, "package_include": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 79f550fd9..fbe26858d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -259,6 +259,192 @@ } } }, + { + "type": "author", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "author_declaration", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "block_comment", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "curly_group", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "environment_definition", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "import_include", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "let_command_definition", + "named": true + }, + { + "type": "math_set", + "named": true + }, + { + "type": "new_command_definition", + "named": true + }, + { + "type": "old_command_definition", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paired_delimiter_definition", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "text_mode", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "title_declaration", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + } + }, + { + "type": "author_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "curly_group_author_list", + "named": true + } + ] + } + }, { "type": "begin", "named": true, @@ -419,6 +605,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -583,6 +773,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -727,6 +921,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -911,6 +1109,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -1436,6 +1638,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -1628,6 +1834,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -1639,6 +1849,25 @@ ] } }, + { + "type": "curly_group_author_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "author", + "named": true + }, + { + "type": "command_name", + "named": true + } + ] + } + }, { "type": "curly_group_command_name", "named": true, @@ -1687,6 +1916,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -1827,6 +2060,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_include", "named": true @@ -1940,6 +2177,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -2132,6 +2373,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -2220,6 +2465,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -2380,6 +2629,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -2504,6 +2757,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -2696,6 +2953,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -3108,6 +3369,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -3300,6 +3565,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -3667,6 +3936,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -3859,6 +4132,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -3922,6 +4199,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -4086,6 +4367,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -4371,6 +4656,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -4539,6 +4828,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -4599,6 +4892,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -4787,6 +5084,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -4883,6 +5184,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -5063,6 +5368,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -5090,6 +5399,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -5282,6 +5595,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -5334,6 +5651,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -5498,6 +5819,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -5550,6 +5875,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -5726,6 +6055,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -5778,6 +6111,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -5950,6 +6287,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_environment", "named": true @@ -6013,6 +6354,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -6137,6 +6482,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_include", "named": true @@ -6291,6 +6640,21 @@ } } }, + { + "type": "title_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "curly_group", + "named": true + } + ] + } + }, { "type": "value", "named": true, @@ -6307,6 +6671,10 @@ "type": "acronym_reference", "named": true }, + { + "type": "author_declaration", + "named": true + }, { "type": "biblatex_include", "named": true @@ -6451,6 +6819,10 @@ "type": "tikz_library_import", "named": true }, + { + "type": "title_declaration", + "named": true + }, { "type": "verbatim_include", "named": true @@ -7012,6 +7384,10 @@ "type": "\\addsec*", "named": false }, + { + "type": "\\author", + "named": false + }, { "type": "\\autocite", "named": false @@ -7556,6 +7932,10 @@ "type": "\\textcolor", "named": false }, + { + "type": "\\title", + "named": false + }, { "type": "\\tvolcite", "named": false diff --git a/src/parser.c b/src/parser.c index 922313a8d..6a7e2587e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2555 -#define LARGE_STATE_COUNT 1611 -#define SYMBOL_COUNT 421 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 294 +#define STATE_COUNT 2859 +#define LARGE_STATE_COUNT 1795 +#define SYMBOL_COUNT 428 +#define ALIAS_COUNT 1 +#define TOKEN_COUNT 297 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 6 -#define PRODUCTION_ID_COUNT 81 +#define PRODUCTION_ID_COUNT 82 enum { sym_command_name = 1, @@ -60,391 +60,399 @@ enum { anon_sym_BSLASHitem_STAR = 33, anon_sym_LBRACE = 34, anon_sym_RBRACE = 35, - sym_word = 36, - sym_placeholder = 37, - sym_path = 38, - sym_argc = 39, - aux_sym__glob_pattern_fragment_token1 = 40, - anon_sym_PLUS = 41, - anon_sym_DASH = 42, - anon_sym_STAR = 43, - anon_sym_SLASH = 44, - anon_sym_CARET = 45, - anon_sym__ = 46, - anon_sym_LT = 47, - anon_sym_GT = 48, - anon_sym_BANG = 49, - anon_sym_PIPE = 50, - anon_sym_COLON = 51, - anon_sym_SQUOTE = 52, - anon_sym_DOLLAR_DOLLAR = 53, - anon_sym_BSLASH_LBRACK = 54, - anon_sym_BSLASH_RBRACK = 55, - anon_sym_DOLLAR = 56, - anon_sym_BSLASH_LPAREN = 57, - anon_sym_BSLASH_RPAREN = 58, - anon_sym_BSLASH_LBRACE = 59, - anon_sym_BSLASH_RBRACE = 60, - anon_sym_BSLASHbegin = 61, - anon_sym_BSLASHend = 62, - anon_sym_comment = 63, - anon_sym_verbatim = 64, - anon_sym_lstlisting = 65, - anon_sym_minted = 66, - anon_sym_pycode = 67, - anon_sym_BSLASHusepackage = 68, - anon_sym_BSLASHRequirePackage = 69, - anon_sym_BSLASHdocumentclass = 70, - anon_sym_BSLASHinclude = 71, - anon_sym_BSLASHsubfileinclude = 72, - anon_sym_BSLASHinput = 73, - anon_sym_BSLASHsubfile = 74, - anon_sym_BSLASHaddbibresource = 75, - anon_sym_BSLASHbibliography = 76, - anon_sym_BSLASHincludegraphics = 77, - anon_sym_BSLASHincludesvg = 78, - anon_sym_BSLASHincludeinkscape = 79, - anon_sym_BSLASHverbatiminput = 80, - anon_sym_BSLASHVerbatimInput = 81, - anon_sym_BSLASHimport = 82, - anon_sym_BSLASHsubimport = 83, - anon_sym_BSLASHinputfrom = 84, - anon_sym_BSLASHsubimportfrom = 85, - anon_sym_BSLASHincludefrom = 86, - anon_sym_BSLASHsubincludefrom = 87, - anon_sym_BSLASHcaption = 88, - anon_sym_BSLASHcite = 89, - anon_sym_BSLASHcite_STAR = 90, - anon_sym_BSLASHCite = 91, - anon_sym_BSLASHnocite = 92, - anon_sym_BSLASHcitet = 93, - anon_sym_BSLASHcitep = 94, - anon_sym_BSLASHcitet_STAR = 95, - anon_sym_BSLASHcitep_STAR = 96, - anon_sym_BSLASHciteauthor = 97, - anon_sym_BSLASHciteauthor_STAR = 98, - anon_sym_BSLASHCiteauthor = 99, - anon_sym_BSLASHCiteauthor_STAR = 100, - anon_sym_BSLASHcitetitle = 101, - anon_sym_BSLASHcitetitle_STAR = 102, - anon_sym_BSLASHciteyear = 103, - anon_sym_BSLASHciteyear_STAR = 104, - anon_sym_BSLASHcitedate = 105, - anon_sym_BSLASHcitedate_STAR = 106, - anon_sym_BSLASHciteurl = 107, - anon_sym_BSLASHfullcite = 108, - anon_sym_BSLASHciteyearpar = 109, - anon_sym_BSLASHcitealt = 110, - anon_sym_BSLASHcitealp = 111, - anon_sym_BSLASHcitetext = 112, - anon_sym_BSLASHparencite = 113, - anon_sym_BSLASHparencite_STAR = 114, - anon_sym_BSLASHParencite = 115, - anon_sym_BSLASHfootcite = 116, - anon_sym_BSLASHfootfullcite = 117, - anon_sym_BSLASHfootcitetext = 118, - anon_sym_BSLASHtextcite = 119, - anon_sym_BSLASHTextcite = 120, - anon_sym_BSLASHsmartcite = 121, - anon_sym_BSLASHSmartcite = 122, - anon_sym_BSLASHsupercite = 123, - anon_sym_BSLASHautocite = 124, - anon_sym_BSLASHAutocite = 125, - anon_sym_BSLASHautocite_STAR = 126, - anon_sym_BSLASHAutocite_STAR = 127, - anon_sym_BSLASHvolcite = 128, - anon_sym_BSLASHVolcite = 129, - anon_sym_BSLASHpvolcite = 130, - anon_sym_BSLASHPvolcite = 131, - anon_sym_BSLASHfvolcite = 132, - anon_sym_BSLASHftvolcite = 133, - anon_sym_BSLASHsvolcite = 134, - anon_sym_BSLASHSvolcite = 135, - anon_sym_BSLASHtvolcite = 136, - anon_sym_BSLASHTvolcite = 137, - anon_sym_BSLASHavolcite = 138, - anon_sym_BSLASHAvolcite = 139, - anon_sym_BSLASHnotecite = 140, - anon_sym_BSLASHNotecite = 141, - anon_sym_BSLASHpnotecite = 142, - anon_sym_BSLASHPnotecite = 143, - anon_sym_BSLASHfnotecite = 144, - anon_sym_BSLASHlabel = 145, - anon_sym_BSLASHref = 146, - anon_sym_BSLASHeqref = 147, - anon_sym_BSLASHvref = 148, - anon_sym_BSLASHVref = 149, - anon_sym_BSLASHautoref = 150, - anon_sym_BSLASHpageref = 151, - anon_sym_BSLASHcref = 152, - anon_sym_BSLASHCref = 153, - anon_sym_BSLASHcref_STAR = 154, - anon_sym_BSLASHCref_STAR = 155, - anon_sym_BSLASHnamecref = 156, - anon_sym_BSLASHnameCref = 157, - anon_sym_BSLASHlcnamecref = 158, - anon_sym_BSLASHnamecrefs = 159, - anon_sym_BSLASHnameCrefs = 160, - anon_sym_BSLASHlcnamecrefs = 161, - anon_sym_BSLASHlabelcref = 162, - anon_sym_BSLASHlabelcpageref = 163, - anon_sym_BSLASHcrefrange = 164, - anon_sym_BSLASHcrefrange_STAR = 165, - anon_sym_BSLASHCrefrange = 166, - anon_sym_BSLASHCrefrange_STAR = 167, - anon_sym_BSLASHnewlabel = 168, - anon_sym_BSLASHnewcommand = 169, - anon_sym_BSLASHnewcommand_STAR = 170, - anon_sym_BSLASHrenewcommand = 171, - anon_sym_BSLASHrenewcommand_STAR = 172, - anon_sym_BSLASHDeclareRobustCommand = 173, - anon_sym_BSLASHDeclareRobustCommand_STAR = 174, - anon_sym_BSLASHDeclareMathOperator = 175, - anon_sym_BSLASHDeclareMathOperator_STAR = 176, - anon_sym_BSLASHdef = 177, - anon_sym_BSLASHlet = 178, - anon_sym_BSLASHDeclarePairedDelimiter = 179, - anon_sym_BSLASHDeclarePairedDelimiterX = 180, - anon_sym_BSLASHnewenvironment = 181, - anon_sym_BSLASHnewglossaryentry = 182, - anon_sym_BSLASHgls = 183, - anon_sym_BSLASHGls = 184, - anon_sym_BSLASHGLS = 185, - anon_sym_BSLASHglspl = 186, - anon_sym_BSLASHGlspl = 187, - anon_sym_BSLASHGLSpl = 188, - anon_sym_BSLASHglsdisp = 189, - anon_sym_BSLASHglslink = 190, - anon_sym_BSLASHglstext = 191, - anon_sym_BSLASHGlstext = 192, - anon_sym_BSLASHGLStext = 193, - anon_sym_BSLASHglsfirst = 194, - anon_sym_BSLASHGlsfirst = 195, - anon_sym_BSLASHGLSfirst = 196, - anon_sym_BSLASHglsplural = 197, - anon_sym_BSLASHGlsplural = 198, - anon_sym_BSLASHGLSplural = 199, - anon_sym_BSLASHglsfirstplural = 200, - anon_sym_BSLASHGlsfirstplural = 201, - anon_sym_BSLASHGLSfirstplural = 202, - anon_sym_BSLASHglsname = 203, - anon_sym_BSLASHGlsname = 204, - anon_sym_BSLASHGLSname = 205, - anon_sym_BSLASHglssymbol = 206, - anon_sym_BSLASHGlssymbol = 207, - anon_sym_BSLASHglsdesc = 208, - anon_sym_BSLASHGlsdesc = 209, - anon_sym_BSLASHGLSdesc = 210, - anon_sym_BSLASHglsuseri = 211, - anon_sym_BSLASHGlsuseri = 212, - anon_sym_BSLASHGLSuseri = 213, - anon_sym_BSLASHglsuserii = 214, - anon_sym_BSLASHGlsuserii = 215, - anon_sym_BSLASHGLSuserii = 216, - anon_sym_BSLASHglsuseriii = 217, - anon_sym_BSLASHGlsuseriii = 218, - anon_sym_BSLASHGLSuseriii = 219, - anon_sym_BSLASHglsuseriv = 220, - anon_sym_BSLASHGlsuseriv = 221, - anon_sym_BSLASHGLSuseriv = 222, - anon_sym_BSLASHglsuserv = 223, - anon_sym_BSLASHGlsuserv = 224, - anon_sym_BSLASHGLSuserv = 225, - anon_sym_BSLASHglsuservi = 226, - anon_sym_BSLASHGlsuservi = 227, - anon_sym_BSLASHGLSuservi = 228, - anon_sym_BSLASHnewacronym = 229, - anon_sym_BSLASHacrshort = 230, - anon_sym_BSLASHAcrshort = 231, - anon_sym_BSLASHACRshort = 232, - anon_sym_BSLASHacrshortpl = 233, - anon_sym_BSLASHAcrshortpl = 234, - anon_sym_BSLASHACRshortpl = 235, - anon_sym_BSLASHacrlong = 236, - anon_sym_BSLASHAcrlong = 237, - anon_sym_BSLASHACRlong = 238, - anon_sym_BSLASHacrlongpl = 239, - anon_sym_BSLASHAcrlongpl = 240, - anon_sym_BSLASHACRlongpl = 241, - anon_sym_BSLASHacrfull = 242, - anon_sym_BSLASHAcrfull = 243, - anon_sym_BSLASHACRfull = 244, - anon_sym_BSLASHacrfullpl = 245, - anon_sym_BSLASHAcrfullpl = 246, - anon_sym_BSLASHACRfullpl = 247, - anon_sym_BSLASHacs = 248, - anon_sym_BSLASHAcs = 249, - anon_sym_BSLASHacsp = 250, - anon_sym_BSLASHAcsp = 251, - anon_sym_BSLASHacl = 252, - anon_sym_BSLASHAcl = 253, - anon_sym_BSLASHaclp = 254, - anon_sym_BSLASHAclp = 255, - anon_sym_BSLASHacf = 256, - anon_sym_BSLASHAcf = 257, - anon_sym_BSLASHacfp = 258, - anon_sym_BSLASHAcfp = 259, - anon_sym_BSLASHac = 260, - anon_sym_BSLASHAc = 261, - anon_sym_BSLASHacp = 262, - anon_sym_BSLASHglsentrylong = 263, - anon_sym_BSLASHGlsentrylong = 264, - anon_sym_BSLASHglsentrylongpl = 265, - anon_sym_BSLASHGlsentrylongpl = 266, - anon_sym_BSLASHglsentryshort = 267, - anon_sym_BSLASHGlsentryshort = 268, - anon_sym_BSLASHglsentryshortpl = 269, - anon_sym_BSLASHGlsentryshortpl = 270, - anon_sym_BSLASHglsentryfullpl = 271, - anon_sym_BSLASHGlsentryfullpl = 272, - anon_sym_BSLASHnewtheorem = 273, - anon_sym_BSLASHnewtheorem_STAR = 274, - anon_sym_BSLASHdeclaretheorem = 275, - anon_sym_BSLASHdeclaretheorem_STAR = 276, - anon_sym_BSLASHdefinecolor = 277, - anon_sym_BSLASHdefinecolorset = 278, - anon_sym_BSLASHcolor = 279, - anon_sym_BSLASHcolorbox = 280, - anon_sym_BSLASHtextcolor = 281, - anon_sym_BSLASHpagecolor = 282, - anon_sym_BSLASHusepgflibrary = 283, - anon_sym_BSLASHusetikzlibrary = 284, - anon_sym_BSLASHtext = 285, - anon_sym_BSLASHintertext = 286, - anon_sym_shortintertext = 287, - sym__trivia_raw_fi = 288, - sym__trivia_raw_env_comment = 289, - sym__trivia_raw_env_verbatim = 290, - sym__trivia_raw_env_listing = 291, - sym__trivia_raw_env_minted = 292, - sym__trivia_raw_env_pycode = 293, - sym_source_file = 294, - sym_block_comment = 295, - sym__root_content = 296, - sym__flat_content = 297, - sym__text_with_env_content = 298, - sym__text_content = 299, - sym__section = 300, - sym__part_declaration = 301, - sym_part = 302, - sym__chapter_declaration = 303, - sym_chapter = 304, - sym__section_declaration = 305, - sym_section = 306, - sym__subsection_declaration = 307, - sym_subsection = 308, - sym__subsubsection_declaration = 309, - sym_subsubsection = 310, - sym__paragraph_declaration = 311, - sym_paragraph = 312, - sym__subparagraph_declaration = 313, - sym_subparagraph = 314, - sym__enum_itemdeclaration = 315, - sym_enum_item = 316, - sym_curly_group = 317, - sym_curly_group_text = 318, - sym_curly_group_text_list = 319, - sym_curly_group_path = 320, - sym_curly_group_path_list = 321, - sym_curly_group_command_name = 322, - sym_curly_group_key_value = 323, - sym_curly_group_glob_pattern = 324, - sym_curly_group_impl = 325, - sym_brack_group = 326, - sym_brack_group_text = 327, - sym_brack_group_argc = 328, - sym_brack_group_key_value = 329, - sym_mixed_group = 330, - sym_text = 331, - sym_glob_pattern = 332, - sym__glob_pattern_fragment = 333, - sym_operator = 334, - sym_key_value_pair = 335, - sym_value = 336, - sym_displayed_equation = 337, - sym_inline_formula = 338, - sym_math_set = 339, - sym_begin = 340, - sym_end = 341, - sym_generic_environment = 342, - sym_comment_environment = 343, - sym__trivia_begin_comment = 344, - sym__trivia_end_comment = 345, - sym__trivia_curly_group_comment = 346, - sym__trivia_text_comment = 347, - sym_verbatim_environment = 348, - sym__trivia_begin_verbatim = 349, - sym__trivia_end_verbatim = 350, - sym__trivia_curly_group_verbatim = 351, - sym__trivia_text_verbatim = 352, - sym_listing_environment = 353, - sym__trivia_begin_listing = 354, - sym__trivia_end_listing = 355, - sym__trivia_curly_group_listing = 356, - sym__trivia_text_listing = 357, - sym_minted_environment = 358, - sym__trivia_begin_minted = 359, - sym__trivia_end_minted = 360, - sym__trivia_curly_group_minted = 361, - sym__trivia_text_minted = 362, - sym_pycode_environment = 363, - sym__trivia_begin_pycode = 364, - sym__trivia_end_pycode = 365, - sym__trivia_curly_group_pycode = 366, - sym__trivia_text_pycode = 367, - sym__command = 368, - sym_generic_command = 369, - sym_package_include = 370, - sym_class_include = 371, - sym_latex_include = 372, - sym_biblatex_include = 373, - sym_bibtex_include = 374, - sym_graphics_include = 375, - sym_svg_include = 376, - sym_inkscape_include = 377, - sym_verbatim_include = 378, - sym_import_include = 379, - sym_caption = 380, - sym_citation = 381, - sym_label_definition = 382, - sym_label_reference = 383, - sym_label_reference_range = 384, - sym_label_number = 385, - sym_new_command_definition = 386, - sym_old_command_definition = 387, - sym_let_command_definition = 388, - sym_paired_delimiter_definition = 389, - sym_environment_definition = 390, - sym_glossary_entry_definition = 391, - sym_glossary_entry_reference = 392, - sym_acronym_definition = 393, - sym_acronym_reference = 394, - sym_theorem_definition = 395, - sym_color_definition = 396, - sym_color_set_definition = 397, - sym_color_reference = 398, - sym_tikz_library_import = 399, - sym_text_mode = 400, - aux_sym_source_file_repeat1 = 401, - aux_sym__section_repeat1 = 402, - aux_sym__section_repeat2 = 403, - aux_sym__section_repeat3 = 404, - aux_sym__section_repeat4 = 405, - aux_sym__section_repeat5 = 406, - aux_sym__section_repeat6 = 407, - aux_sym__section_repeat7 = 408, - aux_sym__section_repeat8 = 409, - aux_sym_part_repeat1 = 410, - aux_sym_curly_group_text_list_repeat1 = 411, - aux_sym_curly_group_path_list_repeat1 = 412, - aux_sym_curly_group_key_value_repeat1 = 413, - aux_sym_curly_group_impl_repeat1 = 414, - aux_sym_brack_group_repeat1 = 415, - aux_sym_mixed_group_repeat1 = 416, - aux_sym_text_repeat1 = 417, - aux_sym_glob_pattern_repeat1 = 418, - aux_sym_value_repeat1 = 419, - aux_sym_generic_command_repeat1 = 420, + anon_sym_BSLASHand = 36, + sym_word = 37, + sym_placeholder = 38, + sym_path = 39, + sym_argc = 40, + aux_sym__glob_pattern_fragment_token1 = 41, + anon_sym_PLUS = 42, + anon_sym_DASH = 43, + anon_sym_STAR = 44, + anon_sym_SLASH = 45, + anon_sym_CARET = 46, + anon_sym__ = 47, + anon_sym_LT = 48, + anon_sym_GT = 49, + anon_sym_BANG = 50, + anon_sym_PIPE = 51, + anon_sym_COLON = 52, + anon_sym_SQUOTE = 53, + anon_sym_DOLLAR_DOLLAR = 54, + anon_sym_BSLASH_LBRACK = 55, + anon_sym_BSLASH_RBRACK = 56, + anon_sym_DOLLAR = 57, + anon_sym_BSLASH_LPAREN = 58, + anon_sym_BSLASH_RPAREN = 59, + anon_sym_BSLASH_LBRACE = 60, + anon_sym_BSLASH_RBRACE = 61, + anon_sym_BSLASHbegin = 62, + anon_sym_BSLASHend = 63, + anon_sym_comment = 64, + anon_sym_verbatim = 65, + anon_sym_lstlisting = 66, + anon_sym_minted = 67, + anon_sym_pycode = 68, + anon_sym_BSLASHtitle = 69, + anon_sym_BSLASHauthor = 70, + anon_sym_BSLASHusepackage = 71, + anon_sym_BSLASHRequirePackage = 72, + anon_sym_BSLASHdocumentclass = 73, + anon_sym_BSLASHinclude = 74, + anon_sym_BSLASHsubfileinclude = 75, + anon_sym_BSLASHinput = 76, + anon_sym_BSLASHsubfile = 77, + anon_sym_BSLASHaddbibresource = 78, + anon_sym_BSLASHbibliography = 79, + anon_sym_BSLASHincludegraphics = 80, + anon_sym_BSLASHincludesvg = 81, + anon_sym_BSLASHincludeinkscape = 82, + anon_sym_BSLASHverbatiminput = 83, + anon_sym_BSLASHVerbatimInput = 84, + anon_sym_BSLASHimport = 85, + anon_sym_BSLASHsubimport = 86, + anon_sym_BSLASHinputfrom = 87, + anon_sym_BSLASHsubimportfrom = 88, + anon_sym_BSLASHincludefrom = 89, + anon_sym_BSLASHsubincludefrom = 90, + anon_sym_BSLASHcaption = 91, + anon_sym_BSLASHcite = 92, + anon_sym_BSLASHcite_STAR = 93, + anon_sym_BSLASHCite = 94, + anon_sym_BSLASHnocite = 95, + anon_sym_BSLASHcitet = 96, + anon_sym_BSLASHcitep = 97, + anon_sym_BSLASHcitet_STAR = 98, + anon_sym_BSLASHcitep_STAR = 99, + anon_sym_BSLASHciteauthor = 100, + anon_sym_BSLASHciteauthor_STAR = 101, + anon_sym_BSLASHCiteauthor = 102, + anon_sym_BSLASHCiteauthor_STAR = 103, + anon_sym_BSLASHcitetitle = 104, + anon_sym_BSLASHcitetitle_STAR = 105, + anon_sym_BSLASHciteyear = 106, + anon_sym_BSLASHciteyear_STAR = 107, + anon_sym_BSLASHcitedate = 108, + anon_sym_BSLASHcitedate_STAR = 109, + anon_sym_BSLASHciteurl = 110, + anon_sym_BSLASHfullcite = 111, + anon_sym_BSLASHciteyearpar = 112, + anon_sym_BSLASHcitealt = 113, + anon_sym_BSLASHcitealp = 114, + anon_sym_BSLASHcitetext = 115, + anon_sym_BSLASHparencite = 116, + anon_sym_BSLASHparencite_STAR = 117, + anon_sym_BSLASHParencite = 118, + anon_sym_BSLASHfootcite = 119, + anon_sym_BSLASHfootfullcite = 120, + anon_sym_BSLASHfootcitetext = 121, + anon_sym_BSLASHtextcite = 122, + anon_sym_BSLASHTextcite = 123, + anon_sym_BSLASHsmartcite = 124, + anon_sym_BSLASHSmartcite = 125, + anon_sym_BSLASHsupercite = 126, + anon_sym_BSLASHautocite = 127, + anon_sym_BSLASHAutocite = 128, + anon_sym_BSLASHautocite_STAR = 129, + anon_sym_BSLASHAutocite_STAR = 130, + anon_sym_BSLASHvolcite = 131, + anon_sym_BSLASHVolcite = 132, + anon_sym_BSLASHpvolcite = 133, + anon_sym_BSLASHPvolcite = 134, + anon_sym_BSLASHfvolcite = 135, + anon_sym_BSLASHftvolcite = 136, + anon_sym_BSLASHsvolcite = 137, + anon_sym_BSLASHSvolcite = 138, + anon_sym_BSLASHtvolcite = 139, + anon_sym_BSLASHTvolcite = 140, + anon_sym_BSLASHavolcite = 141, + anon_sym_BSLASHAvolcite = 142, + anon_sym_BSLASHnotecite = 143, + anon_sym_BSLASHNotecite = 144, + anon_sym_BSLASHpnotecite = 145, + anon_sym_BSLASHPnotecite = 146, + anon_sym_BSLASHfnotecite = 147, + anon_sym_BSLASHlabel = 148, + anon_sym_BSLASHref = 149, + anon_sym_BSLASHeqref = 150, + anon_sym_BSLASHvref = 151, + anon_sym_BSLASHVref = 152, + anon_sym_BSLASHautoref = 153, + anon_sym_BSLASHpageref = 154, + anon_sym_BSLASHcref = 155, + anon_sym_BSLASHCref = 156, + anon_sym_BSLASHcref_STAR = 157, + anon_sym_BSLASHCref_STAR = 158, + anon_sym_BSLASHnamecref = 159, + anon_sym_BSLASHnameCref = 160, + anon_sym_BSLASHlcnamecref = 161, + anon_sym_BSLASHnamecrefs = 162, + anon_sym_BSLASHnameCrefs = 163, + anon_sym_BSLASHlcnamecrefs = 164, + anon_sym_BSLASHlabelcref = 165, + anon_sym_BSLASHlabelcpageref = 166, + anon_sym_BSLASHcrefrange = 167, + anon_sym_BSLASHcrefrange_STAR = 168, + anon_sym_BSLASHCrefrange = 169, + anon_sym_BSLASHCrefrange_STAR = 170, + anon_sym_BSLASHnewlabel = 171, + anon_sym_BSLASHnewcommand = 172, + anon_sym_BSLASHnewcommand_STAR = 173, + anon_sym_BSLASHrenewcommand = 174, + anon_sym_BSLASHrenewcommand_STAR = 175, + anon_sym_BSLASHDeclareRobustCommand = 176, + anon_sym_BSLASHDeclareRobustCommand_STAR = 177, + anon_sym_BSLASHDeclareMathOperator = 178, + anon_sym_BSLASHDeclareMathOperator_STAR = 179, + anon_sym_BSLASHdef = 180, + anon_sym_BSLASHlet = 181, + anon_sym_BSLASHDeclarePairedDelimiter = 182, + anon_sym_BSLASHDeclarePairedDelimiterX = 183, + anon_sym_BSLASHnewenvironment = 184, + anon_sym_BSLASHnewglossaryentry = 185, + anon_sym_BSLASHgls = 186, + anon_sym_BSLASHGls = 187, + anon_sym_BSLASHGLS = 188, + anon_sym_BSLASHglspl = 189, + anon_sym_BSLASHGlspl = 190, + anon_sym_BSLASHGLSpl = 191, + anon_sym_BSLASHglsdisp = 192, + anon_sym_BSLASHglslink = 193, + anon_sym_BSLASHglstext = 194, + anon_sym_BSLASHGlstext = 195, + anon_sym_BSLASHGLStext = 196, + anon_sym_BSLASHglsfirst = 197, + anon_sym_BSLASHGlsfirst = 198, + anon_sym_BSLASHGLSfirst = 199, + anon_sym_BSLASHglsplural = 200, + anon_sym_BSLASHGlsplural = 201, + anon_sym_BSLASHGLSplural = 202, + anon_sym_BSLASHglsfirstplural = 203, + anon_sym_BSLASHGlsfirstplural = 204, + anon_sym_BSLASHGLSfirstplural = 205, + anon_sym_BSLASHglsname = 206, + anon_sym_BSLASHGlsname = 207, + anon_sym_BSLASHGLSname = 208, + anon_sym_BSLASHglssymbol = 209, + anon_sym_BSLASHGlssymbol = 210, + anon_sym_BSLASHglsdesc = 211, + anon_sym_BSLASHGlsdesc = 212, + anon_sym_BSLASHGLSdesc = 213, + anon_sym_BSLASHglsuseri = 214, + anon_sym_BSLASHGlsuseri = 215, + anon_sym_BSLASHGLSuseri = 216, + anon_sym_BSLASHglsuserii = 217, + anon_sym_BSLASHGlsuserii = 218, + anon_sym_BSLASHGLSuserii = 219, + anon_sym_BSLASHglsuseriii = 220, + anon_sym_BSLASHGlsuseriii = 221, + anon_sym_BSLASHGLSuseriii = 222, + anon_sym_BSLASHglsuseriv = 223, + anon_sym_BSLASHGlsuseriv = 224, + anon_sym_BSLASHGLSuseriv = 225, + anon_sym_BSLASHglsuserv = 226, + anon_sym_BSLASHGlsuserv = 227, + anon_sym_BSLASHGLSuserv = 228, + anon_sym_BSLASHglsuservi = 229, + anon_sym_BSLASHGlsuservi = 230, + anon_sym_BSLASHGLSuservi = 231, + anon_sym_BSLASHnewacronym = 232, + anon_sym_BSLASHacrshort = 233, + anon_sym_BSLASHAcrshort = 234, + anon_sym_BSLASHACRshort = 235, + anon_sym_BSLASHacrshortpl = 236, + anon_sym_BSLASHAcrshortpl = 237, + anon_sym_BSLASHACRshortpl = 238, + anon_sym_BSLASHacrlong = 239, + anon_sym_BSLASHAcrlong = 240, + anon_sym_BSLASHACRlong = 241, + anon_sym_BSLASHacrlongpl = 242, + anon_sym_BSLASHAcrlongpl = 243, + anon_sym_BSLASHACRlongpl = 244, + anon_sym_BSLASHacrfull = 245, + anon_sym_BSLASHAcrfull = 246, + anon_sym_BSLASHACRfull = 247, + anon_sym_BSLASHacrfullpl = 248, + anon_sym_BSLASHAcrfullpl = 249, + anon_sym_BSLASHACRfullpl = 250, + anon_sym_BSLASHacs = 251, + anon_sym_BSLASHAcs = 252, + anon_sym_BSLASHacsp = 253, + anon_sym_BSLASHAcsp = 254, + anon_sym_BSLASHacl = 255, + anon_sym_BSLASHAcl = 256, + anon_sym_BSLASHaclp = 257, + anon_sym_BSLASHAclp = 258, + anon_sym_BSLASHacf = 259, + anon_sym_BSLASHAcf = 260, + anon_sym_BSLASHacfp = 261, + anon_sym_BSLASHAcfp = 262, + anon_sym_BSLASHac = 263, + anon_sym_BSLASHAc = 264, + anon_sym_BSLASHacp = 265, + anon_sym_BSLASHglsentrylong = 266, + anon_sym_BSLASHGlsentrylong = 267, + anon_sym_BSLASHglsentrylongpl = 268, + anon_sym_BSLASHGlsentrylongpl = 269, + anon_sym_BSLASHglsentryshort = 270, + anon_sym_BSLASHGlsentryshort = 271, + anon_sym_BSLASHglsentryshortpl = 272, + anon_sym_BSLASHGlsentryshortpl = 273, + anon_sym_BSLASHglsentryfullpl = 274, + anon_sym_BSLASHGlsentryfullpl = 275, + anon_sym_BSLASHnewtheorem = 276, + anon_sym_BSLASHnewtheorem_STAR = 277, + anon_sym_BSLASHdeclaretheorem = 278, + anon_sym_BSLASHdeclaretheorem_STAR = 279, + anon_sym_BSLASHdefinecolor = 280, + anon_sym_BSLASHdefinecolorset = 281, + anon_sym_BSLASHcolor = 282, + anon_sym_BSLASHcolorbox = 283, + anon_sym_BSLASHtextcolor = 284, + anon_sym_BSLASHpagecolor = 285, + anon_sym_BSLASHusepgflibrary = 286, + anon_sym_BSLASHusetikzlibrary = 287, + anon_sym_BSLASHtext = 288, + anon_sym_BSLASHintertext = 289, + anon_sym_shortintertext = 290, + sym__trivia_raw_fi = 291, + sym__trivia_raw_env_comment = 292, + sym__trivia_raw_env_verbatim = 293, + sym__trivia_raw_env_listing = 294, + sym__trivia_raw_env_minted = 295, + sym__trivia_raw_env_pycode = 296, + sym_source_file = 297, + sym_block_comment = 298, + sym__root_content = 299, + sym__flat_content = 300, + sym__text_with_env_content = 301, + sym__text_content = 302, + sym__section = 303, + sym__part_declaration = 304, + sym_part = 305, + sym__chapter_declaration = 306, + sym_chapter = 307, + sym__section_declaration = 308, + sym_section = 309, + sym__subsection_declaration = 310, + sym_subsection = 311, + sym__subsubsection_declaration = 312, + sym_subsubsection = 313, + sym__paragraph_declaration = 314, + sym_paragraph = 315, + sym__subparagraph_declaration = 316, + sym_subparagraph = 317, + sym__enum_itemdeclaration = 318, + sym_enum_item = 319, + sym_curly_group = 320, + sym_curly_group_text = 321, + sym_curly_group_text_list = 322, + sym_curly_group_path = 323, + sym_curly_group_path_list = 324, + sym_curly_group_command_name = 325, + sym_curly_group_key_value = 326, + sym_curly_group_glob_pattern = 327, + sym_curly_group_impl = 328, + sym_curly_group_author_list = 329, + sym_brack_group = 330, + sym_brack_group_text = 331, + sym_brack_group_argc = 332, + sym_brack_group_key_value = 333, + sym_mixed_group = 334, + sym_text = 335, + sym_glob_pattern = 336, + sym__glob_pattern_fragment = 337, + sym_operator = 338, + sym_key_value_pair = 339, + sym_value = 340, + sym_displayed_equation = 341, + sym_inline_formula = 342, + sym_math_set = 343, + sym_begin = 344, + sym_end = 345, + sym_generic_environment = 346, + sym_comment_environment = 347, + sym__trivia_begin_comment = 348, + sym__trivia_end_comment = 349, + sym__trivia_curly_group_comment = 350, + sym__trivia_text_comment = 351, + sym_verbatim_environment = 352, + sym__trivia_begin_verbatim = 353, + sym__trivia_end_verbatim = 354, + sym__trivia_curly_group_verbatim = 355, + sym__trivia_text_verbatim = 356, + sym_listing_environment = 357, + sym__trivia_begin_listing = 358, + sym__trivia_end_listing = 359, + sym__trivia_curly_group_listing = 360, + sym__trivia_text_listing = 361, + sym_minted_environment = 362, + sym__trivia_begin_minted = 363, + sym__trivia_end_minted = 364, + sym__trivia_curly_group_minted = 365, + sym__trivia_text_minted = 366, + sym_pycode_environment = 367, + sym__trivia_begin_pycode = 368, + sym__trivia_end_pycode = 369, + sym__trivia_curly_group_pycode = 370, + sym__trivia_text_pycode = 371, + sym__command = 372, + sym_generic_command = 373, + sym_title_declaration = 374, + sym_author_declaration = 375, + sym_package_include = 376, + sym_class_include = 377, + sym_latex_include = 378, + sym_biblatex_include = 379, + sym_bibtex_include = 380, + sym_graphics_include = 381, + sym_svg_include = 382, + sym_inkscape_include = 383, + sym_verbatim_include = 384, + sym_import_include = 385, + sym_caption = 386, + sym_citation = 387, + sym_label_definition = 388, + sym_label_reference = 389, + sym_label_reference_range = 390, + sym_label_number = 391, + sym_new_command_definition = 392, + sym_old_command_definition = 393, + sym_let_command_definition = 394, + sym_paired_delimiter_definition = 395, + sym_environment_definition = 396, + sym_glossary_entry_definition = 397, + sym_glossary_entry_reference = 398, + sym_acronym_definition = 399, + sym_acronym_reference = 400, + sym_theorem_definition = 401, + sym_color_definition = 402, + sym_color_set_definition = 403, + sym_color_reference = 404, + sym_tikz_library_import = 405, + sym_text_mode = 406, + aux_sym_source_file_repeat1 = 407, + aux_sym__section_repeat1 = 408, + aux_sym__section_repeat2 = 409, + aux_sym__section_repeat3 = 410, + aux_sym__section_repeat4 = 411, + aux_sym__section_repeat5 = 412, + aux_sym__section_repeat6 = 413, + aux_sym__section_repeat7 = 414, + aux_sym__section_repeat8 = 415, + aux_sym_part_repeat1 = 416, + aux_sym_curly_group_text_list_repeat1 = 417, + aux_sym_curly_group_path_list_repeat1 = 418, + aux_sym_curly_group_key_value_repeat1 = 419, + aux_sym_curly_group_impl_repeat1 = 420, + aux_sym_curly_group_author_list_repeat1 = 421, + aux_sym_brack_group_repeat1 = 422, + aux_sym_mixed_group_repeat1 = 423, + aux_sym_text_repeat1 = 424, + aux_sym_glob_pattern_repeat1 = 425, + aux_sym_value_repeat1 = 426, + aux_sym_generic_command_repeat1 = 427, + alias_sym_author = 428, }; static const char * const ts_symbol_names[] = { @@ -484,6 +492,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASHitem_STAR] = "\\item*", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_BSLASHand] = "command_name", [sym_word] = "word", [sym_placeholder] = "placeholder", [sym_path] = "path", @@ -516,6 +525,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_lstlisting] = "word", [anon_sym_minted] = "word", [anon_sym_pycode] = "word", + [anon_sym_BSLASHtitle] = "\\title", + [anon_sym_BSLASHauthor] = "\\author", [anon_sym_BSLASHusepackage] = "\\usepackage", [anon_sym_BSLASHRequirePackage] = "\\RequirePackage", [anon_sym_BSLASHdocumentclass] = "\\documentclass", @@ -774,6 +785,7 @@ static const char * const ts_symbol_names[] = { [sym_curly_group_key_value] = "curly_group_key_value", [sym_curly_group_glob_pattern] = "curly_group_glob_pattern", [sym_curly_group_impl] = "curly_group_impl", + [sym_curly_group_author_list] = "curly_group_author_list", [sym_brack_group] = "brack_group", [sym_brack_group_text] = "brack_group_text", [sym_brack_group_argc] = "brack_group_argc", @@ -818,6 +830,8 @@ static const char * const ts_symbol_names[] = { [sym__trivia_text_pycode] = "text", [sym__command] = "_command", [sym_generic_command] = "generic_command", + [sym_title_declaration] = "title_declaration", + [sym_author_declaration] = "author_declaration", [sym_package_include] = "package_include", [sym_class_include] = "class_include", [sym_latex_include] = "latex_include", @@ -863,12 +877,14 @@ static const char * const ts_symbol_names[] = { [aux_sym_curly_group_path_list_repeat1] = "curly_group_path_list_repeat1", [aux_sym_curly_group_key_value_repeat1] = "curly_group_key_value_repeat1", [aux_sym_curly_group_impl_repeat1] = "curly_group_impl_repeat1", + [aux_sym_curly_group_author_list_repeat1] = "curly_group_author_list_repeat1", [aux_sym_brack_group_repeat1] = "brack_group_repeat1", [aux_sym_mixed_group_repeat1] = "mixed_group_repeat1", [aux_sym_text_repeat1] = "text_repeat1", [aux_sym_glob_pattern_repeat1] = "glob_pattern_repeat1", [aux_sym_value_repeat1] = "value_repeat1", [aux_sym_generic_command_repeat1] = "generic_command_repeat1", + [alias_sym_author] = "author", }; static const TSSymbol ts_symbol_map[] = { @@ -908,6 +924,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BSLASHitem_STAR] = anon_sym_BSLASHitem_STAR, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_BSLASHand] = sym_command_name, [sym_word] = sym_word, [sym_placeholder] = sym_placeholder, [sym_path] = sym_path, @@ -940,6 +957,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_lstlisting] = sym_word, [anon_sym_minted] = sym_word, [anon_sym_pycode] = sym_word, + [anon_sym_BSLASHtitle] = anon_sym_BSLASHtitle, + [anon_sym_BSLASHauthor] = anon_sym_BSLASHauthor, [anon_sym_BSLASHusepackage] = anon_sym_BSLASHusepackage, [anon_sym_BSLASHRequirePackage] = anon_sym_BSLASHRequirePackage, [anon_sym_BSLASHdocumentclass] = anon_sym_BSLASHdocumentclass, @@ -1198,6 +1217,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_curly_group_key_value] = sym_curly_group_key_value, [sym_curly_group_glob_pattern] = sym_curly_group_glob_pattern, [sym_curly_group_impl] = sym_curly_group_impl, + [sym_curly_group_author_list] = sym_curly_group_author_list, [sym_brack_group] = sym_brack_group, [sym_brack_group_text] = sym_brack_group_text, [sym_brack_group_argc] = sym_brack_group_argc, @@ -1242,6 +1262,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__trivia_text_pycode] = sym_text, [sym__command] = sym__command, [sym_generic_command] = sym_generic_command, + [sym_title_declaration] = sym_title_declaration, + [sym_author_declaration] = sym_author_declaration, [sym_package_include] = sym_package_include, [sym_class_include] = sym_class_include, [sym_latex_include] = sym_latex_include, @@ -1287,12 +1309,14 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_curly_group_path_list_repeat1] = aux_sym_curly_group_path_list_repeat1, [aux_sym_curly_group_key_value_repeat1] = aux_sym_curly_group_key_value_repeat1, [aux_sym_curly_group_impl_repeat1] = aux_sym_curly_group_impl_repeat1, + [aux_sym_curly_group_author_list_repeat1] = aux_sym_curly_group_author_list_repeat1, [aux_sym_brack_group_repeat1] = aux_sym_brack_group_repeat1, [aux_sym_mixed_group_repeat1] = aux_sym_mixed_group_repeat1, [aux_sym_text_repeat1] = aux_sym_text_repeat1, [aux_sym_glob_pattern_repeat1] = aux_sym_glob_pattern_repeat1, [aux_sym_value_repeat1] = aux_sym_value_repeat1, [aux_sym_generic_command_repeat1] = aux_sym_generic_command_repeat1, + [alias_sym_author] = alias_sym_author, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1440,6 +1464,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_BSLASHand] = { + .visible = true, + .named = true, + }, [sym_word] = { .visible = true, .named = true, @@ -1568,6 +1596,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_BSLASHtitle] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHauthor] = { + .visible = true, + .named = false, + }, [anon_sym_BSLASHusepackage] = { .visible = true, .named = false, @@ -2600,6 +2636,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_curly_group_author_list] = { + .visible = true, + .named = true, + }, [sym_brack_group] = { .visible = true, .named = true, @@ -2776,6 +2816,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_title_declaration] = { + .visible = true, + .named = true, + }, + [sym_author_declaration] = { + .visible = true, + .named = true, + }, [sym_package_include] = { .visible = true, .named = true, @@ -2956,6 +3004,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_curly_group_author_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_brack_group_repeat1] = { .visible = false, .named = false, @@ -2980,6 +3032,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [alias_sym_author] = { + .visible = true, + .named = true, + }, }; enum { @@ -3129,39 +3185,39 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [45] = {.index = 117, .length = 3}, [46] = {.index = 120, .length = 1}, [47] = {.index = 121, .length = 2}, - [48] = {.index = 123, .length = 1}, - [49] = {.index = 124, .length = 1}, - [50] = {.index = 125, .length = 1}, - [51] = {.index = 126, .length = 4}, - [52] = {.index = 130, .length = 1}, - [53] = {.index = 131, .length = 4}, - [54] = {.index = 135, .length = 3}, - [55] = {.index = 138, .length = 4}, - [56] = {.index = 142, .length = 3}, - [57] = {.index = 145, .length = 4}, - [58] = {.index = 149, .length = 4}, - [59] = {.index = 153, .length = 4}, - [60] = {.index = 157, .length = 4}, - [61] = {.index = 161, .length = 4}, - [62] = {.index = 165, .length = 2}, - [63] = {.index = 167, .length = 2}, - [64] = {.index = 169, .length = 2}, - [65] = {.index = 171, .length = 2}, - [66] = {.index = 173, .length = 2}, - [67] = {.index = 175, .length = 2}, - [68] = {.index = 177, .length = 2}, - [69] = {.index = 179, .length = 1}, - [70] = {.index = 180, .length = 5}, - [71] = {.index = 185, .length = 5}, - [72] = {.index = 190, .length = 5}, - [73] = {.index = 195, .length = 4}, - [74] = {.index = 199, .length = 5}, - [75] = {.index = 204, .length = 5}, - [76] = {.index = 209, .length = 5}, - [77] = {.index = 214, .length = 4}, - [78] = {.index = 218, .length = 5}, - [79] = {.index = 223, .length = 6}, - [80] = {.index = 229, .length = 6}, + [49] = {.index = 123, .length = 1}, + [50] = {.index = 124, .length = 1}, + [51] = {.index = 125, .length = 1}, + [52] = {.index = 126, .length = 4}, + [53] = {.index = 130, .length = 1}, + [54] = {.index = 131, .length = 4}, + [55] = {.index = 135, .length = 3}, + [56] = {.index = 138, .length = 4}, + [57] = {.index = 142, .length = 3}, + [58] = {.index = 145, .length = 4}, + [59] = {.index = 149, .length = 4}, + [60] = {.index = 153, .length = 4}, + [61] = {.index = 157, .length = 4}, + [62] = {.index = 161, .length = 4}, + [63] = {.index = 165, .length = 2}, + [64] = {.index = 167, .length = 2}, + [65] = {.index = 169, .length = 2}, + [66] = {.index = 171, .length = 2}, + [67] = {.index = 173, .length = 2}, + [68] = {.index = 175, .length = 2}, + [69] = {.index = 177, .length = 2}, + [70] = {.index = 179, .length = 1}, + [71] = {.index = 180, .length = 5}, + [72] = {.index = 185, .length = 5}, + [73] = {.index = 190, .length = 5}, + [74] = {.index = 195, .length = 4}, + [75] = {.index = 199, .length = 5}, + [76] = {.index = 204, .length = 5}, + [77] = {.index = 209, .length = 5}, + [78] = {.index = 214, .length = 4}, + [79] = {.index = 218, .length = 5}, + [80] = {.index = 223, .length = 6}, + [81] = {.index = 229, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3484,9 +3540,15 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, + [48] = { + [1] = alias_sym_author, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { + aux_sym_curly_group_impl_repeat1, 2, + aux_sym_curly_group_impl_repeat1, + alias_sym_author, 0, }; @@ -3541,838 +3603,980 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(144); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 'c') ADVANCE(92); - if (lookahead == 'l') ADVANCE(98); - if (lookahead == 'm') ADVANCE(79); - if (lookahead == 'p') ADVANCE(110); - if (lookahead == 's') ADVANCE(78); - if (lookahead == 'v') ADVANCE(71); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + if (eof) ADVANCE(35); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'c') ADVANCE(102); + if (lookahead == 'l') ADVANCE(108); + if (lookahead == 'm') ADVANCE(89); + if (lookahead == 'p') ADVANCE(120); + if (lookahead == 's') ADVANCE(88); + if (lookahead == 'v') ADVANCE(81); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(161); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(145); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(159); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(164); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(170); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(150); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(167); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(146); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(168); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(161); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(151); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(162); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(147); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(157); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(163); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(160); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(158); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '}') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(163); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(166); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '=') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(162); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(172); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '=') ADVANCE(111); + lookahead != '}') ADVANCE(121); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(1013); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(175); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && - lookahead != '$' && - lookahead != ')') ADVANCE(111); + lookahead != '=') ADVANCE(121); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '\\') ADVANCE(1012); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(174); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(36); + if (lookahead != 0 && + lookahead != '=') ADVANCE(121); + END_STATE(); + case 18: + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0 && + (lookahead < ')' || ',' < lookahead) && + lookahead != '=' && + lookahead != ']') ADVANCE(121); + END_STATE(); + case 19: + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '\\') ADVANCE(176); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(36); + if (lookahead != 0 && + (lookahead < '(' || ',' < lookahead) && + lookahead != '=' && + (lookahead < '[' || ']' < lookahead)) ADVANCE(121); + END_STATE(); + case 20: + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1035); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(36); + if (lookahead != 0 && + lookahead != '$' && + lookahead != ')') ADVANCE(121); + END_STATE(); + case 21: + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '\\') ADVANCE(1034); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && lookahead != '$' && lookahead != '(' && lookahead != ')' && lookahead != '[' && - lookahead != '{') ADVANCE(111); + lookahead != '{') ADVANCE(121); END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '\\') ADVANCE(1013); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 'c') ADVANCE(92); - if (lookahead == 'l') ADVANCE(98); - if (lookahead == 'm') ADVANCE(79); - if (lookahead == 'p') ADVANCE(110); - if (lookahead == 'v') ADVANCE(71); - if (lookahead == '|') ADVANCE(125); + case 22: + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '\\') ADVANCE(1035); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'c') ADVANCE(102); + if (lookahead == 'l') ADVANCE(108); + if (lookahead == 'm') ADVANCE(89); + if (lookahead == 'p') ADVANCE(120); + if (lookahead == 'v') ADVANCE(81); + if (lookahead == '|') ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); if (lookahead != 0 && lookahead != '$' && (lookahead < '(' || ',' < lookahead) && lookahead != '=' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(111); + (lookahead < '{' || '}' < lookahead)) ADVANCE(121); END_STATE(); - case 19: - if (lookahead == '%') ADVANCE(33); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(1014); - if (lookahead == '{') ADVANCE(64); + case 23: + if (lookahead == '%') ADVANCE(41); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1036); + if (lookahead == '{') ADVANCE(72); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + lookahead == ' ') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 20: - if (lookahead == '%') ADVANCE(31); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '}') ADVANCE(65); + case 24: + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(29); + lookahead == ' ') ADVANCE(36); + END_STATE(); + case 25: + if (lookahead == '%') ADVANCE(39); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(37); if (lookahead != 0 && lookahead != '"' && (lookahead < ':' || '<' < lookahead) && lookahead != '>' && lookahead != '[' && lookahead != ']' && - lookahead != '|') ADVANCE(115); + lookahead != '|') ADVANCE(125); END_STATE(); - case 21: - if (lookahead == '%') ADVANCE(32); - if (lookahead == '}') ADVANCE(65); + case 26: + if (lookahead == '%') ADVANCE(40); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(30); - if (!sym_path_character_set_1(lookahead)) ADVANCE(113); + lookahead == ' ') ADVANCE(38); + if (!sym_path_character_set_1(lookahead)) ADVANCE(123); END_STATE(); - case 22: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + case 27: + if (lookahead == 'a') ADVANCE(29); END_STATE(); - case 23: - if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(159); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + case 28: + if (lookahead == 'd') ADVANCE(74); + END_STATE(); + case 29: + if (lookahead == 'n') ADVANCE(28); + END_STATE(); + case 30: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + END_STATE(); + case 31: + if (eof) ADVANCE(35); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(171); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 24: - if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(153); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + case 32: + if (eof) ADVANCE(35); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(160); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 25: - if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(149); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + case 33: + if (eof) ADVANCE(35); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(165); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 26: - if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(124); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(36); - if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(119); - if (lookahead == ':') ADVANCE(126); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(157); - if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(120); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 's') ADVANCE(78); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(65); + case 34: + if (eof) ADVANCE(35); + if (lookahead == '!') ADVANCE(134); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(41); + if (lookahead == '\'') ADVANCE(137); + if (lookahead == '(') ADVANCE(44); + if (lookahead == ')') ADVANCE(45); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '+') ADVANCE(126); + if (lookahead == ',') ADVANCE(48); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '/') ADVANCE(129); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(133); + if (lookahead == '[') ADVANCE(46); + if (lookahead == '\\') ADVANCE(169); + if (lookahead == ']') ADVANCE(47); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(88); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(111); + lookahead == ' ') ADVANCE(36); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 27: + case 35: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 28: + case 36: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(28); + lookahead == ' ') ADVANCE(36); END_STATE(); - case 29: + case 37: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(29); + lookahead == ' ') ADVANCE(37); if (lookahead != 0 && lookahead != '"' && (lookahead < ':' || '<' < lookahead) && lookahead != '>' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(115); + (lookahead < '{' || '}' < lookahead)) ADVANCE(125); END_STATE(); - case 30: + case 38: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(30); - if (!sym_path_character_set_2(lookahead)) ADVANCE(113); + lookahead == ' ') ADVANCE(38); + if (!sym_path_character_set_2(lookahead)) ADVANCE(123); END_STATE(); - case 31: + case 39: ACCEPT_TOKEN(sym_line_comment); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(115); + lookahead == '\r') ADVANCE(125); if (lookahead == '"' || (':' <= lookahead && lookahead <= '<') || lookahead == '>' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(33); - if (lookahead != 0) ADVANCE(31); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(41); + if (lookahead != 0) ADVANCE(39); END_STATE(); - case 32: + case 40: ACCEPT_TOKEN(sym_line_comment); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(113); + lookahead == '\r') ADVANCE(123); if (lookahead == '"' || lookahead == '*' || lookahead == ',' || @@ -4380,10907 +4584,11175 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(33); - if (lookahead != 0) ADVANCE(32); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(41); + if (lookahead != 0) ADVANCE(40); END_STATE(); - case 33: + case 41: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(33); + lookahead != '\r') ADVANCE(41); END_STATE(); - case 34: + case 42: ACCEPT_TOKEN(anon_sym_BSLASHiffalse); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 35: + case 43: ACCEPT_TOKEN(anon_sym_BSLASHfi); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 36: + case 44: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 37: + case 45: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 38: + case 46: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 39: + case 47: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 40: + case 48: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 41: + case 49: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 42: + case 50: ACCEPT_TOKEN(anon_sym_BSLASHpart); - if (lookahead == '*') ADVANCE(43); + if (lookahead == '*') ADVANCE(51); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 43: + case 51: ACCEPT_TOKEN(anon_sym_BSLASHpart_STAR); END_STATE(); - case 44: + case 52: ACCEPT_TOKEN(anon_sym_BSLASHaddpart); - if (lookahead == '*') ADVANCE(45); + if (lookahead == '*') ADVANCE(53); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 45: + case 53: ACCEPT_TOKEN(anon_sym_BSLASHaddpart_STAR); END_STATE(); - case 46: + case 54: ACCEPT_TOKEN(anon_sym_BSLASHchapter); - if (lookahead == '*') ADVANCE(47); + if (lookahead == '*') ADVANCE(55); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 47: + case 55: ACCEPT_TOKEN(anon_sym_BSLASHchapter_STAR); END_STATE(); - case 48: + case 56: ACCEPT_TOKEN(anon_sym_BSLASHaddchap); - if (lookahead == '*') ADVANCE(49); + if (lookahead == '*') ADVANCE(57); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 49: + case 57: ACCEPT_TOKEN(anon_sym_BSLASHaddchap_STAR); END_STATE(); - case 50: + case 58: ACCEPT_TOKEN(anon_sym_BSLASHsection); - if (lookahead == '*') ADVANCE(51); + if (lookahead == '*') ADVANCE(59); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 51: + case 59: ACCEPT_TOKEN(anon_sym_BSLASHsection_STAR); END_STATE(); - case 52: + case 60: ACCEPT_TOKEN(anon_sym_BSLASHaddsec); - if (lookahead == '*') ADVANCE(53); + if (lookahead == '*') ADVANCE(61); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 53: + case 61: ACCEPT_TOKEN(anon_sym_BSLASHaddsec_STAR); END_STATE(); - case 54: + case 62: ACCEPT_TOKEN(anon_sym_BSLASHsubsection); - if (lookahead == '*') ADVANCE(55); + if (lookahead == '*') ADVANCE(63); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 55: + case 63: ACCEPT_TOKEN(anon_sym_BSLASHsubsection_STAR); END_STATE(); - case 56: + case 64: ACCEPT_TOKEN(anon_sym_BSLASHsubsubsection); - if (lookahead == '*') ADVANCE(57); + if (lookahead == '*') ADVANCE(65); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 57: + case 65: ACCEPT_TOKEN(anon_sym_BSLASHsubsubsection_STAR); END_STATE(); - case 58: + case 66: ACCEPT_TOKEN(anon_sym_BSLASHparagraph); - if (lookahead == '*') ADVANCE(59); + if (lookahead == '*') ADVANCE(67); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 59: + case 67: ACCEPT_TOKEN(anon_sym_BSLASHparagraph_STAR); END_STATE(); - case 60: + case 68: ACCEPT_TOKEN(anon_sym_BSLASHsubparagraph); - if (lookahead == '*') ADVANCE(61); + if (lookahead == '*') ADVANCE(69); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 61: + case 69: ACCEPT_TOKEN(anon_sym_BSLASHsubparagraph_STAR); END_STATE(); - case 62: + case 70: ACCEPT_TOKEN(anon_sym_BSLASHitem); - if (lookahead == '*') ADVANCE(63); + if (lookahead == '*') ADVANCE(71); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_BSLASHitem_STAR); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 66: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(103); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); - END_STATE(); - case 67: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'b') ADVANCE(66); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'c') ADVANCE(93); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); - END_STATE(); - case 69: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'd') ADVANCE(141); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); - END_STATE(); - case 70: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'd') ADVANCE(72); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 71: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(95); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASHitem_STAR); END_STATE(); case 72: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(142); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 73: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(109); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 74: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(69); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASHand); END_STATE(); case 75: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(97); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASHand); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 76: ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(90); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'a') ADVANCE(113); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 77: ACCEPT_TOKEN(sym_word); - if (lookahead == 'g') ADVANCE(140); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'b') ADVANCE(76); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 78: ACCEPT_TOKEN(sym_word); - if (lookahead == 'h') ADVANCE(94); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'c') ADVANCE(103); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 79: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(89); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'd') ADVANCE(151); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 80: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(88); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'd') ADVANCE(82); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 81: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(85); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(105); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 82: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(99); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(152); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 83: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(91); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(119); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 84: ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(82); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(79); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 85: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(139); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(107); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 86: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(76); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'e') ADVANCE(100); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 87: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(86); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'g') ADVANCE(150); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 88: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(77); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'h') ADVANCE(104); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 89: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(104); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'i') ADVANCE(99); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 90: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(101); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'i') ADVANCE(98); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 91: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(107); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'i') ADVANCE(95); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 92: ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(87); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'i') ADVANCE(109); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 93: ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(70); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'i') ADVANCE(101); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 94: ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(96); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'l') ADVANCE(92); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 95: ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(67); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'm') ADVANCE(149); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 96: ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(108); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'm') ADVANCE(86); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 97: ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(105); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'm') ADVANCE(96); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 98: ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(100); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'n') ADVANCE(87); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 99: ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(106); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'n') ADVANCE(114); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 100: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(84); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'n') ADVANCE(111); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 101: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(138); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'n') ADVANCE(117); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 102: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(1234); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'o') ADVANCE(97); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 103: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(81); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'o') ADVANCE(80); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 104: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(74); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'o') ADVANCE(106); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 105: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(73); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'r') ADVANCE(77); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 106: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(80); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'r') ADVANCE(118); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 107: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(75); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 'r') ADVANCE(115); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 108: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(83); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 's') ADVANCE(110); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 109: ACCEPT_TOKEN(sym_word); - if (lookahead == 'x') ADVANCE(102); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 's') ADVANCE(116); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 110: ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(68); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 't') ADVANCE(94); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 111: ACCEPT_TOKEN(sym_word); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (lookahead == 't') ADVANCE(148); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 112: - ACCEPT_TOKEN(sym_placeholder); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(1258); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 113: - ACCEPT_TOKEN(sym_path); - if (!sym_path_character_set_2(lookahead)) ADVANCE(113); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(91); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 114: - ACCEPT_TOKEN(sym_argc); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(84); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 115: - ACCEPT_TOKEN(aux_sym__glob_pattern_fragment_token1); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(115); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(83); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PLUS); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(90); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_DASH); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(85); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_STAR); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(93); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_SLASH); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (lookahead == 'x') ADVANCE(112); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_CARET); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (lookahead == 'y') ADVANCE(78); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym__); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_word); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_placeholder); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_path); + if (!sym_path_character_set_2(lookahead)) ADVANCE(123); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_BANG); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(sym_argc); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PIPE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(aux_sym__glob_pattern_fragment_token1); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < ':' || '<' < lookahead) && + lookahead != '>' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(125); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_COLON); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_PLUS); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_DASH); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + ACCEPT_TOKEN(anon_sym_STAR); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); + ACCEPT_TOKEN(anon_sym_SLASH); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); + ACCEPT_TOKEN(anon_sym_CARET); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '$') ADVANCE(128); + ACCEPT_TOKEN(anon_sym__); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); + ACCEPT_TOKEN(anon_sym_LT); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); + ACCEPT_TOKEN(anon_sym_GT); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); + ACCEPT_TOKEN(anon_sym_BANG); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_BSLASH_RBRACE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_BSLASHbegin); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_COLON); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_BSLASHend); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_comment); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_verbatim); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_lstlisting); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_minted); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(138); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_pycode); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); END_STATE(); case 143: - ACCEPT_TOKEN(sym_command_name); + ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); END_STATE(); case 144: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(672); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '}') ADVANCE(135); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); END_STATE(); case 145: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASH_RBRACE); END_STATE(); case 146: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(672); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHbegin); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 147: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHend); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 148: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '}') ADVANCE(135); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_comment); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 149: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == ')') ADVANCE(133); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_verbatim); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 150: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(672); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_lstlisting); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 151: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_minted); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 152: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '}') ADVANCE(135); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_pycode); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); case 153: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == ']') ADVANCE(130); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); END_STATE(); case 154: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(672); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == '}') ADVANCE(145); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 155: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(672); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 156: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '}') ADVANCE(135); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 157: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 158: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '}') ADVANCE(135); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 159: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(248); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(176); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(437); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(179); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(377); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == '}') ADVANCE(145); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 160: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(438); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == ')') ADVANCE(143); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 161: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(438); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 162: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(495); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(438); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 163: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(132); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == '[') ADVANCE(129); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(495); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(438); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); - if (lookahead == '{') ADVANCE(134); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + lookahead != '\r') ADVANCE(153); END_STATE(); case 164: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'C') ADVANCE(173); - if (lookahead == 'c') ADVANCE(1208); - if (lookahead == 'u') ADVANCE(903); - if (lookahead == 'v') ADVANCE(748); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == '}') ADVANCE(145); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 165: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'C') ADVANCE(827); - if (lookahead == 'c') ADVANCE(828); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == ']') ADVANCE(140); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 166: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'C') ADVANCE(747); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 167: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'D') ADVANCE(418); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 168: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'I') ADVANCE(684); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == '}') ADVANCE(145); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 169: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'l') ADVANCE(854); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 170: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'M') ADVANCE(200); - if (lookahead == 'P') ADVANCE(228); - if (lookahead == 'R') ADVANCE(709); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); + if (lookahead == '}') ADVANCE(145); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 171: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'O') ADVANCE(774); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(263); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(395); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 172: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'P') ADVANCE(230); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 173: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'R') ADVANCE(454); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 174: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'S') ADVANCE(1132); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 175: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'n') ADVANCE(758); - if (lookahead == 'v') ADVANCE(749); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 176: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'h') ADVANCE(207); - if (lookahead == 'i') ADVANCE(909); - if (lookahead == 'o') ADVANCE(595); - if (lookahead == 'r') ADVANCE(381); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(264); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 177: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'i') ADVANCE(909); - if (lookahead == 'o') ADVANCE(595); - if (lookahead == 'r') ADVANCE(381); + if (lookahead == '(') ADVANCE(142); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == '[') ADVANCE(139); + if (lookahead == 'a') ADVANCE(264); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(429); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == '{') ADVANCE(144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 178: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(650); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(256); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'C') ADVANCE(187); + if (lookahead == 'c') ADVANCE(1232); + if (lookahead == 'u') ADVANCE(925); + if (lookahead == 'v') ADVANCE(768); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 179: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(471); - if (lookahead == 'n') ADVANCE(760); - if (lookahead == 'v') ADVANCE(754); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'C') ADVANCE(848); + if (lookahead == 'c') ADVANCE(849); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 180: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'e') ADVANCE(698); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'C') ADVANCE(767); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 181: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(240); - if (lookahead == 'c') ADVANCE(676); - if (lookahead == 'e') ADVANCE(877); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'D') ADVANCE(436); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 182: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(472); - if (lookahead == 'n') ADVANCE(760); - if (lookahead == 'v') ADVANCE(754); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'I') ADVANCE(703); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 183: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(852); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'L') ADVANCE(188); + if (lookahead == 'l') ADVANCE(875); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 184: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(762); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'M') ADVANCE(217); + if (lookahead == 'P') ADVANCE(242); + if (lookahead == 'R') ADVANCE(728); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 185: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(659); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'O') ADVANCE(794); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 186: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(261); - if (lookahead == 'c') ADVANCE(705); - if (lookahead == 'e') ADVANCE(673); - if (lookahead == 'g') ADVANCE(601); - if (lookahead == 'l') ADVANCE(208); - if (lookahead == 't') ADVANCE(486); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'P') ADVANCE(244); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 187: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(765); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'R') ADVANCE(472); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 188: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(768); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'S') ADVANCE(1156); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 189: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(257); - if (lookahead == 'g') ADVANCE(458); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(824); + if (lookahead == 'n') ADVANCE(778); + if (lookahead == 'v') ADVANCE(769); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 190: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(682); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'h') ADVANCE(224); + if (lookahead == 'i') ADVANCE(932); + if (lookahead == 'o') ADVANCE(613); + if (lookahead == 'r') ADVANCE(399); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 191: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(677); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'i') ADVANCE(932); + if (lookahead == 'o') ADVANCE(613); + if (lookahead == 'r') ADVANCE(399); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 192: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(785); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(670); + if (lookahead == 'e') ADVANCE(1010); + if (lookahead == 'o') ADVANCE(272); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 193: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(573); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'n') ADVANCE(780); + if (lookahead == 'v') ADVANCE(774); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 194: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(797); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(488); + if (lookahead == 'e') ADVANCE(718); + if (lookahead == 't') ADVANCE(50); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 195: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(680); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(254); + if (lookahead == 'c') ADVANCE(696); + if (lookahead == 'e') ADVANCE(899); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 196: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(574); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(490); + if (lookahead == 'n') ADVANCE(780); + if (lookahead == 'v') ADVANCE(774); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 197: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(790); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(873); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 198: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(683); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(782); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 199: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(578); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(679); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 200: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(905); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(277); + if (lookahead == 'c') ADVANCE(724); + if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'g') ADVANCE(619); + if (lookahead == 'l') ADVANCE(225); + if (lookahead == 't') ADVANCE(504); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 201: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(799); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(785); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 202: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(801); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(787); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 203: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(583); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'g') ADVANCE(476); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 204: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(586); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(702); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 205: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(589); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(930); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 206: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(617); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(931); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 207: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(776); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(699); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 208: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(242); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(806); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 209: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(906); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(592); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 210: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(769); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(701); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 211: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(863); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(593); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 212: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(775); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(818); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 213: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(808); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(704); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 214: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(691); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(811); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 215: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(950); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(597); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 216: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(822); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(820); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 217: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(652); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(926); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 218: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(810); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(822); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 219: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(908); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(602); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 220: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(475); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(605); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 221: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(770); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(608); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 222: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(653); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(637); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 223: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(476); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(972); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 224: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(826); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(796); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 225: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(654); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(256); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 226: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(477); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(788); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 227: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(926); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(884); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 228: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(525); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(795); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 229: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(479); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(828); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 230: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(299); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(711); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 231: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(853); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(843); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 232: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(455); - if (lookahead == 'p') ADVANCE(385); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(672); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 233: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(456); - if (lookahead == 'p') ADVANCE(385); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(837); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 234: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(502); - if (lookahead == 'c') ADVANCE(484); - if (lookahead == 'p') ADVANCE(218); - if (lookahead == 's') ADVANCE(384); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(493); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 235: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(502); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(790); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 236: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(598); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(673); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 237: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(209); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(494); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 238: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(978); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(847); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 239: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(876); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(674); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 240: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(392); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(495); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 241: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(843); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(949); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 242: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(407); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(544); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 243: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(728); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(497); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 244: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(730); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(317); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 245: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(829); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(874); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 246: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(219); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(473); + if (lookahead == 'p') ADVANCE(403); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 247: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(847); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(474); + if (lookahead == 'p') ADVANCE(403); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 248: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(1207); - if (lookahead == 'd') ADVANCE(305); - if (lookahead == 'u') ADVANCE(904); - if (lookahead == 'v') ADVANCE(752); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(521); + if (lookahead == 'c') ADVANCE(502); + if (lookahead == 'p') ADVANCE(233); + if (lookahead == 's') ADVANCE(402); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 249: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(1207); - if (lookahead == 'd') ADVANCE(311); - if (lookahead == 'u') ADVANCE(904); - if (lookahead == 'v') ADVANCE(752); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(521); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 250: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(539); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(617); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 251: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(52); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(205); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 252: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(1157); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(1000); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 253: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(1156); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(897); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 254: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(1155); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(414); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 255: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(973); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(864); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 256: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(516); - if (lookahead == 't') ADVANCE(429); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(425); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 257: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(558); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(206); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 258: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(596); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(748); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 259: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(597); - if (lookahead == 'p') ADVANCE(967); - if (lookahead == 't') ADVANCE(382); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(750); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 260: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(597); - if (lookahead == 'p') ADVANCE(967); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(850); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 261: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(845); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(868); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 262: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(857); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1231); + if (lookahead == 'd') ADVANCE(321); + if (lookahead == 'n') ADVANCE(322); + if (lookahead == 'u') ADVANCE(898); + if (lookahead == 'v') ADVANCE(772); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 263: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(212); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1231); + if (lookahead == 'd') ADVANCE(321); + if (lookahead == 'u') ADVANCE(898); + if (lookahead == 'v') ADVANCE(772); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 264: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(369); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1231); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'n') ADVANCE(322); + if (lookahead == 'u') ADVANCE(898); + if (lookahead == 'v') ADVANCE(772); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 265: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(734); - if (lookahead == 'r') ADVANCE(389); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1231); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'u') ADVANCE(898); + if (lookahead == 'v') ADVANCE(772); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 266: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(608); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(558); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 267: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(612); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(60); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 268: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(616); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1181); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 269: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(830); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1180); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 270: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(518); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(1179); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 271: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(736); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(995); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 272: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(520); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(535); + if (lookahead == 't') ADVANCE(450); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 273: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(521); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(577); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 274: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(523); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(615); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 275: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(524); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(616); + if (lookahead == 'p') ADVANCE(989); + if (lookahead == 't') ADVANCE(400); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 276: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(526); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(616); + if (lookahead == 'p') ADVANCE(989); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 277: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(528); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(866); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 278: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(529); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(878); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 279: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(530); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(228); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 280: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(531); - if (lookahead == 'r') ADVANCE(388); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(387); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 281: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(532); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(763); + if (lookahead == 'r') ADVANCE(407); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 282: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(533); - if (lookahead == 'f') ADVANCE(984); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(626); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 283: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(534); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(631); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 284: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(535); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(635); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 285: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(536); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(851); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 286: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'c') ADVANCE(537); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 287: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(538); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(974); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 288: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(540); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(539); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 289: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(541); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(976); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 290: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(542); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(540); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 291: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(543); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(977); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 292: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(544); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(542); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 293: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(545); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(543); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 294: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(546); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(545); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 295: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'c') ADVANCE(547); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 296: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'c') ADVANCE(548); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 297: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'c') ADVANCE(549); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 298: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'c') ADVANCE(550); + if (lookahead == 'r') ADVANCE(406); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 299: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(559); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(551); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 300: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(619); - if (lookahead == 'f') ADVANCE(1124); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(552); + if (lookahead == 'f') ADVANCE(1006); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 301: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(953); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(553); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 302: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(745); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(554); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 303: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(954); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(555); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 304: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(956); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(556); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 305: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(234); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(557); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 306: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(137); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(559); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 307: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(1116); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(560); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 308: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(1118); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(561); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 309: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(167); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(562); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 310: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(1120); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(563); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 311: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(235); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(564); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 312: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(333); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(565); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 313: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(403); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(566); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 314: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(370); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(567); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 315: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(568); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 316: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(780); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(569); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 317: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(991); - if (lookahead == 'v') ADVANCE(751); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(578); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 318: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(463); - if (lookahead == 'i') ADVANCE(236); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(639); + if (lookahead == 'f') ADVANCE(1148); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 319: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(300); - if (lookahead == 'o') ADVANCE(255); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(765); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 320: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(440); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(764); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 321: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(761); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(248); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 322: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1038); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(75); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 323: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1036); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(147); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 324: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(165); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(1140); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 325: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1039); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(1142); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 326: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(170); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(181); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 327: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1152); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(1144); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 328: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1151); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(249); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 329: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(172); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(351); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 330: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1076); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(420); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 331: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1150); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(388); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 332: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(34); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(274); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 333: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1018); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(800); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 334: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1021); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1013); + if (lookahead == 'v') ADVANCE(771); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 335: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1075); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(481); + if (lookahead == 'i') ADVANCE(250); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 336: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1072); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'o') ADVANCE(271); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 337: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1086); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(458); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 338: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1088); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(781); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 339: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1078); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1062); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 340: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1060); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 341: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1067); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(179); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 342: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1084); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1037); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 343: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1063); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 344: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1085); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(184); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 345: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1052); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1176); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 346: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1063); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1175); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 347: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1055); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(186); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 348: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1079); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1100); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 349: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1087); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1174); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 350: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1077); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(42); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 351: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1081); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1042); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 352: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1045); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 353: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1083); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1099); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 354: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1113); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1096); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 355: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1062); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1110); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 356: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1090); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1112); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 357: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1069); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1102); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 358: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1048); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1106); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 359: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1111); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1091); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 360: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1091); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1108); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 361: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1080); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1095); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 362: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1060); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1109); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 363: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1076); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 364: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1068); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1087); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 365: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1070); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1079); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 366: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1015); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1103); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 367: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1064); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1111); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 368: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1016); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1101); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 369: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1022); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1105); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 370: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1019); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1090); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 371: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(1026); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1107); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 372: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(796); - if (lookahead == 'o') ADVANCE(594); - if (lookahead == 'r') ADVANCE(378); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1137); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 373: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(441); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1086); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 374: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(639); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1114); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 375: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(989); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1093); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 376: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(265); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1072); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 377: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(301); - if (lookahead == 'm') ADVANCE(231); - if (lookahead == 'u') ADVANCE(232); - if (lookahead == 'v') ADVANCE(755); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1135); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 378: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(442); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1115); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 379: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(697); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1104); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 380: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(861); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1084); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 381: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(443); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1113); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 382: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(844); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1092); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 383: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(444); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1094); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 384: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(251); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1039); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 385: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(851); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1088); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 386: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(309); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1040); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 387: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(445); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1046); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 388: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(446); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1043); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 389: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(447); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1050); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 390: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(866); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(817); + if (lookahead == 'o') ADVANCE(614); + if (lookahead == 'r') ADVANCE(396); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 391: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(448); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(459); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 392: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(563); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(659); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 393: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(271); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1011); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 394: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(783); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(281); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 395: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(449); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'm') ADVANCE(245); + if (lookahead == 'u') ADVANCE(246); + if (lookahead == 'v') ADVANCE(775); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 396: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(643); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(460); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 397: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(742); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(717); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 398: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(450); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(882); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 399: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(269); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(461); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 400: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(795); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(865); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 401: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(451); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(462); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 402: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(784); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(267); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 403: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(457); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(872); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 404: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(646); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(463); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 405: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(798); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(326); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 406: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(452); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(464); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 407: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(568); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(465); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 408: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(957); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(886); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 409: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(793); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(466); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 410: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(900); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(760); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 411: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(992); - if (lookahead == 'v') ADVANCE(756); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(320); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 412: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(688); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(467); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 413: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(862); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(663); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 414: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(192); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(582); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 415: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(993); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(804); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 416: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(689); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(468); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 417: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(864); - if (lookahead == 'i') ADVANCE(858); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(285); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 418: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(603); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(469); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 419: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(994); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(816); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 420: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(995); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(475); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 421: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(997); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(666); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 422: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(998); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(805); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 423: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(999); - if (lookahead == 'v') ADVANCE(756); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(470); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 424: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(833); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(819); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 425: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(820); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(587); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 426: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(692); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(979); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 427: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(743); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(814); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 428: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(275); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(922); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 429: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(285); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(928); + if (lookahead == 'v') ADVANCE(776); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 430: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(290); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(708); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 431: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(292); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(883); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 432: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(295); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(208); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 433: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(850); - if (lookahead == 'o') ADVANCE(622); - if (lookahead == 'r') ADVANCE(383); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1015); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 434: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(303); - if (lookahead == 'u') ADVANCE(239); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(709); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 435: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(698); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(885); + if (lookahead == 'i') ADVANCE(879); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 436: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'e') ADVANCE(304); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(623); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 437: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(453); - if (lookahead == 'm') ADVANCE(766); - if (lookahead == 'n') ADVANCE(259); - if (lookahead == 't') ADVANCE(374); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1016); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 438: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(453); - if (lookahead == 'm') ADVANCE(766); - if (lookahead == 'n') ADVANCE(259); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1017); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 439: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(453); - if (lookahead == 'm') ADVANCE(766); - if (lookahead == 'n') ADVANCE(260); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1019); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 440: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1093); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1020); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 441: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1100); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(1021); + if (lookahead == 'i') ADVANCE(928); + if (lookahead == 'v') ADVANCE(776); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 442: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1096); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(854); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 443: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1099); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(839); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 444: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1095); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(712); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 445: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1094); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(761); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 446: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1097); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(870); + if (lookahead == 'o') ADVANCE(642); + if (lookahead == 'r') ADVANCE(401); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 447: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1098); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'u') ADVANCE(253); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 448: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1104); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(291); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 449: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1103); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(293); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 450: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1109); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(303); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 451: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1105); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(308); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 452: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1110); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(310); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 453: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(206); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(313); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 454: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(968); - if (lookahead == 'l') ADVANCE(708); - if (lookahead == 's') ADVANCE(489); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'e') ADVANCE(718); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 455: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(510); - if (lookahead == 'i') ADVANCE(665); - if (lookahead == 'p') ADVANCE(213); - if (lookahead == 's') ADVANCE(434); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(471); + if (lookahead == 'm') ADVANCE(786); + if (lookahead == 'n') ADVANCE(275); + if (lookahead == 't') ADVANCE(392); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 456: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(510); - if (lookahead == 'i') ADVANCE(665); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(471); + if (lookahead == 'm') ADVANCE(786); + if (lookahead == 'n') ADVANCE(275); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 457: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(816); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(471); + if (lookahead == 'm') ADVANCE(786); + if (lookahead == 'n') ADVANCE(276); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 458: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(602); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1117); + if (lookahead == 'n') ADVANCE(393); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 459: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(975); - if (lookahead == 'l') ADVANCE(710); - if (lookahead == 's') ADVANCE(491); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1124); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 460: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(977); - if (lookahead == 'l') ADVANCE(711); - if (lookahead == 's') ADVANCE(492); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1120); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 461: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(979); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 's') ADVANCE(493); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1123); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 462: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(980); - if (lookahead == 'l') ADVANCE(726); - if (lookahead == 's') ADVANCE(494); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1119); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 463: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(503); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1118); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 464: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1185); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1121); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 465: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1184); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1122); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 466: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1183); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1128); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 467: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1025); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1127); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 468: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1211); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1133); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 469: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(1210); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1129); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 470: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(805); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 471: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(376); - if (lookahead == 'r') ADVANCE(180); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(222); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 472: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(376); - if (lookahead == 'r') ADVANCE(435); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(990); + if (lookahead == 'l') ADVANCE(726); + if (lookahead == 's') ADVANCE(508); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 473: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(354); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(532); + if (lookahead == 'i') ADVANCE(685); + if (lookahead == 'p') ADVANCE(229); + if (lookahead == 's') ADVANCE(447); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 474: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(359); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(532); + if (lookahead == 'i') ADVANCE(685); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 475: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(424); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(834); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 476: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(366); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(621); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 477: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(368); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(997); + if (lookahead == 'l') ADVANCE(729); + if (lookahead == 's') ADVANCE(510); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 478: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(818); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(999); + if (lookahead == 'l') ADVANCE(731); + if (lookahead == 's') ADVANCE(511); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 479: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'g') ADVANCE(840); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1001); + if (lookahead == 'l') ADVANCE(743); + if (lookahead == 's') ADVANCE(512); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 480: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(58); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1002); + if (lookahead == 'l') ADVANCE(745); + if (lookahead == 's') ADVANCE(513); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 481: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(171); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(522); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 482: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(60); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1209); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 483: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(1000); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1208); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 484: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(184); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1207); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 485: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(511); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1049); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 486: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(397); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1235); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 487: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(723); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(1234); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 488: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(725); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(826); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 489: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(735); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(394); + if (lookahead == 'r') ADVANCE(194); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 490: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(427); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(394); + if (lookahead == 'r') ADVANCE(454); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 491: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(737); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(372); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 492: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(738); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(377); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 493: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(740); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(442); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 494: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'h') ADVANCE(741); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(384); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 495: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(236); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(386); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 496: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(35); - if (lookahead == 'n') ADVANCE(759); - if (lookahead == 'o') ADVANCE(707); - if (lookahead == 't') ADVANCE(987); - if (lookahead == 'u') ADVANCE(636); - if (lookahead == 'v') ADVANCE(753); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(836); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 497: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(555); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'g') ADVANCE(861); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 498: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1160); - if (lookahead == 'v') ADVANCE(1172); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(66); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 499: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1159); - if (lookahead == 'v') ADVANCE(1171); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(185); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 500: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1158); - if (lookahead == 'v') ADVANCE(1170); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(68); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 501: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(907); - if (lookahead == 'r') ADVANCE(373); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(1022); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 502: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(245); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(198); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 503: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(667); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(529); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 504: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(800); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(410); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 505: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(241); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(727); + if (lookahead == 'o') ADVANCE(298); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 506: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(640); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(744); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 507: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(656); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(746); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 508: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(744); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(754); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 509: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(674); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(445); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 510: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(610); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(755); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 511: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(262); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(756); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 512: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(664); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(758); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 513: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(835); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'h') ADVANCE(759); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 514: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(838); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(250); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 515: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(825); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(43); + if (lookahead == 'n') ADVANCE(779); + if (lookahead == 'o') ADVANCE(730); + if (lookahead == 't') ADVANCE(1009); + if (lookahead == 'u') ADVANCE(656); + if (lookahead == 'v') ADVANCE(773); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 516: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(913); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(574); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 517: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(713); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1184); + if (lookahead == 'v') ADVANCE(1196); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 518: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(915); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1183); + if (lookahead == 'v') ADVANCE(1195); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 519: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(715); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1182); + if (lookahead == 'v') ADVANCE(1194); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 520: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(916); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(929); + if (lookahead == 'r') ADVANCE(391); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 521: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(917); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(260); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 522: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(722); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(687); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 523: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(918); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(821); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 524: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(919); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(255); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 525: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(832); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(660); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 526: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(920); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(762); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 527: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(727); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(676); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 528: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(921); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(693); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 529: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(922); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(278); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 530: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(923); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(684); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 531: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(924); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(856); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 532: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(925); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(629); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 533: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(927); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(859); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 534: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(928); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(845); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 535: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(929); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(936); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 536: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(930); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(733); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 537: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(931); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(938); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 538: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(932); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(735); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 539: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(933); - if (lookahead == 'o') ADVANCE(614); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(939); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 540: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(934); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(940); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 541: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(935); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(741); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 542: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(936); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(941); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 543: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(937); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(942); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 544: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(938); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(853); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 545: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(939); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(943); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 546: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(940); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(747); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 547: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(941); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(944); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 548: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(942); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(945); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 549: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(943); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(946); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 550: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(944); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(947); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 551: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(945); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(948); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 552: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(848); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(950); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 553: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(694); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(951); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 554: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(247); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(952); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 555: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'k') ADVANCE(1010); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(953); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 556: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'k') ADVANCE(1137); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(954); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 557: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'k') ADVANCE(865); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(955); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 558: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'k') ADVANCE(223); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(956); + if (lookahead == 'o') ADVANCE(636); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 559: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'k') ADVANCE(226); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(957); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 560: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1135); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(958); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 561: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1134); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(959); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 562: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1133); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(960); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 563: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1092); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(961); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 564: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1191); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(962); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 565: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1190); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(963); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 566: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1189); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(964); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 567: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1054); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(965); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 568: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1115); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(966); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 569: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1194); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(967); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 570: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1188); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(968); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 571: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1193); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(869); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 572: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1187); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(714); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 573: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1146); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(261); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 574: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1145); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'k') ADVANCE(1032); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 575: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1154); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'k') ADVANCE(1161); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 576: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1192); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'k') ADVANCE(887); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 577: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1186); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'k') ADVANCE(237); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 578: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1144); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'k') ADVANCE(240); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 579: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1153); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1159); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 580: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1182); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1158); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 581: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1181); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1157); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 582: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1180); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1116); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 583: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1149); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1215); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 584: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1219); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1214); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 585: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'l') ADVANCE(1213); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 586: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1148); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1078); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 587: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1218); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1139); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 588: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1212); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1218); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 589: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1147); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1212); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 590: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == 'l') ADVANCE(1217); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 591: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(1216); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1211); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 592: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(763); - if (lookahead == 'u') ADVANCE(952); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1170); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 593: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(855); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1169); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 594: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(270); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1178); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 595: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(704); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1216); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 596: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(216); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1210); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 597: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(965); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1168); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 598: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(508); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1177); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 599: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(981); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1206); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 600: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(772); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1205); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 601: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(706); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1204); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 602: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(505); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1173); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 603: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(512); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1243); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 604: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(719); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1237); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 605: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(564); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1172); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 606: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(565); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1242); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 607: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(566); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1236); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 608: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(211); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1171); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 609: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(600); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1241); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 610: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(334); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1240); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 611: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(358); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(783); + if (lookahead == 'u') ADVANCE(975); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 612: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(974); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(876); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 613: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(773); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(723); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 614: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(721); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(286); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 615: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(613); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(231); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 616: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(976); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(987); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 617: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(874); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(526); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 618: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(729); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1003); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 619: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(224); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(725); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 620: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(982); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(792); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 621: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(983); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(524); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 622: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(272); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(583); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 623: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(554); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(530); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 624: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(274); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(584); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 625: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(276); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(585); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 626: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(277); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(227); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 627: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(279); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(342); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 628: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(281); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(620); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 629: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(283); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(352); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 630: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(284); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(376); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 631: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(286); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(996); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 632: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(287); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(793); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 633: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(288); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(632); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 634: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(293); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(740); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 635: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(298); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(998); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 636: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(629); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(742); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 637: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'l') ADVANCE(635); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(895); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 638: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(183); - if (lookahead == 'v') ADVANCE(750); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(749); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 639: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(62); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(238); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 640: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(168); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1004); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 641: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1031); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(1005); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 642: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1176); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(288); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 643: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1220); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(573); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 644: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1033); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(292); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 645: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1032); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(294); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 646: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1222); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(295); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 647: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(1034); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(297); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 648: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(243); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(299); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 649: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(655); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(301); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 650: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(324); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(302); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 651: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(412); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(304); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 652: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(327); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(305); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 653: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(328); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(306); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 654: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(331); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(311); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 655: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(191); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(316); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 656: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(553); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(649); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 657: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(195); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'l') ADVANCE(655); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 658: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(198); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(197); + if (lookahead == 'v') ADVANCE(770); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 659: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(399); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(70); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 660: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(244); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(182); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 661: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(657); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1055); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 662: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(416); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1200); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 663: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(658); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1244); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 664: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(551); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1057); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 665: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(779); - if (lookahead == 'n') ADVANCE(267); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1056); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 666: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'm') ADVANCE(231); - if (lookahead == 'u') ADVANCE(233); - if (lookahead == 'v') ADVANCE(755); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1246); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 667: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(136); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(1058); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 668: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(1035); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(258); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 669: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(50); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(675); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 670: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(54); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(341); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 671: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(56); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(430); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 672: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(306); - if (lookahead == 'q') ADVANCE(806); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(345); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 673: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(986); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(346); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 674: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(556); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(349); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 675: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(464); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(207); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 676: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(185); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(572); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 677: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(307); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(210); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 678: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(465); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(213); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 679: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(557); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(417); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 680: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(308); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(259); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 681: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(466); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(677); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 682: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(473); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(434); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 683: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(310); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(678); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 684: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(777); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(570); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 685: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(468); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(799); + if (lookahead == 'n') ADVANCE(283); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 686: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(469); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'm') ADVANCE(245); + if (lookahead == 'u') ADVANCE(247); + if (lookahead == 'v') ADVANCE(775); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 687: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(910); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(146); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 688: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(951); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(1059); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 689: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(901); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(58); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 690: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(1005); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(62); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 691: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(474); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(64); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 692: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(914); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(1008); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 693: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(393); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(575); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 694: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(778); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'q') ADVANCE(827); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 695: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(268); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(482); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 696: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(662); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(199); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 697: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(289); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(483); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 698: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(294); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(576); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 699: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(958); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(324); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 700: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'n') ADVANCE(759); - if (lookahead == 'o') ADVANCE(707); - if (lookahead == 't') ADVANCE(987); - if (lookahead == 'u') ADVANCE(636); - if (lookahead == 'v') ADVANCE(753); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(484); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 701: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(280); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(325); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 702: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(990); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(491); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 703: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(946); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(797); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 704: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(782); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(327); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 705: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(649); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(486); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 706: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(860); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(487); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 707: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(902); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(933); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 708: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(675); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(973); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 709: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(238); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(923); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 710: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(678); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(1027); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 711: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(681); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(492); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 712: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(641); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(937); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 713: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(668); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(411); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 714: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(644); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(798); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 715: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(669); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(284); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 716: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(645); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(682); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 717: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(690); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(307); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 718: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(647); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(312); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 719: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(786); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(980); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 720: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(696); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'n') ADVANCE(779); + if (lookahead == 'o') ADVANCE(730); + if (lookahead == 't') ADVANCE(1009); + if (lookahead == 'u') ADVANCE(656); + if (lookahead == 'v') ADVANCE(773); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 721: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(787); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(1012); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 722: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(670); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(969); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 723: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(788); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(802); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 724: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(685); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(669); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 725: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(789); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(881); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 726: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(686); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(695); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 727: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(671); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(803); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 728: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(575); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(252); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 729: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(791); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(697); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 730: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(579); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(924); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 731: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(792); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(700); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 732: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(804); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(661); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 733: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(970); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(688); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 734: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(604); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(664); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 735: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(815); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(689); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 736: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(618); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(665); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 737: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(817); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(710); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 738: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(819); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(667); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 739: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(821); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(716); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 740: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(823); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(807); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 741: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(824); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(690); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 742: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(831); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(808); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 743: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(834); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(705); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 744: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(478); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(809); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 745: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(661); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(706); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 746: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(273); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(810); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 747: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(663); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(691); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 748: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(624); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(594); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 749: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(625); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(812); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 750: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(626); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(598); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 751: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(627); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(813); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 752: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(628); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(829); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 753: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(630); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(992); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 754: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(631); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(838); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 755: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(632); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(840); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 756: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(633); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(841); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 757: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(634); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(842); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 758: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(962); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(844); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 759: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(963); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(846); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 760: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'o') ADVANCE(964); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(852); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 761: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(189); - if (lookahead == 't') ADVANCE(497); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(855); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 762: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(48); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(496); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 763: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1058); - if (lookahead == 't') ADVANCE(1057); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(634); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 764: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1136); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(638); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 765: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(480); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(681); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 766: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(732); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(290); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 767: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(948); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(683); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 768: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(483); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(644); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 769: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(485); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(645); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 770: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(482); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(646); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 771: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(220); - if (lookahead == 'r') ADVANCE(398); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(647); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 772: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(584); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(648); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 773: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(587); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(650); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 774: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(425); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(651); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 775: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(371); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(652); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 776: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(912); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(653); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 777: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(971); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(654); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 778: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(972); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(984); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 779: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(739); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(985); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 780: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'q') ADVANCE(966); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'o') ADVANCE(986); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 781: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'q') ADVANCE(806); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(203); + if (lookahead == 't') ADVANCE(516); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 782: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1226); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(56); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 783: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(498); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1082); + if (lookahead == 't') ADVANCE(1081); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 784: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(46); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1160); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 785: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1050); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(498); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 786: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1229); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(752); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 787: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1228); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(501); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 788: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1046); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(503); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 789: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1044); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(927); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 790: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1056); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(500); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 791: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1224); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(234); + if (lookahead == 'r') ADVANCE(416); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 792: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1122); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(603); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 793: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1126); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(606); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 794: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1007); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(443); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 795: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(499); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(389); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 796: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(237); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(935); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 797: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1006); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(993); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 798: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(500); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(994); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 799: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1001); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(757); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 800: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(867); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'q') ADVANCE(988); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 801: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1002); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'q') ADVANCE(827); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 802: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1003); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1250); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 803: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(379); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1038); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 804: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(880); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(517); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 805: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(187); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(54); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 806: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(387); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1074); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 807: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(712); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1253); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 808: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(229); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1252); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 809: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(193); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1070); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 810: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(883); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1068); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 811: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(264); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1080); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 812: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(714); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1248); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 813: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(567); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1146); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 814: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(716); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1150); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 815: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(885); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1029); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 816: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(718); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(518); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 817: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(886); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(251); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 818: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(188); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1028); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 819: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(889); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(519); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 820: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(215); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1023); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 821: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(893); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(889); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 822: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(326); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1024); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 823: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(896); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1025); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 824: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(898); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(397); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 825: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(329); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(732); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 826: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(408); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(201); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 827: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(391); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(404); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 828: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(395); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(243); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 829: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(390); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(902); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 830: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(401); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(209); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 831: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(396); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(734); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 832: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(386); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(280); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 833: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(406); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(736); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 834: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(404); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(738); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 835: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(868); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(586); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 836: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(196); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(202); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 837: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(210); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(905); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 838: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(871); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(907); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 839: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(199); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(223); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 840: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(221); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(908); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 841: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(203); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(911); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 842: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(204); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(915); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 843: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(201); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(344); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 844: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(955); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(918); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 845: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(717); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(347); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 846: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(205); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(920); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 847: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(202); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(426); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 848: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(720); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(409); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 849: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(1008); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(412); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 850: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(246); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(408); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 851: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(297); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(418); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 852: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(960); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(413); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 853: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'r') ADVANCE(961); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(405); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 854: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1131); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(423); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 855: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1130); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(421); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 856: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1017); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(891); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 857: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1024); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(211); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 858: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(764); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(226); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 859: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(321); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(893); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 860: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(875); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(215); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 861: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(252); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(235); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 862: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(253); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(219); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 863: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(856); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(220); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 864: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(254); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(216); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 865: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(263); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(978); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 866: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(733); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(737); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 867: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(887); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(221); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 868: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(888); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(218); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 869: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(394); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(739); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 870: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(400); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(257); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 871: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(891); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(1030); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 872: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(405); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(315); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 873: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(895); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(982); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 874: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(332); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'r') ADVANCE(983); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 875: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(194); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1155); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 876: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(436); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1154); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 877: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1125); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1041); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 878: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1232); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1048); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 879: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1020); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(784); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 880: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1029); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(338); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 881: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1140); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(896); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 882: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1139); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(268); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 883: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(44); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(269); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 884: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1138); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(877); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 885: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1179); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(270); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 886: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1178); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(753); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 887: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1143); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(279); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 888: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1142); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(415); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 889: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1177); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(909); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 890: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1059); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(419); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 891: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1141); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(910); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 892: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1233); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(424); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 893: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1030); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(913); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 894: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1065); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(917); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 895: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(166); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(350); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 896: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1215); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(212); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 897: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1028); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(448); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 898: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1214); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(505); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 899: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1027); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1149); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 900: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1225); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1256); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 901: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(1128); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1044); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 902: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(282); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1053); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 903: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(746); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1164); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 904: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(701); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1163); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 905: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(481); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(52); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 906: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(506); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1162); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 907: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(322); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1203); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 908: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(507); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1202); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 909: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(323); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1167); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 910: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(794); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1166); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 911: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(250); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1201); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 912: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(402); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1083); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 913: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(325); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1165); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 914: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(802); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1257); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 915: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(330); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1054); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 916: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(335); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1089); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 917: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(336); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(180); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 918: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(337); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1239); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 919: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(338); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1052); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 920: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(339); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1238); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 921: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(340); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1051); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 922: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(341); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1249); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 923: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(342); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(1152); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 924: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(343); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(300); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 925: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(344); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(766); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 926: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(345); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(499); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 927: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(346); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(536); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 928: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(347); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(627); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 929: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(348); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(339); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 930: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(349); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(525); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 931: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(350); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(527); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 932: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(351); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(340); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 933: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(352); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(815); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 934: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(353); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(266); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 935: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(355); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(422); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 936: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(356); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(343); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 937: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(357); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(823); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 938: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(360); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(348); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 939: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(361); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(353); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 940: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(362); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(354); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 941: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(363); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(355); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 942: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(364); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(356); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 943: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(365); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(357); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 944: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(367); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(358); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 945: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(409); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(359); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 946: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(428); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(360); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 947: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(487); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(361); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 948: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(517); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(362); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 949: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(611); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(363); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 950: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(731); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(364); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 951: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(266); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(365); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 952: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(488); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(366); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 953: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(519); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(367); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 954: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(522); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(368); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 955: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(421); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(369); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 956: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(527); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(370); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 957: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(490); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(371); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 958: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(849); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(373); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 959: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(278); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(374); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 960: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(291); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(375); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 961: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(296); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(378); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 962: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(430); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(379); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 963: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(431); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(380); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 964: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(432); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(381); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 965: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(312); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(382); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 966: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(515); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(383); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 967: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(879); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(385); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 968: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(605); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(427); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 969: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(947); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(449); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 970: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(811); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(506); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 971: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(897); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(630); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 972: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(899); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(751); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 973: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(651); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(282); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 974: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(313); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(538); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 975: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(606); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(507); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 976: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(314); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(541); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 977: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(607); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(546); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 978: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(873); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(439); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 979: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(609); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(509); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 980: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(615); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(871); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 981: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(841); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(296); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 982: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(842); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(309); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 983: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(846); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(314); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 984: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(637); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(451); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 985: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'v') ADVANCE(467); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(452); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 986: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'v') ADVANCE(552); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(453); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 987: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'v') ADVANCE(757); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(329); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 988: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'w') ADVANCE(186); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(534); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 989: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'w') ADVANCE(302); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(901); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 990: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(1227); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(622); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 991: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(959); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(970); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 992: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(878); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(832); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 993: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(881); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(919); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 994: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(882); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(921); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 995: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(884); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(671); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 996: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(890); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(330); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 997: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(892); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(624); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 998: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(894); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(331); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 999: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'x') ADVANCE(911); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(625); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1000: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1023); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(894); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1001: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1230); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(628); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1002: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1231); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(633); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1003: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(1129); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(862); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1004: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(648); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(863); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1005: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(642); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(867); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1006: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(426); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(657); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1007: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(461); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'v') ADVANCE(485); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1008: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(462); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'v') ADVANCE(571); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1009: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'y') ADVANCE(660); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'v') ADVANCE(777); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1010: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'z') ADVANCE(623); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'w') ADVANCE(200); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1011: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'w') ADVANCE(319); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1012: ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(495); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(439); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(423); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(1251); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1013: ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(164); - if (lookahead == 'C') ADVANCE(501); - if (lookahead == 'D') ADVANCE(315); - if (lookahead == 'G') ADVANCE(169); - if (lookahead == 'N') ADVANCE(703); - if (lookahead == 'P') ADVANCE(175); - if (lookahead == 'R') ADVANCE(316); - if (lookahead == 'S') ADVANCE(638); - if (lookahead == 'T') ADVANCE(317); - if (lookahead == 'V') ADVANCE(372); - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 'b') ADVANCE(495); - if (lookahead == 'c') ADVANCE(177); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'g') ADVANCE(593); - if (lookahead == 'i') ADVANCE(439); - if (lookahead == 'l') ADVANCE(181); - if (lookahead == 'n') ADVANCE(178); - if (lookahead == 'p') ADVANCE(182); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(666); - if (lookahead == 't') ADVANCE(423); - if (lookahead == 'u') ADVANCE(859); - if (lookahead == 'v') ADVANCE(433); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(981); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1014: ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(900); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1015: - ACCEPT_TOKEN(anon_sym_BSLASHusepackage); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(903); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1016: - ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(904); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1017: - ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(906); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1018: - ACCEPT_TOKEN(anon_sym_BSLASHinclude); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(812); - if (lookahead == 'g') ADVANCE(837); - if (lookahead == 'i') ADVANCE(679); - if (lookahead == 's') ADVANCE(985); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(912); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1019: - ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(914); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1020: - ACCEPT_TOKEN(anon_sym_BSLASHinput); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(807); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(916); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1021: - ACCEPT_TOKEN(anon_sym_BSLASHsubfile); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(695); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'x') ADVANCE(934); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1022: - ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(1047); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1023: - ACCEPT_TOKEN(anon_sym_BSLASHbibliography); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(1254); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1024: - ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(1255); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1025: - ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(1153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1026: - ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(668); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1027: - ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(662); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1028: - ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(444); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1029: - ACCEPT_TOKEN(anon_sym_BSLASHimport); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(479); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1030: - ACCEPT_TOKEN(anon_sym_BSLASHsubimport); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(814); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(480); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1031: - ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'y') ADVANCE(680); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1032: - ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'z') ADVANCE(643); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1033); END_STATE(); case 1033: - ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1034: - ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(515); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(457); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(441); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 1035: - ACCEPT_TOKEN(anon_sym_BSLASHcaption); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == 'A') ADVANCE(178); + if (lookahead == 'C') ADVANCE(520); + if (lookahead == 'D') ADVANCE(332); + if (lookahead == 'G') ADVANCE(183); + if (lookahead == 'N') ADVANCE(722); + if (lookahead == 'P') ADVANCE(189); + if (lookahead == 'R') ADVANCE(333); + if (lookahead == 'S') ADVANCE(658); + if (lookahead == 'T') ADVANCE(334); + if (lookahead == 'V') ADVANCE(390); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'b') ADVANCE(514); + if (lookahead == 'c') ADVANCE(191); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'f') ADVANCE(720); + if (lookahead == 'g') ADVANCE(612); + if (lookahead == 'i') ADVANCE(457); + if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'p') ADVANCE(196); + if (lookahead == 'r') ADVANCE(337); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(441); + if (lookahead == 'u') ADVANCE(880); + if (lookahead == 'v') ADVANCE(446); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 1036: - ACCEPT_TOKEN(anon_sym_BSLASHcite); - if (lookahead == '*') ADVANCE(1037); - if (lookahead == 'a') ADVANCE(592); - if (lookahead == 'd') ADVANCE(227); - if (lookahead == 'p') ADVANCE(1041); - if (lookahead == 't') ADVANCE(1040); - if (lookahead == 'u') ADVANCE(813); - if (lookahead == 'y') ADVANCE(414); + ACCEPT_TOKEN(sym_command_name); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(153); END_STATE(); case 1037: - ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHtitle); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1038: - ACCEPT_TOKEN(anon_sym_BSLASHCite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'a') ADVANCE(969); + ACCEPT_TOKEN(anon_sym_BSLASHauthor); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1039: - ACCEPT_TOKEN(anon_sym_BSLASHnocite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHusepackage); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1040: - ACCEPT_TOKEN(anon_sym_BSLASHcitet); - if (lookahead == '*') ADVANCE(1042); - if (lookahead == 'e') ADVANCE(996); - if (lookahead == 'i') ADVANCE(949); + ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1041: - ACCEPT_TOKEN(anon_sym_BSLASHcitep); - if (lookahead == '*') ADVANCE(1043); + ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1042: - ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHinclude); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(831); + if (lookahead == 'g') ADVANCE(858); + if (lookahead == 'i') ADVANCE(698); + if (lookahead == 's') ADVANCE(1007); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1043: - ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1044: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); - if (lookahead == '*') ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_BSLASHinput); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(825); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1045: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHsubfile); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(715); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1046: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); - if (lookahead == '*') ADVANCE(1047); + ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHbibliography); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); - if (lookahead == '*') ADVANCE(1049); + ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear); - if (lookahead == '*') ADVANCE(1051); - if (lookahead == 'p') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate); - if (lookahead == '*') ADVANCE(1053); + ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHimport); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_BSLASHciteurl); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHsubimport); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(833); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_BSLASHfullcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_BSLASHcitealt); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_BSLASHcitealp); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_BSLASHcitetext); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcaption); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_BSLASHparencite); + ACCEPT_TOKEN(anon_sym_BSLASHcite); if (lookahead == '*') ADVANCE(1061); + if (lookahead == 'a') ADVANCE(611); + if (lookahead == 'd') ADVANCE(241); + if (lookahead == 'p') ADVANCE(1065); + if (lookahead == 't') ADVANCE(1064); + if (lookahead == 'u') ADVANCE(835); + if (lookahead == 'y') ADVANCE(432); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_BSLASHParencite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHCite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'a') ADVANCE(991); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_BSLASHfootcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 't') ADVANCE(422); + ACCEPT_TOKEN(anon_sym_BSLASHnocite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitet); + if (lookahead == '*') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(1018); + if (lookahead == 'i') ADVANCE(971); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitep); + if (lookahead == '*') ADVANCE(1067); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_BSLASHtextcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_BSLASHTextcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); + if (lookahead == '*') ADVANCE(1069); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_BSLASHsupercite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); + if (lookahead == '*') ADVANCE(1071); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_BSLASHautocite); - if (lookahead == '*') ADVANCE(1073); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite); - if (lookahead == '*') ADVANCE(1074); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); + if (lookahead == '*') ADVANCE(1073); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); - END_STATE(); - case 1075: - ACCEPT_TOKEN(anon_sym_BSLASHvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHciteyear); + if (lookahead == '*') ADVANCE(1075); + if (lookahead == 'p') ADVANCE(214); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1075: + ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_BSLASHVolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate); + if (lookahead == '*') ADVANCE(1077); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHciteurl); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHfullcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitealt); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitealp); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHcitetext); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHparencite); + if (lookahead == '*') ADVANCE(1085); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_BSLASHavolcite); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); END_STATE(); case 1086: - ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHParencite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_BSLASHnotecite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHfootcite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 't') ADVANCE(440); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_BSLASHNotecite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHtextcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHTextcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_BSLASHlabel); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(771); + ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_BSLASHref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_BSLASHeqref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHsupercite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_BSLASHvref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHautocite); + if (lookahead == '*') ADVANCE(1097); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_BSLASHVref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite); + if (lookahead == '*') ADVANCE(1098); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_BSLASHautoref); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_BSLASHpageref); - if (lookahead == '*') ADVANCE(143); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); END_STATE(); case 1099: - ACCEPT_TOKEN(anon_sym_BSLASHcref); - if (lookahead == '*') ADVANCE(1101); - if (lookahead == 'r') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_BSLASHvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1100: - ACCEPT_TOKEN(anon_sym_BSLASHCref); - if (lookahead == '*') ADVANCE(1102); - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_BSLASHVolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1101: - ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1102: - ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1103: - ACCEPT_TOKEN(anon_sym_BSLASHnamecref); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1106); + ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1104: - ACCEPT_TOKEN(anon_sym_BSLASHnameCref); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1107); + ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1105: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(1108); + ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1106: - ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1107: - ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1108: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1109: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHavolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); - if (lookahead == '*') ADVANCE(1112); + ACCEPT_TOKEN(anon_sym_BSLASHnotecite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHNotecite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); - if (lookahead == '*') ADVANCE(1114); + ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); - END_STATE(); - case 1115: - ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); - if (lookahead == '*') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1115: + ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); - if (lookahead == '*') ADVANCE(1117); + ACCEPT_TOKEN(anon_sym_BSLASHlabel); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(791); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); - if (lookahead == '*') ADVANCE(1119); + ACCEPT_TOKEN(anon_sym_BSLASHeqref); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHvref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); - if (lookahead == '*') ADVANCE(1121); + ACCEPT_TOKEN(anon_sym_BSLASHVref); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHautoref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); - if (lookahead == '*') ADVANCE(1123); + ACCEPT_TOKEN(anon_sym_BSLASHpageref); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHcref); + if (lookahead == '*') ADVANCE(1125); + if (lookahead == 'r') ADVANCE(230); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_BSLASHdef); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(693); + ACCEPT_TOKEN(anon_sym_BSLASHCref); + if (lookahead == '*') ADVANCE(1126); + if (lookahead == 'r') ADVANCE(204); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 1125: + ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); + END_STATE(); + case 1126: + ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); + END_STATE(); + case 1127: + ACCEPT_TOKEN(anon_sym_BSLASHnamecref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1130); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1128: + ACCEPT_TOKEN(anon_sym_BSLASHnameCref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1131); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1129: + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(1132); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1130: + ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1131: + ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1132: + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1133: + ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1134: + ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1135: + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); + if (lookahead == '*') ADVANCE(1136); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1136: + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); + END_STATE(); + case 1137: + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); + if (lookahead == '*') ADVANCE(1138); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1138: + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); + END_STATE(); + case 1139: + ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); + if (lookahead == '*') ADVANCE(153); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1140: + ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); + if (lookahead == '*') ADVANCE(1141); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1141: + ACCEPT_TOKEN(anon_sym_BSLASHnewcommand_STAR); + END_STATE(); + case 1142: + ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); + if (lookahead == '*') ADVANCE(1143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1143: + ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand_STAR); + END_STATE(); + case 1144: + ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); + if (lookahead == '*') ADVANCE(1145); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1145: + ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand_STAR); + END_STATE(); + case 1146: + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1147: + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); + END_STATE(); + case 1148: + ACCEPT_TOKEN(anon_sym_BSLASHdef); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(713); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1149: ACCEPT_TOKEN(anon_sym_BSLASHlet); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1126: + case 1150: ACCEPT_TOKEN(anon_sym_BSLASHDeclarePairedDelimiter); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'X') ADVANCE(1127); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'X') ADVANCE(1151); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1127: + case 1151: ACCEPT_TOKEN(anon_sym_BSLASHDeclarePairedDelimiterX); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1128: + case 1152: ACCEPT_TOKEN(anon_sym_BSLASHnewenvironment); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1129: + case 1153: ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1130: + case 1154: ACCEPT_TOKEN(anon_sym_BSLASHgls); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(417); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'f') ADVANCE(514); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'n') ADVANCE(225); - if (lookahead == 'p') ADVANCE(562); - if (lookahead == 's') ADVANCE(1009); - if (lookahead == 't') ADVANCE(420); - if (lookahead == 'u') ADVANCE(872); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(435); + if (lookahead == 'e') ADVANCE(719); + if (lookahead == 'f') ADVANCE(533); + if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'n') ADVANCE(239); + if (lookahead == 'p') ADVANCE(581); + if (lookahead == 's') ADVANCE(1031); + if (lookahead == 't') ADVANCE(438); + if (lookahead == 'u') ADVANCE(892); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1131: + case 1155: ACCEPT_TOKEN(anon_sym_BSLASHGls); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(413); - if (lookahead == 'e') ADVANCE(687); - if (lookahead == 'f') ADVANCE(513); - if (lookahead == 'n') ADVANCE(222); - if (lookahead == 'p') ADVANCE(561); - if (lookahead == 's') ADVANCE(1004); - if (lookahead == 't') ADVANCE(419); - if (lookahead == 'u') ADVANCE(870); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(431); + if (lookahead == 'e') ADVANCE(707); + if (lookahead == 'f') ADVANCE(531); + if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'p') ADVANCE(580); + if (lookahead == 's') ADVANCE(1026); + if (lookahead == 't') ADVANCE(437); + if (lookahead == 'u') ADVANCE(890); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1132: + case 1156: ACCEPT_TOKEN(anon_sym_BSLASHGLS); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'd') ADVANCE(380); - if (lookahead == 'f') ADVANCE(504); - if (lookahead == 'n') ADVANCE(217); - if (lookahead == 'p') ADVANCE(560); - if (lookahead == 't') ADVANCE(415); - if (lookahead == 'u') ADVANCE(869); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'd') ADVANCE(398); + if (lookahead == 'f') ADVANCE(523); + if (lookahead == 'n') ADVANCE(232); + if (lookahead == 'p') ADVANCE(579); + if (lookahead == 't') ADVANCE(433); + if (lookahead == 'u') ADVANCE(888); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1133: + case 1157: ACCEPT_TOKEN(anon_sym_BSLASHglspl); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(839); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(860); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1134: + case 1158: ACCEPT_TOKEN(anon_sym_BSLASHGlspl); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(836); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(857); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1135: + case 1159: ACCEPT_TOKEN(anon_sym_BSLASHGLSpl); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'u') ADVANCE(809); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'u') ADVANCE(830); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1136: + case 1160: ACCEPT_TOKEN(anon_sym_BSLASHglsdisp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1137: + case 1161: ACCEPT_TOKEN(anon_sym_BSLASHglslink); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1138: + case 1162: ACCEPT_TOKEN(anon_sym_BSLASHglstext); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1139: + case 1163: ACCEPT_TOKEN(anon_sym_BSLASHGlstext); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1140: + case 1164: ACCEPT_TOKEN(anon_sym_BSLASHGLStext); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1141: + case 1165: ACCEPT_TOKEN(anon_sym_BSLASHglsfirst); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(621); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(641); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1142: + case 1166: ACCEPT_TOKEN(anon_sym_BSLASHGlsfirst); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(620); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(640); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1143: + case 1167: ACCEPT_TOKEN(anon_sym_BSLASHGLSfirst); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(599); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(618); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1144: + case 1168: ACCEPT_TOKEN(anon_sym_BSLASHglsplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1145: + case 1169: ACCEPT_TOKEN(anon_sym_BSLASHGlsplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1146: + case 1170: ACCEPT_TOKEN(anon_sym_BSLASHGLSplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1147: + case 1171: ACCEPT_TOKEN(anon_sym_BSLASHglsfirstplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1148: + case 1172: ACCEPT_TOKEN(anon_sym_BSLASHGlsfirstplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1149: + case 1173: ACCEPT_TOKEN(anon_sym_BSLASHGLSfirstplural); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1150: + case 1174: ACCEPT_TOKEN(anon_sym_BSLASHglsname); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1151: + case 1175: ACCEPT_TOKEN(anon_sym_BSLASHGlsname); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1152: + case 1176: ACCEPT_TOKEN(anon_sym_BSLASHGLSname); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1153: + case 1177: ACCEPT_TOKEN(anon_sym_BSLASHglssymbol); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1154: + case 1178: ACCEPT_TOKEN(anon_sym_BSLASHGlssymbol); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1155: + case 1179: ACCEPT_TOKEN(anon_sym_BSLASHglsdesc); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1156: + case 1180: ACCEPT_TOKEN(anon_sym_BSLASHGlsdesc); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1157: + case 1181: ACCEPT_TOKEN(anon_sym_BSLASHGLSdesc); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1158: + case 1182: ACCEPT_TOKEN(anon_sym_BSLASHglsuseri); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1161); - if (lookahead == 'v') ADVANCE(1167); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1185); + if (lookahead == 'v') ADVANCE(1191); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1159: + case 1183: ACCEPT_TOKEN(anon_sym_BSLASHGlsuseri); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1162); - if (lookahead == 'v') ADVANCE(1168); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1186); + if (lookahead == 'v') ADVANCE(1192); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1160: + case 1184: ACCEPT_TOKEN(anon_sym_BSLASHGLSuseri); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1163); - if (lookahead == 'v') ADVANCE(1169); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1187); + if (lookahead == 'v') ADVANCE(1193); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1161: + case 1185: ACCEPT_TOKEN(anon_sym_BSLASHglsuserii); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1164); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1188); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1162: + case 1186: ACCEPT_TOKEN(anon_sym_BSLASHGlsuserii); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1165); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1189); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1163: + case 1187: ACCEPT_TOKEN(anon_sym_BSLASHGLSuserii); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1166); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1190); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1164: + case 1188: ACCEPT_TOKEN(anon_sym_BSLASHglsuseriii); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1165: + case 1189: ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriii); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1166: + case 1190: ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriii); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1167: + case 1191: ACCEPT_TOKEN(anon_sym_BSLASHglsuseriv); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1168: + case 1192: ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriv); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1169: + case 1193: ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriv); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1170: + case 1194: ACCEPT_TOKEN(anon_sym_BSLASHglsuserv); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1173); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1197); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1171: + case 1195: ACCEPT_TOKEN(anon_sym_BSLASHGlsuserv); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1174); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1198); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1172: + case 1196: ACCEPT_TOKEN(anon_sym_BSLASHGLSuserv); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'i') ADVANCE(1175); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'i') ADVANCE(1199); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1173: + case 1197: ACCEPT_TOKEN(anon_sym_BSLASHglsuservi); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1174: + case 1198: ACCEPT_TOKEN(anon_sym_BSLASHGlsuservi); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1175: + case 1199: ACCEPT_TOKEN(anon_sym_BSLASHGLSuservi); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1176: + case 1200: ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1177: + case 1201: ACCEPT_TOKEN(anon_sym_BSLASHacrshort); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(582); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(601); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1178: + case 1202: ACCEPT_TOKEN(anon_sym_BSLASHAcrshort); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(581); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(600); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1179: + case 1203: ACCEPT_TOKEN(anon_sym_BSLASHACRshort); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(580); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(599); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1180: + case 1204: ACCEPT_TOKEN(anon_sym_BSLASHacrshortpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1181: + case 1205: ACCEPT_TOKEN(anon_sym_BSLASHAcrshortpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1182: + case 1206: ACCEPT_TOKEN(anon_sym_BSLASHACRshortpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1183: + case 1207: ACCEPT_TOKEN(anon_sym_BSLASHacrlong); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(577); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(596); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1184: + case 1208: ACCEPT_TOKEN(anon_sym_BSLASHAcrlong); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(572); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(591); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1185: + case 1209: ACCEPT_TOKEN(anon_sym_BSLASHACRlong); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(570); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(589); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1186: + case 1210: ACCEPT_TOKEN(anon_sym_BSLASHacrlongpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1187: + case 1211: ACCEPT_TOKEN(anon_sym_BSLASHAcrlongpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1188: + case 1212: ACCEPT_TOKEN(anon_sym_BSLASHACRlongpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1189: + case 1213: ACCEPT_TOKEN(anon_sym_BSLASHacrfull); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(576); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(595); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1190: + case 1214: ACCEPT_TOKEN(anon_sym_BSLASHAcrfull); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(571); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(590); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1191: + case 1215: ACCEPT_TOKEN(anon_sym_BSLASHACRfull); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(569); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(588); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1192: + case 1216: ACCEPT_TOKEN(anon_sym_BSLASHacrfullpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1193: + case 1217: ACCEPT_TOKEN(anon_sym_BSLASHAcrfullpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1194: + case 1218: ACCEPT_TOKEN(anon_sym_BSLASHACRfullpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1195: + case 1219: ACCEPT_TOKEN(anon_sym_BSLASHacs); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1197); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1221); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1196: + case 1220: ACCEPT_TOKEN(anon_sym_BSLASHAcs); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1198); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1222); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1197: + case 1221: ACCEPT_TOKEN(anon_sym_BSLASHacsp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1198: + case 1222: ACCEPT_TOKEN(anon_sym_BSLASHAcsp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1199: + case 1223: ACCEPT_TOKEN(anon_sym_BSLASHacl); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1201); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1225); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1200: + case 1224: ACCEPT_TOKEN(anon_sym_BSLASHAcl); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1202); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1226); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1201: + case 1225: ACCEPT_TOKEN(anon_sym_BSLASHaclp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1202: + case 1226: ACCEPT_TOKEN(anon_sym_BSLASHAclp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1203: + case 1227: ACCEPT_TOKEN(anon_sym_BSLASHacf); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1205); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1229); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1204: + case 1228: ACCEPT_TOKEN(anon_sym_BSLASHAcf); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(1206); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(1230); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1205: + case 1229: ACCEPT_TOKEN(anon_sym_BSLASHacfp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1206: + case 1230: ACCEPT_TOKEN(anon_sym_BSLASHAcfp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1207: + case 1231: ACCEPT_TOKEN(anon_sym_BSLASHac); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1203); - if (lookahead == 'l') ADVANCE(1199); - if (lookahead == 'p') ADVANCE(1209); - if (lookahead == 'r') ADVANCE(460); - if (lookahead == 's') ADVANCE(1195); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1227); + if (lookahead == 'l') ADVANCE(1223); + if (lookahead == 'p') ADVANCE(1233); + if (lookahead == 'r') ADVANCE(478); + if (lookahead == 's') ADVANCE(1219); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1208: + case 1232: ACCEPT_TOKEN(anon_sym_BSLASHAc); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'f') ADVANCE(1204); - if (lookahead == 'l') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(459); - if (lookahead == 's') ADVANCE(1196); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1228); + if (lookahead == 'l') ADVANCE(1224); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 's') ADVANCE(1220); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1209: + case 1233: ACCEPT_TOKEN(anon_sym_BSLASHacp); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1210: + case 1234: ACCEPT_TOKEN(anon_sym_BSLASHglsentrylong); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(588); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(607); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1211: + case 1235: ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylong); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(585); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(604); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1212: + case 1236: ACCEPT_TOKEN(anon_sym_BSLASHglsentrylongpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1213: + case 1237: ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylongpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1214: + case 1238: ACCEPT_TOKEN(anon_sym_BSLASHglsentryshort); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(591); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(610); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1215: + case 1239: ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshort); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'p') ADVANCE(590); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'p') ADVANCE(609); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1216: + case 1240: ACCEPT_TOKEN(anon_sym_BSLASHglsentryshortpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1217: + case 1241: ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshortpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1218: + case 1242: ACCEPT_TOKEN(anon_sym_BSLASHglsentryfullpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1219: + case 1243: ACCEPT_TOKEN(anon_sym_BSLASHGlsentryfullpl); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1220: + case 1244: ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); - if (lookahead == '*') ADVANCE(1221); + if (lookahead == '*') ADVANCE(1245); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1221: + case 1245: ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem_STAR); END_STATE(); - case 1222: + case 1246: ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); - if (lookahead == '*') ADVANCE(1223); + if (lookahead == '*') ADVANCE(1247); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1223: + case 1247: ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem_STAR); END_STATE(); - case 1224: + case 1248: ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 's') ADVANCE(410); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 's') ADVANCE(428); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1225: + case 1249: ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1226: + case 1250: ACCEPT_TOKEN(anon_sym_BSLASHcolor); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'b') ADVANCE(702); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'b') ADVANCE(721); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1227: + case 1251: ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1228: + case 1252: ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1229: + case 1253: ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1230: + case 1254: ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1231: + case 1255: ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1232: + case 1256: ACCEPT_TOKEN(anon_sym_BSLASHtext); - if (lookahead == '*') ADVANCE(143); - if (lookahead == 'c') ADVANCE(539); + if (lookahead == '*') ADVANCE(153); + if (lookahead == 'c') ADVANCE(558); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1233: + case 1257: ACCEPT_TOKEN(anon_sym_BSLASHintertext); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 1234: + case 1258: ACCEPT_TOKEN(anon_sym_shortintertext); - if (!sym_word_character_set_1(lookahead)) ADVANCE(111); + if (!sym_word_character_set_1(lookahead)) ADVANCE(121); END_STATE(); default: return false; @@ -15301,234 +15773,234 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 23}, - [2] = {.lex_state = 24}, - [3] = {.lex_state = 25}, - [4] = {.lex_state = 25}, - [5] = {.lex_state = 24}, - [6] = {.lex_state = 5}, + [1] = {.lex_state = 31}, + [2] = {.lex_state = 1}, + [3] = {.lex_state = 33}, + [4] = {.lex_state = 32}, + [5] = {.lex_state = 33}, + [6] = {.lex_state = 32}, [7] = {.lex_state = 1}, - [8] = {.lex_state = 5}, - [9] = {.lex_state = 25}, - [10] = {.lex_state = 5}, - [11] = {.lex_state = 2}, - [12] = {.lex_state = 5}, - [13] = {.lex_state = 5}, - [14] = {.lex_state = 23}, + [8] = {.lex_state = 7}, + [9] = {.lex_state = 7}, + [10] = {.lex_state = 33}, + [11] = {.lex_state = 6}, + [12] = {.lex_state = 6}, + [13] = {.lex_state = 2}, + [14] = {.lex_state = 6}, [15] = {.lex_state = 6}, - [16] = {.lex_state = 1}, - [17] = {.lex_state = 3}, - [18] = {.lex_state = 3}, - [19] = {.lex_state = 2}, - [20] = {.lex_state = 5}, - [21] = {.lex_state = 5}, - [22] = {.lex_state = 24}, - [23] = {.lex_state = 7}, - [24] = {.lex_state = 5}, - [25] = {.lex_state = 5}, - [26] = {.lex_state = 2}, - [27] = {.lex_state = 5}, - [28] = {.lex_state = 25}, - [29] = {.lex_state = 25}, - [30] = {.lex_state = 5}, - [31] = {.lex_state = 2}, - [32] = {.lex_state = 5}, + [16] = {.lex_state = 2}, + [17] = {.lex_state = 33}, + [18] = {.lex_state = 32}, + [19] = {.lex_state = 33}, + [20] = {.lex_state = 6}, + [21] = {.lex_state = 32}, + [22] = {.lex_state = 32}, + [23] = {.lex_state = 33}, + [24] = {.lex_state = 6}, + [25] = {.lex_state = 2}, + [26] = {.lex_state = 6}, + [27] = {.lex_state = 32}, + [28] = {.lex_state = 6}, + [29] = {.lex_state = 31}, + [30] = {.lex_state = 6}, + [31] = {.lex_state = 11}, + [32] = {.lex_state = 10}, [33] = {.lex_state = 6}, - [34] = {.lex_state = 7}, - [35] = {.lex_state = 24}, - [36] = {.lex_state = 25}, - [37] = {.lex_state = 24}, - [38] = {.lex_state = 24}, - [39] = {.lex_state = 25}, - [40] = {.lex_state = 25}, - [41] = {.lex_state = 25}, - [42] = {.lex_state = 25}, - [43] = {.lex_state = 24}, - [44] = {.lex_state = 23}, - [45] = {.lex_state = 25}, - [46] = {.lex_state = 24}, - [47] = {.lex_state = 23}, - [48] = {.lex_state = 4}, - [49] = {.lex_state = 24}, - [50] = {.lex_state = 4}, - [51] = {.lex_state = 25}, - [52] = {.lex_state = 24}, - [53] = {.lex_state = 23}, - [54] = {.lex_state = 4}, - [55] = {.lex_state = 25}, - [56] = {.lex_state = 24}, - [57] = {.lex_state = 23}, - [58] = {.lex_state = 25}, - [59] = {.lex_state = 24}, - [60] = {.lex_state = 24}, - [61] = {.lex_state = 23}, - [62] = {.lex_state = 24}, - [63] = {.lex_state = 25}, - [64] = {.lex_state = 24}, - [65] = {.lex_state = 23}, - [66] = {.lex_state = 4}, - [67] = {.lex_state = 25}, - [68] = {.lex_state = 23}, - [69] = {.lex_state = 24}, - [70] = {.lex_state = 24}, - [71] = {.lex_state = 24}, - [72] = {.lex_state = 4}, - [73] = {.lex_state = 23}, - [74] = {.lex_state = 23}, - [75] = {.lex_state = 25}, - [76] = {.lex_state = 25}, - [77] = {.lex_state = 4}, - [78] = {.lex_state = 24}, - [79] = {.lex_state = 25}, - [80] = {.lex_state = 25}, - [81] = {.lex_state = 4}, - [82] = {.lex_state = 24}, - [83] = {.lex_state = 23}, - [84] = {.lex_state = 24}, - [85] = {.lex_state = 24}, - [86] = {.lex_state = 25}, - [87] = {.lex_state = 23}, - [88] = {.lex_state = 25}, - [89] = {.lex_state = 25}, - [90] = {.lex_state = 24}, - [91] = {.lex_state = 24}, - [92] = {.lex_state = 23}, - [93] = {.lex_state = 23}, - [94] = {.lex_state = 24}, - [95] = {.lex_state = 4}, - [96] = {.lex_state = 4}, - [97] = {.lex_state = 25}, - [98] = {.lex_state = 23}, - [99] = {.lex_state = 25}, - [100] = {.lex_state = 4}, - [101] = {.lex_state = 25}, - [102] = {.lex_state = 24}, - [103] = {.lex_state = 23}, - [104] = {.lex_state = 24}, - [105] = {.lex_state = 4}, - [106] = {.lex_state = 23}, - [107] = {.lex_state = 25}, - [108] = {.lex_state = 25}, - [109] = {.lex_state = 24}, - [110] = {.lex_state = 24}, - [111] = {.lex_state = 25}, - [112] = {.lex_state = 24}, - [113] = {.lex_state = 25}, - [114] = {.lex_state = 4}, - [115] = {.lex_state = 4}, - [116] = {.lex_state = 4}, - [117] = {.lex_state = 5}, - [118] = {.lex_state = 23}, - [119] = {.lex_state = 25}, - [120] = {.lex_state = 4}, - [121] = {.lex_state = 24}, - [122] = {.lex_state = 23}, - [123] = {.lex_state = 23}, - [124] = {.lex_state = 4}, - [125] = {.lex_state = 24}, - [126] = {.lex_state = 24}, - [127] = {.lex_state = 25}, - [128] = {.lex_state = 4}, + [34] = {.lex_state = 2}, + [35] = {.lex_state = 3}, + [36] = {.lex_state = 6}, + [37] = {.lex_state = 3}, + [38] = {.lex_state = 4}, + [39] = {.lex_state = 11}, + [40] = {.lex_state = 10}, + [41] = {.lex_state = 6}, + [42] = {.lex_state = 4}, + [43] = {.lex_state = 5}, + [44] = {.lex_state = 31}, + [45] = {.lex_state = 33}, + [46] = {.lex_state = 6}, + [47] = {.lex_state = 31}, + [48] = {.lex_state = 32}, + [49] = {.lex_state = 5}, + [50] = {.lex_state = 32}, + [51] = {.lex_state = 33}, + [52] = {.lex_state = 32}, + [53] = {.lex_state = 33}, + [54] = {.lex_state = 33}, + [55] = {.lex_state = 32}, + [56] = {.lex_state = 31}, + [57] = {.lex_state = 33}, + [58] = {.lex_state = 32}, + [59] = {.lex_state = 5}, + [60] = {.lex_state = 5}, + [61] = {.lex_state = 32}, + [62] = {.lex_state = 32}, + [63] = {.lex_state = 32}, + [64] = {.lex_state = 32}, + [65] = {.lex_state = 31}, + [66] = {.lex_state = 33}, + [67] = {.lex_state = 31}, + [68] = {.lex_state = 5}, + [69] = {.lex_state = 5}, + [70] = {.lex_state = 32}, + [71] = {.lex_state = 33}, + [72] = {.lex_state = 31}, + [73] = {.lex_state = 32}, + [74] = {.lex_state = 33}, + [75] = {.lex_state = 31}, + [76] = {.lex_state = 32}, + [77] = {.lex_state = 33}, + [78] = {.lex_state = 31}, + [79] = {.lex_state = 32}, + [80] = {.lex_state = 31}, + [81] = {.lex_state = 33}, + [82] = {.lex_state = 32}, + [83] = {.lex_state = 33}, + [84] = {.lex_state = 32}, + [85] = {.lex_state = 5}, + [86] = {.lex_state = 5}, + [87] = {.lex_state = 31}, + [88] = {.lex_state = 32}, + [89] = {.lex_state = 33}, + [90] = {.lex_state = 33}, + [91] = {.lex_state = 31}, + [92] = {.lex_state = 33}, + [93] = {.lex_state = 32}, + [94] = {.lex_state = 5}, + [95] = {.lex_state = 31}, + [96] = {.lex_state = 33}, + [97] = {.lex_state = 33}, + [98] = {.lex_state = 32}, + [99] = {.lex_state = 32}, + [100] = {.lex_state = 5}, + [101] = {.lex_state = 33}, + [102] = {.lex_state = 32}, + [103] = {.lex_state = 5}, + [104] = {.lex_state = 31}, + [105] = {.lex_state = 32}, + [106] = {.lex_state = 31}, + [107] = {.lex_state = 33}, + [108] = {.lex_state = 32}, + [109] = {.lex_state = 5}, + [110] = {.lex_state = 33}, + [111] = {.lex_state = 31}, + [112] = {.lex_state = 33}, + [113] = {.lex_state = 5}, + [114] = {.lex_state = 33}, + [115] = {.lex_state = 32}, + [116] = {.lex_state = 33}, + [117] = {.lex_state = 31}, + [118] = {.lex_state = 33}, + [119] = {.lex_state = 31}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 5}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 32}, + [124] = {.lex_state = 32}, + [125] = {.lex_state = 31}, + [126] = {.lex_state = 33}, + [127] = {.lex_state = 33}, + [128] = {.lex_state = 31}, [129] = {.lex_state = 5}, - [130] = {.lex_state = 5}, - [131] = {.lex_state = 25}, - [132] = {.lex_state = 23}, - [133] = {.lex_state = 23}, - [134] = {.lex_state = 4}, - [135] = {.lex_state = 5}, - [136] = {.lex_state = 25}, - [137] = {.lex_state = 25}, - [138] = {.lex_state = 24}, - [139] = {.lex_state = 4}, - [140] = {.lex_state = 24}, - [141] = {.lex_state = 5}, - [142] = {.lex_state = 23}, - [143] = {.lex_state = 23}, - [144] = {.lex_state = 25}, - [145] = {.lex_state = 24}, - [146] = {.lex_state = 5}, - [147] = {.lex_state = 24}, - [148] = {.lex_state = 4}, - [149] = {.lex_state = 5}, - [150] = {.lex_state = 25}, - [151] = {.lex_state = 4}, - [152] = {.lex_state = 23}, - [153] = {.lex_state = 23}, - [154] = {.lex_state = 25}, - [155] = {.lex_state = 24}, - [156] = {.lex_state = 25}, - [157] = {.lex_state = 24}, - [158] = {.lex_state = 5}, - [159] = {.lex_state = 5}, - [160] = {.lex_state = 4}, - [161] = {.lex_state = 4}, - [162] = {.lex_state = 23}, - [163] = {.lex_state = 23}, - [164] = {.lex_state = 25}, - [165] = {.lex_state = 5}, - [166] = {.lex_state = 24}, - [167] = {.lex_state = 4}, - [168] = {.lex_state = 4}, - [169] = {.lex_state = 5}, - [170] = {.lex_state = 25}, - [171] = {.lex_state = 24}, - [172] = {.lex_state = 23}, - [173] = {.lex_state = 23}, - [174] = {.lex_state = 25}, - [175] = {.lex_state = 5}, - [176] = {.lex_state = 5}, - [177] = {.lex_state = 25}, - [178] = {.lex_state = 24}, - [179] = {.lex_state = 24}, - [180] = {.lex_state = 4}, - [181] = {.lex_state = 4}, - [182] = {.lex_state = 23}, - [183] = {.lex_state = 23}, - [184] = {.lex_state = 25}, - [185] = {.lex_state = 5}, - [186] = {.lex_state = 25}, - [187] = {.lex_state = 5}, - [188] = {.lex_state = 4}, - [189] = {.lex_state = 24}, - [190] = {.lex_state = 4}, - [191] = {.lex_state = 24}, - [192] = {.lex_state = 23}, - [193] = {.lex_state = 23}, - [194] = {.lex_state = 23}, - [195] = {.lex_state = 24}, - [196] = {.lex_state = 4}, - [197] = {.lex_state = 5}, + [130] = {.lex_state = 32}, + [131] = {.lex_state = 33}, + [132] = {.lex_state = 32}, + [133] = {.lex_state = 33}, + [134] = {.lex_state = 31}, + [135] = {.lex_state = 31}, + [136] = {.lex_state = 5}, + [137] = {.lex_state = 5}, + [138] = {.lex_state = 33}, + [139] = {.lex_state = 32}, + [140] = {.lex_state = 6}, + [141] = {.lex_state = 32}, + [142] = {.lex_state = 6}, + [143] = {.lex_state = 33}, + [144] = {.lex_state = 31}, + [145] = {.lex_state = 31}, + [146] = {.lex_state = 6}, + [147] = {.lex_state = 5}, + [148] = {.lex_state = 33}, + [149] = {.lex_state = 32}, + [150] = {.lex_state = 5}, + [151] = {.lex_state = 6}, + [152] = {.lex_state = 33}, + [153] = {.lex_state = 32}, + [154] = {.lex_state = 31}, + [155] = {.lex_state = 31}, + [156] = {.lex_state = 33}, + [157] = {.lex_state = 6}, + [158] = {.lex_state = 6}, + [159] = {.lex_state = 32}, + [160] = {.lex_state = 33}, + [161] = {.lex_state = 5}, + [162] = {.lex_state = 32}, + [163] = {.lex_state = 5}, + [164] = {.lex_state = 31}, + [165] = {.lex_state = 31}, + [166] = {.lex_state = 32}, + [167] = {.lex_state = 33}, + [168] = {.lex_state = 5}, + [169] = {.lex_state = 6}, + [170] = {.lex_state = 5}, + [171] = {.lex_state = 33}, + [172] = {.lex_state = 6}, + [173] = {.lex_state = 32}, + [174] = {.lex_state = 31}, + [175] = {.lex_state = 31}, + [176] = {.lex_state = 6}, + [177] = {.lex_state = 5}, + [178] = {.lex_state = 32}, + [179] = {.lex_state = 33}, + [180] = {.lex_state = 5}, + [181] = {.lex_state = 33}, + [182] = {.lex_state = 6}, + [183] = {.lex_state = 32}, + [184] = {.lex_state = 31}, + [185] = {.lex_state = 31}, + [186] = {.lex_state = 33}, + [187] = {.lex_state = 33}, + [188] = {.lex_state = 6}, + [189] = {.lex_state = 32}, + [190] = {.lex_state = 5}, + [191] = {.lex_state = 5}, + [192] = {.lex_state = 6}, + [193] = {.lex_state = 32}, + [194] = {.lex_state = 31}, + [195] = {.lex_state = 31}, + [196] = {.lex_state = 5}, + [197] = {.lex_state = 33}, [198] = {.lex_state = 5}, - [199] = {.lex_state = 4}, - [200] = {.lex_state = 25}, - [201] = {.lex_state = 24}, - [202] = {.lex_state = 5}, - [203] = {.lex_state = 25}, - [204] = {.lex_state = 4}, - [205] = {.lex_state = 25}, - [206] = {.lex_state = 24}, - [207] = {.lex_state = 23}, - [208] = {.lex_state = 23}, - [209] = {.lex_state = 4}, - [210] = {.lex_state = 4}, - [211] = {.lex_state = 24}, - [212] = {.lex_state = 5}, - [213] = {.lex_state = 24}, - [214] = {.lex_state = 5}, - [215] = {.lex_state = 25}, - [216] = {.lex_state = 25}, - [217] = {.lex_state = 9}, - [218] = {.lex_state = 9}, - [219] = {.lex_state = 9}, - [220] = {.lex_state = 9}, - [221] = {.lex_state = 9}, - [222] = {.lex_state = 9}, - [223] = {.lex_state = 9}, - [224] = {.lex_state = 9}, - [225] = {.lex_state = 9}, - [226] = {.lex_state = 9}, - [227] = {.lex_state = 9}, - [228] = {.lex_state = 9}, + [199] = {.lex_state = 32}, + [200] = {.lex_state = 6}, + [201] = {.lex_state = 33}, + [202] = {.lex_state = 6}, + [203] = {.lex_state = 32}, + [204] = {.lex_state = 31}, + [205] = {.lex_state = 31}, + [206] = {.lex_state = 31}, + [207] = {.lex_state = 5}, + [208] = {.lex_state = 6}, + [209] = {.lex_state = 5}, + [210] = {.lex_state = 6}, + [211] = {.lex_state = 33}, + [212] = {.lex_state = 33}, + [213] = {.lex_state = 32}, + [214] = {.lex_state = 32}, + [215] = {.lex_state = 32}, + [216] = {.lex_state = 6}, + [217] = {.lex_state = 33}, + [218] = {.lex_state = 5}, + [219] = {.lex_state = 31}, + [220] = {.lex_state = 31}, + [221] = {.lex_state = 33}, + [222] = {.lex_state = 6}, + [223] = {.lex_state = 5}, + [224] = {.lex_state = 33}, + [225] = {.lex_state = 5}, + [226] = {.lex_state = 32}, + [227] = {.lex_state = 32}, + [228] = {.lex_state = 6}, [229] = {.lex_state = 9}, [230] = {.lex_state = 9}, [231] = {.lex_state = 9}, @@ -15541,1185 +16013,1185 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [238] = {.lex_state = 9}, [239] = {.lex_state = 9}, [240] = {.lex_state = 9}, - [241] = {.lex_state = 14}, - [242] = {.lex_state = 14}, - [243] = {.lex_state = 14}, - [244] = {.lex_state = 14}, - [245] = {.lex_state = 14}, - [246] = {.lex_state = 14}, - [247] = {.lex_state = 14}, - [248] = {.lex_state = 14}, - [249] = {.lex_state = 14}, - [250] = {.lex_state = 14}, - [251] = {.lex_state = 14}, - [252] = {.lex_state = 14}, - [253] = {.lex_state = 14}, - [254] = {.lex_state = 14}, - [255] = {.lex_state = 14}, - [256] = {.lex_state = 14}, - [257] = {.lex_state = 14}, - [258] = {.lex_state = 14}, - [259] = {.lex_state = 14}, - [260] = {.lex_state = 14}, - [261] = {.lex_state = 14}, - [262] = {.lex_state = 14}, - [263] = {.lex_state = 14}, - [264] = {.lex_state = 14}, - [265] = {.lex_state = 14}, - [266] = {.lex_state = 9}, - [267] = {.lex_state = 9}, - [268] = {.lex_state = 14}, - [269] = {.lex_state = 14}, + [241] = {.lex_state = 9}, + [242] = {.lex_state = 9}, + [243] = {.lex_state = 9}, + [244] = {.lex_state = 9}, + [245] = {.lex_state = 9}, + [246] = {.lex_state = 9}, + [247] = {.lex_state = 9}, + [248] = {.lex_state = 9}, + [249] = {.lex_state = 9}, + [250] = {.lex_state = 9}, + [251] = {.lex_state = 9}, + [252] = {.lex_state = 9}, + [253] = {.lex_state = 9}, + [254] = {.lex_state = 9}, + [255] = {.lex_state = 16}, + [256] = {.lex_state = 16}, + [257] = {.lex_state = 16}, + [258] = {.lex_state = 16}, + [259] = {.lex_state = 16}, + [260] = {.lex_state = 16}, + [261] = {.lex_state = 18}, + [262] = {.lex_state = 18}, + [263] = {.lex_state = 18}, + [264] = {.lex_state = 18}, + [265] = {.lex_state = 18}, + [266] = {.lex_state = 18}, + [267] = {.lex_state = 18}, + [268] = {.lex_state = 18}, + [269] = {.lex_state = 18}, [270] = {.lex_state = 18}, - [271] = {.lex_state = 23}, - [272] = {.lex_state = 23}, - [273] = {.lex_state = 23}, - [274] = {.lex_state = 23}, - [275] = {.lex_state = 23}, - [276] = {.lex_state = 23}, - [277] = {.lex_state = 23}, - [278] = {.lex_state = 23}, - [279] = {.lex_state = 23}, - [280] = {.lex_state = 23}, - [281] = {.lex_state = 23}, - [282] = {.lex_state = 23}, - [283] = {.lex_state = 23}, - [284] = {.lex_state = 23}, - [285] = {.lex_state = 23}, - [286] = {.lex_state = 23}, - [287] = {.lex_state = 23}, - [288] = {.lex_state = 23}, - [289] = {.lex_state = 23}, - [290] = {.lex_state = 23}, - [291] = {.lex_state = 23}, - [292] = {.lex_state = 23}, - [293] = {.lex_state = 23}, - [294] = {.lex_state = 23}, - [295] = {.lex_state = 23}, - [296] = {.lex_state = 23}, - [297] = {.lex_state = 23}, - [298] = {.lex_state = 23}, - [299] = {.lex_state = 23}, - [300] = {.lex_state = 23}, - [301] = {.lex_state = 23}, - [302] = {.lex_state = 23}, - [303] = {.lex_state = 23}, - [304] = {.lex_state = 23}, - [305] = {.lex_state = 23}, - [306] = {.lex_state = 23}, - [307] = {.lex_state = 23}, - [308] = {.lex_state = 23}, - [309] = {.lex_state = 23}, - [310] = {.lex_state = 23}, - [311] = {.lex_state = 23}, - [312] = {.lex_state = 23}, - [313] = {.lex_state = 23}, - [314] = {.lex_state = 23}, - [315] = {.lex_state = 23}, - [316] = {.lex_state = 23}, - [317] = {.lex_state = 23}, - [318] = {.lex_state = 23}, - [319] = {.lex_state = 23}, - [320] = {.lex_state = 23}, - [321] = {.lex_state = 23}, - [322] = {.lex_state = 23}, - [323] = {.lex_state = 23}, - [324] = {.lex_state = 23}, - [325] = {.lex_state = 23}, - [326] = {.lex_state = 23}, - [327] = {.lex_state = 23}, - [328] = {.lex_state = 23}, - [329] = {.lex_state = 23}, - [330] = {.lex_state = 23}, - [331] = {.lex_state = 23}, - [332] = {.lex_state = 23}, - [333] = {.lex_state = 23}, - [334] = {.lex_state = 23}, - [335] = {.lex_state = 23}, - [336] = {.lex_state = 23}, - [337] = {.lex_state = 23}, - [338] = {.lex_state = 23}, - [339] = {.lex_state = 23}, - [340] = {.lex_state = 23}, - [341] = {.lex_state = 23}, - [342] = {.lex_state = 23}, - [343] = {.lex_state = 23}, - [344] = {.lex_state = 23}, - [345] = {.lex_state = 23}, - [346] = {.lex_state = 4}, - [347] = {.lex_state = 25}, - [348] = {.lex_state = 4}, - [349] = {.lex_state = 5}, - [350] = {.lex_state = 25}, - [351] = {.lex_state = 5}, - [352] = {.lex_state = 5}, - [353] = {.lex_state = 25}, - [354] = {.lex_state = 5}, - [355] = {.lex_state = 5}, - [356] = {.lex_state = 5}, - [357] = {.lex_state = 25}, - [358] = {.lex_state = 5}, - [359] = {.lex_state = 25}, - [360] = {.lex_state = 5}, - [361] = {.lex_state = 5}, - [362] = {.lex_state = 25}, - [363] = {.lex_state = 5}, - [364] = {.lex_state = 25}, - [365] = {.lex_state = 5}, - [366] = {.lex_state = 25}, - [367] = {.lex_state = 5}, - [368] = {.lex_state = 25}, - [369] = {.lex_state = 5}, - [370] = {.lex_state = 25}, - [371] = {.lex_state = 25}, - [372] = {.lex_state = 5}, - [373] = {.lex_state = 25}, - [374] = {.lex_state = 25}, - [375] = {.lex_state = 25}, - [376] = {.lex_state = 5}, - [377] = {.lex_state = 25}, - [378] = {.lex_state = 5}, - [379] = {.lex_state = 5}, - [380] = {.lex_state = 5}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 25}, - [383] = {.lex_state = 5}, - [384] = {.lex_state = 25}, - [385] = {.lex_state = 25}, - [386] = {.lex_state = 25}, - [387] = {.lex_state = 25}, - [388] = {.lex_state = 25}, + [271] = {.lex_state = 18}, + [272] = {.lex_state = 16}, + [273] = {.lex_state = 16}, + [274] = {.lex_state = 16}, + [275] = {.lex_state = 16}, + [276] = {.lex_state = 16}, + [277] = {.lex_state = 16}, + [278] = {.lex_state = 16}, + [279] = {.lex_state = 16}, + [280] = {.lex_state = 16}, + [281] = {.lex_state = 16}, + [282] = {.lex_state = 16}, + [283] = {.lex_state = 16}, + [284] = {.lex_state = 16}, + [285] = {.lex_state = 16}, + [286] = {.lex_state = 16}, + [287] = {.lex_state = 16}, + [288] = {.lex_state = 16}, + [289] = {.lex_state = 16}, + [290] = {.lex_state = 16}, + [291] = {.lex_state = 16}, + [292] = {.lex_state = 16}, + [293] = {.lex_state = 16}, + [294] = {.lex_state = 16}, + [295] = {.lex_state = 16}, + [296] = {.lex_state = 16}, + [297] = {.lex_state = 16}, + [298] = {.lex_state = 16}, + [299] = {.lex_state = 16}, + [300] = {.lex_state = 16}, + [301] = {.lex_state = 16}, + [302] = {.lex_state = 16}, + [303] = {.lex_state = 9}, + [304] = {.lex_state = 9}, + [305] = {.lex_state = 16}, + [306] = {.lex_state = 16}, + [307] = {.lex_state = 18}, + [308] = {.lex_state = 22}, + [309] = {.lex_state = 18}, + [310] = {.lex_state = 31}, + [311] = {.lex_state = 31}, + [312] = {.lex_state = 31}, + [313] = {.lex_state = 31}, + [314] = {.lex_state = 31}, + [315] = {.lex_state = 31}, + [316] = {.lex_state = 31}, + [317] = {.lex_state = 31}, + [318] = {.lex_state = 31}, + [319] = {.lex_state = 31}, + [320] = {.lex_state = 31}, + [321] = {.lex_state = 31}, + [322] = {.lex_state = 31}, + [323] = {.lex_state = 31}, + [324] = {.lex_state = 31}, + [325] = {.lex_state = 31}, + [326] = {.lex_state = 31}, + [327] = {.lex_state = 31}, + [328] = {.lex_state = 31}, + [329] = {.lex_state = 31}, + [330] = {.lex_state = 31}, + [331] = {.lex_state = 31}, + [332] = {.lex_state = 31}, + [333] = {.lex_state = 31}, + [334] = {.lex_state = 31}, + [335] = {.lex_state = 31}, + [336] = {.lex_state = 31}, + [337] = {.lex_state = 31}, + [338] = {.lex_state = 31}, + [339] = {.lex_state = 31}, + [340] = {.lex_state = 31}, + [341] = {.lex_state = 31}, + [342] = {.lex_state = 31}, + [343] = {.lex_state = 31}, + [344] = {.lex_state = 31}, + [345] = {.lex_state = 31}, + [346] = {.lex_state = 31}, + [347] = {.lex_state = 31}, + [348] = {.lex_state = 31}, + [349] = {.lex_state = 31}, + [350] = {.lex_state = 31}, + [351] = {.lex_state = 31}, + [352] = {.lex_state = 31}, + [353] = {.lex_state = 31}, + [354] = {.lex_state = 31}, + [355] = {.lex_state = 31}, + [356] = {.lex_state = 31}, + [357] = {.lex_state = 31}, + [358] = {.lex_state = 31}, + [359] = {.lex_state = 31}, + [360] = {.lex_state = 31}, + [361] = {.lex_state = 31}, + [362] = {.lex_state = 31}, + [363] = {.lex_state = 31}, + [364] = {.lex_state = 31}, + [365] = {.lex_state = 31}, + [366] = {.lex_state = 31}, + [367] = {.lex_state = 31}, + [368] = {.lex_state = 31}, + [369] = {.lex_state = 31}, + [370] = {.lex_state = 31}, + [371] = {.lex_state = 31}, + [372] = {.lex_state = 31}, + [373] = {.lex_state = 31}, + [374] = {.lex_state = 31}, + [375] = {.lex_state = 31}, + [376] = {.lex_state = 31}, + [377] = {.lex_state = 31}, + [378] = {.lex_state = 31}, + [379] = {.lex_state = 31}, + [380] = {.lex_state = 31}, + [381] = {.lex_state = 31}, + [382] = {.lex_state = 31}, + [383] = {.lex_state = 31}, + [384] = {.lex_state = 31}, + [385] = {.lex_state = 5}, + [386] = {.lex_state = 32}, + [387] = {.lex_state = 5}, + [388] = {.lex_state = 5}, [389] = {.lex_state = 5}, - [390] = {.lex_state = 25}, - [391] = {.lex_state = 5}, + [390] = {.lex_state = 5}, + [391] = {.lex_state = 31}, [392] = {.lex_state = 5}, - [393] = {.lex_state = 25}, + [393] = {.lex_state = 5}, [394] = {.lex_state = 5}, [395] = {.lex_state = 5}, [396] = {.lex_state = 5}, - [397] = {.lex_state = 25}, + [397] = {.lex_state = 5}, [398] = {.lex_state = 5}, [399] = {.lex_state = 5}, - [400] = {.lex_state = 25}, + [400] = {.lex_state = 5}, [401] = {.lex_state = 5}, - [402] = {.lex_state = 25}, - [403] = {.lex_state = 25}, - [404] = {.lex_state = 25}, - [405] = {.lex_state = 25}, - [406] = {.lex_state = 4}, + [402] = {.lex_state = 5}, + [403] = {.lex_state = 5}, + [404] = {.lex_state = 5}, + [405] = {.lex_state = 5}, + [406] = {.lex_state = 5}, [407] = {.lex_state = 5}, - [408] = {.lex_state = 4}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 4}, - [411] = {.lex_state = 4}, - [412] = {.lex_state = 4}, + [408] = {.lex_state = 5}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 5}, + [411] = {.lex_state = 5}, + [412] = {.lex_state = 5}, [413] = {.lex_state = 5}, [414] = {.lex_state = 5}, - [415] = {.lex_state = 4}, - [416] = {.lex_state = 4}, - [417] = {.lex_state = 4}, - [418] = {.lex_state = 4}, - [419] = {.lex_state = 4}, - [420] = {.lex_state = 4}, - [421] = {.lex_state = 4}, - [422] = {.lex_state = 25}, - [423] = {.lex_state = 4}, - [424] = {.lex_state = 4}, - [425] = {.lex_state = 4}, - [426] = {.lex_state = 4}, - [427] = {.lex_state = 4}, - [428] = {.lex_state = 5}, - [429] = {.lex_state = 24}, - [430] = {.lex_state = 5}, - [431] = {.lex_state = 25}, - [432] = {.lex_state = 5}, - [433] = {.lex_state = 5}, - [434] = {.lex_state = 5}, - [435] = {.lex_state = 25}, - [436] = {.lex_state = 25}, - [437] = {.lex_state = 25}, - [438] = {.lex_state = 24}, - [439] = {.lex_state = 24}, - [440] = {.lex_state = 24}, - [441] = {.lex_state = 24}, - [442] = {.lex_state = 24}, - [443] = {.lex_state = 24}, - [444] = {.lex_state = 24}, - [445] = {.lex_state = 24}, - [446] = {.lex_state = 25}, - [447] = {.lex_state = 25}, - [448] = {.lex_state = 25}, + [415] = {.lex_state = 5}, + [416] = {.lex_state = 32}, + [417] = {.lex_state = 32}, + [418] = {.lex_state = 32}, + [419] = {.lex_state = 32}, + [420] = {.lex_state = 32}, + [421] = {.lex_state = 32}, + [422] = {.lex_state = 32}, + [423] = {.lex_state = 32}, + [424] = {.lex_state = 32}, + [425] = {.lex_state = 32}, + [426] = {.lex_state = 32}, + [427] = {.lex_state = 32}, + [428] = {.lex_state = 32}, + [429] = {.lex_state = 32}, + [430] = {.lex_state = 32}, + [431] = {.lex_state = 32}, + [432] = {.lex_state = 32}, + [433] = {.lex_state = 32}, + [434] = {.lex_state = 32}, + [435] = {.lex_state = 32}, + [436] = {.lex_state = 32}, + [437] = {.lex_state = 32}, + [438] = {.lex_state = 32}, + [439] = {.lex_state = 32}, + [440] = {.lex_state = 32}, + [441] = {.lex_state = 32}, + [442] = {.lex_state = 32}, + [443] = {.lex_state = 33}, + [444] = {.lex_state = 32}, + [445] = {.lex_state = 5}, + [446] = {.lex_state = 5}, + [447] = {.lex_state = 5}, + [448] = {.lex_state = 5}, [449] = {.lex_state = 5}, [450] = {.lex_state = 5}, - [451] = {.lex_state = 25}, - [452] = {.lex_state = 5}, - [453] = {.lex_state = 5}, - [454] = {.lex_state = 5}, - [455] = {.lex_state = 4}, - [456] = {.lex_state = 5}, - [457] = {.lex_state = 5}, - [458] = {.lex_state = 25}, - [459] = {.lex_state = 5}, - [460] = {.lex_state = 25}, + [451] = {.lex_state = 5}, + [452] = {.lex_state = 33}, + [453] = {.lex_state = 33}, + [454] = {.lex_state = 33}, + [455] = {.lex_state = 33}, + [456] = {.lex_state = 33}, + [457] = {.lex_state = 33}, + [458] = {.lex_state = 33}, + [459] = {.lex_state = 33}, + [460] = {.lex_state = 5}, [461] = {.lex_state = 5}, - [462] = {.lex_state = 25}, + [462] = {.lex_state = 5}, [463] = {.lex_state = 5}, - [464] = {.lex_state = 24}, + [464] = {.lex_state = 5}, [465] = {.lex_state = 5}, [466] = {.lex_state = 5}, - [467] = {.lex_state = 5}, + [467] = {.lex_state = 32}, [468] = {.lex_state = 5}, - [469] = {.lex_state = 25}, - [470] = {.lex_state = 5}, - [471] = {.lex_state = 5}, + [469] = {.lex_state = 6}, + [470] = {.lex_state = 6}, + [471] = {.lex_state = 6}, [472] = {.lex_state = 5}, - [473] = {.lex_state = 5}, - [474] = {.lex_state = 5}, - [475] = {.lex_state = 5}, - [476] = {.lex_state = 23}, - [477] = {.lex_state = 5}, - [478] = {.lex_state = 5}, - [479] = {.lex_state = 5}, - [480] = {.lex_state = 5}, - [481] = {.lex_state = 25}, - [482] = {.lex_state = 5}, - [483] = {.lex_state = 5}, - [484] = {.lex_state = 5}, - [485] = {.lex_state = 24}, - [486] = {.lex_state = 24}, - [487] = {.lex_state = 24}, - [488] = {.lex_state = 24}, - [489] = {.lex_state = 24}, - [490] = {.lex_state = 24}, - [491] = {.lex_state = 24}, - [492] = {.lex_state = 25}, - [493] = {.lex_state = 24}, - [494] = {.lex_state = 24}, - [495] = {.lex_state = 24}, - [496] = {.lex_state = 24}, - [497] = {.lex_state = 24}, - [498] = {.lex_state = 24}, - [499] = {.lex_state = 25}, - [500] = {.lex_state = 24}, - [501] = {.lex_state = 24}, - [502] = {.lex_state = 24}, - [503] = {.lex_state = 24}, - [504] = {.lex_state = 24}, - [505] = {.lex_state = 25}, - [506] = {.lex_state = 24}, - [507] = {.lex_state = 24}, - [508] = {.lex_state = 24}, - [509] = {.lex_state = 24}, - [510] = {.lex_state = 25}, - [511] = {.lex_state = 24}, - [512] = {.lex_state = 24}, - [513] = {.lex_state = 24}, - [514] = {.lex_state = 25}, - [515] = {.lex_state = 24}, - [516] = {.lex_state = 24}, - [517] = {.lex_state = 25}, - [518] = {.lex_state = 24}, - [519] = {.lex_state = 25}, - [520] = {.lex_state = 25}, - [521] = {.lex_state = 25}, - [522] = {.lex_state = 25}, - [523] = {.lex_state = 24}, - [524] = {.lex_state = 24}, - [525] = {.lex_state = 24}, - [526] = {.lex_state = 24}, - [527] = {.lex_state = 24}, - [528] = {.lex_state = 24}, - [529] = {.lex_state = 24}, - [530] = {.lex_state = 24}, - [531] = {.lex_state = 25}, - [532] = {.lex_state = 5}, - [533] = {.lex_state = 25}, - [534] = {.lex_state = 25}, - [535] = {.lex_state = 25}, - [536] = {.lex_state = 25}, - [537] = {.lex_state = 25}, - [538] = {.lex_state = 26, .external_lex_state = 2}, - [539] = {.lex_state = 5}, - [540] = {.lex_state = 24}, - [541] = {.lex_state = 5}, - [542] = {.lex_state = 5}, - [543] = {.lex_state = 5}, - [544] = {.lex_state = 5}, - [545] = {.lex_state = 5}, - [546] = {.lex_state = 5}, - [547] = {.lex_state = 5}, - [548] = {.lex_state = 25}, - [549] = {.lex_state = 25}, - [550] = {.lex_state = 25}, - [551] = {.lex_state = 25}, - [552] = {.lex_state = 5}, - [553] = {.lex_state = 25}, - [554] = {.lex_state = 25}, - [555] = {.lex_state = 4}, - [556] = {.lex_state = 5}, - [557] = {.lex_state = 4}, - [558] = {.lex_state = 4}, - [559] = {.lex_state = 4}, - [560] = {.lex_state = 4}, - [561] = {.lex_state = 4}, - [562] = {.lex_state = 24}, - [563] = {.lex_state = 24}, - [564] = {.lex_state = 24}, - [565] = {.lex_state = 24}, - [566] = {.lex_state = 24}, - [567] = {.lex_state = 24}, - [568] = {.lex_state = 24}, - [569] = {.lex_state = 4}, - [570] = {.lex_state = 24}, - [571] = {.lex_state = 24}, - [572] = {.lex_state = 24}, - [573] = {.lex_state = 24}, - [574] = {.lex_state = 24}, - [575] = {.lex_state = 24}, - [576] = {.lex_state = 24}, - [577] = {.lex_state = 24}, - [578] = {.lex_state = 24}, - [579] = {.lex_state = 24}, - [580] = {.lex_state = 24}, - [581] = {.lex_state = 24}, - [582] = {.lex_state = 24}, - [583] = {.lex_state = 24}, - [584] = {.lex_state = 24}, - [585] = {.lex_state = 24}, - [586] = {.lex_state = 24}, - [587] = {.lex_state = 24}, - [588] = {.lex_state = 24}, - [589] = {.lex_state = 24}, - [590] = {.lex_state = 24}, - [591] = {.lex_state = 4}, - [592] = {.lex_state = 4}, - [593] = {.lex_state = 4}, - [594] = {.lex_state = 4}, - [595] = {.lex_state = 4}, - [596] = {.lex_state = 4}, - [597] = {.lex_state = 4}, - [598] = {.lex_state = 4}, - [599] = {.lex_state = 25}, - [600] = {.lex_state = 4}, - [601] = {.lex_state = 4}, - [602] = {.lex_state = 4}, - [603] = {.lex_state = 4}, - [604] = {.lex_state = 4}, - [605] = {.lex_state = 4}, - [606] = {.lex_state = 4}, - [607] = {.lex_state = 4}, - [608] = {.lex_state = 4}, - [609] = {.lex_state = 4}, - [610] = {.lex_state = 4}, - [611] = {.lex_state = 4}, - [612] = {.lex_state = 4}, - [613] = {.lex_state = 4}, - [614] = {.lex_state = 4}, - [615] = {.lex_state = 4}, - [616] = {.lex_state = 4}, - [617] = {.lex_state = 4}, - [618] = {.lex_state = 4}, - [619] = {.lex_state = 4}, - [620] = {.lex_state = 4}, - [621] = {.lex_state = 4}, - [622] = {.lex_state = 4}, - [623] = {.lex_state = 4}, - [624] = {.lex_state = 4}, - [625] = {.lex_state = 4}, - [626] = {.lex_state = 4}, - [627] = {.lex_state = 4}, - [628] = {.lex_state = 4}, - [629] = {.lex_state = 4}, - [630] = {.lex_state = 4}, - [631] = {.lex_state = 25}, - [632] = {.lex_state = 4}, - [633] = {.lex_state = 25}, - [634] = {.lex_state = 4}, - [635] = {.lex_state = 4}, - [636] = {.lex_state = 4}, - [637] = {.lex_state = 4}, - [638] = {.lex_state = 4}, - [639] = {.lex_state = 25}, - [640] = {.lex_state = 25}, - [641] = {.lex_state = 4}, - [642] = {.lex_state = 25}, - [643] = {.lex_state = 25}, - [644] = {.lex_state = 25}, - [645] = {.lex_state = 25}, - [646] = {.lex_state = 23}, - [647] = {.lex_state = 25}, - [648] = {.lex_state = 4}, - [649] = {.lex_state = 24}, - [650] = {.lex_state = 23}, - [651] = {.lex_state = 23}, - [652] = {.lex_state = 23}, - [653] = {.lex_state = 23}, - [654] = {.lex_state = 23}, - [655] = {.lex_state = 23}, - [656] = {.lex_state = 8, .external_lex_state = 2}, - [657] = {.lex_state = 23}, - [658] = {.lex_state = 23}, + [473] = {.lex_state = 6}, + [474] = {.lex_state = 6}, + [475] = {.lex_state = 6}, + [476] = {.lex_state = 6}, + [477] = {.lex_state = 6}, + [478] = {.lex_state = 33}, + [479] = {.lex_state = 6}, + [480] = {.lex_state = 6}, + [481] = {.lex_state = 6}, + [482] = {.lex_state = 6}, + [483] = {.lex_state = 6}, + [484] = {.lex_state = 6}, + [485] = {.lex_state = 6}, + [486] = {.lex_state = 6}, + [487] = {.lex_state = 6}, + [488] = {.lex_state = 6}, + [489] = {.lex_state = 6}, + [490] = {.lex_state = 6}, + [491] = {.lex_state = 6}, + [492] = {.lex_state = 34, .external_lex_state = 2}, + [493] = {.lex_state = 6}, + [494] = {.lex_state = 6}, + [495] = {.lex_state = 6}, + [496] = {.lex_state = 6}, + [497] = {.lex_state = 5}, + [498] = {.lex_state = 6}, + [499] = {.lex_state = 6}, + [500] = {.lex_state = 6}, + [501] = {.lex_state = 33}, + [502] = {.lex_state = 33}, + [503] = {.lex_state = 33}, + [504] = {.lex_state = 33}, + [505] = {.lex_state = 33}, + [506] = {.lex_state = 33}, + [507] = {.lex_state = 33}, + [508] = {.lex_state = 31}, + [509] = {.lex_state = 33}, + [510] = {.lex_state = 33}, + [511] = {.lex_state = 33}, + [512] = {.lex_state = 33}, + [513] = {.lex_state = 33}, + [514] = {.lex_state = 33}, + [515] = {.lex_state = 5}, + [516] = {.lex_state = 33}, + [517] = {.lex_state = 33}, + [518] = {.lex_state = 33}, + [519] = {.lex_state = 33}, + [520] = {.lex_state = 33}, + [521] = {.lex_state = 32}, + [522] = {.lex_state = 33}, + [523] = {.lex_state = 33}, + [524] = {.lex_state = 33}, + [525] = {.lex_state = 33}, + [526] = {.lex_state = 32}, + [527] = {.lex_state = 33}, + [528] = {.lex_state = 33}, + [529] = {.lex_state = 33}, + [530] = {.lex_state = 32}, + [531] = {.lex_state = 33}, + [532] = {.lex_state = 33}, + [533] = {.lex_state = 32}, + [534] = {.lex_state = 33}, + [535] = {.lex_state = 32}, + [536] = {.lex_state = 32}, + [537] = {.lex_state = 32}, + [538] = {.lex_state = 32}, + [539] = {.lex_state = 33}, + [540] = {.lex_state = 33}, + [541] = {.lex_state = 33}, + [542] = {.lex_state = 33}, + [543] = {.lex_state = 33}, + [544] = {.lex_state = 33}, + [545] = {.lex_state = 33}, + [546] = {.lex_state = 33}, + [547] = {.lex_state = 32}, + [548] = {.lex_state = 5}, + [549] = {.lex_state = 6}, + [550] = {.lex_state = 32}, + [551] = {.lex_state = 6}, + [552] = {.lex_state = 32}, + [553] = {.lex_state = 6}, + [554] = {.lex_state = 6}, + [555] = {.lex_state = 6}, + [556] = {.lex_state = 33}, + [557] = {.lex_state = 6}, + [558] = {.lex_state = 32}, + [559] = {.lex_state = 6}, + [560] = {.lex_state = 6}, + [561] = {.lex_state = 6}, + [562] = {.lex_state = 32}, + [563] = {.lex_state = 6}, + [564] = {.lex_state = 32}, + [565] = {.lex_state = 6}, + [566] = {.lex_state = 6}, + [567] = {.lex_state = 32}, + [568] = {.lex_state = 32}, + [569] = {.lex_state = 6}, + [570] = {.lex_state = 6}, + [571] = {.lex_state = 6}, + [572] = {.lex_state = 32}, + [573] = {.lex_state = 6}, + [574] = {.lex_state = 6}, + [575] = {.lex_state = 6}, + [576] = {.lex_state = 6}, + [577] = {.lex_state = 32}, + [578] = {.lex_state = 32}, + [579] = {.lex_state = 32}, + [580] = {.lex_state = 33}, + [581] = {.lex_state = 33}, + [582] = {.lex_state = 33}, + [583] = {.lex_state = 33}, + [584] = {.lex_state = 33}, + [585] = {.lex_state = 33}, + [586] = {.lex_state = 33}, + [587] = {.lex_state = 6}, + [588] = {.lex_state = 33}, + [589] = {.lex_state = 33}, + [590] = {.lex_state = 33}, + [591] = {.lex_state = 33}, + [592] = {.lex_state = 33}, + [593] = {.lex_state = 33}, + [594] = {.lex_state = 33}, + [595] = {.lex_state = 33}, + [596] = {.lex_state = 33}, + [597] = {.lex_state = 33}, + [598] = {.lex_state = 33}, + [599] = {.lex_state = 33}, + [600] = {.lex_state = 33}, + [601] = {.lex_state = 33}, + [602] = {.lex_state = 33}, + [603] = {.lex_state = 33}, + [604] = {.lex_state = 33}, + [605] = {.lex_state = 33}, + [606] = {.lex_state = 33}, + [607] = {.lex_state = 33}, + [608] = {.lex_state = 33}, + [609] = {.lex_state = 6}, + [610] = {.lex_state = 6}, + [611] = {.lex_state = 6}, + [612] = {.lex_state = 6}, + [613] = {.lex_state = 32}, + [614] = {.lex_state = 6}, + [615] = {.lex_state = 6}, + [616] = {.lex_state = 6}, + [617] = {.lex_state = 32}, + [618] = {.lex_state = 32}, + [619] = {.lex_state = 32}, + [620] = {.lex_state = 32}, + [621] = {.lex_state = 6}, + [622] = {.lex_state = 32}, + [623] = {.lex_state = 6}, + [624] = {.lex_state = 6}, + [625] = {.lex_state = 32}, + [626] = {.lex_state = 32}, + [627] = {.lex_state = 6}, + [628] = {.lex_state = 6}, + [629] = {.lex_state = 32}, + [630] = {.lex_state = 6}, + [631] = {.lex_state = 6}, + [632] = {.lex_state = 6}, + [633] = {.lex_state = 6}, + [634] = {.lex_state = 32}, + [635] = {.lex_state = 32}, + [636] = {.lex_state = 6}, + [637] = {.lex_state = 32}, + [638] = {.lex_state = 6}, + [639] = {.lex_state = 32}, + [640] = {.lex_state = 32}, + [641] = {.lex_state = 32}, + [642] = {.lex_state = 5}, + [643] = {.lex_state = 5}, + [644] = {.lex_state = 5}, + [645] = {.lex_state = 6}, + [646] = {.lex_state = 6}, + [647] = {.lex_state = 6}, + [648] = {.lex_state = 6}, + [649] = {.lex_state = 6}, + [650] = {.lex_state = 6}, + [651] = {.lex_state = 6}, + [652] = {.lex_state = 5}, + [653] = {.lex_state = 6}, + [654] = {.lex_state = 5}, + [655] = {.lex_state = 5}, + [656] = {.lex_state = 5}, + [657] = {.lex_state = 5}, + [658] = {.lex_state = 5}, [659] = {.lex_state = 5}, - [660] = {.lex_state = 23}, - [661] = {.lex_state = 23}, - [662] = {.lex_state = 25}, - [663] = {.lex_state = 23}, - [664] = {.lex_state = 26}, - [665] = {.lex_state = 11, .external_lex_state = 2}, - [666] = {.lex_state = 4}, - [667] = {.lex_state = 10, .external_lex_state = 2}, - [668] = {.lex_state = 23}, - [669] = {.lex_state = 4}, - [670] = {.lex_state = 12, .external_lex_state = 2}, + [660] = {.lex_state = 5}, + [661] = {.lex_state = 6}, + [662] = {.lex_state = 5}, + [663] = {.lex_state = 5}, + [664] = {.lex_state = 5}, + [665] = {.lex_state = 5}, + [666] = {.lex_state = 5}, + [667] = {.lex_state = 5}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 32}, + [670] = {.lex_state = 5}, [671] = {.lex_state = 5}, - [672] = {.lex_state = 24}, - [673] = {.lex_state = 25}, - [674] = {.lex_state = 23}, - [675] = {.lex_state = 23}, - [676] = {.lex_state = 24}, - [677] = {.lex_state = 23}, - [678] = {.lex_state = 23}, - [679] = {.lex_state = 11}, - [680] = {.lex_state = 23}, - [681] = {.lex_state = 23}, - [682] = {.lex_state = 24}, - [683] = {.lex_state = 24}, - [684] = {.lex_state = 23}, - [685] = {.lex_state = 23}, - [686] = {.lex_state = 4}, - [687] = {.lex_state = 23}, - [688] = {.lex_state = 23}, - [689] = {.lex_state = 23}, - [690] = {.lex_state = 23}, - [691] = {.lex_state = 23}, - [692] = {.lex_state = 23}, - [693] = {.lex_state = 23}, - [694] = {.lex_state = 23}, - [695] = {.lex_state = 23}, - [696] = {.lex_state = 23}, - [697] = {.lex_state = 23}, - [698] = {.lex_state = 4}, - [699] = {.lex_state = 4}, - [700] = {.lex_state = 23}, - [701] = {.lex_state = 5}, - [702] = {.lex_state = 5}, - [703] = {.lex_state = 5}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 23}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 23}, - [708] = {.lex_state = 24}, - [709] = {.lex_state = 5}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 23}, - [714] = {.lex_state = 23}, - [715] = {.lex_state = 23}, - [716] = {.lex_state = 23}, - [717] = {.lex_state = 23}, - [718] = {.lex_state = 23}, - [719] = {.lex_state = 23}, - [720] = {.lex_state = 23}, - [721] = {.lex_state = 23}, - [722] = {.lex_state = 12}, - [723] = {.lex_state = 23}, - [724] = {.lex_state = 23}, - [725] = {.lex_state = 23}, - [726] = {.lex_state = 23}, - [727] = {.lex_state = 23}, - [728] = {.lex_state = 23}, - [729] = {.lex_state = 23}, - [730] = {.lex_state = 23}, - [731] = {.lex_state = 23}, - [732] = {.lex_state = 23}, - [733] = {.lex_state = 23}, - [734] = {.lex_state = 23}, - [735] = {.lex_state = 23}, - [736] = {.lex_state = 23}, - [737] = {.lex_state = 23}, - [738] = {.lex_state = 23}, - [739] = {.lex_state = 23}, - [740] = {.lex_state = 23}, - [741] = {.lex_state = 25}, - [742] = {.lex_state = 23}, - [743] = {.lex_state = 23}, - [744] = {.lex_state = 23}, - [745] = {.lex_state = 23}, - [746] = {.lex_state = 23}, - [747] = {.lex_state = 23}, - [748] = {.lex_state = 23}, - [749] = {.lex_state = 23}, - [750] = {.lex_state = 5}, - [751] = {.lex_state = 10}, - [752] = {.lex_state = 23}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 23}, - [755] = {.lex_state = 4}, - [756] = {.lex_state = 23}, - [757] = {.lex_state = 23}, - [758] = {.lex_state = 23}, - [759] = {.lex_state = 24}, - [760] = {.lex_state = 23}, - [761] = {.lex_state = 23}, - [762] = {.lex_state = 23}, - [763] = {.lex_state = 24}, - [764] = {.lex_state = 24}, - [765] = {.lex_state = 24}, - [766] = {.lex_state = 24}, - [767] = {.lex_state = 24}, - [768] = {.lex_state = 24}, - [769] = {.lex_state = 24}, - [770] = {.lex_state = 25}, - [771] = {.lex_state = 23}, - [772] = {.lex_state = 23}, - [773] = {.lex_state = 23}, - [774] = {.lex_state = 23}, - [775] = {.lex_state = 8}, - [776] = {.lex_state = 23}, - [777] = {.lex_state = 23}, - [778] = {.lex_state = 23}, - [779] = {.lex_state = 23}, - [780] = {.lex_state = 23}, - [781] = {.lex_state = 23}, - [782] = {.lex_state = 23}, - [783] = {.lex_state = 23}, - [784] = {.lex_state = 23}, - [785] = {.lex_state = 25}, - [786] = {.lex_state = 25}, - [787] = {.lex_state = 23}, - [788] = {.lex_state = 23}, - [789] = {.lex_state = 23}, - [790] = {.lex_state = 23}, - [791] = {.lex_state = 5}, - [792] = {.lex_state = 23}, - [793] = {.lex_state = 23}, - [794] = {.lex_state = 23}, - [795] = {.lex_state = 23}, - [796] = {.lex_state = 23}, - [797] = {.lex_state = 23}, - [798] = {.lex_state = 5}, - [799] = {.lex_state = 23}, - [800] = {.lex_state = 23}, - [801] = {.lex_state = 23}, - [802] = {.lex_state = 23}, - [803] = {.lex_state = 23}, - [804] = {.lex_state = 23}, - [805] = {.lex_state = 23}, - [806] = {.lex_state = 23}, - [807] = {.lex_state = 23}, - [808] = {.lex_state = 23}, - [809] = {.lex_state = 23}, - [810] = {.lex_state = 23}, - [811] = {.lex_state = 23}, - [812] = {.lex_state = 23}, - [813] = {.lex_state = 23}, - [814] = {.lex_state = 23}, - [815] = {.lex_state = 23}, - [816] = {.lex_state = 23}, - [817] = {.lex_state = 25}, - [818] = {.lex_state = 25}, - [819] = {.lex_state = 25}, - [820] = {.lex_state = 23}, - [821] = {.lex_state = 4}, - [822] = {.lex_state = 4}, - [823] = {.lex_state = 4}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 4}, - [826] = {.lex_state = 4}, - [827] = {.lex_state = 4}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 23}, - [830] = {.lex_state = 25}, - [831] = {.lex_state = 25}, - [832] = {.lex_state = 25}, - [833] = {.lex_state = 23}, - [834] = {.lex_state = 25}, - [835] = {.lex_state = 25}, - [836] = {.lex_state = 4}, - [837] = {.lex_state = 5}, - [838] = {.lex_state = 25}, - [839] = {.lex_state = 25}, - [840] = {.lex_state = 24}, - [841] = {.lex_state = 25}, - [842] = {.lex_state = 25}, - [843] = {.lex_state = 25}, - [844] = {.lex_state = 25}, - [845] = {.lex_state = 25}, - [846] = {.lex_state = 25}, - [847] = {.lex_state = 25}, - [848] = {.lex_state = 25}, - [849] = {.lex_state = 25}, - [850] = {.lex_state = 25}, - [851] = {.lex_state = 25}, - [852] = {.lex_state = 25}, - [853] = {.lex_state = 25}, - [854] = {.lex_state = 25}, - [855] = {.lex_state = 25}, - [856] = {.lex_state = 25}, - [857] = {.lex_state = 24}, - [858] = {.lex_state = 25}, - [859] = {.lex_state = 25}, - [860] = {.lex_state = 25}, - [861] = {.lex_state = 25}, - [862] = {.lex_state = 25}, - [863] = {.lex_state = 25}, - [864] = {.lex_state = 25}, - [865] = {.lex_state = 25}, - [866] = {.lex_state = 25}, - [867] = {.lex_state = 25}, - [868] = {.lex_state = 25}, - [869] = {.lex_state = 25}, - [870] = {.lex_state = 25}, - [871] = {.lex_state = 25}, - [872] = {.lex_state = 25}, - [873] = {.lex_state = 25}, - [874] = {.lex_state = 25}, - [875] = {.lex_state = 24}, - [876] = {.lex_state = 24}, - [877] = {.lex_state = 24}, - [878] = {.lex_state = 24}, - [879] = {.lex_state = 4}, - [880] = {.lex_state = 4}, - [881] = {.lex_state = 25}, - [882] = {.lex_state = 24}, - [883] = {.lex_state = 25}, - [884] = {.lex_state = 25}, - [885] = {.lex_state = 25}, - [886] = {.lex_state = 25}, - [887] = {.lex_state = 5}, - [888] = {.lex_state = 25}, - [889] = {.lex_state = 25}, - [890] = {.lex_state = 25}, - [891] = {.lex_state = 25}, - [892] = {.lex_state = 25}, - [893] = {.lex_state = 25}, - [894] = {.lex_state = 25}, - [895] = {.lex_state = 25}, - [896] = {.lex_state = 25}, - [897] = {.lex_state = 25}, - [898] = {.lex_state = 25}, - [899] = {.lex_state = 25}, - [900] = {.lex_state = 4}, - [901] = {.lex_state = 4}, - [902] = {.lex_state = 4}, - [903] = {.lex_state = 4}, - [904] = {.lex_state = 4}, - [905] = {.lex_state = 4}, - [906] = {.lex_state = 4}, - [907] = {.lex_state = 4}, - [908] = {.lex_state = 4}, - [909] = {.lex_state = 4}, - [910] = {.lex_state = 5}, - [911] = {.lex_state = 4}, - [912] = {.lex_state = 25}, - [913] = {.lex_state = 4}, - [914] = {.lex_state = 4}, - [915] = {.lex_state = 4}, - [916] = {.lex_state = 25}, - [917] = {.lex_state = 4}, - [918] = {.lex_state = 4}, - [919] = {.lex_state = 4}, - [920] = {.lex_state = 4}, - [921] = {.lex_state = 4}, - [922] = {.lex_state = 4}, - [923] = {.lex_state = 4}, - [924] = {.lex_state = 4}, - [925] = {.lex_state = 4}, - [926] = {.lex_state = 4}, - [927] = {.lex_state = 4}, - [928] = {.lex_state = 4}, - [929] = {.lex_state = 4}, - [930] = {.lex_state = 4}, - [931] = {.lex_state = 4}, - [932] = {.lex_state = 4}, - [933] = {.lex_state = 25}, - [934] = {.lex_state = 4}, - [935] = {.lex_state = 4}, - [936] = {.lex_state = 4}, - [937] = {.lex_state = 25}, - [938] = {.lex_state = 25}, - [939] = {.lex_state = 25}, - [940] = {.lex_state = 25}, - [941] = {.lex_state = 25}, - [942] = {.lex_state = 25}, - [943] = {.lex_state = 25}, - [944] = {.lex_state = 25}, - [945] = {.lex_state = 25}, - [946] = {.lex_state = 25}, - [947] = {.lex_state = 25}, - [948] = {.lex_state = 25}, - [949] = {.lex_state = 25}, - [950] = {.lex_state = 25}, - [951] = {.lex_state = 25}, - [952] = {.lex_state = 25}, - [953] = {.lex_state = 25}, - [954] = {.lex_state = 25}, - [955] = {.lex_state = 25}, - [956] = {.lex_state = 25}, - [957] = {.lex_state = 25}, - [958] = {.lex_state = 25}, - [959] = {.lex_state = 25}, - [960] = {.lex_state = 25}, - [961] = {.lex_state = 25}, - [962] = {.lex_state = 25}, - [963] = {.lex_state = 25}, - [964] = {.lex_state = 25}, - [965] = {.lex_state = 25}, - [966] = {.lex_state = 25}, - [967] = {.lex_state = 25}, - [968] = {.lex_state = 25}, - [969] = {.lex_state = 25}, - [970] = {.lex_state = 25}, - [971] = {.lex_state = 25}, - [972] = {.lex_state = 25}, - [973] = {.lex_state = 4}, - [974] = {.lex_state = 25}, - [975] = {.lex_state = 25}, - [976] = {.lex_state = 25}, - [977] = {.lex_state = 25}, - [978] = {.lex_state = 25}, - [979] = {.lex_state = 25}, - [980] = {.lex_state = 25}, - [981] = {.lex_state = 25}, - [982] = {.lex_state = 24}, - [983] = {.lex_state = 25}, - [984] = {.lex_state = 4}, - [985] = {.lex_state = 4}, - [986] = {.lex_state = 25}, - [987] = {.lex_state = 4}, - [988] = {.lex_state = 24}, - [989] = {.lex_state = 4}, - [990] = {.lex_state = 4}, - [991] = {.lex_state = 4}, - [992] = {.lex_state = 24}, - [993] = {.lex_state = 4}, - [994] = {.lex_state = 4}, - [995] = {.lex_state = 4}, - [996] = {.lex_state = 4}, - [997] = {.lex_state = 4}, - [998] = {.lex_state = 4}, - [999] = {.lex_state = 4}, - [1000] = {.lex_state = 4}, - [1001] = {.lex_state = 4}, - [1002] = {.lex_state = 4}, - [1003] = {.lex_state = 4}, - [1004] = {.lex_state = 4}, - [1005] = {.lex_state = 4}, - [1006] = {.lex_state = 4}, - [1007] = {.lex_state = 4}, - [1008] = {.lex_state = 4}, - [1009] = {.lex_state = 4}, - [1010] = {.lex_state = 4}, - [1011] = {.lex_state = 24}, - [1012] = {.lex_state = 24}, - [1013] = {.lex_state = 24}, - [1014] = {.lex_state = 24}, - [1015] = {.lex_state = 24}, - [1016] = {.lex_state = 24}, - [1017] = {.lex_state = 24}, - [1018] = {.lex_state = 24}, - [1019] = {.lex_state = 24}, - [1020] = {.lex_state = 24}, - [1021] = {.lex_state = 24}, - [1022] = {.lex_state = 24}, - [1023] = {.lex_state = 24}, - [1024] = {.lex_state = 24}, - [1025] = {.lex_state = 24}, - [1026] = {.lex_state = 24}, - [1027] = {.lex_state = 24}, - [1028] = {.lex_state = 24}, - [1029] = {.lex_state = 24}, - [1030] = {.lex_state = 24}, - [1031] = {.lex_state = 24}, - [1032] = {.lex_state = 24}, - [1033] = {.lex_state = 24}, - [1034] = {.lex_state = 24}, - [1035] = {.lex_state = 24}, - [1036] = {.lex_state = 24}, - [1037] = {.lex_state = 24}, + [672] = {.lex_state = 5}, + [673] = {.lex_state = 5}, + [674] = {.lex_state = 5}, + [675] = {.lex_state = 5}, + [676] = {.lex_state = 32}, + [677] = {.lex_state = 5}, + [678] = {.lex_state = 5}, + [679] = {.lex_state = 5}, + [680] = {.lex_state = 32}, + [681] = {.lex_state = 32}, + [682] = {.lex_state = 32}, + [683] = {.lex_state = 32}, + [684] = {.lex_state = 32}, + [685] = {.lex_state = 32}, + [686] = {.lex_state = 32}, + [687] = {.lex_state = 32}, + [688] = {.lex_state = 13, .external_lex_state = 2}, + [689] = {.lex_state = 8, .external_lex_state = 2}, + [690] = {.lex_state = 31}, + [691] = {.lex_state = 5}, + [692] = {.lex_state = 31}, + [693] = {.lex_state = 31}, + [694] = {.lex_state = 31}, + [695] = {.lex_state = 31}, + [696] = {.lex_state = 20}, + [697] = {.lex_state = 14, .external_lex_state = 2}, + [698] = {.lex_state = 31}, + [699] = {.lex_state = 31}, + [700] = {.lex_state = 12, .external_lex_state = 2}, + [701] = {.lex_state = 31}, + [702] = {.lex_state = 31}, + [703] = {.lex_state = 32}, + [704] = {.lex_state = 31}, + [705] = {.lex_state = 31}, + [706] = {.lex_state = 20}, + [707] = {.lex_state = 5}, + [708] = {.lex_state = 34}, + [709] = {.lex_state = 31}, + [710] = {.lex_state = 33}, + [711] = {.lex_state = 33}, + [712] = {.lex_state = 6}, + [713] = {.lex_state = 32}, + [714] = {.lex_state = 6}, + [715] = {.lex_state = 6}, + [716] = {.lex_state = 31}, + [717] = {.lex_state = 32}, + [718] = {.lex_state = 32}, + [719] = {.lex_state = 32}, + [720] = {.lex_state = 32}, + [721] = {.lex_state = 32}, + [722] = {.lex_state = 32}, + [723] = {.lex_state = 32}, + [724] = {.lex_state = 6}, + [725] = {.lex_state = 6}, + [726] = {.lex_state = 6}, + [727] = {.lex_state = 20}, + [728] = {.lex_state = 6}, + [729] = {.lex_state = 31}, + [730] = {.lex_state = 31}, + [731] = {.lex_state = 31}, + [732] = {.lex_state = 31}, + [733] = {.lex_state = 31}, + [734] = {.lex_state = 33}, + [735] = {.lex_state = 31}, + [736] = {.lex_state = 31}, + [737] = {.lex_state = 14}, + [738] = {.lex_state = 31}, + [739] = {.lex_state = 5}, + [740] = {.lex_state = 33}, + [741] = {.lex_state = 31}, + [742] = {.lex_state = 31}, + [743] = {.lex_state = 33}, + [744] = {.lex_state = 31}, + [745] = {.lex_state = 31}, + [746] = {.lex_state = 31}, + [747] = {.lex_state = 31}, + [748] = {.lex_state = 31}, + [749] = {.lex_state = 31}, + [750] = {.lex_state = 31}, + [751] = {.lex_state = 31}, + [752] = {.lex_state = 31}, + [753] = {.lex_state = 31}, + [754] = {.lex_state = 31}, + [755] = {.lex_state = 31}, + [756] = {.lex_state = 33}, + [757] = {.lex_state = 31}, + [758] = {.lex_state = 31}, + [759] = {.lex_state = 31}, + [760] = {.lex_state = 31}, + [761] = {.lex_state = 31}, + [762] = {.lex_state = 31}, + [763] = {.lex_state = 20}, + [764] = {.lex_state = 31}, + [765] = {.lex_state = 31}, + [766] = {.lex_state = 31}, + [767] = {.lex_state = 31}, + [768] = {.lex_state = 5}, + [769] = {.lex_state = 6}, + [770] = {.lex_state = 31}, + [771] = {.lex_state = 31}, + [772] = {.lex_state = 20}, + [773] = {.lex_state = 31}, + [774] = {.lex_state = 31}, + [775] = {.lex_state = 31}, + [776] = {.lex_state = 31}, + [777] = {.lex_state = 20}, + [778] = {.lex_state = 20}, + [779] = {.lex_state = 31}, + [780] = {.lex_state = 31}, + [781] = {.lex_state = 31}, + [782] = {.lex_state = 31}, + [783] = {.lex_state = 31}, + [784] = {.lex_state = 20}, + [785] = {.lex_state = 31}, + [786] = {.lex_state = 31}, + [787] = {.lex_state = 31}, + [788] = {.lex_state = 6}, + [789] = {.lex_state = 31}, + [790] = {.lex_state = 6}, + [791] = {.lex_state = 31}, + [792] = {.lex_state = 31}, + [793] = {.lex_state = 31}, + [794] = {.lex_state = 31}, + [795] = {.lex_state = 31}, + [796] = {.lex_state = 6}, + [797] = {.lex_state = 31}, + [798] = {.lex_state = 12}, + [799] = {.lex_state = 31}, + [800] = {.lex_state = 31}, + [801] = {.lex_state = 31}, + [802] = {.lex_state = 31}, + [803] = {.lex_state = 31}, + [804] = {.lex_state = 32}, + [805] = {.lex_state = 31}, + [806] = {.lex_state = 31}, + [807] = {.lex_state = 31}, + [808] = {.lex_state = 20}, + [809] = {.lex_state = 31}, + [810] = {.lex_state = 32}, + [811] = {.lex_state = 6}, + [812] = {.lex_state = 31}, + [813] = {.lex_state = 31}, + [814] = {.lex_state = 31}, + [815] = {.lex_state = 33}, + [816] = {.lex_state = 33}, + [817] = {.lex_state = 33}, + [818] = {.lex_state = 33}, + [819] = {.lex_state = 31}, + [820] = {.lex_state = 33}, + [821] = {.lex_state = 33}, + [822] = {.lex_state = 33}, + [823] = {.lex_state = 33}, + [824] = {.lex_state = 31}, + [825] = {.lex_state = 31}, + [826] = {.lex_state = 31}, + [827] = {.lex_state = 31}, + [828] = {.lex_state = 31}, + [829] = {.lex_state = 31}, + [830] = {.lex_state = 31}, + [831] = {.lex_state = 31}, + [832] = {.lex_state = 31}, + [833] = {.lex_state = 31}, + [834] = {.lex_state = 31}, + [835] = {.lex_state = 20}, + [836] = {.lex_state = 31}, + [837] = {.lex_state = 31}, + [838] = {.lex_state = 5}, + [839] = {.lex_state = 31}, + [840] = {.lex_state = 5}, + [841] = {.lex_state = 31}, + [842] = {.lex_state = 31}, + [843] = {.lex_state = 31}, + [844] = {.lex_state = 31}, + [845] = {.lex_state = 5}, + [846] = {.lex_state = 31}, + [847] = {.lex_state = 31}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 31}, + [850] = {.lex_state = 6}, + [851] = {.lex_state = 31}, + [852] = {.lex_state = 31}, + [853] = {.lex_state = 31}, + [854] = {.lex_state = 31}, + [855] = {.lex_state = 31}, + [856] = {.lex_state = 13}, + [857] = {.lex_state = 31}, + [858] = {.lex_state = 31}, + [859] = {.lex_state = 31}, + [860] = {.lex_state = 31}, + [861] = {.lex_state = 31}, + [862] = {.lex_state = 31}, + [863] = {.lex_state = 31}, + [864] = {.lex_state = 31}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 32}, + [867] = {.lex_state = 31}, + [868] = {.lex_state = 31}, + [869] = {.lex_state = 31}, + [870] = {.lex_state = 31}, + [871] = {.lex_state = 31}, + [872] = {.lex_state = 32}, + [873] = {.lex_state = 31}, + [874] = {.lex_state = 20}, + [875] = {.lex_state = 31}, + [876] = {.lex_state = 31}, + [877] = {.lex_state = 31}, + [878] = {.lex_state = 31}, + [879] = {.lex_state = 20}, + [880] = {.lex_state = 31}, + [881] = {.lex_state = 31}, + [882] = {.lex_state = 31}, + [883] = {.lex_state = 5}, + [884] = {.lex_state = 5}, + [885] = {.lex_state = 32}, + [886] = {.lex_state = 5}, + [887] = {.lex_state = 6}, + [888] = {.lex_state = 5}, + [889] = {.lex_state = 5}, + [890] = {.lex_state = 5}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 33}, + [893] = {.lex_state = 33}, + [894] = {.lex_state = 32}, + [895] = {.lex_state = 32}, + [896] = {.lex_state = 32}, + [897] = {.lex_state = 32}, + [898] = {.lex_state = 32}, + [899] = {.lex_state = 32}, + [900] = {.lex_state = 32}, + [901] = {.lex_state = 32}, + [902] = {.lex_state = 32}, + [903] = {.lex_state = 32}, + [904] = {.lex_state = 32}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 33}, + [908] = {.lex_state = 32}, + [909] = {.lex_state = 20}, + [910] = {.lex_state = 32}, + [911] = {.lex_state = 32}, + [912] = {.lex_state = 32}, + [913] = {.lex_state = 32}, + [914] = {.lex_state = 6}, + [915] = {.lex_state = 32}, + [916] = {.lex_state = 32}, + [917] = {.lex_state = 32}, + [918] = {.lex_state = 32}, + [919] = {.lex_state = 32}, + [920] = {.lex_state = 32}, + [921] = {.lex_state = 32}, + [922] = {.lex_state = 32}, + [923] = {.lex_state = 32}, + [924] = {.lex_state = 20}, + [925] = {.lex_state = 32}, + [926] = {.lex_state = 5}, + [927] = {.lex_state = 5}, + [928] = {.lex_state = 5}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 5}, + [931] = {.lex_state = 5}, + [932] = {.lex_state = 5}, + [933] = {.lex_state = 5}, + [934] = {.lex_state = 5}, + [935] = {.lex_state = 5}, + [936] = {.lex_state = 33}, + [937] = {.lex_state = 5}, + [938] = {.lex_state = 32}, + [939] = {.lex_state = 5}, + [940] = {.lex_state = 5}, + [941] = {.lex_state = 5}, + [942] = {.lex_state = 32}, + [943] = {.lex_state = 5}, + [944] = {.lex_state = 5}, + [945] = {.lex_state = 5}, + [946] = {.lex_state = 5}, + [947] = {.lex_state = 5}, + [948] = {.lex_state = 5}, + [949] = {.lex_state = 5}, + [950] = {.lex_state = 5}, + [951] = {.lex_state = 5}, + [952] = {.lex_state = 5}, + [953] = {.lex_state = 5}, + [954] = {.lex_state = 5}, + [955] = {.lex_state = 5}, + [956] = {.lex_state = 5}, + [957] = {.lex_state = 5}, + [958] = {.lex_state = 5}, + [959] = {.lex_state = 5}, + [960] = {.lex_state = 5}, + [961] = {.lex_state = 32}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 5}, + [964] = {.lex_state = 5}, + [965] = {.lex_state = 32}, + [966] = {.lex_state = 6}, + [967] = {.lex_state = 32}, + [968] = {.lex_state = 32}, + [969] = {.lex_state = 32}, + [970] = {.lex_state = 32}, + [971] = {.lex_state = 32}, + [972] = {.lex_state = 33}, + [973] = {.lex_state = 32}, + [974] = {.lex_state = 33}, + [975] = {.lex_state = 33}, + [976] = {.lex_state = 33}, + [977] = {.lex_state = 33}, + [978] = {.lex_state = 32}, + [979] = {.lex_state = 32}, + [980] = {.lex_state = 32}, + [981] = {.lex_state = 32}, + [982] = {.lex_state = 32}, + [983] = {.lex_state = 32}, + [984] = {.lex_state = 32}, + [985] = {.lex_state = 32}, + [986] = {.lex_state = 32}, + [987] = {.lex_state = 32}, + [988] = {.lex_state = 32}, + [989] = {.lex_state = 32}, + [990] = {.lex_state = 32}, + [991] = {.lex_state = 32}, + [992] = {.lex_state = 32}, + [993] = {.lex_state = 32}, + [994] = {.lex_state = 32}, + [995] = {.lex_state = 32}, + [996] = {.lex_state = 20}, + [997] = {.lex_state = 32}, + [998] = {.lex_state = 32}, + [999] = {.lex_state = 32}, + [1000] = {.lex_state = 20}, + [1001] = {.lex_state = 5}, + [1002] = {.lex_state = 32}, + [1003] = {.lex_state = 32}, + [1004] = {.lex_state = 32}, + [1005] = {.lex_state = 32}, + [1006] = {.lex_state = 32}, + [1007] = {.lex_state = 32}, + [1008] = {.lex_state = 32}, + [1009] = {.lex_state = 32}, + [1010] = {.lex_state = 32}, + [1011] = {.lex_state = 32}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 5}, + [1014] = {.lex_state = 32}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 33}, + [1017] = {.lex_state = 5}, + [1018] = {.lex_state = 5}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 32}, + [1021] = {.lex_state = 5}, + [1022] = {.lex_state = 5}, + [1023] = {.lex_state = 5}, + [1024] = {.lex_state = 5}, + [1025] = {.lex_state = 5}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 5}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 5}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 5}, + [1032] = {.lex_state = 5}, + [1033] = {.lex_state = 5}, + [1034] = {.lex_state = 5}, + [1035] = {.lex_state = 5}, + [1036] = {.lex_state = 5}, + [1037] = {.lex_state = 5}, [1038] = {.lex_state = 5}, - [1039] = {.lex_state = 24}, - [1040] = {.lex_state = 24}, - [1041] = {.lex_state = 24}, - [1042] = {.lex_state = 4}, - [1043] = {.lex_state = 4}, - [1044] = {.lex_state = 4}, - [1045] = {.lex_state = 4}, - [1046] = {.lex_state = 4}, - [1047] = {.lex_state = 4}, - [1048] = {.lex_state = 4}, - [1049] = {.lex_state = 4}, - [1050] = {.lex_state = 25}, - [1051] = {.lex_state = 25}, - [1052] = {.lex_state = 25}, - [1053] = {.lex_state = 25}, - [1054] = {.lex_state = 4}, - [1055] = {.lex_state = 25}, - [1056] = {.lex_state = 4}, - [1057] = {.lex_state = 4}, - [1058] = {.lex_state = 4}, - [1059] = {.lex_state = 4}, - [1060] = {.lex_state = 4}, - [1061] = {.lex_state = 4}, - [1062] = {.lex_state = 4}, - [1063] = {.lex_state = 4}, - [1064] = {.lex_state = 25}, - [1065] = {.lex_state = 24}, - [1066] = {.lex_state = 4}, - [1067] = {.lex_state = 4}, - [1068] = {.lex_state = 4}, - [1069] = {.lex_state = 4}, - [1070] = {.lex_state = 4}, - [1071] = {.lex_state = 24}, - [1072] = {.lex_state = 4}, - [1073] = {.lex_state = 4}, - [1074] = {.lex_state = 4}, - [1075] = {.lex_state = 4}, - [1076] = {.lex_state = 4}, - [1077] = {.lex_state = 4}, - [1078] = {.lex_state = 4}, - [1079] = {.lex_state = 4}, - [1080] = {.lex_state = 4}, - [1081] = {.lex_state = 25}, - [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 24}, - [1084] = {.lex_state = 4}, - [1085] = {.lex_state = 4}, - [1086] = {.lex_state = 4}, - [1087] = {.lex_state = 4}, - [1088] = {.lex_state = 4}, - [1089] = {.lex_state = 4}, - [1090] = {.lex_state = 4}, - [1091] = {.lex_state = 4}, - [1092] = {.lex_state = 4}, - [1093] = {.lex_state = 4}, - [1094] = {.lex_state = 24}, - [1095] = {.lex_state = 24}, - [1096] = {.lex_state = 24}, - [1097] = {.lex_state = 24}, - [1098] = {.lex_state = 24}, - [1099] = {.lex_state = 24}, - [1100] = {.lex_state = 24}, - [1101] = {.lex_state = 24}, - [1102] = {.lex_state = 24}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 20}, + [1041] = {.lex_state = 32}, + [1042] = {.lex_state = 32}, + [1043] = {.lex_state = 32}, + [1044] = {.lex_state = 32}, + [1045] = {.lex_state = 32}, + [1046] = {.lex_state = 32}, + [1047] = {.lex_state = 6}, + [1048] = {.lex_state = 32}, + [1049] = {.lex_state = 32}, + [1050] = {.lex_state = 32}, + [1051] = {.lex_state = 32}, + [1052] = {.lex_state = 32}, + [1053] = {.lex_state = 32}, + [1054] = {.lex_state = 32}, + [1055] = {.lex_state = 32}, + [1056] = {.lex_state = 32}, + [1057] = {.lex_state = 32}, + [1058] = {.lex_state = 32}, + [1059] = {.lex_state = 32}, + [1060] = {.lex_state = 32}, + [1061] = {.lex_state = 32}, + [1062] = {.lex_state = 32}, + [1063] = {.lex_state = 32}, + [1064] = {.lex_state = 32}, + [1065] = {.lex_state = 32}, + [1066] = {.lex_state = 6}, + [1067] = {.lex_state = 32}, + [1068] = {.lex_state = 32}, + [1069] = {.lex_state = 32}, + [1070] = {.lex_state = 32}, + [1071] = {.lex_state = 5}, + [1072] = {.lex_state = 5}, + [1073] = {.lex_state = 5}, + [1074] = {.lex_state = 5}, + [1075] = {.lex_state = 5}, + [1076] = {.lex_state = 5}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 5}, + [1079] = {.lex_state = 32}, + [1080] = {.lex_state = 32}, + [1081] = {.lex_state = 32}, + [1082] = {.lex_state = 32}, + [1083] = {.lex_state = 5}, + [1084] = {.lex_state = 32}, + [1085] = {.lex_state = 5}, + [1086] = {.lex_state = 5}, + [1087] = {.lex_state = 5}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 5}, + [1090] = {.lex_state = 5}, + [1091] = {.lex_state = 5}, + [1092] = {.lex_state = 5}, + [1093] = {.lex_state = 5}, + [1094] = {.lex_state = 32}, + [1095] = {.lex_state = 32}, + [1096] = {.lex_state = 5}, + [1097] = {.lex_state = 5}, + [1098] = {.lex_state = 5}, + [1099] = {.lex_state = 5}, + [1100] = {.lex_state = 5}, + [1101] = {.lex_state = 32}, + [1102] = {.lex_state = 5}, [1103] = {.lex_state = 5}, [1104] = {.lex_state = 5}, - [1105] = {.lex_state = 24}, - [1106] = {.lex_state = 24}, - [1107] = {.lex_state = 24}, - [1108] = {.lex_state = 24}, - [1109] = {.lex_state = 24}, - [1110] = {.lex_state = 24}, - [1111] = {.lex_state = 24}, - [1112] = {.lex_state = 24}, + [1105] = {.lex_state = 5}, + [1106] = {.lex_state = 5}, + [1107] = {.lex_state = 5}, + [1108] = {.lex_state = 5}, + [1109] = {.lex_state = 5}, + [1110] = {.lex_state = 5}, + [1111] = {.lex_state = 5}, + [1112] = {.lex_state = 32}, [1113] = {.lex_state = 5}, - [1114] = {.lex_state = 24}, - [1115] = {.lex_state = 24}, - [1116] = {.lex_state = 24}, - [1117] = {.lex_state = 24}, - [1118] = {.lex_state = 24}, - [1119] = {.lex_state = 24}, - [1120] = {.lex_state = 24}, - [1121] = {.lex_state = 24}, - [1122] = {.lex_state = 24}, - [1123] = {.lex_state = 24}, + [1114] = {.lex_state = 32}, + [1115] = {.lex_state = 5}, + [1116] = {.lex_state = 5}, + [1117] = {.lex_state = 5}, + [1118] = {.lex_state = 5}, + [1119] = {.lex_state = 5}, + [1120] = {.lex_state = 5}, + [1121] = {.lex_state = 5}, + [1122] = {.lex_state = 5}, + [1123] = {.lex_state = 5}, [1124] = {.lex_state = 5}, - [1125] = {.lex_state = 5}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 5}, - [1128] = {.lex_state = 5}, - [1129] = {.lex_state = 5}, - [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 5}, - [1132] = {.lex_state = 5}, - [1133] = {.lex_state = 5}, - [1134] = {.lex_state = 24}, - [1135] = {.lex_state = 5}, - [1136] = {.lex_state = 24}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 5}, - [1139] = {.lex_state = 5}, - [1140] = {.lex_state = 24}, - [1141] = {.lex_state = 5}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 5}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 5}, - [1146] = {.lex_state = 5}, - [1147] = {.lex_state = 5}, - [1148] = {.lex_state = 5}, - [1149] = {.lex_state = 5}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 5}, - [1152] = {.lex_state = 5}, - [1153] = {.lex_state = 5}, - [1154] = {.lex_state = 5}, - [1155] = {.lex_state = 5}, - [1156] = {.lex_state = 5}, - [1157] = {.lex_state = 24}, - [1158] = {.lex_state = 5}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 5}, - [1161] = {.lex_state = 24}, - [1162] = {.lex_state = 24}, - [1163] = {.lex_state = 24}, - [1164] = {.lex_state = 24}, - [1165] = {.lex_state = 24}, - [1166] = {.lex_state = 24}, - [1167] = {.lex_state = 24}, - [1168] = {.lex_state = 24}, - [1169] = {.lex_state = 24}, - [1170] = {.lex_state = 24}, - [1171] = {.lex_state = 24}, - [1172] = {.lex_state = 24}, - [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 24}, - [1175] = {.lex_state = 24}, - [1176] = {.lex_state = 24}, - [1177] = {.lex_state = 24}, - [1178] = {.lex_state = 24}, - [1179] = {.lex_state = 24}, - [1180] = {.lex_state = 24}, - [1181] = {.lex_state = 24}, - [1182] = {.lex_state = 24}, - [1183] = {.lex_state = 24}, - [1184] = {.lex_state = 24}, - [1185] = {.lex_state = 24}, - [1186] = {.lex_state = 24}, - [1187] = {.lex_state = 24}, - [1188] = {.lex_state = 24}, - [1189] = {.lex_state = 24}, - [1190] = {.lex_state = 24}, - [1191] = {.lex_state = 24}, - [1192] = {.lex_state = 24}, - [1193] = {.lex_state = 24}, - [1194] = {.lex_state = 24}, - [1195] = {.lex_state = 24}, - [1196] = {.lex_state = 24}, - [1197] = {.lex_state = 5}, - [1198] = {.lex_state = 5}, - [1199] = {.lex_state = 5}, - [1200] = {.lex_state = 16}, - [1201] = {.lex_state = 16}, - [1202] = {.lex_state = 5}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 5}, - [1205] = {.lex_state = 5}, - [1206] = {.lex_state = 5}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 5}, - [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 5}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 5}, - [1214] = {.lex_state = 5}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 5}, - [1217] = {.lex_state = 5}, - [1218] = {.lex_state = 5}, - [1219] = {.lex_state = 5}, - [1220] = {.lex_state = 5}, - [1221] = {.lex_state = 5}, - [1222] = {.lex_state = 5}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 5}, - [1225] = {.lex_state = 5}, - [1226] = {.lex_state = 5}, - [1227] = {.lex_state = 5}, - [1228] = {.lex_state = 5}, - [1229] = {.lex_state = 5}, - [1230] = {.lex_state = 5}, - [1231] = {.lex_state = 5}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 5}, - [1234] = {.lex_state = 5}, - [1235] = {.lex_state = 25}, - [1236] = {.lex_state = 5}, - [1237] = {.lex_state = 4}, - [1238] = {.lex_state = 5}, - [1239] = {.lex_state = 5}, - [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, - [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 5}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 5}, - [1250] = {.lex_state = 5}, - [1251] = {.lex_state = 5}, - [1252] = {.lex_state = 5}, - [1253] = {.lex_state = 5}, - [1254] = {.lex_state = 5}, - [1255] = {.lex_state = 4}, - [1256] = {.lex_state = 5}, - [1257] = {.lex_state = 5}, - [1258] = {.lex_state = 5}, - [1259] = {.lex_state = 5}, - [1260] = {.lex_state = 5}, - [1261] = {.lex_state = 5}, - [1262] = {.lex_state = 5}, - [1263] = {.lex_state = 5}, - [1264] = {.lex_state = 4}, - [1265] = {.lex_state = 5}, - [1266] = {.lex_state = 5}, - [1267] = {.lex_state = 5}, - [1268] = {.lex_state = 5}, - [1269] = {.lex_state = 5}, - [1270] = {.lex_state = 5}, - [1271] = {.lex_state = 5}, - [1272] = {.lex_state = 5}, - [1273] = {.lex_state = 5}, - [1274] = {.lex_state = 4}, - [1275] = {.lex_state = 4}, - [1276] = {.lex_state = 4}, - [1277] = {.lex_state = 16}, - [1278] = {.lex_state = 16}, - [1279] = {.lex_state = 16}, - [1280] = {.lex_state = 16}, - [1281] = {.lex_state = 16}, - [1282] = {.lex_state = 16}, - [1283] = {.lex_state = 16}, - [1284] = {.lex_state = 16}, - [1285] = {.lex_state = 16}, - [1286] = {.lex_state = 16}, - [1287] = {.lex_state = 16}, - [1288] = {.lex_state = 16}, - [1289] = {.lex_state = 16}, - [1290] = {.lex_state = 16}, - [1291] = {.lex_state = 16}, - [1292] = {.lex_state = 16}, - [1293] = {.lex_state = 16}, - [1294] = {.lex_state = 16}, - [1295] = {.lex_state = 16}, - [1296] = {.lex_state = 16}, - [1297] = {.lex_state = 16}, - [1298] = {.lex_state = 16}, - [1299] = {.lex_state = 16}, - [1300] = {.lex_state = 16}, - [1301] = {.lex_state = 16}, - [1302] = {.lex_state = 16}, - [1303] = {.lex_state = 16}, - [1304] = {.lex_state = 16}, - [1305] = {.lex_state = 16}, - [1306] = {.lex_state = 16}, - [1307] = {.lex_state = 16}, - [1308] = {.lex_state = 16}, - [1309] = {.lex_state = 16}, - [1310] = {.lex_state = 16}, - [1311] = {.lex_state = 16}, - [1312] = {.lex_state = 16}, - [1313] = {.lex_state = 16}, - [1314] = {.lex_state = 9}, - [1315] = {.lex_state = 9}, - [1316] = {.lex_state = 9}, - [1317] = {.lex_state = 9}, - [1318] = {.lex_state = 14}, - [1319] = {.lex_state = 9}, - [1320] = {.lex_state = 13, .external_lex_state = 2}, - [1321] = {.lex_state = 14}, - [1322] = {.lex_state = 14}, - [1323] = {.lex_state = 9}, - [1324] = {.lex_state = 14}, - [1325] = {.lex_state = 15, .external_lex_state = 2}, - [1326] = {.lex_state = 13}, - [1327] = {.lex_state = 14}, - [1328] = {.lex_state = 9}, - [1329] = {.lex_state = 9}, - [1330] = {.lex_state = 9}, - [1331] = {.lex_state = 9}, - [1332] = {.lex_state = 9}, - [1333] = {.lex_state = 9}, - [1334] = {.lex_state = 9}, - [1335] = {.lex_state = 9}, - [1336] = {.lex_state = 9}, - [1337] = {.lex_state = 9}, - [1338] = {.lex_state = 9}, - [1339] = {.lex_state = 9}, - [1340] = {.lex_state = 9}, - [1341] = {.lex_state = 9}, - [1342] = {.lex_state = 9}, - [1343] = {.lex_state = 9}, - [1344] = {.lex_state = 9}, - [1345] = {.lex_state = 9}, - [1346] = {.lex_state = 9}, - [1347] = {.lex_state = 9}, - [1348] = {.lex_state = 9}, - [1349] = {.lex_state = 9}, - [1350] = {.lex_state = 9}, - [1351] = {.lex_state = 9}, - [1352] = {.lex_state = 9}, - [1353] = {.lex_state = 9}, - [1354] = {.lex_state = 9}, - [1355] = {.lex_state = 9}, - [1356] = {.lex_state = 9}, - [1357] = {.lex_state = 15}, - [1358] = {.lex_state = 9}, - [1359] = {.lex_state = 9}, - [1360] = {.lex_state = 9}, - [1361] = {.lex_state = 9}, - [1362] = {.lex_state = 9}, - [1363] = {.lex_state = 9}, - [1364] = {.lex_state = 9}, - [1365] = {.lex_state = 9}, - [1366] = {.lex_state = 9}, - [1367] = {.lex_state = 9}, - [1368] = {.lex_state = 9}, - [1369] = {.lex_state = 9}, - [1370] = {.lex_state = 9}, - [1371] = {.lex_state = 9}, - [1372] = {.lex_state = 9}, - [1373] = {.lex_state = 9}, - [1374] = {.lex_state = 9}, - [1375] = {.lex_state = 9}, - [1376] = {.lex_state = 9}, - [1377] = {.lex_state = 9}, - [1378] = {.lex_state = 9}, - [1379] = {.lex_state = 9}, - [1380] = {.lex_state = 9}, - [1381] = {.lex_state = 9}, + [1125] = {.lex_state = 32}, + [1126] = {.lex_state = 32}, + [1127] = {.lex_state = 32}, + [1128] = {.lex_state = 32}, + [1129] = {.lex_state = 20}, + [1130] = {.lex_state = 32}, + [1131] = {.lex_state = 32}, + [1132] = {.lex_state = 33}, + [1133] = {.lex_state = 33}, + [1134] = {.lex_state = 6}, + [1135] = {.lex_state = 6}, + [1136] = {.lex_state = 33}, + [1137] = {.lex_state = 33}, + [1138] = {.lex_state = 33}, + [1139] = {.lex_state = 33}, + [1140] = {.lex_state = 33}, + [1141] = {.lex_state = 33}, + [1142] = {.lex_state = 33}, + [1143] = {.lex_state = 6}, + [1144] = {.lex_state = 6}, + [1145] = {.lex_state = 33}, + [1146] = {.lex_state = 32}, + [1147] = {.lex_state = 33}, + [1148] = {.lex_state = 33}, + [1149] = {.lex_state = 33}, + [1150] = {.lex_state = 33}, + [1151] = {.lex_state = 33}, + [1152] = {.lex_state = 33}, + [1153] = {.lex_state = 33}, + [1154] = {.lex_state = 33}, + [1155] = {.lex_state = 6}, + [1156] = {.lex_state = 6}, + [1157] = {.lex_state = 6}, + [1158] = {.lex_state = 6}, + [1159] = {.lex_state = 6}, + [1160] = {.lex_state = 6}, + [1161] = {.lex_state = 6}, + [1162] = {.lex_state = 6}, + [1163] = {.lex_state = 6}, + [1164] = {.lex_state = 6}, + [1165] = {.lex_state = 33}, + [1166] = {.lex_state = 6}, + [1167] = {.lex_state = 33}, + [1168] = {.lex_state = 6}, + [1169] = {.lex_state = 6}, + [1170] = {.lex_state = 6}, + [1171] = {.lex_state = 33}, + [1172] = {.lex_state = 6}, + [1173] = {.lex_state = 6}, + [1174] = {.lex_state = 6}, + [1175] = {.lex_state = 6}, + [1176] = {.lex_state = 6}, + [1177] = {.lex_state = 6}, + [1178] = {.lex_state = 6}, + [1179] = {.lex_state = 6}, + [1180] = {.lex_state = 6}, + [1181] = {.lex_state = 6}, + [1182] = {.lex_state = 6}, + [1183] = {.lex_state = 6}, + [1184] = {.lex_state = 6}, + [1185] = {.lex_state = 6}, + [1186] = {.lex_state = 6}, + [1187] = {.lex_state = 6}, + [1188] = {.lex_state = 6}, + [1189] = {.lex_state = 6}, + [1190] = {.lex_state = 33}, + [1191] = {.lex_state = 6}, + [1192] = {.lex_state = 6}, + [1193] = {.lex_state = 6}, + [1194] = {.lex_state = 33}, + [1195] = {.lex_state = 33}, + [1196] = {.lex_state = 33}, + [1197] = {.lex_state = 33}, + [1198] = {.lex_state = 33}, + [1199] = {.lex_state = 33}, + [1200] = {.lex_state = 33}, + [1201] = {.lex_state = 33}, + [1202] = {.lex_state = 33}, + [1203] = {.lex_state = 33}, + [1204] = {.lex_state = 33}, + [1205] = {.lex_state = 33}, + [1206] = {.lex_state = 33}, + [1207] = {.lex_state = 33}, + [1208] = {.lex_state = 33}, + [1209] = {.lex_state = 33}, + [1210] = {.lex_state = 33}, + [1211] = {.lex_state = 33}, + [1212] = {.lex_state = 33}, + [1213] = {.lex_state = 33}, + [1214] = {.lex_state = 6}, + [1215] = {.lex_state = 33}, + [1216] = {.lex_state = 33}, + [1217] = {.lex_state = 33}, + [1218] = {.lex_state = 33}, + [1219] = {.lex_state = 33}, + [1220] = {.lex_state = 33}, + [1221] = {.lex_state = 33}, + [1222] = {.lex_state = 33}, + [1223] = {.lex_state = 33}, + [1224] = {.lex_state = 33}, + [1225] = {.lex_state = 33}, + [1226] = {.lex_state = 33}, + [1227] = {.lex_state = 33}, + [1228] = {.lex_state = 20}, + [1229] = {.lex_state = 33}, + [1230] = {.lex_state = 6}, + [1231] = {.lex_state = 20}, + [1232] = {.lex_state = 33}, + [1233] = {.lex_state = 33}, + [1234] = {.lex_state = 33}, + [1235] = {.lex_state = 33}, + [1236] = {.lex_state = 33}, + [1237] = {.lex_state = 33}, + [1238] = {.lex_state = 33}, + [1239] = {.lex_state = 33}, + [1240] = {.lex_state = 6}, + [1241] = {.lex_state = 6}, + [1242] = {.lex_state = 6}, + [1243] = {.lex_state = 6}, + [1244] = {.lex_state = 6}, + [1245] = {.lex_state = 6}, + [1246] = {.lex_state = 6}, + [1247] = {.lex_state = 6}, + [1248] = {.lex_state = 6}, + [1249] = {.lex_state = 33}, + [1250] = {.lex_state = 6}, + [1251] = {.lex_state = 6}, + [1252] = {.lex_state = 6}, + [1253] = {.lex_state = 6}, + [1254] = {.lex_state = 6}, + [1255] = {.lex_state = 6}, + [1256] = {.lex_state = 6}, + [1257] = {.lex_state = 6}, + [1258] = {.lex_state = 6}, + [1259] = {.lex_state = 6}, + [1260] = {.lex_state = 6}, + [1261] = {.lex_state = 6}, + [1262] = {.lex_state = 6}, + [1263] = {.lex_state = 6}, + [1264] = {.lex_state = 6}, + [1265] = {.lex_state = 6}, + [1266] = {.lex_state = 6}, + [1267] = {.lex_state = 6}, + [1268] = {.lex_state = 6}, + [1269] = {.lex_state = 33}, + [1270] = {.lex_state = 33}, + [1271] = {.lex_state = 20}, + [1272] = {.lex_state = 33}, + [1273] = {.lex_state = 33}, + [1274] = {.lex_state = 33}, + [1275] = {.lex_state = 33}, + [1276] = {.lex_state = 33}, + [1277] = {.lex_state = 33}, + [1278] = {.lex_state = 33}, + [1279] = {.lex_state = 33}, + [1280] = {.lex_state = 33}, + [1281] = {.lex_state = 33}, + [1282] = {.lex_state = 33}, + [1283] = {.lex_state = 33}, + [1284] = {.lex_state = 33}, + [1285] = {.lex_state = 33}, + [1286] = {.lex_state = 33}, + [1287] = {.lex_state = 33}, + [1288] = {.lex_state = 33}, + [1289] = {.lex_state = 33}, + [1290] = {.lex_state = 33}, + [1291] = {.lex_state = 33}, + [1292] = {.lex_state = 33}, + [1293] = {.lex_state = 33}, + [1294] = {.lex_state = 33}, + [1295] = {.lex_state = 33}, + [1296] = {.lex_state = 20}, + [1297] = {.lex_state = 33}, + [1298] = {.lex_state = 33}, + [1299] = {.lex_state = 33}, + [1300] = {.lex_state = 6}, + [1301] = {.lex_state = 6}, + [1302] = {.lex_state = 6}, + [1303] = {.lex_state = 6}, + [1304] = {.lex_state = 6}, + [1305] = {.lex_state = 6}, + [1306] = {.lex_state = 6}, + [1307] = {.lex_state = 6}, + [1308] = {.lex_state = 5}, + [1309] = {.lex_state = 5}, + [1310] = {.lex_state = 5}, + [1311] = {.lex_state = 5}, + [1312] = {.lex_state = 6}, + [1313] = {.lex_state = 5}, + [1314] = {.lex_state = 33}, + [1315] = {.lex_state = 6}, + [1316] = {.lex_state = 6}, + [1317] = {.lex_state = 6}, + [1318] = {.lex_state = 6}, + [1319] = {.lex_state = 6}, + [1320] = {.lex_state = 6}, + [1321] = {.lex_state = 6}, + [1322] = {.lex_state = 6}, + [1323] = {.lex_state = 5}, + [1324] = {.lex_state = 33}, + [1325] = {.lex_state = 6}, + [1326] = {.lex_state = 6}, + [1327] = {.lex_state = 6}, + [1328] = {.lex_state = 6}, + [1329] = {.lex_state = 6}, + [1330] = {.lex_state = 33}, + [1331] = {.lex_state = 6}, + [1332] = {.lex_state = 6}, + [1333] = {.lex_state = 6}, + [1334] = {.lex_state = 6}, + [1335] = {.lex_state = 6}, + [1336] = {.lex_state = 6}, + [1337] = {.lex_state = 6}, + [1338] = {.lex_state = 6}, + [1339] = {.lex_state = 6}, + [1340] = {.lex_state = 6}, + [1341] = {.lex_state = 5}, + [1342] = {.lex_state = 6}, + [1343] = {.lex_state = 33}, + [1344] = {.lex_state = 6}, + [1345] = {.lex_state = 6}, + [1346] = {.lex_state = 6}, + [1347] = {.lex_state = 6}, + [1348] = {.lex_state = 6}, + [1349] = {.lex_state = 6}, + [1350] = {.lex_state = 6}, + [1351] = {.lex_state = 6}, + [1352] = {.lex_state = 6}, + [1353] = {.lex_state = 6}, + [1354] = {.lex_state = 33}, + [1355] = {.lex_state = 6}, + [1356] = {.lex_state = 33}, + [1357] = {.lex_state = 33}, + [1358] = {.lex_state = 33}, + [1359] = {.lex_state = 33}, + [1360] = {.lex_state = 33}, + [1361] = {.lex_state = 20}, + [1362] = {.lex_state = 20}, + [1363] = {.lex_state = 20}, + [1364] = {.lex_state = 20}, + [1365] = {.lex_state = 20}, + [1366] = {.lex_state = 20}, + [1367] = {.lex_state = 20}, + [1368] = {.lex_state = 20}, + [1369] = {.lex_state = 20}, + [1370] = {.lex_state = 20}, + [1371] = {.lex_state = 20}, + [1372] = {.lex_state = 20}, + [1373] = {.lex_state = 20}, + [1374] = {.lex_state = 20}, + [1375] = {.lex_state = 20}, + [1376] = {.lex_state = 20}, + [1377] = {.lex_state = 20}, + [1378] = {.lex_state = 20}, + [1379] = {.lex_state = 20}, + [1380] = {.lex_state = 20}, + [1381] = {.lex_state = 20}, [1382] = {.lex_state = 9}, [1383] = {.lex_state = 9}, [1384] = {.lex_state = 9}, [1385] = {.lex_state = 9}, - [1386] = {.lex_state = 9}, - [1387] = {.lex_state = 9}, + [1386] = {.lex_state = 15, .external_lex_state = 2}, + [1387] = {.lex_state = 16}, [1388] = {.lex_state = 9}, - [1389] = {.lex_state = 9}, - [1390] = {.lex_state = 9}, - [1391] = {.lex_state = 9}, - [1392] = {.lex_state = 9}, - [1393] = {.lex_state = 9}, + [1389] = {.lex_state = 16}, + [1390] = {.lex_state = 16}, + [1391] = {.lex_state = 15}, + [1392] = {.lex_state = 16}, + [1393] = {.lex_state = 17, .external_lex_state = 2}, [1394] = {.lex_state = 9}, [1395] = {.lex_state = 9}, [1396] = {.lex_state = 9}, - [1397] = {.lex_state = 9}, + [1397] = {.lex_state = 16}, [1398] = {.lex_state = 9}, [1399] = {.lex_state = 9}, [1400] = {.lex_state = 9}, [1401] = {.lex_state = 9}, [1402] = {.lex_state = 9}, [1403] = {.lex_state = 9}, - [1404] = {.lex_state = 9}, - [1405] = {.lex_state = 9}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 9}, + [1404] = {.lex_state = 16}, + [1405] = {.lex_state = 16}, + [1406] = {.lex_state = 16}, + [1407] = {.lex_state = 16}, [1408] = {.lex_state = 9}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 14}, + [1409] = {.lex_state = 17}, + [1410] = {.lex_state = 9}, [1411] = {.lex_state = 9}, - [1412] = {.lex_state = 14}, + [1412] = {.lex_state = 9}, [1413] = {.lex_state = 9}, [1414] = {.lex_state = 9}, [1415] = {.lex_state = 9}, - [1416] = {.lex_state = 9}, + [1416] = {.lex_state = 18}, [1417] = {.lex_state = 9}, - [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 9}, + [1418] = {.lex_state = 18}, + [1419] = {.lex_state = 18}, [1420] = {.lex_state = 9}, [1421] = {.lex_state = 9}, [1422] = {.lex_state = 9}, @@ -16736,94 +17208,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1433] = {.lex_state = 9}, [1434] = {.lex_state = 9}, [1435] = {.lex_state = 9}, - [1436] = {.lex_state = 14}, + [1436] = {.lex_state = 9}, [1437] = {.lex_state = 9}, [1438] = {.lex_state = 9}, - [1439] = {.lex_state = 14}, - [1440] = {.lex_state = 14}, - [1441] = {.lex_state = 14}, - [1442] = {.lex_state = 14}, - [1443] = {.lex_state = 14}, - [1444] = {.lex_state = 14}, - [1445] = {.lex_state = 14}, - [1446] = {.lex_state = 14}, - [1447] = {.lex_state = 14}, - [1448] = {.lex_state = 14}, - [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 14}, - [1451] = {.lex_state = 14}, - [1452] = {.lex_state = 14}, - [1453] = {.lex_state = 14}, - [1454] = {.lex_state = 14}, - [1455] = {.lex_state = 14}, - [1456] = {.lex_state = 14}, - [1457] = {.lex_state = 14}, - [1458] = {.lex_state = 14}, - [1459] = {.lex_state = 14}, - [1460] = {.lex_state = 14}, - [1461] = {.lex_state = 14}, - [1462] = {.lex_state = 14}, - [1463] = {.lex_state = 14}, - [1464] = {.lex_state = 14}, - [1465] = {.lex_state = 14}, - [1466] = {.lex_state = 14}, - [1467] = {.lex_state = 14}, - [1468] = {.lex_state = 14}, - [1469] = {.lex_state = 14}, - [1470] = {.lex_state = 14}, - [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 14}, - [1474] = {.lex_state = 14}, - [1475] = {.lex_state = 14}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 14}, - [1478] = {.lex_state = 14}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 14}, - [1483] = {.lex_state = 14}, - [1484] = {.lex_state = 14}, - [1485] = {.lex_state = 14}, - [1486] = {.lex_state = 14}, - [1487] = {.lex_state = 14}, - [1488] = {.lex_state = 14}, - [1489] = {.lex_state = 14}, - [1490] = {.lex_state = 14}, - [1491] = {.lex_state = 14}, - [1492] = {.lex_state = 14}, - [1493] = {.lex_state = 14}, - [1494] = {.lex_state = 14}, - [1495] = {.lex_state = 14}, - [1496] = {.lex_state = 14}, - [1497] = {.lex_state = 14}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 14}, - [1500] = {.lex_state = 14}, - [1501] = {.lex_state = 14}, - [1502] = {.lex_state = 14}, - [1503] = {.lex_state = 14}, - [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 14}, - [1506] = {.lex_state = 14}, - [1507] = {.lex_state = 14}, - [1508] = {.lex_state = 14}, - [1509] = {.lex_state = 14}, - [1510] = {.lex_state = 14}, - [1511] = {.lex_state = 14}, - [1512] = {.lex_state = 14}, - [1513] = {.lex_state = 14}, - [1514] = {.lex_state = 14}, - [1515] = {.lex_state = 14}, - [1516] = {.lex_state = 14}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 14}, - [1519] = {.lex_state = 14}, - [1520] = {.lex_state = 14}, - [1521] = {.lex_state = 14}, - [1522] = {.lex_state = 14}, - [1523] = {.lex_state = 14}, + [1439] = {.lex_state = 9}, + [1440] = {.lex_state = 9}, + [1441] = {.lex_state = 9}, + [1442] = {.lex_state = 9}, + [1443] = {.lex_state = 9}, + [1444] = {.lex_state = 9}, + [1445] = {.lex_state = 9}, + [1446] = {.lex_state = 9}, + [1447] = {.lex_state = 9}, + [1448] = {.lex_state = 9}, + [1449] = {.lex_state = 9}, + [1450] = {.lex_state = 9}, + [1451] = {.lex_state = 9}, + [1452] = {.lex_state = 9}, + [1453] = {.lex_state = 9}, + [1454] = {.lex_state = 9}, + [1455] = {.lex_state = 9}, + [1456] = {.lex_state = 9}, + [1457] = {.lex_state = 9}, + [1458] = {.lex_state = 9}, + [1459] = {.lex_state = 9}, + [1460] = {.lex_state = 9}, + [1461] = {.lex_state = 9}, + [1462] = {.lex_state = 9}, + [1463] = {.lex_state = 9}, + [1464] = {.lex_state = 9}, + [1465] = {.lex_state = 9}, + [1466] = {.lex_state = 9}, + [1467] = {.lex_state = 9}, + [1468] = {.lex_state = 9}, + [1469] = {.lex_state = 9}, + [1470] = {.lex_state = 9}, + [1471] = {.lex_state = 9}, + [1472] = {.lex_state = 9}, + [1473] = {.lex_state = 9}, + [1474] = {.lex_state = 9}, + [1475] = {.lex_state = 9}, + [1476] = {.lex_state = 9}, + [1477] = {.lex_state = 9}, + [1478] = {.lex_state = 9}, + [1479] = {.lex_state = 9}, + [1480] = {.lex_state = 9}, + [1481] = {.lex_state = 9}, + [1482] = {.lex_state = 9}, + [1483] = {.lex_state = 9}, + [1484] = {.lex_state = 9}, + [1485] = {.lex_state = 9}, + [1486] = {.lex_state = 9}, + [1487] = {.lex_state = 9}, + [1488] = {.lex_state = 9}, + [1489] = {.lex_state = 9}, + [1490] = {.lex_state = 9}, + [1491] = {.lex_state = 9}, + [1492] = {.lex_state = 9}, + [1493] = {.lex_state = 9}, + [1494] = {.lex_state = 9}, + [1495] = {.lex_state = 9}, + [1496] = {.lex_state = 9}, + [1497] = {.lex_state = 9}, + [1498] = {.lex_state = 9}, + [1499] = {.lex_state = 9}, + [1500] = {.lex_state = 9}, + [1501] = {.lex_state = 9}, + [1502] = {.lex_state = 9}, + [1503] = {.lex_state = 9}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 9}, + [1506] = {.lex_state = 9}, + [1507] = {.lex_state = 9}, + [1508] = {.lex_state = 9}, + [1509] = {.lex_state = 9}, + [1510] = {.lex_state = 9}, + [1511] = {.lex_state = 9}, + [1512] = {.lex_state = 9}, + [1513] = {.lex_state = 9}, + [1514] = {.lex_state = 9}, + [1515] = {.lex_state = 16}, + [1516] = {.lex_state = 16}, + [1517] = {.lex_state = 16}, + [1518] = {.lex_state = 16}, + [1519] = {.lex_state = 16}, + [1520] = {.lex_state = 16}, + [1521] = {.lex_state = 16}, + [1522] = {.lex_state = 16}, + [1523] = {.lex_state = 16}, [1524] = {.lex_state = 16}, [1525] = {.lex_state = 16}, [1526] = {.lex_state = 16}, @@ -16835,12 +17307,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1532] = {.lex_state = 16}, [1533] = {.lex_state = 16}, [1534] = {.lex_state = 16}, - [1535] = {.lex_state = 17, .external_lex_state = 2}, + [1535] = {.lex_state = 16}, [1536] = {.lex_state = 16}, [1537] = {.lex_state = 16}, [1538] = {.lex_state = 16}, [1539] = {.lex_state = 16}, - [1540] = {.lex_state = 17}, + [1540] = {.lex_state = 16}, [1541] = {.lex_state = 16}, [1542] = {.lex_state = 16}, [1543] = {.lex_state = 16}, @@ -16905,221 +17377,221 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1602] = {.lex_state = 16}, [1603] = {.lex_state = 16}, [1604] = {.lex_state = 16}, - [1605] = {.lex_state = 16}, - [1606] = {.lex_state = 16}, - [1607] = {.lex_state = 16}, - [1608] = {.lex_state = 16}, - [1609] = {.lex_state = 16}, - [1610] = {.lex_state = 16}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 19}, - [1613] = {.lex_state = 20}, - [1614] = {.lex_state = 19}, - [1615] = {.lex_state = 20}, - [1616] = {.lex_state = 20}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 20}, - [1619] = {.lex_state = 20}, - [1620] = {.lex_state = 20}, - [1621] = {.lex_state = 19}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 19}, - [1624] = {.lex_state = 19}, - [1625] = {.lex_state = 20}, - [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 19}, - [1628] = {.lex_state = 20}, - [1629] = {.lex_state = 19}, - [1630] = {.lex_state = 20}, - [1631] = {.lex_state = 19}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 19}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 0}, + [1605] = {.lex_state = 18}, + [1606] = {.lex_state = 18}, + [1607] = {.lex_state = 18}, + [1608] = {.lex_state = 19, .external_lex_state = 2}, + [1609] = {.lex_state = 18}, + [1610] = {.lex_state = 18}, + [1611] = {.lex_state = 18}, + [1612] = {.lex_state = 18}, + [1613] = {.lex_state = 18}, + [1614] = {.lex_state = 18}, + [1615] = {.lex_state = 19}, + [1616] = {.lex_state = 18}, + [1617] = {.lex_state = 18}, + [1618] = {.lex_state = 18}, + [1619] = {.lex_state = 18}, + [1620] = {.lex_state = 18}, + [1621] = {.lex_state = 18}, + [1622] = {.lex_state = 18}, + [1623] = {.lex_state = 18}, + [1624] = {.lex_state = 18}, + [1625] = {.lex_state = 18}, + [1626] = {.lex_state = 18}, + [1627] = {.lex_state = 18}, + [1628] = {.lex_state = 18}, + [1629] = {.lex_state = 18}, + [1630] = {.lex_state = 18}, + [1631] = {.lex_state = 18}, + [1632] = {.lex_state = 18}, + [1633] = {.lex_state = 18}, + [1634] = {.lex_state = 18}, + [1635] = {.lex_state = 18}, + [1636] = {.lex_state = 18}, + [1637] = {.lex_state = 18}, + [1638] = {.lex_state = 18}, + [1639] = {.lex_state = 18}, + [1640] = {.lex_state = 18}, + [1641] = {.lex_state = 18}, + [1642] = {.lex_state = 18}, + [1643] = {.lex_state = 18}, + [1644] = {.lex_state = 18}, + [1645] = {.lex_state = 18}, + [1646] = {.lex_state = 18}, + [1647] = {.lex_state = 18}, + [1648] = {.lex_state = 18}, + [1649] = {.lex_state = 18}, + [1650] = {.lex_state = 18}, + [1651] = {.lex_state = 18}, + [1652] = {.lex_state = 18}, + [1653] = {.lex_state = 18}, + [1654] = {.lex_state = 18}, + [1655] = {.lex_state = 18}, + [1656] = {.lex_state = 18}, + [1657] = {.lex_state = 18}, + [1658] = {.lex_state = 18}, + [1659] = {.lex_state = 18}, + [1660] = {.lex_state = 18}, + [1661] = {.lex_state = 18}, + [1662] = {.lex_state = 18}, + [1663] = {.lex_state = 18}, + [1664] = {.lex_state = 18}, + [1665] = {.lex_state = 18}, + [1666] = {.lex_state = 18}, + [1667] = {.lex_state = 18}, + [1668] = {.lex_state = 18}, + [1669] = {.lex_state = 18}, + [1670] = {.lex_state = 18}, + [1671] = {.lex_state = 18}, + [1672] = {.lex_state = 18}, + [1673] = {.lex_state = 18}, + [1674] = {.lex_state = 18}, + [1675] = {.lex_state = 18}, + [1676] = {.lex_state = 18}, + [1677] = {.lex_state = 18}, + [1678] = {.lex_state = 18}, + [1679] = {.lex_state = 18}, + [1680] = {.lex_state = 18}, + [1681] = {.lex_state = 18}, + [1682] = {.lex_state = 18}, + [1683] = {.lex_state = 18}, + [1684] = {.lex_state = 18}, + [1685] = {.lex_state = 18}, + [1686] = {.lex_state = 18}, + [1687] = {.lex_state = 18}, + [1688] = {.lex_state = 18}, + [1689] = {.lex_state = 18}, + [1690] = {.lex_state = 18}, + [1691] = {.lex_state = 18}, + [1692] = {.lex_state = 18}, + [1693] = {.lex_state = 18}, + [1694] = {.lex_state = 18}, + [1695] = {.lex_state = 18}, + [1696] = {.lex_state = 18}, + [1697] = {.lex_state = 18}, + [1698] = {.lex_state = 18}, + [1699] = {.lex_state = 18}, + [1700] = {.lex_state = 18}, + [1701] = {.lex_state = 18}, + [1702] = {.lex_state = 20}, + [1703] = {.lex_state = 20}, + [1704] = {.lex_state = 16}, + [1705] = {.lex_state = 20}, + [1706] = {.lex_state = 20}, + [1707] = {.lex_state = 20}, + [1708] = {.lex_state = 20}, + [1709] = {.lex_state = 20}, + [1710] = {.lex_state = 20}, + [1711] = {.lex_state = 20}, + [1712] = {.lex_state = 20}, + [1713] = {.lex_state = 20}, + [1714] = {.lex_state = 21, .external_lex_state = 2}, + [1715] = {.lex_state = 20}, + [1716] = {.lex_state = 20}, + [1717] = {.lex_state = 20}, + [1718] = {.lex_state = 20}, + [1719] = {.lex_state = 21}, + [1720] = {.lex_state = 20}, + [1721] = {.lex_state = 20}, + [1722] = {.lex_state = 20}, + [1723] = {.lex_state = 20}, + [1724] = {.lex_state = 20}, + [1725] = {.lex_state = 20}, + [1726] = {.lex_state = 20}, + [1727] = {.lex_state = 20}, + [1728] = {.lex_state = 20}, + [1729] = {.lex_state = 20}, + [1730] = {.lex_state = 20}, + [1731] = {.lex_state = 20}, + [1732] = {.lex_state = 20}, + [1733] = {.lex_state = 20}, + [1734] = {.lex_state = 20}, + [1735] = {.lex_state = 20}, + [1736] = {.lex_state = 20}, + [1737] = {.lex_state = 20}, + [1738] = {.lex_state = 20}, + [1739] = {.lex_state = 20}, + [1740] = {.lex_state = 20}, + [1741] = {.lex_state = 20}, + [1742] = {.lex_state = 20}, + [1743] = {.lex_state = 20}, + [1744] = {.lex_state = 20}, + [1745] = {.lex_state = 20}, + [1746] = {.lex_state = 20}, + [1747] = {.lex_state = 20}, + [1748] = {.lex_state = 20}, + [1749] = {.lex_state = 20}, + [1750] = {.lex_state = 20}, + [1751] = {.lex_state = 20}, + [1752] = {.lex_state = 20}, + [1753] = {.lex_state = 20}, + [1754] = {.lex_state = 20}, + [1755] = {.lex_state = 20}, + [1756] = {.lex_state = 20}, + [1757] = {.lex_state = 20}, + [1758] = {.lex_state = 20}, + [1759] = {.lex_state = 20}, + [1760] = {.lex_state = 20}, + [1761] = {.lex_state = 20}, + [1762] = {.lex_state = 20}, + [1763] = {.lex_state = 20}, + [1764] = {.lex_state = 20}, + [1765] = {.lex_state = 20}, + [1766] = {.lex_state = 20}, + [1767] = {.lex_state = 20}, + [1768] = {.lex_state = 20}, + [1769] = {.lex_state = 20}, + [1770] = {.lex_state = 20}, + [1771] = {.lex_state = 20}, + [1772] = {.lex_state = 20}, + [1773] = {.lex_state = 20}, + [1774] = {.lex_state = 20}, + [1775] = {.lex_state = 20}, + [1776] = {.lex_state = 20}, + [1777] = {.lex_state = 20}, + [1778] = {.lex_state = 20}, + [1779] = {.lex_state = 20}, + [1780] = {.lex_state = 20}, + [1781] = {.lex_state = 20}, + [1782] = {.lex_state = 20}, + [1783] = {.lex_state = 20}, [1784] = {.lex_state = 20}, - [1785] = {.lex_state = 19}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 19}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, + [1785] = {.lex_state = 20}, + [1786] = {.lex_state = 20}, + [1787] = {.lex_state = 20}, + [1788] = {.lex_state = 20}, + [1789] = {.lex_state = 20}, + [1790] = {.lex_state = 20}, + [1791] = {.lex_state = 20}, + [1792] = {.lex_state = 20}, + [1793] = {.lex_state = 20}, + [1794] = {.lex_state = 20}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 19}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 19}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 19}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 19}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 19}, - [1811] = {.lex_state = 19}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 19}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 19}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, + [1796] = {.lex_state = 23}, + [1797] = {.lex_state = 25}, + [1798] = {.lex_state = 25}, + [1799] = {.lex_state = 25}, + [1800] = {.lex_state = 23}, + [1801] = {.lex_state = 23}, + [1802] = {.lex_state = 23}, + [1803] = {.lex_state = 25}, + [1804] = {.lex_state = 23}, + [1805] = {.lex_state = 25}, + [1806] = {.lex_state = 23}, + [1807] = {.lex_state = 25}, + [1808] = {.lex_state = 23}, + [1809] = {.lex_state = 23}, + [1810] = {.lex_state = 25}, + [1811] = {.lex_state = 25}, + [1812] = {.lex_state = 23}, + [1813] = {.lex_state = 25}, + [1814] = {.lex_state = 25}, + [1815] = {.lex_state = 25}, + [1816] = {.lex_state = 25}, + [1817] = {.lex_state = 25}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 19}, + [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, @@ -17127,22 +17599,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1824] = {.lex_state = 0}, [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 19}, - [1828] = {.lex_state = 19}, + [1827] = {.lex_state = 0}, + [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 19}, + [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 19}, + [1834] = {.lex_state = 0}, [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 19}, + [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 19}, - [1842] = {.lex_state = 19}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, @@ -17150,18 +17622,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 19}, - [1851] = {.lex_state = 20}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 19}, - [1854] = {.lex_state = 19}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 19}, - [1858] = {.lex_state = 19}, - [1859] = {.lex_state = 19}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 19}, + [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, @@ -17177,7 +17649,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 21}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, @@ -17188,13 +17660,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 19}, + [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 19}, + [1894] = {.lex_state = 0}, [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, @@ -17202,7 +17674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 19}, + [1902] = {.lex_state = 0}, [1903] = {.lex_state = 0}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, @@ -17265,7 +17737,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 21}, + [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, [1967] = {.lex_state = 0}, [1968] = {.lex_state = 0}, @@ -17279,110 +17751,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 19}, - [1980] = {.lex_state = 0}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 24}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 0}, + [1982] = {.lex_state = 24}, + [1983] = {.lex_state = 23}, [1984] = {.lex_state = 0}, [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, + [1989] = {.lex_state = 24}, [1990] = {.lex_state = 0}, [1991] = {.lex_state = 0}, [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 0}, + [1993] = {.lex_state = 24}, + [1994] = {.lex_state = 23}, + [1995] = {.lex_state = 23}, [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, + [1999] = {.lex_state = 25}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 0}, + [2003] = {.lex_state = 23}, + [2004] = {.lex_state = 23}, [2005] = {.lex_state = 0}, [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, + [2007] = {.lex_state = 24}, [2008] = {.lex_state = 0}, [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, + [2011] = {.lex_state = 23}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2014] = {.lex_state = 23}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, + [2017] = {.lex_state = 23}, [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 0}, + [2019] = {.lex_state = 23}, [2020] = {.lex_state = 0}, [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 0}, + [2022] = {.lex_state = 24}, + [2023] = {.lex_state = 23}, [2024] = {.lex_state = 0}, [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, + [2026] = {.lex_state = 23}, + [2027] = {.lex_state = 24}, [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 21}, + [2032] = {.lex_state = 23}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, + [2036] = {.lex_state = 23}, [2037] = {.lex_state = 0}, - [2038] = {.lex_state = 0}, + [2038] = {.lex_state = 23}, [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 0}, + [2041] = {.lex_state = 24}, + [2042] = {.lex_state = 23}, [2043] = {.lex_state = 0}, [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, + [2046] = {.lex_state = 23}, + [2047] = {.lex_state = 23}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, + [2050] = {.lex_state = 23}, + [2051] = {.lex_state = 24}, + [2052] = {.lex_state = 23}, + [2053] = {.lex_state = 23}, [2054] = {.lex_state = 0}, [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 0}, + [2060] = {.lex_state = 23}, [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 21}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 23}, + [2064] = {.lex_state = 23}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, + [2066] = {.lex_state = 23}, + [2067] = {.lex_state = 23}, [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, + [2069] = {.lex_state = 24}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 19}, + [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 19}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0}, + [2076] = {.lex_state = 23}, + [2077] = {.lex_state = 25}, + [2078] = {.lex_state = 23}, [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, + [2080] = {.lex_state = 23}, [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 0}, + [2082] = {.lex_state = 23}, [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, @@ -17395,7 +17867,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2092] = {.lex_state = 0}, [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 19}, + [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, [2098] = {.lex_state = 0}, @@ -17425,21 +17897,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, + [2125] = {.lex_state = 26}, [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0}, [2128] = {.lex_state = 0}, [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 21}, + [2132] = {.lex_state = 0}, [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, [2137] = {.lex_state = 0}, [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, + [2139] = {.lex_state = 26}, [2140] = {.lex_state = 0}, [2141] = {.lex_state = 0}, [2142] = {.lex_state = 0}, @@ -17453,12 +17925,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2150] = {.lex_state = 0}, [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, + [2153] = {.lex_state = 23}, [2154] = {.lex_state = 0}, [2155] = {.lex_state = 0}, [2156] = {.lex_state = 0}, [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 21}, + [2158] = {.lex_state = 0}, [2159] = {.lex_state = 0}, [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, @@ -17472,7 +17944,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 19}, + [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, [2175] = {.lex_state = 0}, @@ -17494,7 +17966,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2191] = {.lex_state = 0}, [2192] = {.lex_state = 0}, [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, + [2194] = {.lex_state = 23}, [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, [2197] = {.lex_state = 0}, @@ -17524,7 +17996,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2221] = {.lex_state = 0}, [2222] = {.lex_state = 0}, [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 0}, + [2224] = {.lex_state = 26}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, [2227] = {.lex_state = 0}, @@ -17537,11 +18009,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 21}, + [2237] = {.lex_state = 0}, [2238] = {.lex_state = 0}, [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0}, + [2241] = {.lex_state = 26}, [2242] = {.lex_state = 0}, [2243] = {.lex_state = 0}, [2244] = {.lex_state = 0}, @@ -17551,11 +18023,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2248] = {.lex_state = 0}, [2249] = {.lex_state = 0}, [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 19}, + [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, [2253] = {.lex_state = 0}, [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, + [2255] = {.lex_state = 23}, [2256] = {.lex_state = 0}, [2257] = {.lex_state = 0}, [2258] = {.lex_state = 0}, @@ -17582,7 +18054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2279] = {.lex_state = 0}, [2280] = {.lex_state = 0}, [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, + [2282] = {.lex_state = 23}, [2283] = {.lex_state = 0}, [2284] = {.lex_state = 0}, [2285] = {.lex_state = 0}, @@ -17606,7 +18078,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2303] = {.lex_state = 0}, [2304] = {.lex_state = 0}, [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 19}, + [2306] = {.lex_state = 0}, [2307] = {.lex_state = 0}, [2308] = {.lex_state = 0}, [2309] = {.lex_state = 0}, @@ -17642,21 +18114,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2339] = {.lex_state = 0}, [2340] = {.lex_state = 0}, [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 0}, + [2342] = {.lex_state = 26}, [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 21}, + [2344] = {.lex_state = 0}, [2345] = {.lex_state = 0}, [2346] = {.lex_state = 0}, [2347] = {.lex_state = 0}, [2348] = {.lex_state = 0}, [2349] = {.lex_state = 0}, [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, + [2351] = {.lex_state = 23}, [2352] = {.lex_state = 0}, [2353] = {.lex_state = 0}, [2354] = {.lex_state = 0}, [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, + [2356] = {.lex_state = 23}, [2357] = {.lex_state = 0}, [2358] = {.lex_state = 0}, [2359] = {.lex_state = 0}, @@ -17668,7 +18140,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2365] = {.lex_state = 0}, [2366] = {.lex_state = 0}, [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, + [2368] = {.lex_state = 23}, [2369] = {.lex_state = 0}, [2370] = {.lex_state = 0}, [2371] = {.lex_state = 0}, @@ -17703,59 +18175,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2400] = {.lex_state = 0}, [2401] = {.lex_state = 0}, [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 21}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 4}, - [2406] = {.lex_state = 0, .external_lex_state = 5}, - [2407] = {.lex_state = 0, .external_lex_state = 6}, - [2408] = {.lex_state = 0, .external_lex_state = 7}, - [2409] = {.lex_state = 19}, - [2410] = {.lex_state = 19}, + [2403] = {.lex_state = 0}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 0}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0}, [2411] = {.lex_state = 0}, - [2412] = {.lex_state = 21}, + [2412] = {.lex_state = 0}, [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 4}, - [2416] = {.lex_state = 19}, - [2417] = {.lex_state = 0, .external_lex_state = 5}, - [2418] = {.lex_state = 0, .external_lex_state = 7}, - [2419] = {.lex_state = 0, .external_lex_state = 6}, - [2420] = {.lex_state = 0, .external_lex_state = 5}, - [2421] = {.lex_state = 0, .external_lex_state = 4}, - [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 0, .external_lex_state = 6}, - [2424] = {.lex_state = 21}, + [2414] = {.lex_state = 0}, + [2415] = {.lex_state = 0}, + [2416] = {.lex_state = 0}, + [2417] = {.lex_state = 0}, + [2418] = {.lex_state = 0}, + [2419] = {.lex_state = 0}, + [2420] = {.lex_state = 0}, + [2421] = {.lex_state = 0}, + [2422] = {.lex_state = 0}, + [2423] = {.lex_state = 0}, + [2424] = {.lex_state = 0}, [2425] = {.lex_state = 0}, - [2426] = {.lex_state = 0, .external_lex_state = 7}, - [2427] = {.lex_state = 19}, - [2428] = {.lex_state = 19}, - [2429] = {.lex_state = 21}, - [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 4}, - [2432] = {.lex_state = 0, .external_lex_state = 5}, - [2433] = {.lex_state = 0, .external_lex_state = 6}, - [2434] = {.lex_state = 0, .external_lex_state = 7}, - [2435] = {.lex_state = 19}, - [2436] = {.lex_state = 0, .external_lex_state = 4}, - [2437] = {.lex_state = 21}, - [2438] = {.lex_state = 19}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 4}, - [2441] = {.lex_state = 0, .external_lex_state = 5}, - [2442] = {.lex_state = 0, .external_lex_state = 6}, - [2443] = {.lex_state = 0, .external_lex_state = 7}, - [2444] = {.lex_state = 19}, - [2445] = {.lex_state = 19}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 0}, + [2428] = {.lex_state = 0}, + [2429] = {.lex_state = 26}, + [2430] = {.lex_state = 0}, + [2431] = {.lex_state = 0}, + [2432] = {.lex_state = 0}, + [2433] = {.lex_state = 0}, + [2434] = {.lex_state = 0}, + [2435] = {.lex_state = 0}, + [2436] = {.lex_state = 0}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 0}, + [2439] = {.lex_state = 0}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 0}, + [2442] = {.lex_state = 0}, + [2443] = {.lex_state = 23}, + [2444] = {.lex_state = 0}, + [2445] = {.lex_state = 0}, [2446] = {.lex_state = 0}, [2447] = {.lex_state = 0}, - [2448] = {.lex_state = 21}, + [2448] = {.lex_state = 0}, [2449] = {.lex_state = 0}, [2450] = {.lex_state = 0}, - [2451] = {.lex_state = 19}, + [2451] = {.lex_state = 26}, [2452] = {.lex_state = 0}, [2453] = {.lex_state = 0}, [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 0, .external_lex_state = 4}, + [2455] = {.lex_state = 0}, [2456] = {.lex_state = 0}, [2457] = {.lex_state = 0}, [2458] = {.lex_state = 0}, @@ -17765,15 +18237,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2462] = {.lex_state = 0}, [2463] = {.lex_state = 0}, [2464] = {.lex_state = 0}, - [2465] = {.lex_state = 19}, - [2466] = {.lex_state = 19}, - [2467] = {.lex_state = 19}, - [2468] = {.lex_state = 21}, + [2465] = {.lex_state = 0}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 0}, [2469] = {.lex_state = 0}, - [2470] = {.lex_state = 19}, - [2471] = {.lex_state = 19}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 0}, [2472] = {.lex_state = 0}, - [2473] = {.lex_state = 19}, + [2473] = {.lex_state = 0}, [2474] = {.lex_state = 0}, [2475] = {.lex_state = 0}, [2476] = {.lex_state = 0}, @@ -17781,58 +18253,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2478] = {.lex_state = 0}, [2479] = {.lex_state = 0}, [2480] = {.lex_state = 0}, - [2481] = {.lex_state = 0, .external_lex_state = 7}, + [2481] = {.lex_state = 0}, [2482] = {.lex_state = 0}, [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 0, .external_lex_state = 6}, - [2485] = {.lex_state = 0, .external_lex_state = 5}, + [2484] = {.lex_state = 0}, + [2485] = {.lex_state = 0}, [2486] = {.lex_state = 0}, [2487] = {.lex_state = 0}, - [2488] = {.lex_state = 19}, - [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 19}, + [2488] = {.lex_state = 0}, + [2489] = {.lex_state = 0}, + [2490] = {.lex_state = 0}, [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 21}, + [2492] = {.lex_state = 0}, [2493] = {.lex_state = 0}, [2494] = {.lex_state = 0}, - [2495] = {.lex_state = 0}, + [2495] = {.lex_state = 26}, [2496] = {.lex_state = 0}, [2497] = {.lex_state = 0}, [2498] = {.lex_state = 0}, - [2499] = {.lex_state = 0, .external_lex_state = 7}, - [2500] = {.lex_state = 19}, - [2501] = {.lex_state = 0}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 0}, + [2501] = {.lex_state = 23}, [2502] = {.lex_state = 0}, - [2503] = {.lex_state = 0, .external_lex_state = 6}, + [2503] = {.lex_state = 0}, [2504] = {.lex_state = 0}, [2505] = {.lex_state = 0}, [2506] = {.lex_state = 0}, [2507] = {.lex_state = 0}, [2508] = {.lex_state = 0}, - [2509] = {.lex_state = 0}, + [2509] = {.lex_state = 26}, [2510] = {.lex_state = 0}, - [2511] = {.lex_state = 0, .external_lex_state = 4}, - [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 0, .external_lex_state = 7}, - [2514] = {.lex_state = 0, .external_lex_state = 6}, - [2515] = {.lex_state = 0, .external_lex_state = 5}, - [2516] = {.lex_state = 19}, + [2511] = {.lex_state = 0}, + [2512] = {.lex_state = 0}, + [2513] = {.lex_state = 0}, + [2514] = {.lex_state = 0}, + [2515] = {.lex_state = 0}, + [2516] = {.lex_state = 0}, [2517] = {.lex_state = 0}, [2518] = {.lex_state = 0}, [2519] = {.lex_state = 0}, - [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 0}, [2521] = {.lex_state = 0}, [2522] = {.lex_state = 0}, - [2523] = {.lex_state = 0}, + [2523] = {.lex_state = 23}, [2524] = {.lex_state = 0}, [2525] = {.lex_state = 0}, [2526] = {.lex_state = 0}, [2527] = {.lex_state = 0}, - [2528] = {.lex_state = 21}, - [2529] = {.lex_state = 19}, + [2528] = {.lex_state = 0}, + [2529] = {.lex_state = 0}, [2530] = {.lex_state = 0}, [2531] = {.lex_state = 0}, - [2532] = {.lex_state = 19}, + [2532] = {.lex_state = 0}, [2533] = {.lex_state = 0}, [2534] = {.lex_state = 0}, [2535] = {.lex_state = 0}, @@ -17840,10 +18312,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2537] = {.lex_state = 0}, [2538] = {.lex_state = 0}, [2539] = {.lex_state = 0}, - [2540] = {.lex_state = 0, .external_lex_state = 5}, - [2541] = {.lex_state = 19}, - [2542] = {.lex_state = 19}, - [2543] = {.lex_state = 19}, + [2540] = {.lex_state = 0}, + [2541] = {.lex_state = 0}, + [2542] = {.lex_state = 0}, + [2543] = {.lex_state = 0}, [2544] = {.lex_state = 0}, [2545] = {.lex_state = 0}, [2546] = {.lex_state = 0}, @@ -17854,7 +18326,311 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2551] = {.lex_state = 0}, [2552] = {.lex_state = 0}, [2553] = {.lex_state = 0}, - [2554] = {.lex_state = 19}, + [2554] = {.lex_state = 0}, + [2555] = {.lex_state = 0}, + [2556] = {.lex_state = 0}, + [2557] = {.lex_state = 0}, + [2558] = {.lex_state = 0}, + [2559] = {.lex_state = 0}, + [2560] = {.lex_state = 0}, + [2561] = {.lex_state = 0}, + [2562] = {.lex_state = 0}, + [2563] = {.lex_state = 0}, + [2564] = {.lex_state = 23}, + [2565] = {.lex_state = 0}, + [2566] = {.lex_state = 0}, + [2567] = {.lex_state = 0}, + [2568] = {.lex_state = 0}, + [2569] = {.lex_state = 0}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 0}, + [2573] = {.lex_state = 0}, + [2574] = {.lex_state = 0}, + [2575] = {.lex_state = 0}, + [2576] = {.lex_state = 0}, + [2577] = {.lex_state = 0}, + [2578] = {.lex_state = 0}, + [2579] = {.lex_state = 0}, + [2580] = {.lex_state = 0}, + [2581] = {.lex_state = 0}, + [2582] = {.lex_state = 0}, + [2583] = {.lex_state = 0}, + [2584] = {.lex_state = 0}, + [2585] = {.lex_state = 0}, + [2586] = {.lex_state = 0}, + [2587] = {.lex_state = 0}, + [2588] = {.lex_state = 0}, + [2589] = {.lex_state = 0}, + [2590] = {.lex_state = 0}, + [2591] = {.lex_state = 0}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 0}, + [2594] = {.lex_state = 0}, + [2595] = {.lex_state = 0}, + [2596] = {.lex_state = 0}, + [2597] = {.lex_state = 0}, + [2598] = {.lex_state = 0}, + [2599] = {.lex_state = 0}, + [2600] = {.lex_state = 0}, + [2601] = {.lex_state = 0}, + [2602] = {.lex_state = 0}, + [2603] = {.lex_state = 0}, + [2604] = {.lex_state = 0}, + [2605] = {.lex_state = 0}, + [2606] = {.lex_state = 0}, + [2607] = {.lex_state = 0}, + [2608] = {.lex_state = 0}, + [2609] = {.lex_state = 0}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 0}, + [2613] = {.lex_state = 0}, + [2614] = {.lex_state = 0}, + [2615] = {.lex_state = 0}, + [2616] = {.lex_state = 0}, + [2617] = {.lex_state = 0}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 0}, + [2621] = {.lex_state = 0}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 0}, + [2625] = {.lex_state = 0}, + [2626] = {.lex_state = 0}, + [2627] = {.lex_state = 0}, + [2628] = {.lex_state = 0}, + [2629] = {.lex_state = 0}, + [2630] = {.lex_state = 0}, + [2631] = {.lex_state = 0}, + [2632] = {.lex_state = 0}, + [2633] = {.lex_state = 0}, + [2634] = {.lex_state = 0}, + [2635] = {.lex_state = 0}, + [2636] = {.lex_state = 0}, + [2637] = {.lex_state = 0}, + [2638] = {.lex_state = 0}, + [2639] = {.lex_state = 0}, + [2640] = {.lex_state = 0}, + [2641] = {.lex_state = 0}, + [2642] = {.lex_state = 0}, + [2643] = {.lex_state = 0}, + [2644] = {.lex_state = 0}, + [2645] = {.lex_state = 0}, + [2646] = {.lex_state = 0}, + [2647] = {.lex_state = 0}, + [2648] = {.lex_state = 0}, + [2649] = {.lex_state = 0}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 0}, + [2652] = {.lex_state = 0}, + [2653] = {.lex_state = 0}, + [2654] = {.lex_state = 0}, + [2655] = {.lex_state = 0}, + [2656] = {.lex_state = 0}, + [2657] = {.lex_state = 0}, + [2658] = {.lex_state = 0}, + [2659] = {.lex_state = 0}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 0}, + [2662] = {.lex_state = 0}, + [2663] = {.lex_state = 0}, + [2664] = {.lex_state = 0}, + [2665] = {.lex_state = 0}, + [2666] = {.lex_state = 0}, + [2667] = {.lex_state = 0}, + [2668] = {.lex_state = 0}, + [2669] = {.lex_state = 0}, + [2670] = {.lex_state = 0}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 0}, + [2673] = {.lex_state = 0}, + [2674] = {.lex_state = 0}, + [2675] = {.lex_state = 0}, + [2676] = {.lex_state = 0}, + [2677] = {.lex_state = 0}, + [2678] = {.lex_state = 0}, + [2679] = {.lex_state = 0}, + [2680] = {.lex_state = 0}, + [2681] = {.lex_state = 0}, + [2682] = {.lex_state = 0}, + [2683] = {.lex_state = 0}, + [2684] = {.lex_state = 0}, + [2685] = {.lex_state = 0}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 0}, + [2688] = {.lex_state = 0}, + [2689] = {.lex_state = 0}, + [2690] = {.lex_state = 0}, + [2691] = {.lex_state = 0}, + [2692] = {.lex_state = 0}, + [2693] = {.lex_state = 0}, + [2694] = {.lex_state = 0}, + [2695] = {.lex_state = 0}, + [2696] = {.lex_state = 0}, + [2697] = {.lex_state = 0}, + [2698] = {.lex_state = 0}, + [2699] = {.lex_state = 0}, + [2700] = {.lex_state = 23}, + [2701] = {.lex_state = 0, .external_lex_state = 3}, + [2702] = {.lex_state = 0, .external_lex_state = 4}, + [2703] = {.lex_state = 0, .external_lex_state = 5}, + [2704] = {.lex_state = 0, .external_lex_state = 6}, + [2705] = {.lex_state = 23}, + [2706] = {.lex_state = 26}, + [2707] = {.lex_state = 0, .external_lex_state = 7}, + [2708] = {.lex_state = 0, .external_lex_state = 3}, + [2709] = {.lex_state = 0, .external_lex_state = 4}, + [2710] = {.lex_state = 0, .external_lex_state = 5}, + [2711] = {.lex_state = 0, .external_lex_state = 6}, + [2712] = {.lex_state = 23}, + [2713] = {.lex_state = 26}, + [2714] = {.lex_state = 0, .external_lex_state = 7}, + [2715] = {.lex_state = 0, .external_lex_state = 3}, + [2716] = {.lex_state = 0, .external_lex_state = 4}, + [2717] = {.lex_state = 0, .external_lex_state = 5}, + [2718] = {.lex_state = 0, .external_lex_state = 6}, + [2719] = {.lex_state = 23}, + [2720] = {.lex_state = 23}, + [2721] = {.lex_state = 0}, + [2722] = {.lex_state = 26}, + [2723] = {.lex_state = 0}, + [2724] = {.lex_state = 26}, + [2725] = {.lex_state = 0}, + [2726] = {.lex_state = 0, .external_lex_state = 7}, + [2727] = {.lex_state = 0, .external_lex_state = 3}, + [2728] = {.lex_state = 0, .external_lex_state = 4}, + [2729] = {.lex_state = 0, .external_lex_state = 5}, + [2730] = {.lex_state = 0, .external_lex_state = 6}, + [2731] = {.lex_state = 23}, + [2732] = {.lex_state = 23}, + [2733] = {.lex_state = 26}, + [2734] = {.lex_state = 23}, + [2735] = {.lex_state = 0, .external_lex_state = 7}, + [2736] = {.lex_state = 0, .external_lex_state = 3}, + [2737] = {.lex_state = 0, .external_lex_state = 4}, + [2738] = {.lex_state = 0, .external_lex_state = 5}, + [2739] = {.lex_state = 23}, + [2740] = {.lex_state = 0, .external_lex_state = 6}, + [2741] = {.lex_state = 23}, + [2742] = {.lex_state = 26}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 23}, + [2745] = {.lex_state = 23}, + [2746] = {.lex_state = 0}, + [2747] = {.lex_state = 23}, + [2748] = {.lex_state = 0}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 0}, + [2751] = {.lex_state = 0}, + [2752] = {.lex_state = 0}, + [2753] = {.lex_state = 0}, + [2754] = {.lex_state = 0, .external_lex_state = 6}, + [2755] = {.lex_state = 0}, + [2756] = {.lex_state = 0, .external_lex_state = 4}, + [2757] = {.lex_state = 0, .external_lex_state = 3}, + [2758] = {.lex_state = 0}, + [2759] = {.lex_state = 23}, + [2760] = {.lex_state = 23}, + [2761] = {.lex_state = 26}, + [2762] = {.lex_state = 26}, + [2763] = {.lex_state = 0, .external_lex_state = 7}, + [2764] = {.lex_state = 0}, + [2765] = {.lex_state = 0, .external_lex_state = 3}, + [2766] = {.lex_state = 0}, + [2767] = {.lex_state = 0, .external_lex_state = 6}, + [2768] = {.lex_state = 0, .external_lex_state = 5}, + [2769] = {.lex_state = 0, .external_lex_state = 4}, + [2770] = {.lex_state = 0, .external_lex_state = 7}, + [2771] = {.lex_state = 23}, + [2772] = {.lex_state = 0}, + [2773] = {.lex_state = 0}, + [2774] = {.lex_state = 0}, + [2775] = {.lex_state = 0}, + [2776] = {.lex_state = 26}, + [2777] = {.lex_state = 0}, + [2778] = {.lex_state = 0}, + [2779] = {.lex_state = 0, .external_lex_state = 7}, + [2780] = {.lex_state = 0, .external_lex_state = 5}, + [2781] = {.lex_state = 0}, + [2782] = {.lex_state = 0}, + [2783] = {.lex_state = 0}, + [2784] = {.lex_state = 0}, + [2785] = {.lex_state = 0}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 26}, + [2788] = {.lex_state = 23}, + [2789] = {.lex_state = 0}, + [2790] = {.lex_state = 23}, + [2791] = {.lex_state = 23}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 0}, + [2794] = {.lex_state = 0}, + [2795] = {.lex_state = 0}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 0}, + [2798] = {.lex_state = 0}, + [2799] = {.lex_state = 0}, + [2800] = {.lex_state = 23}, + [2801] = {.lex_state = 0, .external_lex_state = 7}, + [2802] = {.lex_state = 0, .external_lex_state = 4}, + [2803] = {.lex_state = 0, .external_lex_state = 5}, + [2804] = {.lex_state = 0, .external_lex_state = 6}, + [2805] = {.lex_state = 23}, + [2806] = {.lex_state = 23}, + [2807] = {.lex_state = 0}, + [2808] = {.lex_state = 0}, + [2809] = {.lex_state = 23}, + [2810] = {.lex_state = 0}, + [2811] = {.lex_state = 0}, + [2812] = {.lex_state = 0}, + [2813] = {.lex_state = 0}, + [2814] = {.lex_state = 0}, + [2815] = {.lex_state = 0}, + [2816] = {.lex_state = 0}, + [2817] = {.lex_state = 0}, + [2818] = {.lex_state = 0}, + [2819] = {.lex_state = 0}, + [2820] = {.lex_state = 0}, + [2821] = {.lex_state = 0}, + [2822] = {.lex_state = 0}, + [2823] = {.lex_state = 0}, + [2824] = {.lex_state = 0}, + [2825] = {.lex_state = 23}, + [2826] = {.lex_state = 0}, + [2827] = {.lex_state = 0}, + [2828] = {.lex_state = 0}, + [2829] = {.lex_state = 0}, + [2830] = {.lex_state = 0, .external_lex_state = 3}, + [2831] = {.lex_state = 0}, + [2832] = {.lex_state = 23}, + [2833] = {.lex_state = 0}, + [2834] = {.lex_state = 0}, + [2835] = {.lex_state = 0}, + [2836] = {.lex_state = 0}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 0}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 0}, + [2841] = {.lex_state = 0}, + [2842] = {.lex_state = 0}, + [2843] = {.lex_state = 0}, + [2844] = {.lex_state = 0}, + [2845] = {.lex_state = 23}, + [2846] = {.lex_state = 23}, + [2847] = {.lex_state = 0}, + [2848] = {.lex_state = 0}, + [2849] = {.lex_state = 23}, + [2850] = {.lex_state = 0}, + [2851] = {.lex_state = 0}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 0}, + [2854] = {.lex_state = 0}, + [2855] = {.lex_state = 0}, + [2856] = {.lex_state = 0}, + [2857] = {.lex_state = 0}, + [2858] = {.lex_state = 23}, }; enum { @@ -17888,19 +18664,19 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__trivia_raw_fi] = true, }, [3] = { - [ts_external_token__trivia_raw_env_pycode] = true, + [ts_external_token__trivia_raw_env_minted] = true, }, [4] = { - [ts_external_token__trivia_raw_env_minted] = true, + [ts_external_token__trivia_raw_env_listing] = true, }, [5] = { - [ts_external_token__trivia_raw_env_listing] = true, + [ts_external_token__trivia_raw_env_verbatim] = true, }, [6] = { - [ts_external_token__trivia_raw_env_verbatim] = true, + [ts_external_token__trivia_raw_env_comment] = true, }, [7] = { - [ts_external_token__trivia_raw_env_comment] = true, + [ts_external_token__trivia_raw_env_pycode] = true, }, }; @@ -17942,6 +18718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem_STAR] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_BSLASHand] = ACTIONS(1), [sym_word] = ACTIONS(1), [sym_placeholder] = ACTIONS(1), [sym_argc] = ACTIONS(1), @@ -17972,6 +18749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lstlisting] = ACTIONS(1), [anon_sym_minted] = ACTIONS(1), [anon_sym_pycode] = ACTIONS(1), + [anon_sym_BSLASHtitle] = ACTIONS(1), + [anon_sym_BSLASHauthor] = ACTIONS(1), [anon_sym_BSLASHusepackage] = ACTIONS(1), [anon_sym_BSLASHRequirePackage] = ACTIONS(1), [anon_sym_BSLASHdocumentclass] = ACTIONS(1), @@ -18200,90 +18979,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__trivia_raw_env_pycode] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2498), - [sym_block_comment] = STATE(68), - [sym__root_content] = STATE(68), - [sym__flat_content] = STATE(68), - [sym__text_with_env_content] = STATE(68), - [sym__text_content] = STATE(68), - [sym__section] = STATE(68), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(68), - [sym_text] = STATE(68), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(68), - [sym_inline_formula] = STATE(68), - [sym_math_set] = STATE(68), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(68), - [sym_comment_environment] = STATE(68), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(68), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(68), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(68), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(68), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(68), - [sym_generic_command] = STATE(68), - [sym_package_include] = STATE(68), - [sym_class_include] = STATE(68), - [sym_latex_include] = STATE(68), - [sym_biblatex_include] = STATE(68), - [sym_bibtex_include] = STATE(68), - [sym_graphics_include] = STATE(68), - [sym_svg_include] = STATE(68), - [sym_inkscape_include] = STATE(68), - [sym_verbatim_include] = STATE(68), - [sym_import_include] = STATE(68), - [sym_caption] = STATE(68), - [sym_citation] = STATE(68), - [sym_label_definition] = STATE(68), - [sym_label_reference] = STATE(68), - [sym_label_reference_range] = STATE(68), - [sym_label_number] = STATE(68), - [sym_new_command_definition] = STATE(68), - [sym_old_command_definition] = STATE(68), - [sym_let_command_definition] = STATE(68), - [sym_paired_delimiter_definition] = STATE(68), - [sym_environment_definition] = STATE(68), - [sym_glossary_entry_definition] = STATE(68), - [sym_glossary_entry_reference] = STATE(68), - [sym_acronym_definition] = STATE(68), - [sym_acronym_reference] = STATE(68), - [sym_theorem_definition] = STATE(68), - [sym_color_definition] = STATE(68), - [sym_color_set_definition] = STATE(68), - [sym_color_reference] = STATE(68), - [sym_tikz_library_import] = STATE(68), - [sym_text_mode] = STATE(68), - [aux_sym_source_file_repeat1] = STATE(68), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_source_file] = STATE(2753), + [sym_block_comment] = STATE(75), + [sym__root_content] = STATE(75), + [sym__flat_content] = STATE(75), + [sym__text_with_env_content] = STATE(75), + [sym__text_content] = STATE(75), + [sym__section] = STATE(75), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(75), + [sym_text] = STATE(75), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(75), + [sym_inline_formula] = STATE(75), + [sym_math_set] = STATE(75), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(75), + [sym_comment_environment] = STATE(75), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(75), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(75), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(75), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(75), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(75), + [sym_generic_command] = STATE(75), + [sym_title_declaration] = STATE(75), + [sym_author_declaration] = STATE(75), + [sym_package_include] = STATE(75), + [sym_class_include] = STATE(75), + [sym_latex_include] = STATE(75), + [sym_biblatex_include] = STATE(75), + [sym_bibtex_include] = STATE(75), + [sym_graphics_include] = STATE(75), + [sym_svg_include] = STATE(75), + [sym_inkscape_include] = STATE(75), + [sym_verbatim_include] = STATE(75), + [sym_import_include] = STATE(75), + [sym_caption] = STATE(75), + [sym_citation] = STATE(75), + [sym_label_definition] = STATE(75), + [sym_label_reference] = STATE(75), + [sym_label_reference_range] = STATE(75), + [sym_label_number] = STATE(75), + [sym_new_command_definition] = STATE(75), + [sym_old_command_definition] = STATE(75), + [sym_let_command_definition] = STATE(75), + [sym_paired_delimiter_definition] = STATE(75), + [sym_environment_definition] = STATE(75), + [sym_glossary_entry_definition] = STATE(75), + [sym_glossary_entry_reference] = STATE(75), + [sym_acronym_definition] = STATE(75), + [sym_acronym_reference] = STATE(75), + [sym_theorem_definition] = STATE(75), + [sym_color_definition] = STATE(75), + [sym_color_set_definition] = STATE(75), + [sym_color_reference] = STATE(75), + [sym_tikz_library_import] = STATE(75), + [sym_text_mode] = STATE(75), + [aux_sym_source_file_repeat1] = STATE(75), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [ts_builtin_sym_end] = ACTIONS(5), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), @@ -18338,677 +19119,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [2] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), [anon_sym_BSLASHtext] = ACTIONS(137), [anon_sym_BSLASHintertext] = ACTIONS(137), [anon_sym_shortintertext] = ACTIONS(137), }, - [3] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(141), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), + [2] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), [anon_sym_LPAREN] = ACTIONS(141), [anon_sym_RPAREN] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(141), @@ -19016,3916 +19439,3603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(141), [anon_sym_EQ] = ACTIONS(141), [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_BSLASHand] = ACTIONS(139), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [3] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(179), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, [4] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(183), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, [5] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(175), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [6] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(674), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(209), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(189), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [7] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASH_RBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [anon_sym_BSLASHand] = ACTIONS(181), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, [8] = { - [sym_block_comment] = STATE(12), - [sym__root_content] = STATE(12), - [sym__flat_content] = STATE(12), - [sym__text_with_env_content] = STATE(12), - [sym__text_content] = STATE(12), - [sym__section] = STATE(12), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(12), - [sym_text] = STATE(12), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(12), - [sym_inline_formula] = STATE(12), - [sym_math_set] = STATE(12), - [sym_begin] = STATE(8), - [sym_end] = STATE(1197), - [sym_generic_environment] = STATE(12), - [sym_comment_environment] = STATE(12), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(12), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(12), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(12), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(12), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(12), - [sym_generic_command] = STATE(12), - [sym_package_include] = STATE(12), - [sym_class_include] = STATE(12), - [sym_latex_include] = STATE(12), - [sym_biblatex_include] = STATE(12), - [sym_bibtex_include] = STATE(12), - [sym_graphics_include] = STATE(12), - [sym_svg_include] = STATE(12), - [sym_inkscape_include] = STATE(12), - [sym_verbatim_include] = STATE(12), - [sym_import_include] = STATE(12), - [sym_caption] = STATE(12), - [sym_citation] = STATE(12), - [sym_label_definition] = STATE(12), - [sym_label_reference] = STATE(12), - [sym_label_reference_range] = STATE(12), - [sym_label_number] = STATE(12), - [sym_new_command_definition] = STATE(12), - [sym_old_command_definition] = STATE(12), - [sym_let_command_definition] = STATE(12), - [sym_paired_delimiter_definition] = STATE(12), - [sym_environment_definition] = STATE(12), - [sym_glossary_entry_definition] = STATE(12), - [sym_glossary_entry_reference] = STATE(12), - [sym_acronym_definition] = STATE(12), - [sym_acronym_reference] = STATE(12), - [sym_theorem_definition] = STATE(12), - [sym_color_definition] = STATE(12), - [sym_color_set_definition] = STATE(12), - [sym_color_reference] = STATE(12), - [sym_tikz_library_import] = STATE(12), - [sym_text_mode] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_RPAREN] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(283), - [anon_sym_RBRACK] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(283), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_BSLASHand] = ACTIONS(185), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(285), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, [9] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_BSLASHand] = ACTIONS(191), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [10] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(847), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(321), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [11] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [12] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(1267), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [sym_block_comment] = STATE(36), + [sym__root_content] = STATE(36), + [sym__flat_content] = STATE(36), + [sym__text_with_env_content] = STATE(36), + [sym__text_content] = STATE(36), + [sym__section] = STATE(36), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(36), + [sym_text] = STATE(36), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(36), + [sym_inline_formula] = STATE(36), + [sym_math_set] = STATE(36), + [sym_begin] = STATE(15), + [sym_end] = STATE(1020), + [sym_generic_environment] = STATE(36), + [sym_comment_environment] = STATE(36), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(36), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(36), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(36), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(36), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(36), + [sym_generic_command] = STATE(36), + [sym_title_declaration] = STATE(36), + [sym_author_declaration] = STATE(36), + [sym_package_include] = STATE(36), + [sym_class_include] = STATE(36), + [sym_latex_include] = STATE(36), + [sym_biblatex_include] = STATE(36), + [sym_bibtex_include] = STATE(36), + [sym_graphics_include] = STATE(36), + [sym_svg_include] = STATE(36), + [sym_inkscape_include] = STATE(36), + [sym_verbatim_include] = STATE(36), + [sym_import_include] = STATE(36), + [sym_caption] = STATE(36), + [sym_citation] = STATE(36), + [sym_label_definition] = STATE(36), + [sym_label_reference] = STATE(36), + [sym_label_reference_range] = STATE(36), + [sym_label_number] = STATE(36), + [sym_new_command_definition] = STATE(36), + [sym_old_command_definition] = STATE(36), + [sym_let_command_definition] = STATE(36), + [sym_paired_delimiter_definition] = STATE(36), + [sym_environment_definition] = STATE(36), + [sym_glossary_entry_definition] = STATE(36), + [sym_glossary_entry_reference] = STATE(36), + [sym_acronym_definition] = STATE(36), + [sym_acronym_reference] = STATE(36), + [sym_theorem_definition] = STATE(36), + [sym_color_definition] = STATE(36), + [sym_color_set_definition] = STATE(36), + [sym_color_reference] = STATE(36), + [sym_tikz_library_import] = STATE(36), + [sym_text_mode] = STATE(36), + [aux_sym_source_file_repeat1] = STATE(36), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(285), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [13] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(8), - [sym_end] = STATE(973), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_paired_delimiter_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [sym_text_mode] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_EQ] = ACTIONS(323), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(325), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [14] = { + [12] = { [sym_block_comment] = STATE(14), [sym__root_content] = STATE(14), [sym__flat_content] = STATE(14), [sym__text_with_env_content] = STATE(14), [sym__text_content] = STATE(14), [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), [sym_curly_group] = STATE(14), [sym_text] = STATE(14), - [sym_operator] = STATE(776), + [sym_operator] = STATE(1134), [sym_displayed_equation] = STATE(14), [sym_inline_formula] = STATE(14), [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), + [sym_begin] = STATE(15), + [sym_end] = STATE(1001), [sym_generic_environment] = STATE(14), [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), + [sym__trivia_begin_comment] = STATE(2711), [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), + [sym__trivia_begin_verbatim] = STATE(2710), [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), + [sym__trivia_begin_listing] = STATE(2709), [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), + [sym__trivia_begin_minted] = STATE(2708), [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), + [sym__trivia_begin_pycode] = STATE(2707), [sym__command] = STATE(14), [sym_generic_command] = STATE(14), + [sym_title_declaration] = STATE(14), + [sym_author_declaration] = STATE(14), [sym_package_include] = STATE(14), [sym_class_include] = STATE(14), [sym_latex_include] = STATE(14), @@ -22958,1099 +23068,1838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(14), [sym_text_mode] = STATE(14), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(327), - [sym_command_name] = ACTIONS(329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_RPAREN] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(335), - [anon_sym_RBRACK] = ACTIONS(335), - [anon_sym_COMMA] = ACTIONS(335), - [anon_sym_EQ] = ACTIONS(335), - [anon_sym_BSLASHpart] = ACTIONS(338), - [anon_sym_BSLASHpart_STAR] = ACTIONS(341), - [anon_sym_BSLASHaddpart] = ACTIONS(338), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(341), - [anon_sym_BSLASHchapter] = ACTIONS(344), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(347), - [anon_sym_BSLASHaddchap] = ACTIONS(344), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(347), - [anon_sym_BSLASHsection] = ACTIONS(350), - [anon_sym_BSLASHsection_STAR] = ACTIONS(353), - [anon_sym_BSLASHaddsec] = ACTIONS(350), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(353), - [anon_sym_BSLASHsubsection] = ACTIONS(356), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(362), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(365), - [anon_sym_BSLASHparagraph] = ACTIONS(368), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(374), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(377), - [anon_sym_BSLASHitem] = ACTIONS(380), - [anon_sym_BSLASHitem_STAR] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(327), - [sym_word] = ACTIONS(389), - [sym_placeholder] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym__] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(398), - [anon_sym_BSLASH_LBRACK] = ACTIONS(398), - [anon_sym_DOLLAR] = ACTIONS(401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(404), - [anon_sym_BSLASH_LBRACE] = ACTIONS(407), - [anon_sym_BSLASHbegin] = ACTIONS(410), - [anon_sym_BSLASHusepackage] = ACTIONS(413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(416), - [anon_sym_BSLASHinclude] = ACTIONS(419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(419), - [anon_sym_BSLASHinput] = ACTIONS(419), - [anon_sym_BSLASHsubfile] = ACTIONS(419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(422), - [anon_sym_BSLASHbibliography] = ACTIONS(425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(428), - [anon_sym_BSLASHincludesvg] = ACTIONS(431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(434), - [anon_sym_BSLASHverbatiminput] = ACTIONS(437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(437), - [anon_sym_BSLASHimport] = ACTIONS(440), - [anon_sym_BSLASHsubimport] = ACTIONS(440), - [anon_sym_BSLASHinputfrom] = ACTIONS(440), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(440), - [anon_sym_BSLASHincludefrom] = ACTIONS(440), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(440), - [anon_sym_BSLASHcaption] = ACTIONS(443), - [anon_sym_BSLASHcite] = ACTIONS(446), - [anon_sym_BSLASHcite_STAR] = ACTIONS(449), - [anon_sym_BSLASHCite] = ACTIONS(446), - [anon_sym_BSLASHnocite] = ACTIONS(446), - [anon_sym_BSLASHcitet] = ACTIONS(446), - [anon_sym_BSLASHcitep] = ACTIONS(446), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(449), - [anon_sym_BSLASHciteauthor] = ACTIONS(446), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(446), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(449), - [anon_sym_BSLASHcitetitle] = ACTIONS(446), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(449), - [anon_sym_BSLASHciteyear] = ACTIONS(446), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(449), - [anon_sym_BSLASHcitedate] = ACTIONS(446), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(449), - [anon_sym_BSLASHciteurl] = ACTIONS(446), - [anon_sym_BSLASHfullcite] = ACTIONS(446), - [anon_sym_BSLASHciteyearpar] = ACTIONS(446), - [anon_sym_BSLASHcitealt] = ACTIONS(446), - [anon_sym_BSLASHcitealp] = ACTIONS(446), - [anon_sym_BSLASHcitetext] = ACTIONS(446), - [anon_sym_BSLASHparencite] = ACTIONS(446), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(449), - [anon_sym_BSLASHParencite] = ACTIONS(446), - [anon_sym_BSLASHfootcite] = ACTIONS(446), - [anon_sym_BSLASHfootfullcite] = ACTIONS(446), - [anon_sym_BSLASHfootcitetext] = ACTIONS(446), - [anon_sym_BSLASHtextcite] = ACTIONS(446), - [anon_sym_BSLASHTextcite] = ACTIONS(446), - [anon_sym_BSLASHsmartcite] = ACTIONS(446), - [anon_sym_BSLASHSmartcite] = ACTIONS(446), - [anon_sym_BSLASHsupercite] = ACTIONS(446), - [anon_sym_BSLASHautocite] = ACTIONS(446), - [anon_sym_BSLASHAutocite] = ACTIONS(446), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(449), - [anon_sym_BSLASHvolcite] = ACTIONS(446), - [anon_sym_BSLASHVolcite] = ACTIONS(446), - [anon_sym_BSLASHpvolcite] = ACTIONS(446), - [anon_sym_BSLASHPvolcite] = ACTIONS(446), - [anon_sym_BSLASHfvolcite] = ACTIONS(446), - [anon_sym_BSLASHftvolcite] = ACTIONS(446), - [anon_sym_BSLASHsvolcite] = ACTIONS(446), - [anon_sym_BSLASHSvolcite] = ACTIONS(446), - [anon_sym_BSLASHtvolcite] = ACTIONS(446), - [anon_sym_BSLASHTvolcite] = ACTIONS(446), - [anon_sym_BSLASHavolcite] = ACTIONS(446), - [anon_sym_BSLASHAvolcite] = ACTIONS(446), - [anon_sym_BSLASHnotecite] = ACTIONS(446), - [anon_sym_BSLASHNotecite] = ACTIONS(446), - [anon_sym_BSLASHpnotecite] = ACTIONS(446), - [anon_sym_BSLASHPnotecite] = ACTIONS(446), - [anon_sym_BSLASHfnotecite] = ACTIONS(446), - [anon_sym_BSLASHlabel] = ACTIONS(452), - [anon_sym_BSLASHref] = ACTIONS(455), - [anon_sym_BSLASHeqref] = ACTIONS(455), - [anon_sym_BSLASHvref] = ACTIONS(455), - [anon_sym_BSLASHVref] = ACTIONS(455), - [anon_sym_BSLASHautoref] = ACTIONS(455), - [anon_sym_BSLASHpageref] = ACTIONS(455), - [anon_sym_BSLASHcref] = ACTIONS(455), - [anon_sym_BSLASHCref] = ACTIONS(455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(458), - [anon_sym_BSLASHCref_STAR] = ACTIONS(458), - [anon_sym_BSLASHnamecref] = ACTIONS(455), - [anon_sym_BSLASHnameCref] = ACTIONS(455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(455), - [anon_sym_BSLASHlabelcref] = ACTIONS(455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(455), - [anon_sym_BSLASHcrefrange] = ACTIONS(461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(464), - [anon_sym_BSLASHCrefrange] = ACTIONS(461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(464), - [anon_sym_BSLASHnewlabel] = ACTIONS(467), - [anon_sym_BSLASHnewcommand] = ACTIONS(470), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(470), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(470), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(470), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(473), - [anon_sym_BSLASHdef] = ACTIONS(476), - [anon_sym_BSLASHlet] = ACTIONS(479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(482), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(482), - [anon_sym_BSLASHnewenvironment] = ACTIONS(485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(488), - [anon_sym_BSLASHgls] = ACTIONS(491), - [anon_sym_BSLASHGls] = ACTIONS(491), - [anon_sym_BSLASHGLS] = ACTIONS(491), - [anon_sym_BSLASHglspl] = ACTIONS(491), - [anon_sym_BSLASHGlspl] = ACTIONS(491), - [anon_sym_BSLASHGLSpl] = ACTIONS(491), - [anon_sym_BSLASHglsdisp] = ACTIONS(491), - [anon_sym_BSLASHglslink] = ACTIONS(491), - [anon_sym_BSLASHglstext] = ACTIONS(491), - [anon_sym_BSLASHGlstext] = ACTIONS(491), - [anon_sym_BSLASHGLStext] = ACTIONS(491), - [anon_sym_BSLASHglsfirst] = ACTIONS(491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(491), - [anon_sym_BSLASHglsplural] = ACTIONS(491), - [anon_sym_BSLASHGlsplural] = ACTIONS(491), - [anon_sym_BSLASHGLSplural] = ACTIONS(491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(491), - [anon_sym_BSLASHglsname] = ACTIONS(491), - [anon_sym_BSLASHGlsname] = ACTIONS(491), - [anon_sym_BSLASHGLSname] = ACTIONS(491), - [anon_sym_BSLASHglssymbol] = ACTIONS(491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(491), - [anon_sym_BSLASHglsdesc] = ACTIONS(491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(491), - [anon_sym_BSLASHglsuseri] = ACTIONS(491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(491), - [anon_sym_BSLASHglsuserii] = ACTIONS(491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(491), - [anon_sym_BSLASHglsuserv] = ACTIONS(491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(491), - [anon_sym_BSLASHglsuservi] = ACTIONS(491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(491), - [anon_sym_BSLASHnewacronym] = ACTIONS(494), - [anon_sym_BSLASHacrshort] = ACTIONS(497), - [anon_sym_BSLASHAcrshort] = ACTIONS(497), - [anon_sym_BSLASHACRshort] = ACTIONS(497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(497), - [anon_sym_BSLASHacrlong] = ACTIONS(497), - [anon_sym_BSLASHAcrlong] = ACTIONS(497), - [anon_sym_BSLASHACRlong] = ACTIONS(497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(497), - [anon_sym_BSLASHacrfull] = ACTIONS(497), - [anon_sym_BSLASHAcrfull] = ACTIONS(497), - [anon_sym_BSLASHACRfull] = ACTIONS(497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(497), - [anon_sym_BSLASHacs] = ACTIONS(497), - [anon_sym_BSLASHAcs] = ACTIONS(497), - [anon_sym_BSLASHacsp] = ACTIONS(497), - [anon_sym_BSLASHAcsp] = ACTIONS(497), - [anon_sym_BSLASHacl] = ACTIONS(497), - [anon_sym_BSLASHAcl] = ACTIONS(497), - [anon_sym_BSLASHaclp] = ACTIONS(497), - [anon_sym_BSLASHAclp] = ACTIONS(497), - [anon_sym_BSLASHacf] = ACTIONS(497), - [anon_sym_BSLASHAcf] = ACTIONS(497), - [anon_sym_BSLASHacfp] = ACTIONS(497), - [anon_sym_BSLASHAcfp] = ACTIONS(497), - [anon_sym_BSLASHac] = ACTIONS(497), - [anon_sym_BSLASHAc] = ACTIONS(497), - [anon_sym_BSLASHacp] = ACTIONS(497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(500), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(500), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(506), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(509), - [anon_sym_BSLASHcolor] = ACTIONS(512), - [anon_sym_BSLASHcolorbox] = ACTIONS(512), - [anon_sym_BSLASHtextcolor] = ACTIONS(512), - [anon_sym_BSLASHpagecolor] = ACTIONS(512), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(515), - [anon_sym_BSLASHtext] = ACTIONS(518), - [anon_sym_BSLASHintertext] = ACTIONS(518), - [anon_sym_shortintertext] = ACTIONS(518), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(361), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [13] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_BSLASH_RBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [14] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(1072), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(361), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, [15] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHend] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [sym_block_comment] = STATE(24), + [sym__root_content] = STATE(24), + [sym__flat_content] = STATE(24), + [sym__text_with_env_content] = STATE(24), + [sym__text_content] = STATE(24), + [sym__section] = STATE(24), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(24), + [sym_text] = STATE(24), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(24), + [sym_inline_formula] = STATE(24), + [sym_math_set] = STATE(24), + [sym_begin] = STATE(15), + [sym_end] = STATE(1230), + [sym_generic_environment] = STATE(24), + [sym_comment_environment] = STATE(24), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(24), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(24), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(24), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(24), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(24), + [sym_generic_command] = STATE(24), + [sym_title_declaration] = STATE(24), + [sym_author_declaration] = STATE(24), + [sym_package_include] = STATE(24), + [sym_class_include] = STATE(24), + [sym_latex_include] = STATE(24), + [sym_biblatex_include] = STATE(24), + [sym_bibtex_include] = STATE(24), + [sym_graphics_include] = STATE(24), + [sym_svg_include] = STATE(24), + [sym_inkscape_include] = STATE(24), + [sym_verbatim_include] = STATE(24), + [sym_import_include] = STATE(24), + [sym_caption] = STATE(24), + [sym_citation] = STATE(24), + [sym_label_definition] = STATE(24), + [sym_label_reference] = STATE(24), + [sym_label_reference_range] = STATE(24), + [sym_label_number] = STATE(24), + [sym_new_command_definition] = STATE(24), + [sym_old_command_definition] = STATE(24), + [sym_let_command_definition] = STATE(24), + [sym_paired_delimiter_definition] = STATE(24), + [sym_environment_definition] = STATE(24), + [sym_glossary_entry_definition] = STATE(24), + [sym_glossary_entry_reference] = STATE(24), + [sym_acronym_definition] = STATE(24), + [sym_acronym_reference] = STATE(24), + [sym_theorem_definition] = STATE(24), + [sym_color_definition] = STATE(24), + [sym_color_set_definition] = STATE(24), + [sym_color_reference] = STATE(24), + [sym_tikz_library_import] = STATE(24), + [sym_text_mode] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(365), + [anon_sym_RBRACK] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(367), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, [16] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASH_RBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_BSLASH_RBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [17] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), [anon_sym_LPAREN] = ACTIONS(141), [anon_sym_RPAREN] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(141), @@ -24058,9720 +24907,9832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(141), [anon_sym_EQ] = ACTIONS(141), [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASH_RBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, [18] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASH_RBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, [19] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(175), [anon_sym_EQ] = ACTIONS(141), [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_BSLASH_RBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [20] = { - [sym_block_comment] = STATE(32), - [sym__root_content] = STATE(32), - [sym__flat_content] = STATE(32), - [sym__text_with_env_content] = STATE(32), - [sym__text_content] = STATE(32), - [sym__section] = STATE(32), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(32), - [sym_text] = STATE(32), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(32), - [sym_inline_formula] = STATE(32), - [sym_math_set] = STATE(32), - [sym_begin] = STATE(8), - [sym_end] = STATE(1355), - [sym_generic_environment] = STATE(32), - [sym_comment_environment] = STATE(32), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(32), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(32), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(32), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(32), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(32), - [sym_generic_command] = STATE(32), - [sym_package_include] = STATE(32), - [sym_class_include] = STATE(32), - [sym_latex_include] = STATE(32), - [sym_biblatex_include] = STATE(32), - [sym_bibtex_include] = STATE(32), - [sym_graphics_include] = STATE(32), - [sym_svg_include] = STATE(32), - [sym_inkscape_include] = STATE(32), - [sym_verbatim_include] = STATE(32), - [sym_import_include] = STATE(32), - [sym_caption] = STATE(32), - [sym_citation] = STATE(32), - [sym_label_definition] = STATE(32), - [sym_label_reference] = STATE(32), - [sym_label_reference_range] = STATE(32), - [sym_label_number] = STATE(32), - [sym_new_command_definition] = STATE(32), - [sym_old_command_definition] = STATE(32), - [sym_let_command_definition] = STATE(32), - [sym_paired_delimiter_definition] = STATE(32), - [sym_environment_definition] = STATE(32), - [sym_glossary_entry_definition] = STATE(32), - [sym_glossary_entry_reference] = STATE(32), - [sym_acronym_definition] = STATE(32), - [sym_acronym_reference] = STATE(32), - [sym_theorem_definition] = STATE(32), - [sym_color_definition] = STATE(32), - [sym_color_set_definition] = STATE(32), - [sym_color_reference] = STATE(32), - [sym_tikz_library_import] = STATE(32), - [sym_text_mode] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [sym_block_comment] = STATE(33), + [sym__root_content] = STATE(33), + [sym__flat_content] = STATE(33), + [sym__text_with_env_content] = STATE(33), + [sym__text_content] = STATE(33), + [sym__section] = STATE(33), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(33), + [sym_text] = STATE(33), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(33), + [sym_inline_formula] = STATE(33), + [sym_math_set] = STATE(33), + [sym_begin] = STATE(15), + [sym_end] = STATE(771), + [sym_generic_environment] = STATE(33), + [sym_comment_environment] = STATE(33), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(33), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(33), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(33), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(33), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(33), + [sym_generic_command] = STATE(33), + [sym_title_declaration] = STATE(33), + [sym_author_declaration] = STATE(33), + [sym_package_include] = STATE(33), + [sym_class_include] = STATE(33), + [sym_latex_include] = STATE(33), + [sym_biblatex_include] = STATE(33), + [sym_bibtex_include] = STATE(33), + [sym_graphics_include] = STATE(33), + [sym_svg_include] = STATE(33), + [sym_inkscape_include] = STATE(33), + [sym_verbatim_include] = STATE(33), + [sym_import_include] = STATE(33), + [sym_caption] = STATE(33), + [sym_citation] = STATE(33), + [sym_label_definition] = STATE(33), + [sym_label_reference] = STATE(33), + [sym_label_reference_range] = STATE(33), + [sym_label_number] = STATE(33), + [sym_new_command_definition] = STATE(33), + [sym_old_command_definition] = STATE(33), + [sym_let_command_definition] = STATE(33), + [sym_paired_delimiter_definition] = STATE(33), + [sym_environment_definition] = STATE(33), + [sym_glossary_entry_definition] = STATE(33), + [sym_glossary_entry_reference] = STATE(33), + [sym_acronym_definition] = STATE(33), + [sym_acronym_reference] = STATE(33), + [sym_theorem_definition] = STATE(33), + [sym_color_definition] = STATE(33), + [sym_color_set_definition] = STATE(33), + [sym_color_reference] = STATE(33), + [sym_tikz_library_import] = STATE(33), + [sym_text_mode] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(523), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(371), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, [21] = { - [sym_block_comment] = STATE(10), - [sym__root_content] = STATE(10), - [sym__flat_content] = STATE(10), - [sym__text_with_env_content] = STATE(10), - [sym__text_content] = STATE(10), - [sym__section] = STATE(10), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(10), - [sym_text] = STATE(10), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(10), - [sym_inline_formula] = STATE(10), - [sym_math_set] = STATE(10), - [sym_begin] = STATE(8), - [sym_end] = STATE(948), - [sym_generic_environment] = STATE(10), - [sym_comment_environment] = STATE(10), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(10), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(10), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(10), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(10), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(10), - [sym_generic_command] = STATE(10), - [sym_package_include] = STATE(10), - [sym_class_include] = STATE(10), - [sym_latex_include] = STATE(10), - [sym_biblatex_include] = STATE(10), - [sym_bibtex_include] = STATE(10), - [sym_graphics_include] = STATE(10), - [sym_svg_include] = STATE(10), - [sym_inkscape_include] = STATE(10), - [sym_verbatim_include] = STATE(10), - [sym_import_include] = STATE(10), - [sym_caption] = STATE(10), - [sym_citation] = STATE(10), - [sym_label_definition] = STATE(10), - [sym_label_reference] = STATE(10), - [sym_label_reference_range] = STATE(10), - [sym_label_number] = STATE(10), - [sym_new_command_definition] = STATE(10), - [sym_old_command_definition] = STATE(10), - [sym_let_command_definition] = STATE(10), - [sym_paired_delimiter_definition] = STATE(10), - [sym_environment_definition] = STATE(10), - [sym_glossary_entry_definition] = STATE(10), - [sym_glossary_entry_reference] = STATE(10), - [sym_acronym_definition] = STATE(10), - [sym_acronym_reference] = STATE(10), - [sym_theorem_definition] = STATE(10), - [sym_color_definition] = STATE(10), - [sym_color_set_definition] = STATE(10), - [sym_color_reference] = STATE(10), - [sym_tikz_library_import] = STATE(10), - [sym_text_mode] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(525), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(525), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(321), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [22] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, [23] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHend] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [24] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(1043), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(325), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [25] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(1099), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(561), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [26] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_RPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), - }, - [27] = { - [sym_block_comment] = STATE(25), - [sym__root_content] = STATE(25), - [sym__flat_content] = STATE(25), - [sym__text_with_env_content] = STATE(25), - [sym__text_content] = STATE(25), - [sym__section] = STATE(25), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(25), - [sym_text] = STATE(25), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(25), - [sym_inline_formula] = STATE(25), - [sym_math_set] = STATE(25), - [sym_begin] = STATE(8), - [sym_end] = STATE(1161), - [sym_generic_environment] = STATE(25), - [sym_comment_environment] = STATE(25), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(25), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(25), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(25), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(25), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(25), - [sym_generic_command] = STATE(25), - [sym_package_include] = STATE(25), - [sym_class_include] = STATE(25), - [sym_latex_include] = STATE(25), - [sym_biblatex_include] = STATE(25), - [sym_bibtex_include] = STATE(25), - [sym_graphics_include] = STATE(25), - [sym_svg_include] = STATE(25), - [sym_inkscape_include] = STATE(25), - [sym_verbatim_include] = STATE(25), - [sym_import_include] = STATE(25), - [sym_caption] = STATE(25), - [sym_citation] = STATE(25), - [sym_label_definition] = STATE(25), - [sym_label_reference] = STATE(25), - [sym_label_reference_range] = STATE(25), - [sym_label_number] = STATE(25), - [sym_new_command_definition] = STATE(25), - [sym_old_command_definition] = STATE(25), - [sym_let_command_definition] = STATE(25), - [sym_paired_delimiter_definition] = STATE(25), - [sym_environment_definition] = STATE(25), - [sym_glossary_entry_definition] = STATE(25), - [sym_glossary_entry_reference] = STATE(25), - [sym_acronym_definition] = STATE(25), - [sym_acronym_reference] = STATE(25), - [sym_theorem_definition] = STATE(25), - [sym_color_definition] = STATE(25), - [sym_color_set_definition] = STATE(25), - [sym_color_reference] = STATE(25), - [sym_tikz_library_import] = STATE(25), - [sym_text_mode] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(561), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [28] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [29] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [30] = { - [sym_block_comment] = STATE(6), - [sym__root_content] = STATE(6), - [sym__flat_content] = STATE(6), - [sym__text_with_env_content] = STATE(6), - [sym__text_content] = STATE(6), - [sym__section] = STATE(6), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(6), - [sym_text] = STATE(6), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_math_set] = STATE(6), - [sym_begin] = STATE(8), - [sym_end] = STATE(680), - [sym_generic_environment] = STATE(6), - [sym_comment_environment] = STATE(6), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(6), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(6), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(6), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(6), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(6), - [sym_generic_command] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import_include] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_new_command_definition] = STATE(6), - [sym_old_command_definition] = STATE(6), - [sym_let_command_definition] = STATE(6), - [sym_paired_delimiter_definition] = STATE(6), - [sym_environment_definition] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_text_mode] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [24] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(1301), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(209), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [31] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_BSLASH_RBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [anon_sym_BSLASHend] = ACTIONS(367), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [32] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_end] = STATE(1385), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_RBRACK] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), + [25] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(523), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [33] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHend] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [34] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHend] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_RPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [35] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), + [26] = { + [sym_block_comment] = STATE(30), + [sym__root_content] = STATE(30), + [sym__flat_content] = STATE(30), + [sym__text_with_env_content] = STATE(30), + [sym__text_content] = STATE(30), + [sym__section] = STATE(30), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(30), + [sym_text] = STATE(30), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(30), + [sym_inline_formula] = STATE(30), + [sym_math_set] = STATE(30), + [sym_begin] = STATE(15), + [sym_end] = STATE(1437), + [sym_generic_environment] = STATE(30), + [sym_comment_environment] = STATE(30), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(30), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(30), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(30), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(30), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(30), + [sym_generic_command] = STATE(30), + [sym_title_declaration] = STATE(30), + [sym_author_declaration] = STATE(30), + [sym_package_include] = STATE(30), + [sym_class_include] = STATE(30), + [sym_latex_include] = STATE(30), + [sym_biblatex_include] = STATE(30), + [sym_bibtex_include] = STATE(30), + [sym_graphics_include] = STATE(30), + [sym_svg_include] = STATE(30), + [sym_inkscape_include] = STATE(30), + [sym_verbatim_include] = STATE(30), + [sym_import_include] = STATE(30), + [sym_caption] = STATE(30), + [sym_citation] = STATE(30), + [sym_label_definition] = STATE(30), + [sym_label_reference] = STATE(30), + [sym_label_reference_range] = STATE(30), + [sym_label_number] = STATE(30), + [sym_new_command_definition] = STATE(30), + [sym_old_command_definition] = STATE(30), + [sym_let_command_definition] = STATE(30), + [sym_paired_delimiter_definition] = STATE(30), + [sym_environment_definition] = STATE(30), + [sym_glossary_entry_definition] = STATE(30), + [sym_glossary_entry_reference] = STATE(30), + [sym_acronym_definition] = STATE(30), + [sym_acronym_reference] = STATE(30), + [sym_theorem_definition] = STATE(30), + [sym_color_definition] = STATE(30), + [sym_color_set_definition] = STATE(30), + [sym_color_reference] = STATE(30), + [sym_tikz_library_import] = STATE(30), + [sym_text_mode] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [anon_sym_BSLASHend] = ACTIONS(375), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [36] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [27] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, - [37] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), + [28] = { + [sym_block_comment] = STATE(41), + [sym__root_content] = STATE(41), + [sym__flat_content] = STATE(41), + [sym__text_with_env_content] = STATE(41), + [sym__text_content] = STATE(41), + [sym__section] = STATE(41), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(41), + [sym_text] = STATE(41), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(41), + [sym_inline_formula] = STATE(41), + [sym_math_set] = STATE(41), + [sym_begin] = STATE(15), + [sym_end] = STATE(1145), + [sym_generic_environment] = STATE(41), + [sym_comment_environment] = STATE(41), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(41), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(41), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(41), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(41), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(41), + [sym_generic_command] = STATE(41), + [sym_title_declaration] = STATE(41), + [sym_author_declaration] = STATE(41), + [sym_package_include] = STATE(41), + [sym_class_include] = STATE(41), + [sym_latex_include] = STATE(41), + [sym_biblatex_include] = STATE(41), + [sym_bibtex_include] = STATE(41), + [sym_graphics_include] = STATE(41), + [sym_svg_include] = STATE(41), + [sym_inkscape_include] = STATE(41), + [sym_verbatim_include] = STATE(41), + [sym_import_include] = STATE(41), + [sym_caption] = STATE(41), + [sym_citation] = STATE(41), + [sym_label_definition] = STATE(41), + [sym_label_reference] = STATE(41), + [sym_label_reference_range] = STATE(41), + [sym_label_number] = STATE(41), + [sym_new_command_definition] = STATE(41), + [sym_old_command_definition] = STATE(41), + [sym_let_command_definition] = STATE(41), + [sym_paired_delimiter_definition] = STATE(41), + [sym_environment_definition] = STATE(41), + [sym_glossary_entry_definition] = STATE(41), + [sym_glossary_entry_reference] = STATE(41), + [sym_acronym_definition] = STATE(41), + [sym_acronym_reference] = STATE(41), + [sym_theorem_definition] = STATE(41), + [sym_color_definition] = STATE(41), + [sym_color_set_definition] = STATE(41), + [sym_color_reference] = STATE(41), + [sym_tikz_library_import] = STATE(41), + [sym_text_mode] = STATE(41), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_RBRACK] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [anon_sym_BSLASHend] = ACTIONS(379), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [38] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [29] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(381), + [sym_command_name] = ACTIONS(383), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_BSLASHpart] = ACTIONS(392), + [anon_sym_BSLASHpart_STAR] = ACTIONS(395), + [anon_sym_BSLASHaddpart] = ACTIONS(392), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(395), + [anon_sym_BSLASHchapter] = ACTIONS(398), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(401), + [anon_sym_BSLASHaddchap] = ACTIONS(398), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(401), + [anon_sym_BSLASHsection] = ACTIONS(404), + [anon_sym_BSLASHsection_STAR] = ACTIONS(407), + [anon_sym_BSLASHaddsec] = ACTIONS(404), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(407), + [anon_sym_BSLASHsubsection] = ACTIONS(410), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(413), + [anon_sym_BSLASHsubsubsection] = ACTIONS(416), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(419), + [anon_sym_BSLASHparagraph] = ACTIONS(422), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(425), + [anon_sym_BSLASHsubparagraph] = ACTIONS(428), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(431), + [anon_sym_BSLASHitem] = ACTIONS(434), + [anon_sym_BSLASHitem_STAR] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(381), + [sym_word] = ACTIONS(443), + [sym_placeholder] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym__] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_COLON] = ACTIONS(449), + [anon_sym_SQUOTE] = ACTIONS(449), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(452), + [anon_sym_BSLASH_LBRACK] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_BSLASH_LPAREN] = ACTIONS(458), + [anon_sym_BSLASH_LBRACE] = ACTIONS(461), + [anon_sym_BSLASHbegin] = ACTIONS(464), + [anon_sym_BSLASHtitle] = ACTIONS(467), + [anon_sym_BSLASHauthor] = ACTIONS(470), + [anon_sym_BSLASHusepackage] = ACTIONS(473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(476), + [anon_sym_BSLASHinclude] = ACTIONS(479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(479), + [anon_sym_BSLASHinput] = ACTIONS(479), + [anon_sym_BSLASHsubfile] = ACTIONS(479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(482), + [anon_sym_BSLASHbibliography] = ACTIONS(485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(488), + [anon_sym_BSLASHincludesvg] = ACTIONS(491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(494), + [anon_sym_BSLASHverbatiminput] = ACTIONS(497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(497), + [anon_sym_BSLASHimport] = ACTIONS(500), + [anon_sym_BSLASHsubimport] = ACTIONS(500), + [anon_sym_BSLASHinputfrom] = ACTIONS(500), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(500), + [anon_sym_BSLASHincludefrom] = ACTIONS(500), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(500), + [anon_sym_BSLASHcaption] = ACTIONS(503), + [anon_sym_BSLASHcite] = ACTIONS(506), + [anon_sym_BSLASHcite_STAR] = ACTIONS(509), + [anon_sym_BSLASHCite] = ACTIONS(506), + [anon_sym_BSLASHnocite] = ACTIONS(506), + [anon_sym_BSLASHcitet] = ACTIONS(506), + [anon_sym_BSLASHcitep] = ACTIONS(506), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(509), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(509), + [anon_sym_BSLASHciteauthor] = ACTIONS(506), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(509), + [anon_sym_BSLASHCiteauthor] = ACTIONS(506), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(509), + [anon_sym_BSLASHcitetitle] = ACTIONS(506), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(509), + [anon_sym_BSLASHciteyear] = ACTIONS(506), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(509), + [anon_sym_BSLASHcitedate] = ACTIONS(506), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(509), + [anon_sym_BSLASHciteurl] = ACTIONS(506), + [anon_sym_BSLASHfullcite] = ACTIONS(506), + [anon_sym_BSLASHciteyearpar] = ACTIONS(506), + [anon_sym_BSLASHcitealt] = ACTIONS(506), + [anon_sym_BSLASHcitealp] = ACTIONS(506), + [anon_sym_BSLASHcitetext] = ACTIONS(506), + [anon_sym_BSLASHparencite] = ACTIONS(506), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(509), + [anon_sym_BSLASHParencite] = ACTIONS(506), + [anon_sym_BSLASHfootcite] = ACTIONS(506), + [anon_sym_BSLASHfootfullcite] = ACTIONS(506), + [anon_sym_BSLASHfootcitetext] = ACTIONS(506), + [anon_sym_BSLASHtextcite] = ACTIONS(506), + [anon_sym_BSLASHTextcite] = ACTIONS(506), + [anon_sym_BSLASHsmartcite] = ACTIONS(506), + [anon_sym_BSLASHSmartcite] = ACTIONS(506), + [anon_sym_BSLASHsupercite] = ACTIONS(506), + [anon_sym_BSLASHautocite] = ACTIONS(506), + [anon_sym_BSLASHAutocite] = ACTIONS(506), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(509), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(509), + [anon_sym_BSLASHvolcite] = ACTIONS(506), + [anon_sym_BSLASHVolcite] = ACTIONS(506), + [anon_sym_BSLASHpvolcite] = ACTIONS(506), + [anon_sym_BSLASHPvolcite] = ACTIONS(506), + [anon_sym_BSLASHfvolcite] = ACTIONS(506), + [anon_sym_BSLASHftvolcite] = ACTIONS(506), + [anon_sym_BSLASHsvolcite] = ACTIONS(506), + [anon_sym_BSLASHSvolcite] = ACTIONS(506), + [anon_sym_BSLASHtvolcite] = ACTIONS(506), + [anon_sym_BSLASHTvolcite] = ACTIONS(506), + [anon_sym_BSLASHavolcite] = ACTIONS(506), + [anon_sym_BSLASHAvolcite] = ACTIONS(506), + [anon_sym_BSLASHnotecite] = ACTIONS(506), + [anon_sym_BSLASHNotecite] = ACTIONS(506), + [anon_sym_BSLASHpnotecite] = ACTIONS(506), + [anon_sym_BSLASHPnotecite] = ACTIONS(506), + [anon_sym_BSLASHfnotecite] = ACTIONS(506), + [anon_sym_BSLASHlabel] = ACTIONS(512), + [anon_sym_BSLASHref] = ACTIONS(515), + [anon_sym_BSLASHeqref] = ACTIONS(515), + [anon_sym_BSLASHvref] = ACTIONS(515), + [anon_sym_BSLASHVref] = ACTIONS(515), + [anon_sym_BSLASHautoref] = ACTIONS(515), + [anon_sym_BSLASHpageref] = ACTIONS(515), + [anon_sym_BSLASHcref] = ACTIONS(515), + [anon_sym_BSLASHCref] = ACTIONS(515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(518), + [anon_sym_BSLASHCref_STAR] = ACTIONS(518), + [anon_sym_BSLASHnamecref] = ACTIONS(515), + [anon_sym_BSLASHnameCref] = ACTIONS(515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(515), + [anon_sym_BSLASHlabelcref] = ACTIONS(515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(515), + [anon_sym_BSLASHcrefrange] = ACTIONS(521), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(524), + [anon_sym_BSLASHCrefrange] = ACTIONS(521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(524), + [anon_sym_BSLASHnewlabel] = ACTIONS(527), + [anon_sym_BSLASHnewcommand] = ACTIONS(530), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(530), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(530), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(530), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(533), + [anon_sym_BSLASHdef] = ACTIONS(536), + [anon_sym_BSLASHlet] = ACTIONS(539), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(542), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(542), + [anon_sym_BSLASHnewenvironment] = ACTIONS(545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(548), + [anon_sym_BSLASHgls] = ACTIONS(551), + [anon_sym_BSLASHGls] = ACTIONS(551), + [anon_sym_BSLASHGLS] = ACTIONS(551), + [anon_sym_BSLASHglspl] = ACTIONS(551), + [anon_sym_BSLASHGlspl] = ACTIONS(551), + [anon_sym_BSLASHGLSpl] = ACTIONS(551), + [anon_sym_BSLASHglsdisp] = ACTIONS(551), + [anon_sym_BSLASHglslink] = ACTIONS(551), + [anon_sym_BSLASHglstext] = ACTIONS(551), + [anon_sym_BSLASHGlstext] = ACTIONS(551), + [anon_sym_BSLASHGLStext] = ACTIONS(551), + [anon_sym_BSLASHglsfirst] = ACTIONS(551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(551), + [anon_sym_BSLASHglsplural] = ACTIONS(551), + [anon_sym_BSLASHGlsplural] = ACTIONS(551), + [anon_sym_BSLASHGLSplural] = ACTIONS(551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(551), + [anon_sym_BSLASHglsname] = ACTIONS(551), + [anon_sym_BSLASHGlsname] = ACTIONS(551), + [anon_sym_BSLASHGLSname] = ACTIONS(551), + [anon_sym_BSLASHglssymbol] = ACTIONS(551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(551), + [anon_sym_BSLASHglsdesc] = ACTIONS(551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(551), + [anon_sym_BSLASHglsuseri] = ACTIONS(551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(551), + [anon_sym_BSLASHglsuserii] = ACTIONS(551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(551), + [anon_sym_BSLASHglsuserv] = ACTIONS(551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(551), + [anon_sym_BSLASHglsuservi] = ACTIONS(551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(551), + [anon_sym_BSLASHnewacronym] = ACTIONS(554), + [anon_sym_BSLASHacrshort] = ACTIONS(557), + [anon_sym_BSLASHAcrshort] = ACTIONS(557), + [anon_sym_BSLASHACRshort] = ACTIONS(557), + [anon_sym_BSLASHacrshortpl] = ACTIONS(557), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(557), + [anon_sym_BSLASHACRshortpl] = ACTIONS(557), + [anon_sym_BSLASHacrlong] = ACTIONS(557), + [anon_sym_BSLASHAcrlong] = ACTIONS(557), + [anon_sym_BSLASHACRlong] = ACTIONS(557), + [anon_sym_BSLASHacrlongpl] = ACTIONS(557), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(557), + [anon_sym_BSLASHACRlongpl] = ACTIONS(557), + [anon_sym_BSLASHacrfull] = ACTIONS(557), + [anon_sym_BSLASHAcrfull] = ACTIONS(557), + [anon_sym_BSLASHACRfull] = ACTIONS(557), + [anon_sym_BSLASHacrfullpl] = ACTIONS(557), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(557), + [anon_sym_BSLASHACRfullpl] = ACTIONS(557), + [anon_sym_BSLASHacs] = ACTIONS(557), + [anon_sym_BSLASHAcs] = ACTIONS(557), + [anon_sym_BSLASHacsp] = ACTIONS(557), + [anon_sym_BSLASHAcsp] = ACTIONS(557), + [anon_sym_BSLASHacl] = ACTIONS(557), + [anon_sym_BSLASHAcl] = ACTIONS(557), + [anon_sym_BSLASHaclp] = ACTIONS(557), + [anon_sym_BSLASHAclp] = ACTIONS(557), + [anon_sym_BSLASHacf] = ACTIONS(557), + [anon_sym_BSLASHAcf] = ACTIONS(557), + [anon_sym_BSLASHacfp] = ACTIONS(557), + [anon_sym_BSLASHAcfp] = ACTIONS(557), + [anon_sym_BSLASHac] = ACTIONS(557), + [anon_sym_BSLASHAc] = ACTIONS(557), + [anon_sym_BSLASHacp] = ACTIONS(557), + [anon_sym_BSLASHglsentrylong] = ACTIONS(557), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(557), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(557), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(557), + [anon_sym_BSLASHglsentryshort] = ACTIONS(557), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(557), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(557), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(557), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(557), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(557), + [anon_sym_BSLASHnewtheorem] = ACTIONS(560), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(563), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(560), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(563), + [anon_sym_BSLASHdefinecolor] = ACTIONS(566), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(569), + [anon_sym_BSLASHcolor] = ACTIONS(572), + [anon_sym_BSLASHcolorbox] = ACTIONS(572), + [anon_sym_BSLASHtextcolor] = ACTIONS(572), + [anon_sym_BSLASHpagecolor] = ACTIONS(572), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(575), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(575), + [anon_sym_BSLASHtext] = ACTIONS(578), + [anon_sym_BSLASHintertext] = ACTIONS(578), + [anon_sym_shortintertext] = ACTIONS(578), }, - [39] = { - [sym_block_comment] = STATE(80), - [sym__root_content] = STATE(80), - [sym__flat_content] = STATE(80), - [sym__text_with_env_content] = STATE(80), - [sym__text_content] = STATE(80), - [sym__section] = STATE(80), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(80), - [sym_text] = STATE(80), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(80), - [sym_inline_formula] = STATE(80), - [sym_math_set] = STATE(80), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(80), - [sym_comment_environment] = STATE(80), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(80), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(80), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(80), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(80), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(80), - [sym_generic_command] = STATE(80), - [sym_package_include] = STATE(80), - [sym_class_include] = STATE(80), - [sym_latex_include] = STATE(80), - [sym_biblatex_include] = STATE(80), - [sym_bibtex_include] = STATE(80), - [sym_graphics_include] = STATE(80), - [sym_svg_include] = STATE(80), - [sym_inkscape_include] = STATE(80), - [sym_verbatim_include] = STATE(80), - [sym_import_include] = STATE(80), - [sym_caption] = STATE(80), - [sym_citation] = STATE(80), - [sym_label_definition] = STATE(80), - [sym_label_reference] = STATE(80), - [sym_label_reference_range] = STATE(80), - [sym_label_number] = STATE(80), - [sym_new_command_definition] = STATE(80), - [sym_old_command_definition] = STATE(80), - [sym_let_command_definition] = STATE(80), - [sym_paired_delimiter_definition] = STATE(80), - [sym_environment_definition] = STATE(80), - [sym_glossary_entry_definition] = STATE(80), - [sym_glossary_entry_reference] = STATE(80), - [sym_acronym_definition] = STATE(80), - [sym_acronym_reference] = STATE(80), - [sym_theorem_definition] = STATE(80), - [sym_color_definition] = STATE(80), - [sym_color_set_definition] = STATE(80), - [sym_color_reference] = STATE(80), - [sym_tikz_library_import] = STATE(80), - [sym_text_mode] = STATE(80), - [aux_sym_source_file_repeat1] = STATE(80), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_COMMA] = ACTIONS(571), - [anon_sym_EQ] = ACTIONS(571), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(583), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(587), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [30] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(1424), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHend] = ACTIONS(375), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [40] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(665), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(667), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [31] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHend] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, - [41] = { - [sym_block_comment] = STATE(76), - [sym__root_content] = STATE(76), - [sym__flat_content] = STATE(76), - [sym__text_with_env_content] = STATE(76), - [sym__text_content] = STATE(76), - [sym__section] = STATE(76), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(76), - [sym_text] = STATE(76), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(76), - [sym_inline_formula] = STATE(76), - [sym_math_set] = STATE(76), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(76), - [sym_comment_environment] = STATE(76), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(76), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(76), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(76), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(76), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(76), - [sym_generic_command] = STATE(76), - [sym_package_include] = STATE(76), - [sym_class_include] = STATE(76), - [sym_latex_include] = STATE(76), - [sym_biblatex_include] = STATE(76), - [sym_bibtex_include] = STATE(76), - [sym_graphics_include] = STATE(76), - [sym_svg_include] = STATE(76), - [sym_inkscape_include] = STATE(76), - [sym_verbatim_include] = STATE(76), - [sym_import_include] = STATE(76), - [sym_caption] = STATE(76), - [sym_citation] = STATE(76), - [sym_label_definition] = STATE(76), - [sym_label_reference] = STATE(76), - [sym_label_reference_range] = STATE(76), - [sym_label_number] = STATE(76), - [sym_new_command_definition] = STATE(76), - [sym_old_command_definition] = STATE(76), - [sym_let_command_definition] = STATE(76), - [sym_paired_delimiter_definition] = STATE(76), - [sym_environment_definition] = STATE(76), - [sym_glossary_entry_definition] = STATE(76), - [sym_glossary_entry_reference] = STATE(76), - [sym_acronym_definition] = STATE(76), - [sym_acronym_reference] = STATE(76), - [sym_theorem_definition] = STATE(76), - [sym_color_definition] = STATE(76), - [sym_color_set_definition] = STATE(76), - [sym_color_reference] = STATE(76), - [sym_tikz_library_import] = STATE(76), - [sym_text_mode] = STATE(76), - [aux_sym_source_file_repeat1] = STATE(76), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_COMMA] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(669), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(673), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [32] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHend] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [42] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(677), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [33] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(799), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHend] = ACTIONS(371), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [43] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [34] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_RPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [35] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASH_RBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [36] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(984), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [37] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASH_RBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [38] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASH_RBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [39] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHend] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [40] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHend] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [41] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_end] = STATE(1212), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(379), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [42] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASH_RBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [43] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(635), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [44] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(119), + [sym__root_content] = STATE(119), + [sym__flat_content] = STATE(119), + [sym__text_with_env_content] = STATE(119), + [sym__text_content] = STATE(119), + [sym__section] = STATE(119), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(119), + [sym_text] = STATE(119), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(119), + [sym_inline_formula] = STATE(119), + [sym_math_set] = STATE(119), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(119), + [sym_comment_environment] = STATE(119), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(119), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(119), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(119), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(119), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(119), + [sym_generic_command] = STATE(119), + [sym_title_declaration] = STATE(119), + [sym_author_declaration] = STATE(119), + [sym_package_include] = STATE(119), + [sym_class_include] = STATE(119), + [sym_latex_include] = STATE(119), + [sym_biblatex_include] = STATE(119), + [sym_bibtex_include] = STATE(119), + [sym_graphics_include] = STATE(119), + [sym_svg_include] = STATE(119), + [sym_inkscape_include] = STATE(119), + [sym_verbatim_include] = STATE(119), + [sym_import_include] = STATE(119), + [sym_caption] = STATE(119), + [sym_citation] = STATE(119), + [sym_label_definition] = STATE(119), + [sym_label_reference] = STATE(119), + [sym_label_reference_range] = STATE(119), + [sym_label_number] = STATE(119), + [sym_new_command_definition] = STATE(119), + [sym_old_command_definition] = STATE(119), + [sym_let_command_definition] = STATE(119), + [sym_paired_delimiter_definition] = STATE(119), + [sym_environment_definition] = STATE(119), + [sym_glossary_entry_definition] = STATE(119), + [sym_glossary_entry_reference] = STATE(119), + [sym_acronym_definition] = STATE(119), + [sym_acronym_reference] = STATE(119), + [sym_theorem_definition] = STATE(119), + [sym_color_definition] = STATE(119), + [sym_color_set_definition] = STATE(119), + [sym_color_reference] = STATE(119), + [sym_tikz_library_import] = STATE(119), + [sym_text_mode] = STATE(119), + [aux_sym_source_file_repeat1] = STATE(119), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(713), + [anon_sym_EQ] = ACTIONS(713), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -33795,7 +34756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(715), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -33816,1039 +34777,1051 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [45] = { - [sym_block_comment] = STATE(42), - [sym__root_content] = STATE(42), - [sym__flat_content] = STATE(42), - [sym__text_with_env_content] = STATE(42), - [sym__text_content] = STATE(42), - [sym__section] = STATE(42), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(42), - [sym_text] = STATE(42), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(42), - [sym_inline_formula] = STATE(42), - [sym_math_set] = STATE(42), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(42), - [sym_comment_environment] = STATE(42), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(42), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(42), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(42), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(42), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(42), - [sym_generic_command] = STATE(42), - [sym_package_include] = STATE(42), - [sym_class_include] = STATE(42), - [sym_latex_include] = STATE(42), - [sym_biblatex_include] = STATE(42), - [sym_bibtex_include] = STATE(42), - [sym_graphics_include] = STATE(42), - [sym_svg_include] = STATE(42), - [sym_inkscape_include] = STATE(42), - [sym_verbatim_include] = STATE(42), - [sym_import_include] = STATE(42), - [sym_caption] = STATE(42), - [sym_citation] = STATE(42), - [sym_label_definition] = STATE(42), - [sym_label_reference] = STATE(42), - [sym_label_reference_range] = STATE(42), - [sym_label_number] = STATE(42), - [sym_new_command_definition] = STATE(42), - [sym_old_command_definition] = STATE(42), - [sym_let_command_definition] = STATE(42), - [sym_paired_delimiter_definition] = STATE(42), - [sym_environment_definition] = STATE(42), - [sym_glossary_entry_definition] = STATE(42), - [sym_glossary_entry_reference] = STATE(42), - [sym_acronym_definition] = STATE(42), - [sym_acronym_reference] = STATE(42), - [sym_theorem_definition] = STATE(42), - [sym_color_definition] = STATE(42), - [sym_color_set_definition] = STATE(42), - [sym_color_reference] = STATE(42), - [sym_tikz_library_import] = STATE(42), - [sym_text_mode] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(42), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(785), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(57), + [sym__root_content] = STATE(57), + [sym__flat_content] = STATE(57), + [sym__text_with_env_content] = STATE(57), + [sym__text_content] = STATE(57), + [sym__section] = STATE(57), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(57), + [sym_text] = STATE(57), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(57), + [sym_inline_formula] = STATE(57), + [sym_math_set] = STATE(57), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(57), + [sym_comment_environment] = STATE(57), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(57), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(57), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(57), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(57), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(57), + [sym_generic_command] = STATE(57), + [sym_title_declaration] = STATE(57), + [sym_author_declaration] = STATE(57), + [sym_package_include] = STATE(57), + [sym_class_include] = STATE(57), + [sym_latex_include] = STATE(57), + [sym_biblatex_include] = STATE(57), + [sym_bibtex_include] = STATE(57), + [sym_graphics_include] = STATE(57), + [sym_svg_include] = STATE(57), + [sym_inkscape_include] = STATE(57), + [sym_verbatim_include] = STATE(57), + [sym_import_include] = STATE(57), + [sym_caption] = STATE(57), + [sym_citation] = STATE(57), + [sym_label_definition] = STATE(57), + [sym_label_reference] = STATE(57), + [sym_label_reference_range] = STATE(57), + [sym_label_number] = STATE(57), + [sym_new_command_definition] = STATE(57), + [sym_old_command_definition] = STATE(57), + [sym_let_command_definition] = STATE(57), + [sym_paired_delimiter_definition] = STATE(57), + [sym_environment_definition] = STATE(57), + [sym_glossary_entry_definition] = STATE(57), + [sym_glossary_entry_reference] = STATE(57), + [sym_acronym_definition] = STATE(57), + [sym_acronym_reference] = STATE(57), + [sym_theorem_definition] = STATE(57), + [sym_color_definition] = STATE(57), + [sym_color_set_definition] = STATE(57), + [sym_color_reference] = STATE(57), + [sym_tikz_library_import] = STATE(57), + [sym_text_mode] = STATE(57), + [aux_sym_source_file_repeat1] = STATE(57), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(731), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [46] = { - [sym_block_comment] = STATE(43), - [sym__root_content] = STATE(43), - [sym__flat_content] = STATE(43), - [sym__text_with_env_content] = STATE(43), - [sym__text_content] = STATE(43), - [sym__section] = STATE(43), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(43), - [sym_text] = STATE(43), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(43), - [sym_inline_formula] = STATE(43), - [sym_math_set] = STATE(43), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(43), - [sym_comment_environment] = STATE(43), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(43), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(43), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(43), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(43), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(43), - [sym_generic_command] = STATE(43), - [sym_package_include] = STATE(43), - [sym_class_include] = STATE(43), - [sym_latex_include] = STATE(43), - [sym_biblatex_include] = STATE(43), - [sym_bibtex_include] = STATE(43), - [sym_graphics_include] = STATE(43), - [sym_svg_include] = STATE(43), - [sym_inkscape_include] = STATE(43), - [sym_verbatim_include] = STATE(43), - [sym_import_include] = STATE(43), - [sym_caption] = STATE(43), - [sym_citation] = STATE(43), - [sym_label_definition] = STATE(43), - [sym_label_reference] = STATE(43), - [sym_label_reference_range] = STATE(43), - [sym_label_number] = STATE(43), - [sym_new_command_definition] = STATE(43), - [sym_old_command_definition] = STATE(43), - [sym_let_command_definition] = STATE(43), - [sym_paired_delimiter_definition] = STATE(43), - [sym_environment_definition] = STATE(43), - [sym_glossary_entry_definition] = STATE(43), - [sym_glossary_entry_reference] = STATE(43), - [sym_acronym_definition] = STATE(43), - [sym_acronym_reference] = STATE(43), - [sym_theorem_definition] = STATE(43), - [sym_color_definition] = STATE(43), - [sym_color_set_definition] = STATE(43), - [sym_color_reference] = STATE(43), - [sym_tikz_library_import] = STATE(43), - [sym_text_mode] = STATE(43), - [aux_sym_source_file_repeat1] = STATE(43), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(789), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(653), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(651), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(650), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(649), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(648), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(647), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(646), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(645), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_title_declaration] = STATE(46), + [sym_author_declaration] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_paired_delimiter_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(653), + [aux_sym__section_repeat2] = STATE(651), + [aux_sym__section_repeat3] = STATE(650), + [aux_sym__section_repeat4] = STATE(649), + [aux_sym__section_repeat5] = STATE(648), + [aux_sym__section_repeat6] = STATE(647), + [aux_sym__section_repeat7] = STATE(646), + [aux_sym__section_repeat8] = STATE(645), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_BSLASHpart] = ACTIONS(828), + [anon_sym_BSLASHpart_STAR] = ACTIONS(831), + [anon_sym_BSLASHaddpart] = ACTIONS(828), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(831), + [anon_sym_BSLASHchapter] = ACTIONS(834), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(837), + [anon_sym_BSLASHaddchap] = ACTIONS(834), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(837), + [anon_sym_BSLASHsection] = ACTIONS(840), + [anon_sym_BSLASHsection_STAR] = ACTIONS(843), + [anon_sym_BSLASHaddsec] = ACTIONS(840), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(843), + [anon_sym_BSLASHsubsection] = ACTIONS(846), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(849), + [anon_sym_BSLASHsubsubsection] = ACTIONS(852), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(855), + [anon_sym_BSLASHparagraph] = ACTIONS(858), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(861), + [anon_sym_BSLASHsubparagraph] = ACTIONS(864), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(867), + [anon_sym_BSLASHitem] = ACTIONS(870), + [anon_sym_BSLASHitem_STAR] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(876), + [sym_word] = ACTIONS(879), + [sym_placeholder] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym__] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(888), + [anon_sym_BSLASH_LBRACK] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(894), + [anon_sym_BSLASH_LBRACE] = ACTIONS(897), + [anon_sym_BSLASHbegin] = ACTIONS(464), + [anon_sym_BSLASHend] = ACTIONS(900), + [anon_sym_BSLASHtitle] = ACTIONS(902), + [anon_sym_BSLASHauthor] = ACTIONS(905), + [anon_sym_BSLASHusepackage] = ACTIONS(908), + [anon_sym_BSLASHRequirePackage] = ACTIONS(908), + [anon_sym_BSLASHdocumentclass] = ACTIONS(911), + [anon_sym_BSLASHinclude] = ACTIONS(914), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(914), + [anon_sym_BSLASHinput] = ACTIONS(914), + [anon_sym_BSLASHsubfile] = ACTIONS(914), + [anon_sym_BSLASHaddbibresource] = ACTIONS(917), + [anon_sym_BSLASHbibliography] = ACTIONS(920), + [anon_sym_BSLASHincludegraphics] = ACTIONS(923), + [anon_sym_BSLASHincludesvg] = ACTIONS(926), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(932), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(932), + [anon_sym_BSLASHimport] = ACTIONS(935), + [anon_sym_BSLASHsubimport] = ACTIONS(935), + [anon_sym_BSLASHinputfrom] = ACTIONS(935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(935), + [anon_sym_BSLASHincludefrom] = ACTIONS(935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(935), + [anon_sym_BSLASHcaption] = ACTIONS(938), + [anon_sym_BSLASHcite] = ACTIONS(941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(944), + [anon_sym_BSLASHCite] = ACTIONS(941), + [anon_sym_BSLASHnocite] = ACTIONS(941), + [anon_sym_BSLASHcitet] = ACTIONS(941), + [anon_sym_BSLASHcitep] = ACTIONS(941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(944), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(944), + [anon_sym_BSLASHciteauthor] = ACTIONS(941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(944), + [anon_sym_BSLASHCiteauthor] = ACTIONS(941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(944), + [anon_sym_BSLASHcitetitle] = ACTIONS(941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(944), + [anon_sym_BSLASHciteyear] = ACTIONS(941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(944), + [anon_sym_BSLASHcitedate] = ACTIONS(941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(944), + [anon_sym_BSLASHciteurl] = ACTIONS(941), + [anon_sym_BSLASHfullcite] = ACTIONS(941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(941), + [anon_sym_BSLASHcitealt] = ACTIONS(941), + [anon_sym_BSLASHcitealp] = ACTIONS(941), + [anon_sym_BSLASHcitetext] = ACTIONS(941), + [anon_sym_BSLASHparencite] = ACTIONS(941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(944), + [anon_sym_BSLASHParencite] = ACTIONS(941), + [anon_sym_BSLASHfootcite] = ACTIONS(941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(941), + [anon_sym_BSLASHtextcite] = ACTIONS(941), + [anon_sym_BSLASHTextcite] = ACTIONS(941), + [anon_sym_BSLASHsmartcite] = ACTIONS(941), + [anon_sym_BSLASHSmartcite] = ACTIONS(941), + [anon_sym_BSLASHsupercite] = ACTIONS(941), + [anon_sym_BSLASHautocite] = ACTIONS(941), + [anon_sym_BSLASHAutocite] = ACTIONS(941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(944), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(944), + [anon_sym_BSLASHvolcite] = ACTIONS(941), + [anon_sym_BSLASHVolcite] = ACTIONS(941), + [anon_sym_BSLASHpvolcite] = ACTIONS(941), + [anon_sym_BSLASHPvolcite] = ACTIONS(941), + [anon_sym_BSLASHfvolcite] = ACTIONS(941), + [anon_sym_BSLASHftvolcite] = ACTIONS(941), + [anon_sym_BSLASHsvolcite] = ACTIONS(941), + [anon_sym_BSLASHSvolcite] = ACTIONS(941), + [anon_sym_BSLASHtvolcite] = ACTIONS(941), + [anon_sym_BSLASHTvolcite] = ACTIONS(941), + [anon_sym_BSLASHavolcite] = ACTIONS(941), + [anon_sym_BSLASHAvolcite] = ACTIONS(941), + [anon_sym_BSLASHnotecite] = ACTIONS(941), + [anon_sym_BSLASHNotecite] = ACTIONS(941), + [anon_sym_BSLASHpnotecite] = ACTIONS(941), + [anon_sym_BSLASHPnotecite] = ACTIONS(941), + [anon_sym_BSLASHfnotecite] = ACTIONS(941), + [anon_sym_BSLASHlabel] = ACTIONS(947), + [anon_sym_BSLASHref] = ACTIONS(950), + [anon_sym_BSLASHeqref] = ACTIONS(950), + [anon_sym_BSLASHvref] = ACTIONS(950), + [anon_sym_BSLASHVref] = ACTIONS(950), + [anon_sym_BSLASHautoref] = ACTIONS(950), + [anon_sym_BSLASHpageref] = ACTIONS(950), + [anon_sym_BSLASHcref] = ACTIONS(950), + [anon_sym_BSLASHCref] = ACTIONS(950), + [anon_sym_BSLASHcref_STAR] = ACTIONS(953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(953), + [anon_sym_BSLASHnamecref] = ACTIONS(950), + [anon_sym_BSLASHnameCref] = ACTIONS(950), + [anon_sym_BSLASHlcnamecref] = ACTIONS(950), + [anon_sym_BSLASHnamecrefs] = ACTIONS(950), + [anon_sym_BSLASHnameCrefs] = ACTIONS(950), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(950), + [anon_sym_BSLASHlabelcref] = ACTIONS(950), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(950), + [anon_sym_BSLASHcrefrange] = ACTIONS(956), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(959), + [anon_sym_BSLASHCrefrange] = ACTIONS(956), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(959), + [anon_sym_BSLASHnewlabel] = ACTIONS(962), + [anon_sym_BSLASHnewcommand] = ACTIONS(965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(968), + [anon_sym_BSLASHdef] = ACTIONS(971), + [anon_sym_BSLASHlet] = ACTIONS(974), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(977), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(977), + [anon_sym_BSLASHnewenvironment] = ACTIONS(980), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(983), + [anon_sym_BSLASHgls] = ACTIONS(986), + [anon_sym_BSLASHGls] = ACTIONS(986), + [anon_sym_BSLASHGLS] = ACTIONS(986), + [anon_sym_BSLASHglspl] = ACTIONS(986), + [anon_sym_BSLASHGlspl] = ACTIONS(986), + [anon_sym_BSLASHGLSpl] = ACTIONS(986), + [anon_sym_BSLASHglsdisp] = ACTIONS(986), + [anon_sym_BSLASHglslink] = ACTIONS(986), + [anon_sym_BSLASHglstext] = ACTIONS(986), + [anon_sym_BSLASHGlstext] = ACTIONS(986), + [anon_sym_BSLASHGLStext] = ACTIONS(986), + [anon_sym_BSLASHglsfirst] = ACTIONS(986), + [anon_sym_BSLASHGlsfirst] = ACTIONS(986), + [anon_sym_BSLASHGLSfirst] = ACTIONS(986), + [anon_sym_BSLASHglsplural] = ACTIONS(986), + [anon_sym_BSLASHGlsplural] = ACTIONS(986), + [anon_sym_BSLASHGLSplural] = ACTIONS(986), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(986), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(986), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(986), + [anon_sym_BSLASHglsname] = ACTIONS(986), + [anon_sym_BSLASHGlsname] = ACTIONS(986), + [anon_sym_BSLASHGLSname] = ACTIONS(986), + [anon_sym_BSLASHglssymbol] = ACTIONS(986), + [anon_sym_BSLASHGlssymbol] = ACTIONS(986), + [anon_sym_BSLASHglsdesc] = ACTIONS(986), + [anon_sym_BSLASHGlsdesc] = ACTIONS(986), + [anon_sym_BSLASHGLSdesc] = ACTIONS(986), + [anon_sym_BSLASHglsuseri] = ACTIONS(986), + [anon_sym_BSLASHGlsuseri] = ACTIONS(986), + [anon_sym_BSLASHGLSuseri] = ACTIONS(986), + [anon_sym_BSLASHglsuserii] = ACTIONS(986), + [anon_sym_BSLASHGlsuserii] = ACTIONS(986), + [anon_sym_BSLASHGLSuserii] = ACTIONS(986), + [anon_sym_BSLASHglsuseriii] = ACTIONS(986), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(986), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(986), + [anon_sym_BSLASHglsuseriv] = ACTIONS(986), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(986), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(986), + [anon_sym_BSLASHglsuserv] = ACTIONS(986), + [anon_sym_BSLASHGlsuserv] = ACTIONS(986), + [anon_sym_BSLASHGLSuserv] = ACTIONS(986), + [anon_sym_BSLASHglsuservi] = ACTIONS(986), + [anon_sym_BSLASHGlsuservi] = ACTIONS(986), + [anon_sym_BSLASHGLSuservi] = ACTIONS(986), + [anon_sym_BSLASHnewacronym] = ACTIONS(989), + [anon_sym_BSLASHacrshort] = ACTIONS(992), + [anon_sym_BSLASHAcrshort] = ACTIONS(992), + [anon_sym_BSLASHACRshort] = ACTIONS(992), + [anon_sym_BSLASHacrshortpl] = ACTIONS(992), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(992), + [anon_sym_BSLASHACRshortpl] = ACTIONS(992), + [anon_sym_BSLASHacrlong] = ACTIONS(992), + [anon_sym_BSLASHAcrlong] = ACTIONS(992), + [anon_sym_BSLASHACRlong] = ACTIONS(992), + [anon_sym_BSLASHacrlongpl] = ACTIONS(992), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(992), + [anon_sym_BSLASHACRlongpl] = ACTIONS(992), + [anon_sym_BSLASHacrfull] = ACTIONS(992), + [anon_sym_BSLASHAcrfull] = ACTIONS(992), + [anon_sym_BSLASHACRfull] = ACTIONS(992), + [anon_sym_BSLASHacrfullpl] = ACTIONS(992), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(992), + [anon_sym_BSLASHACRfullpl] = ACTIONS(992), + [anon_sym_BSLASHacs] = ACTIONS(992), + [anon_sym_BSLASHAcs] = ACTIONS(992), + [anon_sym_BSLASHacsp] = ACTIONS(992), + [anon_sym_BSLASHAcsp] = ACTIONS(992), + [anon_sym_BSLASHacl] = ACTIONS(992), + [anon_sym_BSLASHAcl] = ACTIONS(992), + [anon_sym_BSLASHaclp] = ACTIONS(992), + [anon_sym_BSLASHAclp] = ACTIONS(992), + [anon_sym_BSLASHacf] = ACTIONS(992), + [anon_sym_BSLASHAcf] = ACTIONS(992), + [anon_sym_BSLASHacfp] = ACTIONS(992), + [anon_sym_BSLASHAcfp] = ACTIONS(992), + [anon_sym_BSLASHac] = ACTIONS(992), + [anon_sym_BSLASHAc] = ACTIONS(992), + [anon_sym_BSLASHacp] = ACTIONS(992), + [anon_sym_BSLASHglsentrylong] = ACTIONS(992), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(992), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(992), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(992), + [anon_sym_BSLASHglsentryshort] = ACTIONS(992), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(992), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(992), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(992), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(992), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(992), + [anon_sym_BSLASHnewtheorem] = ACTIONS(995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1004), + [anon_sym_BSLASHcolor] = ACTIONS(1007), + [anon_sym_BSLASHcolorbox] = ACTIONS(1007), + [anon_sym_BSLASHtextcolor] = ACTIONS(1007), + [anon_sym_BSLASHpagecolor] = ACTIONS(1007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1010), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1010), + [anon_sym_BSLASHtext] = ACTIONS(1013), + [anon_sym_BSLASHintertext] = ACTIONS(1013), + [anon_sym_shortintertext] = ACTIONS(1013), }, [47] = { - [sym_block_comment] = STATE(44), - [sym__root_content] = STATE(44), - [sym__flat_content] = STATE(44), - [sym__text_with_env_content] = STATE(44), - [sym__text_content] = STATE(44), - [sym__section] = STATE(44), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(44), - [sym_text] = STATE(44), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(44), - [sym_inline_formula] = STATE(44), - [sym_math_set] = STATE(44), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(44), - [sym_comment_environment] = STATE(44), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(44), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(44), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(44), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(44), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(44), - [sym_generic_command] = STATE(44), - [sym_package_include] = STATE(44), - [sym_class_include] = STATE(44), - [sym_latex_include] = STATE(44), - [sym_biblatex_include] = STATE(44), - [sym_bibtex_include] = STATE(44), - [sym_graphics_include] = STATE(44), - [sym_svg_include] = STATE(44), - [sym_inkscape_include] = STATE(44), - [sym_verbatim_include] = STATE(44), - [sym_import_include] = STATE(44), - [sym_caption] = STATE(44), - [sym_citation] = STATE(44), - [sym_label_definition] = STATE(44), - [sym_label_reference] = STATE(44), - [sym_label_reference_range] = STATE(44), - [sym_label_number] = STATE(44), - [sym_new_command_definition] = STATE(44), - [sym_old_command_definition] = STATE(44), - [sym_let_command_definition] = STATE(44), - [sym_paired_delimiter_definition] = STATE(44), - [sym_environment_definition] = STATE(44), - [sym_glossary_entry_definition] = STATE(44), - [sym_glossary_entry_reference] = STATE(44), - [sym_acronym_definition] = STATE(44), - [sym_acronym_reference] = STATE(44), - [sym_theorem_definition] = STATE(44), - [sym_color_definition] = STATE(44), - [sym_color_set_definition] = STATE(44), - [sym_color_reference] = STATE(44), - [sym_tikz_library_import] = STATE(44), - [sym_text_mode] = STATE(44), - [aux_sym_source_file_repeat1] = STATE(44), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(56), + [sym__root_content] = STATE(56), + [sym__flat_content] = STATE(56), + [sym__text_with_env_content] = STATE(56), + [sym__text_content] = STATE(56), + [sym__section] = STATE(56), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(56), + [sym_text] = STATE(56), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(56), + [sym_inline_formula] = STATE(56), + [sym_math_set] = STATE(56), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(56), + [sym_comment_environment] = STATE(56), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(56), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(56), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(56), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(56), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(56), + [sym_generic_command] = STATE(56), + [sym_title_declaration] = STATE(56), + [sym_author_declaration] = STATE(56), + [sym_package_include] = STATE(56), + [sym_class_include] = STATE(56), + [sym_latex_include] = STATE(56), + [sym_biblatex_include] = STATE(56), + [sym_bibtex_include] = STATE(56), + [sym_graphics_include] = STATE(56), + [sym_svg_include] = STATE(56), + [sym_inkscape_include] = STATE(56), + [sym_verbatim_include] = STATE(56), + [sym_import_include] = STATE(56), + [sym_caption] = STATE(56), + [sym_citation] = STATE(56), + [sym_label_definition] = STATE(56), + [sym_label_reference] = STATE(56), + [sym_label_reference_range] = STATE(56), + [sym_label_number] = STATE(56), + [sym_new_command_definition] = STATE(56), + [sym_old_command_definition] = STATE(56), + [sym_let_command_definition] = STATE(56), + [sym_paired_delimiter_definition] = STATE(56), + [sym_environment_definition] = STATE(56), + [sym_glossary_entry_definition] = STATE(56), + [sym_glossary_entry_reference] = STATE(56), + [sym_acronym_definition] = STATE(56), + [sym_acronym_reference] = STATE(56), + [sym_theorem_definition] = STATE(56), + [sym_color_definition] = STATE(56), + [sym_color_set_definition] = STATE(56), + [sym_color_reference] = STATE(56), + [sym_tikz_library_import] = STATE(56), + [sym_text_mode] = STATE(56), + [aux_sym_source_file_repeat1] = STATE(56), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_RBRACK] = ACTIONS(1016), + [anon_sym_COMMA] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -34872,7 +35845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(1018), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -34893,2424 +35866,1726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [48] = { - [sym_block_comment] = STATE(77), - [sym__root_content] = STATE(77), - [sym__flat_content] = STATE(77), - [sym__text_with_env_content] = STATE(77), - [sym__text_content] = STATE(77), - [sym__section] = STATE(77), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(77), - [sym_text] = STATE(77), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(77), - [sym_inline_formula] = STATE(77), - [sym_math_set] = STATE(77), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(77), - [sym_comment_environment] = STATE(77), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(77), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(77), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(77), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(77), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(77), - [sym_generic_command] = STATE(77), - [sym_package_include] = STATE(77), - [sym_class_include] = STATE(77), - [sym_latex_include] = STATE(77), - [sym_biblatex_include] = STATE(77), - [sym_bibtex_include] = STATE(77), - [sym_graphics_include] = STATE(77), - [sym_svg_include] = STATE(77), - [sym_inkscape_include] = STATE(77), - [sym_verbatim_include] = STATE(77), - [sym_import_include] = STATE(77), - [sym_caption] = STATE(77), - [sym_citation] = STATE(77), - [sym_label_definition] = STATE(77), - [sym_label_reference] = STATE(77), - [sym_label_reference_range] = STATE(77), - [sym_label_number] = STATE(77), - [sym_new_command_definition] = STATE(77), - [sym_old_command_definition] = STATE(77), - [sym_let_command_definition] = STATE(77), - [sym_paired_delimiter_definition] = STATE(77), - [sym_environment_definition] = STATE(77), - [sym_glossary_entry_definition] = STATE(77), - [sym_glossary_entry_reference] = STATE(77), - [sym_acronym_definition] = STATE(77), - [sym_acronym_reference] = STATE(77), - [sym_theorem_definition] = STATE(77), - [sym_color_definition] = STATE(77), - [sym_color_set_definition] = STATE(77), - [sym_color_reference] = STATE(77), - [sym_tikz_library_import] = STATE(77), - [sym_text_mode] = STATE(77), - [aux_sym_source_file_repeat1] = STATE(77), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(851), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [49] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), + [sym_block_comment] = STATE(59), + [sym__root_content] = STATE(59), + [sym__flat_content] = STATE(59), + [sym__text_with_env_content] = STATE(59), + [sym__text_content] = STATE(59), + [sym__section] = STATE(59), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(59), + [sym_text] = STATE(59), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(59), + [sym_inline_formula] = STATE(59), + [sym_math_set] = STATE(59), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(59), + [sym_comment_environment] = STATE(59), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(59), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(59), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(59), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(59), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(59), + [sym_generic_command] = STATE(59), + [sym_title_declaration] = STATE(59), + [sym_author_declaration] = STATE(59), + [sym_package_include] = STATE(59), + [sym_class_include] = STATE(59), + [sym_latex_include] = STATE(59), + [sym_biblatex_include] = STATE(59), + [sym_bibtex_include] = STATE(59), + [sym_graphics_include] = STATE(59), + [sym_svg_include] = STATE(59), + [sym_inkscape_include] = STATE(59), + [sym_verbatim_include] = STATE(59), + [sym_import_include] = STATE(59), + [sym_caption] = STATE(59), + [sym_citation] = STATE(59), + [sym_label_definition] = STATE(59), + [sym_label_reference] = STATE(59), + [sym_label_reference_range] = STATE(59), + [sym_label_number] = STATE(59), + [sym_new_command_definition] = STATE(59), + [sym_old_command_definition] = STATE(59), + [sym_let_command_definition] = STATE(59), + [sym_paired_delimiter_definition] = STATE(59), + [sym_environment_definition] = STATE(59), + [sym_glossary_entry_definition] = STATE(59), + [sym_glossary_entry_reference] = STATE(59), + [sym_acronym_definition] = STATE(59), + [sym_acronym_reference] = STATE(59), + [sym_theorem_definition] = STATE(59), + [sym_color_definition] = STATE(59), + [sym_color_set_definition] = STATE(59), + [sym_color_reference] = STATE(59), + [sym_tikz_library_import] = STATE(59), + [sym_text_mode] = STATE(59), + [aux_sym_source_file_repeat1] = STATE(59), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_RPAREN] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_RBRACK] = ACTIONS(1116), + [anon_sym_COMMA] = ACTIONS(1116), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1118), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [50] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(927), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1122), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1124), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [51] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(677), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1128), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [52] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(931), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [53] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(933), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym__] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(51), - [anon_sym_GT] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH_LBRACK] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(55), - [anon_sym_BSLASH_LPAREN] = ACTIONS(57), - [anon_sym_BSLASH_LBRACE] = ACTIONS(59), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [54] = { [sym_block_comment] = STATE(50), [sym__root_content] = STATE(50), [sym__flat_content] = STATE(50), [sym__text_with_env_content] = STATE(50), [sym__text_content] = STATE(50), [sym__section] = STATE(50), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), [sym_curly_group] = STATE(50), [sym_text] = STATE(50), - [sym_operator] = STATE(879), + [sym_operator] = STATE(1131), [sym_displayed_equation] = STATE(50), [sym_inline_formula] = STATE(50), [sym_math_set] = STATE(50), - [sym_begin] = STATE(13), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(50), [sym_comment_environment] = STATE(50), - [sym__trivia_begin_comment] = STATE(2426), + [sym__trivia_begin_comment] = STATE(2730), [sym_verbatim_environment] = STATE(50), - [sym__trivia_begin_verbatim] = STATE(2423), + [sym__trivia_begin_verbatim] = STATE(2729), [sym_listing_environment] = STATE(50), - [sym__trivia_begin_listing] = STATE(2417), + [sym__trivia_begin_listing] = STATE(2728), [sym_minted_environment] = STATE(50), - [sym__trivia_begin_minted] = STATE(2415), + [sym__trivia_begin_minted] = STATE(2727), [sym_pycode_environment] = STATE(50), - [sym__trivia_begin_pycode] = STATE(2414), + [sym__trivia_begin_pycode] = STATE(2726), [sym__command] = STATE(50), [sym_generic_command] = STATE(50), + [sym_title_declaration] = STATE(50), + [sym_author_declaration] = STATE(50), [sym_package_include] = STATE(50), [sym_class_include] = STATE(50), [sym_latex_include] = STATE(50), @@ -37343,333 +37618,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(50), [sym_text_mode] = STATE(50), [aux_sym_source_file_repeat1] = STATE(50), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(937), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_RBRACK] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1136), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [55] = { + [53] = { [sym_block_comment] = STATE(51), [sym__root_content] = STATE(51), [sym__flat_content] = STATE(51), [sym__text_with_env_content] = STATE(51), [sym__text_content] = STATE(51), [sym__section] = STATE(51), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), [sym_curly_group] = STATE(51), [sym_text] = STATE(51), - [sym_operator] = STATE(986), + [sym_operator] = STATE(1314), [sym_displayed_equation] = STATE(51), [sym_inline_formula] = STATE(51), [sym_math_set] = STATE(51), - [sym_begin] = STATE(21), + [sym_begin] = STATE(28), [sym_generic_environment] = STATE(51), [sym_comment_environment] = STATE(51), - [sym__trivia_begin_comment] = STATE(2434), + [sym__trivia_begin_comment] = STATE(2740), [sym_verbatim_environment] = STATE(51), - [sym__trivia_begin_verbatim] = STATE(2433), + [sym__trivia_begin_verbatim] = STATE(2738), [sym_listing_environment] = STATE(51), - [sym__trivia_begin_listing] = STATE(2432), + [sym__trivia_begin_listing] = STATE(2737), [sym_minted_environment] = STATE(51), - [sym__trivia_begin_minted] = STATE(2431), + [sym__trivia_begin_minted] = STATE(2736), [sym_pycode_environment] = STATE(51), - [sym__trivia_begin_pycode] = STATE(2430), + [sym__trivia_begin_pycode] = STATE(2735), [sym__command] = STATE(51), [sym_generic_command] = STATE(51), + [sym_title_declaration] = STATE(51), + [sym_author_declaration] = STATE(51), [sym_package_include] = STATE(51), [sym_class_include] = STATE(51), [sym_latex_include] = STATE(51), @@ -37702,743 +37981,1114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(51), [sym_text_mode] = STATE(51), [aux_sym_source_file_repeat1] = STATE(51), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(785), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1138), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1140), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [56] = { - [sym_block_comment] = STATE(52), - [sym__root_content] = STATE(52), - [sym__flat_content] = STATE(52), - [sym__text_with_env_content] = STATE(52), - [sym__text_content] = STATE(52), - [sym__section] = STATE(52), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(52), - [sym_text] = STATE(52), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(52), - [sym_inline_formula] = STATE(52), - [sym_math_set] = STATE(52), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(52), - [sym_comment_environment] = STATE(52), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(52), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(52), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(52), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(52), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(52), - [sym_generic_command] = STATE(52), - [sym_package_include] = STATE(52), - [sym_class_include] = STATE(52), - [sym_latex_include] = STATE(52), - [sym_biblatex_include] = STATE(52), - [sym_bibtex_include] = STATE(52), - [sym_graphics_include] = STATE(52), - [sym_svg_include] = STATE(52), - [sym_inkscape_include] = STATE(52), - [sym_verbatim_include] = STATE(52), - [sym_import_include] = STATE(52), - [sym_caption] = STATE(52), - [sym_citation] = STATE(52), - [sym_label_definition] = STATE(52), - [sym_label_reference] = STATE(52), - [sym_label_reference_range] = STATE(52), - [sym_label_number] = STATE(52), - [sym_new_command_definition] = STATE(52), - [sym_old_command_definition] = STATE(52), - [sym_let_command_definition] = STATE(52), - [sym_paired_delimiter_definition] = STATE(52), - [sym_environment_definition] = STATE(52), - [sym_glossary_entry_definition] = STATE(52), - [sym_glossary_entry_reference] = STATE(52), - [sym_acronym_definition] = STATE(52), - [sym_acronym_reference] = STATE(52), - [sym_theorem_definition] = STATE(52), - [sym_color_definition] = STATE(52), - [sym_color_set_definition] = STATE(52), - [sym_color_reference] = STATE(52), - [sym_tikz_library_import] = STATE(52), - [sym_text_mode] = STATE(52), - [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [54] = { + [sym_block_comment] = STATE(97), + [sym__root_content] = STATE(97), + [sym__flat_content] = STATE(97), + [sym__text_with_env_content] = STATE(97), + [sym__text_content] = STATE(97), + [sym__section] = STATE(97), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(97), + [sym_text] = STATE(97), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(97), + [sym_inline_formula] = STATE(97), + [sym_math_set] = STATE(97), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(97), + [sym_comment_environment] = STATE(97), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(97), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(97), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(97), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(97), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(97), + [sym_generic_command] = STATE(97), + [sym_title_declaration] = STATE(97), + [sym_author_declaration] = STATE(97), + [sym_package_include] = STATE(97), + [sym_class_include] = STATE(97), + [sym_latex_include] = STATE(97), + [sym_biblatex_include] = STATE(97), + [sym_bibtex_include] = STATE(97), + [sym_graphics_include] = STATE(97), + [sym_svg_include] = STATE(97), + [sym_inkscape_include] = STATE(97), + [sym_verbatim_include] = STATE(97), + [sym_import_include] = STATE(97), + [sym_caption] = STATE(97), + [sym_citation] = STATE(97), + [sym_label_definition] = STATE(97), + [sym_label_reference] = STATE(97), + [sym_label_reference_range] = STATE(97), + [sym_label_number] = STATE(97), + [sym_new_command_definition] = STATE(97), + [sym_old_command_definition] = STATE(97), + [sym_let_command_definition] = STATE(97), + [sym_paired_delimiter_definition] = STATE(97), + [sym_environment_definition] = STATE(97), + [sym_glossary_entry_definition] = STATE(97), + [sym_glossary_entry_reference] = STATE(97), + [sym_acronym_definition] = STATE(97), + [sym_acronym_reference] = STATE(97), + [sym_theorem_definition] = STATE(97), + [sym_color_definition] = STATE(97), + [sym_color_set_definition] = STATE(97), + [sym_color_reference] = STATE(97), + [sym_tikz_library_import] = STATE(97), + [sym_text_mode] = STATE(97), + [aux_sym_source_file_repeat1] = STATE(97), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [57] = { - [sym_block_comment] = STATE(53), - [sym__root_content] = STATE(53), - [sym__flat_content] = STATE(53), - [sym__text_with_env_content] = STATE(53), - [sym__text_content] = STATE(53), - [sym__section] = STATE(53), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(53), - [sym_text] = STATE(53), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(53), - [sym_inline_formula] = STATE(53), - [sym_math_set] = STATE(53), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(53), - [sym_comment_environment] = STATE(53), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(53), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(53), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(53), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(53), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(53), - [sym_generic_command] = STATE(53), - [sym_package_include] = STATE(53), - [sym_class_include] = STATE(53), - [sym_latex_include] = STATE(53), - [sym_biblatex_include] = STATE(53), - [sym_bibtex_include] = STATE(53), - [sym_graphics_include] = STATE(53), - [sym_svg_include] = STATE(53), - [sym_inkscape_include] = STATE(53), - [sym_verbatim_include] = STATE(53), - [sym_import_include] = STATE(53), - [sym_caption] = STATE(53), - [sym_citation] = STATE(53), - [sym_label_definition] = STATE(53), - [sym_label_reference] = STATE(53), - [sym_label_reference_range] = STATE(53), - [sym_label_number] = STATE(53), - [sym_new_command_definition] = STATE(53), - [sym_old_command_definition] = STATE(53), - [sym_let_command_definition] = STATE(53), - [sym_paired_delimiter_definition] = STATE(53), - [sym_environment_definition] = STATE(53), - [sym_glossary_entry_definition] = STATE(53), - [sym_glossary_entry_reference] = STATE(53), - [sym_acronym_definition] = STATE(53), - [sym_acronym_reference] = STATE(53), - [sym_theorem_definition] = STATE(53), - [sym_color_definition] = STATE(53), - [sym_color_set_definition] = STATE(53), - [sym_color_reference] = STATE(53), - [sym_tikz_library_import] = STATE(53), - [sym_text_mode] = STATE(53), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [55] = { + [sym_block_comment] = STATE(99), + [sym__root_content] = STATE(99), + [sym__flat_content] = STATE(99), + [sym__text_with_env_content] = STATE(99), + [sym__text_content] = STATE(99), + [sym__section] = STATE(99), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(99), + [sym_text] = STATE(99), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(99), + [sym_inline_formula] = STATE(99), + [sym_math_set] = STATE(99), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(99), + [sym_comment_environment] = STATE(99), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(99), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(99), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(99), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(99), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(99), + [sym_generic_command] = STATE(99), + [sym_title_declaration] = STATE(99), + [sym_author_declaration] = STATE(99), + [sym_package_include] = STATE(99), + [sym_class_include] = STATE(99), + [sym_latex_include] = STATE(99), + [sym_biblatex_include] = STATE(99), + [sym_bibtex_include] = STATE(99), + [sym_graphics_include] = STATE(99), + [sym_svg_include] = STATE(99), + [sym_inkscape_include] = STATE(99), + [sym_verbatim_include] = STATE(99), + [sym_import_include] = STATE(99), + [sym_caption] = STATE(99), + [sym_citation] = STATE(99), + [sym_label_definition] = STATE(99), + [sym_label_reference] = STATE(99), + [sym_label_reference_range] = STATE(99), + [sym_label_number] = STATE(99), + [sym_new_command_definition] = STATE(99), + [sym_old_command_definition] = STATE(99), + [sym_let_command_definition] = STATE(99), + [sym_paired_delimiter_definition] = STATE(99), + [sym_environment_definition] = STATE(99), + [sym_glossary_entry_definition] = STATE(99), + [sym_glossary_entry_reference] = STATE(99), + [sym_acronym_definition] = STATE(99), + [sym_acronym_reference] = STATE(99), + [sym_theorem_definition] = STATE(99), + [sym_color_definition] = STATE(99), + [sym_color_set_definition] = STATE(99), + [sym_color_reference] = STATE(99), + [sym_tikz_library_import] = STATE(99), + [sym_text_mode] = STATE(99), + [aux_sym_source_file_repeat1] = STATE(99), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_RBRACK] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1150), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1154), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [56] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -38462,7 +39112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1158), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -38483,2834 +39133,3229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [57] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1160), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [58] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1166), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [59] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1168), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [60] = { - [sym_block_comment] = STATE(90), - [sym__root_content] = STATE(90), - [sym__flat_content] = STATE(90), - [sym__text_with_env_content] = STATE(90), - [sym__text_content] = STATE(90), - [sym__section] = STATE(90), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(90), - [sym_text] = STATE(90), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(90), - [sym_inline_formula] = STATE(90), - [sym_math_set] = STATE(90), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(90), - [sym_comment_environment] = STATE(90), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(90), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(90), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(90), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(90), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(90), - [sym_generic_command] = STATE(90), - [sym_package_include] = STATE(90), - [sym_class_include] = STATE(90), - [sym_latex_include] = STATE(90), - [sym_biblatex_include] = STATE(90), - [sym_bibtex_include] = STATE(90), - [sym_graphics_include] = STATE(90), - [sym_svg_include] = STATE(90), - [sym_inkscape_include] = STATE(90), - [sym_verbatim_include] = STATE(90), - [sym_import_include] = STATE(90), - [sym_caption] = STATE(90), - [sym_citation] = STATE(90), - [sym_label_definition] = STATE(90), - [sym_label_reference] = STATE(90), - [sym_label_reference_range] = STATE(90), - [sym_label_number] = STATE(90), - [sym_new_command_definition] = STATE(90), - [sym_old_command_definition] = STATE(90), - [sym_let_command_definition] = STATE(90), - [sym_paired_delimiter_definition] = STATE(90), - [sym_environment_definition] = STATE(90), - [sym_glossary_entry_definition] = STATE(90), - [sym_glossary_entry_reference] = STATE(90), - [sym_acronym_definition] = STATE(90), - [sym_acronym_reference] = STATE(90), - [sym_theorem_definition] = STATE(90), - [sym_color_definition] = STATE(90), - [sym_color_set_definition] = STATE(90), - [sym_color_reference] = STATE(90), - [sym_tikz_library_import] = STATE(90), - [sym_text_mode] = STATE(90), - [aux_sym_source_file_repeat1] = STATE(90), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1170), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [61] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(957), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym__] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(51), - [anon_sym_GT] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH_LBRACK] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(55), - [anon_sym_BSLASH_LPAREN] = ACTIONS(57), - [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1174), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [62] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1176), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_RPAREN] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_RBRACK] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_BSLASHpart] = ACTIONS(1185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1188), + [anon_sym_BSLASHaddpart] = ACTIONS(1185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1188), + [anon_sym_BSLASHchapter] = ACTIONS(1191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1194), + [anon_sym_BSLASHaddchap] = ACTIONS(1191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1194), + [anon_sym_BSLASHsection] = ACTIONS(1197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1200), + [anon_sym_BSLASHaddsec] = ACTIONS(1197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1200), + [anon_sym_BSLASHsubsection] = ACTIONS(1203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1206), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1212), + [anon_sym_BSLASHparagraph] = ACTIONS(1215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1218), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1224), + [anon_sym_BSLASHitem] = ACTIONS(1227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1233), + [sym_word] = ACTIONS(1236), + [sym_placeholder] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym__] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_COLON] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1251), + [anon_sym_BSLASH_RPAREN] = ACTIONS(381), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1254), + [anon_sym_BSLASHbegin] = ACTIONS(464), + [anon_sym_BSLASHtitle] = ACTIONS(1257), + [anon_sym_BSLASHauthor] = ACTIONS(1260), + [anon_sym_BSLASHusepackage] = ACTIONS(1263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1266), + [anon_sym_BSLASHinclude] = ACTIONS(1269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1269), + [anon_sym_BSLASHinput] = ACTIONS(1269), + [anon_sym_BSLASHsubfile] = ACTIONS(1269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1272), + [anon_sym_BSLASHbibliography] = ACTIONS(1275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1278), + [anon_sym_BSLASHincludesvg] = ACTIONS(1281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1284), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1287), + [anon_sym_BSLASHimport] = ACTIONS(1290), + [anon_sym_BSLASHsubimport] = ACTIONS(1290), + [anon_sym_BSLASHinputfrom] = ACTIONS(1290), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1290), + [anon_sym_BSLASHincludefrom] = ACTIONS(1290), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1290), + [anon_sym_BSLASHcaption] = ACTIONS(1293), + [anon_sym_BSLASHcite] = ACTIONS(1296), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1299), + [anon_sym_BSLASHCite] = ACTIONS(1296), + [anon_sym_BSLASHnocite] = ACTIONS(1296), + [anon_sym_BSLASHcitet] = ACTIONS(1296), + [anon_sym_BSLASHcitep] = ACTIONS(1296), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1299), + [anon_sym_BSLASHciteauthor] = ACTIONS(1296), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1296), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1299), + [anon_sym_BSLASHcitetitle] = ACTIONS(1296), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1299), + [anon_sym_BSLASHciteyear] = ACTIONS(1296), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1299), + [anon_sym_BSLASHcitedate] = ACTIONS(1296), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1299), + [anon_sym_BSLASHciteurl] = ACTIONS(1296), + [anon_sym_BSLASHfullcite] = ACTIONS(1296), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1296), + [anon_sym_BSLASHcitealt] = ACTIONS(1296), + [anon_sym_BSLASHcitealp] = ACTIONS(1296), + [anon_sym_BSLASHcitetext] = ACTIONS(1296), + [anon_sym_BSLASHparencite] = ACTIONS(1296), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1299), + [anon_sym_BSLASHParencite] = ACTIONS(1296), + [anon_sym_BSLASHfootcite] = ACTIONS(1296), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1296), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1296), + [anon_sym_BSLASHtextcite] = ACTIONS(1296), + [anon_sym_BSLASHTextcite] = ACTIONS(1296), + [anon_sym_BSLASHsmartcite] = ACTIONS(1296), + [anon_sym_BSLASHSmartcite] = ACTIONS(1296), + [anon_sym_BSLASHsupercite] = ACTIONS(1296), + [anon_sym_BSLASHautocite] = ACTIONS(1296), + [anon_sym_BSLASHAutocite] = ACTIONS(1296), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1299), + [anon_sym_BSLASHvolcite] = ACTIONS(1296), + [anon_sym_BSLASHVolcite] = ACTIONS(1296), + [anon_sym_BSLASHpvolcite] = ACTIONS(1296), + [anon_sym_BSLASHPvolcite] = ACTIONS(1296), + [anon_sym_BSLASHfvolcite] = ACTIONS(1296), + [anon_sym_BSLASHftvolcite] = ACTIONS(1296), + [anon_sym_BSLASHsvolcite] = ACTIONS(1296), + [anon_sym_BSLASHSvolcite] = ACTIONS(1296), + [anon_sym_BSLASHtvolcite] = ACTIONS(1296), + [anon_sym_BSLASHTvolcite] = ACTIONS(1296), + [anon_sym_BSLASHavolcite] = ACTIONS(1296), + [anon_sym_BSLASHAvolcite] = ACTIONS(1296), + [anon_sym_BSLASHnotecite] = ACTIONS(1296), + [anon_sym_BSLASHNotecite] = ACTIONS(1296), + [anon_sym_BSLASHpnotecite] = ACTIONS(1296), + [anon_sym_BSLASHPnotecite] = ACTIONS(1296), + [anon_sym_BSLASHfnotecite] = ACTIONS(1296), + [anon_sym_BSLASHlabel] = ACTIONS(1302), + [anon_sym_BSLASHref] = ACTIONS(1305), + [anon_sym_BSLASHeqref] = ACTIONS(1305), + [anon_sym_BSLASHvref] = ACTIONS(1305), + [anon_sym_BSLASHVref] = ACTIONS(1305), + [anon_sym_BSLASHautoref] = ACTIONS(1305), + [anon_sym_BSLASHpageref] = ACTIONS(1305), + [anon_sym_BSLASHcref] = ACTIONS(1305), + [anon_sym_BSLASHCref] = ACTIONS(1305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1308), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1308), + [anon_sym_BSLASHnamecref] = ACTIONS(1305), + [anon_sym_BSLASHnameCref] = ACTIONS(1305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1305), + [anon_sym_BSLASHlabelcref] = ACTIONS(1305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1305), + [anon_sym_BSLASHcrefrange] = ACTIONS(1311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1314), + [anon_sym_BSLASHCrefrange] = ACTIONS(1311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1314), + [anon_sym_BSLASHnewlabel] = ACTIONS(1317), + [anon_sym_BSLASHnewcommand] = ACTIONS(1320), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1320), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1320), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1320), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1323), + [anon_sym_BSLASHdef] = ACTIONS(1326), + [anon_sym_BSLASHlet] = ACTIONS(1329), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1332), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1332), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1338), + [anon_sym_BSLASHgls] = ACTIONS(1341), + [anon_sym_BSLASHGls] = ACTIONS(1341), + [anon_sym_BSLASHGLS] = ACTIONS(1341), + [anon_sym_BSLASHglspl] = ACTIONS(1341), + [anon_sym_BSLASHGlspl] = ACTIONS(1341), + [anon_sym_BSLASHGLSpl] = ACTIONS(1341), + [anon_sym_BSLASHglsdisp] = ACTIONS(1341), + [anon_sym_BSLASHglslink] = ACTIONS(1341), + [anon_sym_BSLASHglstext] = ACTIONS(1341), + [anon_sym_BSLASHGlstext] = ACTIONS(1341), + [anon_sym_BSLASHGLStext] = ACTIONS(1341), + [anon_sym_BSLASHglsfirst] = ACTIONS(1341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1341), + [anon_sym_BSLASHglsplural] = ACTIONS(1341), + [anon_sym_BSLASHGlsplural] = ACTIONS(1341), + [anon_sym_BSLASHGLSplural] = ACTIONS(1341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1341), + [anon_sym_BSLASHglsname] = ACTIONS(1341), + [anon_sym_BSLASHGlsname] = ACTIONS(1341), + [anon_sym_BSLASHGLSname] = ACTIONS(1341), + [anon_sym_BSLASHglssymbol] = ACTIONS(1341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1341), + [anon_sym_BSLASHglsdesc] = ACTIONS(1341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1341), + [anon_sym_BSLASHglsuseri] = ACTIONS(1341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1341), + [anon_sym_BSLASHglsuserii] = ACTIONS(1341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1341), + [anon_sym_BSLASHglsuserv] = ACTIONS(1341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1341), + [anon_sym_BSLASHglsuservi] = ACTIONS(1341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1341), + [anon_sym_BSLASHnewacronym] = ACTIONS(1344), + [anon_sym_BSLASHacrshort] = ACTIONS(1347), + [anon_sym_BSLASHAcrshort] = ACTIONS(1347), + [anon_sym_BSLASHACRshort] = ACTIONS(1347), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1347), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1347), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1347), + [anon_sym_BSLASHacrlong] = ACTIONS(1347), + [anon_sym_BSLASHAcrlong] = ACTIONS(1347), + [anon_sym_BSLASHACRlong] = ACTIONS(1347), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1347), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1347), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1347), + [anon_sym_BSLASHacrfull] = ACTIONS(1347), + [anon_sym_BSLASHAcrfull] = ACTIONS(1347), + [anon_sym_BSLASHACRfull] = ACTIONS(1347), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1347), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1347), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1347), + [anon_sym_BSLASHacs] = ACTIONS(1347), + [anon_sym_BSLASHAcs] = ACTIONS(1347), + [anon_sym_BSLASHacsp] = ACTIONS(1347), + [anon_sym_BSLASHAcsp] = ACTIONS(1347), + [anon_sym_BSLASHacl] = ACTIONS(1347), + [anon_sym_BSLASHAcl] = ACTIONS(1347), + [anon_sym_BSLASHaclp] = ACTIONS(1347), + [anon_sym_BSLASHAclp] = ACTIONS(1347), + [anon_sym_BSLASHacf] = ACTIONS(1347), + [anon_sym_BSLASHAcf] = ACTIONS(1347), + [anon_sym_BSLASHacfp] = ACTIONS(1347), + [anon_sym_BSLASHAcfp] = ACTIONS(1347), + [anon_sym_BSLASHac] = ACTIONS(1347), + [anon_sym_BSLASHAc] = ACTIONS(1347), + [anon_sym_BSLASHacp] = ACTIONS(1347), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1347), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1347), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1347), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1347), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1347), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1347), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1347), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1347), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1347), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1347), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1350), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1350), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1356), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1359), + [anon_sym_BSLASHcolor] = ACTIONS(1362), + [anon_sym_BSLASHcolorbox] = ACTIONS(1362), + [anon_sym_BSLASHtextcolor] = ACTIONS(1362), + [anon_sym_BSLASHpagecolor] = ACTIONS(1362), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1365), + [anon_sym_BSLASHtext] = ACTIONS(1368), + [anon_sym_BSLASHintertext] = ACTIONS(1368), + [anon_sym_shortintertext] = ACTIONS(1368), }, [63] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [64] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(963), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_BSLASHpart] = ACTIONS(972), - [anon_sym_BSLASHpart_STAR] = ACTIONS(975), - [anon_sym_BSLASHaddpart] = ACTIONS(972), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(975), - [anon_sym_BSLASHchapter] = ACTIONS(978), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(981), - [anon_sym_BSLASHaddchap] = ACTIONS(978), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(981), - [anon_sym_BSLASHsection] = ACTIONS(984), - [anon_sym_BSLASHsection_STAR] = ACTIONS(987), - [anon_sym_BSLASHaddsec] = ACTIONS(984), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(987), - [anon_sym_BSLASHsubsection] = ACTIONS(990), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(996), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(999), - [anon_sym_BSLASHparagraph] = ACTIONS(1002), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1008), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1011), - [anon_sym_BSLASHitem] = ACTIONS(1014), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1020), - [sym_word] = ACTIONS(1023), - [sym_placeholder] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1029), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), - [anon_sym_BSLASH_RBRACK] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1038), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1041), - [anon_sym_BSLASHbegin] = ACTIONS(410), + [anon_sym_DOLLAR] = ACTIONS(1371), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1373), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), [anon_sym_BSLASHusepackage] = ACTIONS(1044), [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1047), - [anon_sym_BSLASHinclude] = ACTIONS(1050), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1050), - [anon_sym_BSLASHinput] = ACTIONS(1050), - [anon_sym_BSLASHsubfile] = ACTIONS(1050), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1053), - [anon_sym_BSLASHbibliography] = ACTIONS(1056), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1059), - [anon_sym_BSLASHincludesvg] = ACTIONS(1062), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1068), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1068), - [anon_sym_BSLASHimport] = ACTIONS(1071), - [anon_sym_BSLASHsubimport] = ACTIONS(1071), - [anon_sym_BSLASHinputfrom] = ACTIONS(1071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1071), - [anon_sym_BSLASHincludefrom] = ACTIONS(1071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1071), - [anon_sym_BSLASHcaption] = ACTIONS(1074), - [anon_sym_BSLASHcite] = ACTIONS(1077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1080), - [anon_sym_BSLASHCite] = ACTIONS(1077), - [anon_sym_BSLASHnocite] = ACTIONS(1077), - [anon_sym_BSLASHcitet] = ACTIONS(1077), - [anon_sym_BSLASHcitep] = ACTIONS(1077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1080), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1080), - [anon_sym_BSLASHciteauthor] = ACTIONS(1077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1080), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1080), - [anon_sym_BSLASHcitetitle] = ACTIONS(1077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1080), - [anon_sym_BSLASHciteyear] = ACTIONS(1077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1080), - [anon_sym_BSLASHcitedate] = ACTIONS(1077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1080), - [anon_sym_BSLASHciteurl] = ACTIONS(1077), - [anon_sym_BSLASHfullcite] = ACTIONS(1077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1077), - [anon_sym_BSLASHcitealt] = ACTIONS(1077), - [anon_sym_BSLASHcitealp] = ACTIONS(1077), - [anon_sym_BSLASHcitetext] = ACTIONS(1077), - [anon_sym_BSLASHparencite] = ACTIONS(1077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1080), - [anon_sym_BSLASHParencite] = ACTIONS(1077), - [anon_sym_BSLASHfootcite] = ACTIONS(1077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1077), - [anon_sym_BSLASHtextcite] = ACTIONS(1077), - [anon_sym_BSLASHTextcite] = ACTIONS(1077), - [anon_sym_BSLASHsmartcite] = ACTIONS(1077), - [anon_sym_BSLASHSmartcite] = ACTIONS(1077), - [anon_sym_BSLASHsupercite] = ACTIONS(1077), - [anon_sym_BSLASHautocite] = ACTIONS(1077), - [anon_sym_BSLASHAutocite] = ACTIONS(1077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1080), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1080), - [anon_sym_BSLASHvolcite] = ACTIONS(1077), - [anon_sym_BSLASHVolcite] = ACTIONS(1077), - [anon_sym_BSLASHpvolcite] = ACTIONS(1077), - [anon_sym_BSLASHPvolcite] = ACTIONS(1077), - [anon_sym_BSLASHfvolcite] = ACTIONS(1077), - [anon_sym_BSLASHftvolcite] = ACTIONS(1077), - [anon_sym_BSLASHsvolcite] = ACTIONS(1077), - [anon_sym_BSLASHSvolcite] = ACTIONS(1077), - [anon_sym_BSLASHtvolcite] = ACTIONS(1077), - [anon_sym_BSLASHTvolcite] = ACTIONS(1077), - [anon_sym_BSLASHavolcite] = ACTIONS(1077), - [anon_sym_BSLASHAvolcite] = ACTIONS(1077), - [anon_sym_BSLASHnotecite] = ACTIONS(1077), - [anon_sym_BSLASHNotecite] = ACTIONS(1077), - [anon_sym_BSLASHpnotecite] = ACTIONS(1077), - [anon_sym_BSLASHPnotecite] = ACTIONS(1077), - [anon_sym_BSLASHfnotecite] = ACTIONS(1077), - [anon_sym_BSLASHlabel] = ACTIONS(1083), - [anon_sym_BSLASHref] = ACTIONS(1086), - [anon_sym_BSLASHeqref] = ACTIONS(1086), - [anon_sym_BSLASHvref] = ACTIONS(1086), - [anon_sym_BSLASHVref] = ACTIONS(1086), - [anon_sym_BSLASHautoref] = ACTIONS(1086), - [anon_sym_BSLASHpageref] = ACTIONS(1086), - [anon_sym_BSLASHcref] = ACTIONS(1086), - [anon_sym_BSLASHCref] = ACTIONS(1086), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1089), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1089), - [anon_sym_BSLASHnamecref] = ACTIONS(1086), - [anon_sym_BSLASHnameCref] = ACTIONS(1086), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1086), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1086), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1086), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1086), - [anon_sym_BSLASHlabelcref] = ACTIONS(1086), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1086), - [anon_sym_BSLASHcrefrange] = ACTIONS(1092), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1095), - [anon_sym_BSLASHCrefrange] = ACTIONS(1092), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1095), - [anon_sym_BSLASHnewlabel] = ACTIONS(1098), - [anon_sym_BSLASHnewcommand] = ACTIONS(1101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1104), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1104), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1104), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1104), - [anon_sym_BSLASHdef] = ACTIONS(1107), - [anon_sym_BSLASHlet] = ACTIONS(1110), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1116), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1119), - [anon_sym_BSLASHgls] = ACTIONS(1122), - [anon_sym_BSLASHGls] = ACTIONS(1122), - [anon_sym_BSLASHGLS] = ACTIONS(1122), - [anon_sym_BSLASHglspl] = ACTIONS(1122), - [anon_sym_BSLASHGlspl] = ACTIONS(1122), - [anon_sym_BSLASHGLSpl] = ACTIONS(1122), - [anon_sym_BSLASHglsdisp] = ACTIONS(1122), - [anon_sym_BSLASHglslink] = ACTIONS(1122), - [anon_sym_BSLASHglstext] = ACTIONS(1122), - [anon_sym_BSLASHGlstext] = ACTIONS(1122), - [anon_sym_BSLASHGLStext] = ACTIONS(1122), - [anon_sym_BSLASHglsfirst] = ACTIONS(1122), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1122), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1122), - [anon_sym_BSLASHglsplural] = ACTIONS(1122), - [anon_sym_BSLASHGlsplural] = ACTIONS(1122), - [anon_sym_BSLASHGLSplural] = ACTIONS(1122), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1122), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1122), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1122), - [anon_sym_BSLASHglsname] = ACTIONS(1122), - [anon_sym_BSLASHGlsname] = ACTIONS(1122), - [anon_sym_BSLASHGLSname] = ACTIONS(1122), - [anon_sym_BSLASHglssymbol] = ACTIONS(1122), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1122), - [anon_sym_BSLASHglsdesc] = ACTIONS(1122), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1122), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1122), - [anon_sym_BSLASHglsuseri] = ACTIONS(1122), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1122), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1122), - [anon_sym_BSLASHglsuserii] = ACTIONS(1122), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1122), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1122), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1122), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1122), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1122), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1122), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1122), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1122), - [anon_sym_BSLASHglsuserv] = ACTIONS(1122), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1122), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1122), - [anon_sym_BSLASHglsuservi] = ACTIONS(1122), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1122), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1122), - [anon_sym_BSLASHnewacronym] = ACTIONS(1125), - [anon_sym_BSLASHacrshort] = ACTIONS(1128), - [anon_sym_BSLASHAcrshort] = ACTIONS(1128), - [anon_sym_BSLASHACRshort] = ACTIONS(1128), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1128), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1128), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1128), - [anon_sym_BSLASHacrlong] = ACTIONS(1128), - [anon_sym_BSLASHAcrlong] = ACTIONS(1128), - [anon_sym_BSLASHACRlong] = ACTIONS(1128), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1128), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1128), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1128), - [anon_sym_BSLASHacrfull] = ACTIONS(1128), - [anon_sym_BSLASHAcrfull] = ACTIONS(1128), - [anon_sym_BSLASHACRfull] = ACTIONS(1128), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1128), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1128), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1128), - [anon_sym_BSLASHacs] = ACTIONS(1128), - [anon_sym_BSLASHAcs] = ACTIONS(1128), - [anon_sym_BSLASHacsp] = ACTIONS(1128), - [anon_sym_BSLASHAcsp] = ACTIONS(1128), - [anon_sym_BSLASHacl] = ACTIONS(1128), - [anon_sym_BSLASHAcl] = ACTIONS(1128), - [anon_sym_BSLASHaclp] = ACTIONS(1128), - [anon_sym_BSLASHAclp] = ACTIONS(1128), - [anon_sym_BSLASHacf] = ACTIONS(1128), - [anon_sym_BSLASHAcf] = ACTIONS(1128), - [anon_sym_BSLASHacfp] = ACTIONS(1128), - [anon_sym_BSLASHAcfp] = ACTIONS(1128), - [anon_sym_BSLASHac] = ACTIONS(1128), - [anon_sym_BSLASHAc] = ACTIONS(1128), - [anon_sym_BSLASHacp] = ACTIONS(1128), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1128), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1128), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1128), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1128), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1128), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1128), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1128), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1128), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1128), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1128), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1134), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1134), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1140), - [anon_sym_BSLASHcolor] = ACTIONS(1143), - [anon_sym_BSLASHcolorbox] = ACTIONS(1143), - [anon_sym_BSLASHtextcolor] = ACTIONS(1143), - [anon_sym_BSLASHpagecolor] = ACTIONS(1143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1146), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1146), - [anon_sym_BSLASHtext] = ACTIONS(1149), - [anon_sym_BSLASHintertext] = ACTIONS(1149), - [anon_sym_shortintertext] = ACTIONS(1149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [65] = { - [sym_block_comment] = STATE(74), - [sym__root_content] = STATE(74), - [sym__flat_content] = STATE(74), - [sym__text_with_env_content] = STATE(74), - [sym__text_content] = STATE(74), - [sym__section] = STATE(74), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(74), - [sym_text] = STATE(74), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(74), - [sym_inline_formula] = STATE(74), - [sym_math_set] = STATE(74), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(74), - [sym_comment_environment] = STATE(74), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(74), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(74), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(74), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(74), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(74), - [sym_generic_command] = STATE(74), - [sym_package_include] = STATE(74), - [sym_class_include] = STATE(74), - [sym_latex_include] = STATE(74), - [sym_biblatex_include] = STATE(74), - [sym_bibtex_include] = STATE(74), - [sym_graphics_include] = STATE(74), - [sym_svg_include] = STATE(74), - [sym_inkscape_include] = STATE(74), - [sym_verbatim_include] = STATE(74), - [sym_import_include] = STATE(74), - [sym_caption] = STATE(74), - [sym_citation] = STATE(74), - [sym_label_definition] = STATE(74), - [sym_label_reference] = STATE(74), - [sym_label_reference_range] = STATE(74), - [sym_label_number] = STATE(74), - [sym_new_command_definition] = STATE(74), - [sym_old_command_definition] = STATE(74), - [sym_let_command_definition] = STATE(74), - [sym_paired_delimiter_definition] = STATE(74), - [sym_environment_definition] = STATE(74), - [sym_glossary_entry_definition] = STATE(74), - [sym_glossary_entry_reference] = STATE(74), - [sym_acronym_definition] = STATE(74), - [sym_acronym_reference] = STATE(74), - [sym_theorem_definition] = STATE(74), - [sym_color_definition] = STATE(74), - [sym_color_set_definition] = STATE(74), - [sym_color_reference] = STATE(74), - [sym_tikz_library_import] = STATE(74), - [sym_text_mode] = STATE(74), - [aux_sym_source_file_repeat1] = STATE(74), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(87), + [sym__root_content] = STATE(87), + [sym__flat_content] = STATE(87), + [sym__text_with_env_content] = STATE(87), + [sym__text_content] = STATE(87), + [sym__section] = STATE(87), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(87), + [sym_text] = STATE(87), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(87), + [sym_inline_formula] = STATE(87), + [sym_math_set] = STATE(87), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(87), + [sym_comment_environment] = STATE(87), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(87), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(87), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(87), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(87), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(87), + [sym_generic_command] = STATE(87), + [sym_title_declaration] = STATE(87), + [sym_author_declaration] = STATE(87), + [sym_package_include] = STATE(87), + [sym_class_include] = STATE(87), + [sym_latex_include] = STATE(87), + [sym_biblatex_include] = STATE(87), + [sym_bibtex_include] = STATE(87), + [sym_graphics_include] = STATE(87), + [sym_svg_include] = STATE(87), + [sym_inkscape_include] = STATE(87), + [sym_verbatim_include] = STATE(87), + [sym_import_include] = STATE(87), + [sym_caption] = STATE(87), + [sym_citation] = STATE(87), + [sym_label_definition] = STATE(87), + [sym_label_reference] = STATE(87), + [sym_label_reference_range] = STATE(87), + [sym_label_number] = STATE(87), + [sym_new_command_definition] = STATE(87), + [sym_old_command_definition] = STATE(87), + [sym_let_command_definition] = STATE(87), + [sym_paired_delimiter_definition] = STATE(87), + [sym_environment_definition] = STATE(87), + [sym_glossary_entry_definition] = STATE(87), + [sym_glossary_entry_reference] = STATE(87), + [sym_acronym_definition] = STATE(87), + [sym_acronym_reference] = STATE(87), + [sym_theorem_definition] = STATE(87), + [sym_color_definition] = STATE(87), + [sym_color_set_definition] = STATE(87), + [sym_color_reference] = STATE(87), + [sym_tikz_library_import] = STATE(87), + [sym_text_mode] = STATE(87), + [aux_sym_source_file_repeat1] = STATE(87), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1152), - [anon_sym_RBRACK] = ACTIONS(1152), - [anon_sym_COMMA] = ACTIONS(1152), - [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -41334,7 +42379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1377), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -41355,1040 +42400,688 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [66] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1156), + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [67] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1160), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [68] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1162), + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -42412,6 +43105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1383), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -42432,988 +43126,1000 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [69] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [68] = { + [sym_block_comment] = STATE(43), + [sym__root_content] = STATE(43), + [sym__flat_content] = STATE(43), + [sym__text_with_env_content] = STATE(43), + [sym__text_content] = STATE(43), + [sym__section] = STATE(43), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(43), + [sym_text] = STATE(43), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(43), + [sym_inline_formula] = STATE(43), + [sym_math_set] = STATE(43), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(43), + [sym_comment_environment] = STATE(43), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(43), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(43), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(43), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(43), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(43), + [sym_generic_command] = STATE(43), + [sym_title_declaration] = STATE(43), + [sym_author_declaration] = STATE(43), + [sym_package_include] = STATE(43), + [sym_class_include] = STATE(43), + [sym_latex_include] = STATE(43), + [sym_biblatex_include] = STATE(43), + [sym_bibtex_include] = STATE(43), + [sym_graphics_include] = STATE(43), + [sym_svg_include] = STATE(43), + [sym_inkscape_include] = STATE(43), + [sym_verbatim_include] = STATE(43), + [sym_import_include] = STATE(43), + [sym_caption] = STATE(43), + [sym_citation] = STATE(43), + [sym_label_definition] = STATE(43), + [sym_label_reference] = STATE(43), + [sym_label_reference_range] = STATE(43), + [sym_label_number] = STATE(43), + [sym_new_command_definition] = STATE(43), + [sym_old_command_definition] = STATE(43), + [sym_let_command_definition] = STATE(43), + [sym_paired_delimiter_definition] = STATE(43), + [sym_environment_definition] = STATE(43), + [sym_glossary_entry_definition] = STATE(43), + [sym_glossary_entry_reference] = STATE(43), + [sym_acronym_definition] = STATE(43), + [sym_acronym_reference] = STATE(43), + [sym_theorem_definition] = STATE(43), + [sym_color_definition] = STATE(43), + [sym_color_set_definition] = STATE(43), + [sym_color_reference] = STATE(43), + [sym_tikz_library_import] = STATE(43), + [sym_text_mode] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(43), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1387), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [70] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1164), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [69] = { + [sym_block_comment] = STATE(60), + [sym__root_content] = STATE(60), + [sym__flat_content] = STATE(60), + [sym__text_with_env_content] = STATE(60), + [sym__text_content] = STATE(60), + [sym__section] = STATE(60), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(60), + [sym_text] = STATE(60), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(60), + [sym_inline_formula] = STATE(60), + [sym_math_set] = STATE(60), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(60), + [sym_comment_environment] = STATE(60), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(60), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(60), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(60), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(60), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(60), + [sym_generic_command] = STATE(60), + [sym_title_declaration] = STATE(60), + [sym_author_declaration] = STATE(60), + [sym_package_include] = STATE(60), + [sym_class_include] = STATE(60), + [sym_latex_include] = STATE(60), + [sym_biblatex_include] = STATE(60), + [sym_bibtex_include] = STATE(60), + [sym_graphics_include] = STATE(60), + [sym_svg_include] = STATE(60), + [sym_inkscape_include] = STATE(60), + [sym_verbatim_include] = STATE(60), + [sym_import_include] = STATE(60), + [sym_caption] = STATE(60), + [sym_citation] = STATE(60), + [sym_label_definition] = STATE(60), + [sym_label_reference] = STATE(60), + [sym_label_reference_range] = STATE(60), + [sym_label_number] = STATE(60), + [sym_new_command_definition] = STATE(60), + [sym_old_command_definition] = STATE(60), + [sym_let_command_definition] = STATE(60), + [sym_paired_delimiter_definition] = STATE(60), + [sym_environment_definition] = STATE(60), + [sym_glossary_entry_definition] = STATE(60), + [sym_glossary_entry_reference] = STATE(60), + [sym_acronym_definition] = STATE(60), + [sym_acronym_reference] = STATE(60), + [sym_theorem_definition] = STATE(60), + [sym_color_definition] = STATE(60), + [sym_color_set_definition] = STATE(60), + [sym_color_reference] = STATE(60), + [sym_tikz_library_import] = STATE(60), + [sym_text_mode] = STATE(60), + [aux_sym_source_file_repeat1] = STATE(60), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1391), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [71] = { + [70] = { [sym_block_comment] = STATE(62), [sym__root_content] = STATE(62), [sym__flat_content] = STATE(62), [sym__text_with_env_content] = STATE(62), [sym__text_content] = STATE(62), [sym__section] = STATE(62), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), [sym_curly_group] = STATE(62), [sym_text] = STATE(62), - [sym_operator] = STATE(1196), + [sym_operator] = STATE(1131), [sym_displayed_equation] = STATE(62), [sym_inline_formula] = STATE(62), [sym_math_set] = STATE(62), - [sym_begin] = STATE(27), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(62), [sym_comment_environment] = STATE(62), - [sym__trivia_begin_comment] = STATE(2443), + [sym__trivia_begin_comment] = STATE(2730), [sym_verbatim_environment] = STATE(62), - [sym__trivia_begin_verbatim] = STATE(2442), + [sym__trivia_begin_verbatim] = STATE(2729), [sym_listing_environment] = STATE(62), - [sym__trivia_begin_listing] = STATE(2441), + [sym__trivia_begin_listing] = STATE(2728), [sym_minted_environment] = STATE(62), - [sym__trivia_begin_minted] = STATE(2440), + [sym__trivia_begin_minted] = STATE(2727), [sym_pycode_environment] = STATE(62), - [sym__trivia_begin_pycode] = STATE(2439), + [sym__trivia_begin_pycode] = STATE(2726), [sym__command] = STATE(62), [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), [sym_package_include] = STATE(62), [sym_class_include] = STATE(62), [sym_latex_include] = STATE(62), @@ -43446,743 +44152,751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(62), [sym_text_mode] = STATE(62), [aux_sym_source_file_repeat1] = STATE(62), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_EQ] = ACTIONS(1166), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1168), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1124), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [72] = { - [sym_block_comment] = STATE(81), - [sym__root_content] = STATE(81), - [sym__flat_content] = STATE(81), - [sym__text_with_env_content] = STATE(81), - [sym__text_content] = STATE(81), - [sym__section] = STATE(81), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(81), - [sym_text] = STATE(81), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(81), - [sym_inline_formula] = STATE(81), - [sym_math_set] = STATE(81), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(81), - [sym_comment_environment] = STATE(81), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(81), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(81), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(81), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(81), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(81), - [sym_generic_command] = STATE(81), - [sym_package_include] = STATE(81), - [sym_class_include] = STATE(81), - [sym_latex_include] = STATE(81), - [sym_biblatex_include] = STATE(81), - [sym_bibtex_include] = STATE(81), - [sym_graphics_include] = STATE(81), - [sym_svg_include] = STATE(81), - [sym_inkscape_include] = STATE(81), - [sym_verbatim_include] = STATE(81), - [sym_import_include] = STATE(81), - [sym_caption] = STATE(81), - [sym_citation] = STATE(81), - [sym_label_definition] = STATE(81), - [sym_label_reference] = STATE(81), - [sym_label_reference_range] = STATE(81), - [sym_label_number] = STATE(81), - [sym_new_command_definition] = STATE(81), - [sym_old_command_definition] = STATE(81), - [sym_let_command_definition] = STATE(81), - [sym_paired_delimiter_definition] = STATE(81), - [sym_environment_definition] = STATE(81), - [sym_glossary_entry_definition] = STATE(81), - [sym_glossary_entry_reference] = STATE(81), - [sym_acronym_definition] = STATE(81), - [sym_acronym_reference] = STATE(81), - [sym_theorem_definition] = STATE(81), - [sym_color_definition] = STATE(81), - [sym_color_set_definition] = STATE(81), - [sym_color_reference] = STATE(81), - [sym_tikz_library_import] = STATE(81), - [sym_text_mode] = STATE(81), - [aux_sym_source_file_repeat1] = STATE(81), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1172), - [anon_sym_EQ] = ACTIONS(1172), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1174), + [71] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [73] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_paired_delimiter_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [sym_text_mode] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [72] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1176), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -44206,7 +44920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1397), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -44227,321 +44941,1052 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [73] = { + [sym_block_comment] = STATE(70), + [sym__root_content] = STATE(70), + [sym__flat_content] = STATE(70), + [sym__text_with_env_content] = STATE(70), + [sym__text_content] = STATE(70), + [sym__section] = STATE(70), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(70), + [sym_text] = STATE(70), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(70), + [sym_inline_formula] = STATE(70), + [sym_math_set] = STATE(70), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(70), + [sym_comment_environment] = STATE(70), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(70), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(70), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(70), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(70), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(70), + [sym_generic_command] = STATE(70), + [sym_title_declaration] = STATE(70), + [sym_author_declaration] = STATE(70), + [sym_package_include] = STATE(70), + [sym_class_include] = STATE(70), + [sym_latex_include] = STATE(70), + [sym_biblatex_include] = STATE(70), + [sym_bibtex_include] = STATE(70), + [sym_graphics_include] = STATE(70), + [sym_svg_include] = STATE(70), + [sym_inkscape_include] = STATE(70), + [sym_verbatim_include] = STATE(70), + [sym_import_include] = STATE(70), + [sym_caption] = STATE(70), + [sym_citation] = STATE(70), + [sym_label_definition] = STATE(70), + [sym_label_reference] = STATE(70), + [sym_label_reference_range] = STATE(70), + [sym_label_number] = STATE(70), + [sym_new_command_definition] = STATE(70), + [sym_old_command_definition] = STATE(70), + [sym_let_command_definition] = STATE(70), + [sym_paired_delimiter_definition] = STATE(70), + [sym_environment_definition] = STATE(70), + [sym_glossary_entry_definition] = STATE(70), + [sym_glossary_entry_reference] = STATE(70), + [sym_acronym_definition] = STATE(70), + [sym_acronym_reference] = STATE(70), + [sym_theorem_definition] = STATE(70), + [sym_color_definition] = STATE(70), + [sym_color_set_definition] = STATE(70), + [sym_color_reference] = STATE(70), + [sym_tikz_library_import] = STATE(70), + [sym_text_mode] = STATE(70), + [aux_sym_source_file_repeat1] = STATE(70), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1136), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [74] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(71), + [sym__root_content] = STATE(71), + [sym__flat_content] = STATE(71), + [sym__text_with_env_content] = STATE(71), + [sym__text_content] = STATE(71), + [sym__section] = STATE(71), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(71), + [sym_text] = STATE(71), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(71), + [sym_inline_formula] = STATE(71), + [sym_math_set] = STATE(71), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(71), + [sym_comment_environment] = STATE(71), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(71), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(71), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(71), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(71), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(71), + [sym_generic_command] = STATE(71), + [sym_title_declaration] = STATE(71), + [sym_author_declaration] = STATE(71), + [sym_package_include] = STATE(71), + [sym_class_include] = STATE(71), + [sym_latex_include] = STATE(71), + [sym_biblatex_include] = STATE(71), + [sym_bibtex_include] = STATE(71), + [sym_graphics_include] = STATE(71), + [sym_svg_include] = STATE(71), + [sym_inkscape_include] = STATE(71), + [sym_verbatim_include] = STATE(71), + [sym_import_include] = STATE(71), + [sym_caption] = STATE(71), + [sym_citation] = STATE(71), + [sym_label_definition] = STATE(71), + [sym_label_reference] = STATE(71), + [sym_label_reference_range] = STATE(71), + [sym_label_number] = STATE(71), + [sym_new_command_definition] = STATE(71), + [sym_old_command_definition] = STATE(71), + [sym_let_command_definition] = STATE(71), + [sym_paired_delimiter_definition] = STATE(71), + [sym_environment_definition] = STATE(71), + [sym_glossary_entry_definition] = STATE(71), + [sym_glossary_entry_reference] = STATE(71), + [sym_acronym_definition] = STATE(71), + [sym_acronym_reference] = STATE(71), + [sym_theorem_definition] = STATE(71), + [sym_color_definition] = STATE(71), + [sym_color_set_definition] = STATE(71), + [sym_color_reference] = STATE(71), + [sym_tikz_library_import] = STATE(71), + [sym_text_mode] = STATE(71), + [aux_sym_source_file_repeat1] = STATE(71), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1405), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [75] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1407), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -44565,7 +46010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1180), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -44586,2783 +46030,1726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [75] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [76] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1182), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1184), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(61), + [sym__root_content] = STATE(61), + [sym__flat_content] = STATE(61), + [sym__text_with_env_content] = STATE(61), + [sym__text_content] = STATE(61), + [sym__section] = STATE(61), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(61), + [sym_text] = STATE(61), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(61), + [sym_inline_formula] = STATE(61), + [sym_math_set] = STATE(61), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(61), + [sym_comment_environment] = STATE(61), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(61), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(61), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(61), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(61), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(61), + [sym_generic_command] = STATE(61), + [sym_title_declaration] = STATE(61), + [sym_author_declaration] = STATE(61), + [sym_package_include] = STATE(61), + [sym_class_include] = STATE(61), + [sym_latex_include] = STATE(61), + [sym_biblatex_include] = STATE(61), + [sym_bibtex_include] = STATE(61), + [sym_graphics_include] = STATE(61), + [sym_svg_include] = STATE(61), + [sym_inkscape_include] = STATE(61), + [sym_verbatim_include] = STATE(61), + [sym_import_include] = STATE(61), + [sym_caption] = STATE(61), + [sym_citation] = STATE(61), + [sym_label_definition] = STATE(61), + [sym_label_reference] = STATE(61), + [sym_label_reference_range] = STATE(61), + [sym_label_number] = STATE(61), + [sym_new_command_definition] = STATE(61), + [sym_old_command_definition] = STATE(61), + [sym_let_command_definition] = STATE(61), + [sym_paired_delimiter_definition] = STATE(61), + [sym_environment_definition] = STATE(61), + [sym_glossary_entry_definition] = STATE(61), + [sym_glossary_entry_reference] = STATE(61), + [sym_acronym_definition] = STATE(61), + [sym_acronym_reference] = STATE(61), + [sym_theorem_definition] = STATE(61), + [sym_color_definition] = STATE(61), + [sym_color_set_definition] = STATE(61), + [sym_color_reference] = STATE(61), + [sym_tikz_library_import] = STATE(61), + [sym_text_mode] = STATE(61), + [aux_sym_source_file_repeat1] = STATE(61), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1409), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1411), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1413), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [77] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1186), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [78] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1188), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [79] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(1192), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_COMMA] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_BSLASHpart] = ACTIONS(1201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1204), - [anon_sym_BSLASHaddpart] = ACTIONS(1201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1204), - [anon_sym_BSLASHchapter] = ACTIONS(1207), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1210), - [anon_sym_BSLASHaddchap] = ACTIONS(1207), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1210), - [anon_sym_BSLASHsection] = ACTIONS(1213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1216), - [anon_sym_BSLASHaddsec] = ACTIONS(1213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1216), - [anon_sym_BSLASHsubsection] = ACTIONS(1219), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1228), - [anon_sym_BSLASHparagraph] = ACTIONS(1231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1234), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1240), - [anon_sym_BSLASHitem] = ACTIONS(1243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1249), - [sym_word] = ACTIONS(1252), - [sym_placeholder] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym__] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1267), - [anon_sym_BSLASH_RPAREN] = ACTIONS(327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1270), - [anon_sym_BSLASHbegin] = ACTIONS(410), - [anon_sym_BSLASHusepackage] = ACTIONS(1273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1276), - [anon_sym_BSLASHinclude] = ACTIONS(1279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1279), - [anon_sym_BSLASHinput] = ACTIONS(1279), - [anon_sym_BSLASHsubfile] = ACTIONS(1279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1282), - [anon_sym_BSLASHbibliography] = ACTIONS(1285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1288), - [anon_sym_BSLASHincludesvg] = ACTIONS(1291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1294), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1297), - [anon_sym_BSLASHimport] = ACTIONS(1300), - [anon_sym_BSLASHsubimport] = ACTIONS(1300), - [anon_sym_BSLASHinputfrom] = ACTIONS(1300), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1300), - [anon_sym_BSLASHincludefrom] = ACTIONS(1300), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1300), - [anon_sym_BSLASHcaption] = ACTIONS(1303), - [anon_sym_BSLASHcite] = ACTIONS(1306), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1309), - [anon_sym_BSLASHCite] = ACTIONS(1306), - [anon_sym_BSLASHnocite] = ACTIONS(1306), - [anon_sym_BSLASHcitet] = ACTIONS(1306), - [anon_sym_BSLASHcitep] = ACTIONS(1306), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1309), - [anon_sym_BSLASHciteauthor] = ACTIONS(1306), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1306), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1309), - [anon_sym_BSLASHcitetitle] = ACTIONS(1306), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1309), - [anon_sym_BSLASHciteyear] = ACTIONS(1306), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1309), - [anon_sym_BSLASHcitedate] = ACTIONS(1306), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1309), - [anon_sym_BSLASHciteurl] = ACTIONS(1306), - [anon_sym_BSLASHfullcite] = ACTIONS(1306), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1306), - [anon_sym_BSLASHcitealt] = ACTIONS(1306), - [anon_sym_BSLASHcitealp] = ACTIONS(1306), - [anon_sym_BSLASHcitetext] = ACTIONS(1306), - [anon_sym_BSLASHparencite] = ACTIONS(1306), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1309), - [anon_sym_BSLASHParencite] = ACTIONS(1306), - [anon_sym_BSLASHfootcite] = ACTIONS(1306), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1306), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1306), - [anon_sym_BSLASHtextcite] = ACTIONS(1306), - [anon_sym_BSLASHTextcite] = ACTIONS(1306), - [anon_sym_BSLASHsmartcite] = ACTIONS(1306), - [anon_sym_BSLASHSmartcite] = ACTIONS(1306), - [anon_sym_BSLASHsupercite] = ACTIONS(1306), - [anon_sym_BSLASHautocite] = ACTIONS(1306), - [anon_sym_BSLASHAutocite] = ACTIONS(1306), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1309), - [anon_sym_BSLASHvolcite] = ACTIONS(1306), - [anon_sym_BSLASHVolcite] = ACTIONS(1306), - [anon_sym_BSLASHpvolcite] = ACTIONS(1306), - [anon_sym_BSLASHPvolcite] = ACTIONS(1306), - [anon_sym_BSLASHfvolcite] = ACTIONS(1306), - [anon_sym_BSLASHftvolcite] = ACTIONS(1306), - [anon_sym_BSLASHsvolcite] = ACTIONS(1306), - [anon_sym_BSLASHSvolcite] = ACTIONS(1306), - [anon_sym_BSLASHtvolcite] = ACTIONS(1306), - [anon_sym_BSLASHTvolcite] = ACTIONS(1306), - [anon_sym_BSLASHavolcite] = ACTIONS(1306), - [anon_sym_BSLASHAvolcite] = ACTIONS(1306), - [anon_sym_BSLASHnotecite] = ACTIONS(1306), - [anon_sym_BSLASHNotecite] = ACTIONS(1306), - [anon_sym_BSLASHpnotecite] = ACTIONS(1306), - [anon_sym_BSLASHPnotecite] = ACTIONS(1306), - [anon_sym_BSLASHfnotecite] = ACTIONS(1306), - [anon_sym_BSLASHlabel] = ACTIONS(1312), - [anon_sym_BSLASHref] = ACTIONS(1315), - [anon_sym_BSLASHeqref] = ACTIONS(1315), - [anon_sym_BSLASHvref] = ACTIONS(1315), - [anon_sym_BSLASHVref] = ACTIONS(1315), - [anon_sym_BSLASHautoref] = ACTIONS(1315), - [anon_sym_BSLASHpageref] = ACTIONS(1315), - [anon_sym_BSLASHcref] = ACTIONS(1315), - [anon_sym_BSLASHCref] = ACTIONS(1315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1318), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1318), - [anon_sym_BSLASHnamecref] = ACTIONS(1315), - [anon_sym_BSLASHnameCref] = ACTIONS(1315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1315), - [anon_sym_BSLASHlabelcref] = ACTIONS(1315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1315), - [anon_sym_BSLASHcrefrange] = ACTIONS(1321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1324), - [anon_sym_BSLASHCrefrange] = ACTIONS(1321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1324), - [anon_sym_BSLASHnewlabel] = ACTIONS(1327), - [anon_sym_BSLASHnewcommand] = ACTIONS(1330), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1333), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1330), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1333), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1330), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1333), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1330), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1333), - [anon_sym_BSLASHdef] = ACTIONS(1336), - [anon_sym_BSLASHlet] = ACTIONS(1339), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1342), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1342), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1348), - [anon_sym_BSLASHgls] = ACTIONS(1351), - [anon_sym_BSLASHGls] = ACTIONS(1351), - [anon_sym_BSLASHGLS] = ACTIONS(1351), - [anon_sym_BSLASHglspl] = ACTIONS(1351), - [anon_sym_BSLASHGlspl] = ACTIONS(1351), - [anon_sym_BSLASHGLSpl] = ACTIONS(1351), - [anon_sym_BSLASHglsdisp] = ACTIONS(1351), - [anon_sym_BSLASHglslink] = ACTIONS(1351), - [anon_sym_BSLASHglstext] = ACTIONS(1351), - [anon_sym_BSLASHGlstext] = ACTIONS(1351), - [anon_sym_BSLASHGLStext] = ACTIONS(1351), - [anon_sym_BSLASHglsfirst] = ACTIONS(1351), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1351), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1351), - [anon_sym_BSLASHglsplural] = ACTIONS(1351), - [anon_sym_BSLASHGlsplural] = ACTIONS(1351), - [anon_sym_BSLASHGLSplural] = ACTIONS(1351), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1351), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1351), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1351), - [anon_sym_BSLASHglsname] = ACTIONS(1351), - [anon_sym_BSLASHGlsname] = ACTIONS(1351), - [anon_sym_BSLASHGLSname] = ACTIONS(1351), - [anon_sym_BSLASHglssymbol] = ACTIONS(1351), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1351), - [anon_sym_BSLASHglsdesc] = ACTIONS(1351), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1351), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1351), - [anon_sym_BSLASHglsuseri] = ACTIONS(1351), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1351), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1351), - [anon_sym_BSLASHglsuserii] = ACTIONS(1351), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1351), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1351), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1351), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1351), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1351), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1351), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1351), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1351), - [anon_sym_BSLASHglsuserv] = ACTIONS(1351), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1351), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1351), - [anon_sym_BSLASHglsuservi] = ACTIONS(1351), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1351), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1351), - [anon_sym_BSLASHnewacronym] = ACTIONS(1354), - [anon_sym_BSLASHacrshort] = ACTIONS(1357), - [anon_sym_BSLASHAcrshort] = ACTIONS(1357), - [anon_sym_BSLASHACRshort] = ACTIONS(1357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1357), - [anon_sym_BSLASHacrlong] = ACTIONS(1357), - [anon_sym_BSLASHAcrlong] = ACTIONS(1357), - [anon_sym_BSLASHACRlong] = ACTIONS(1357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1357), - [anon_sym_BSLASHacrfull] = ACTIONS(1357), - [anon_sym_BSLASHAcrfull] = ACTIONS(1357), - [anon_sym_BSLASHACRfull] = ACTIONS(1357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1357), - [anon_sym_BSLASHacs] = ACTIONS(1357), - [anon_sym_BSLASHAcs] = ACTIONS(1357), - [anon_sym_BSLASHacsp] = ACTIONS(1357), - [anon_sym_BSLASHAcsp] = ACTIONS(1357), - [anon_sym_BSLASHacl] = ACTIONS(1357), - [anon_sym_BSLASHAcl] = ACTIONS(1357), - [anon_sym_BSLASHaclp] = ACTIONS(1357), - [anon_sym_BSLASHAclp] = ACTIONS(1357), - [anon_sym_BSLASHacf] = ACTIONS(1357), - [anon_sym_BSLASHAcf] = ACTIONS(1357), - [anon_sym_BSLASHacfp] = ACTIONS(1357), - [anon_sym_BSLASHAcfp] = ACTIONS(1357), - [anon_sym_BSLASHac] = ACTIONS(1357), - [anon_sym_BSLASHAc] = ACTIONS(1357), - [anon_sym_BSLASHacp] = ACTIONS(1357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1360), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1360), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1366), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1369), - [anon_sym_BSLASHcolor] = ACTIONS(1372), - [anon_sym_BSLASHcolorbox] = ACTIONS(1372), - [anon_sym_BSLASHtextcolor] = ACTIONS(1372), - [anon_sym_BSLASHpagecolor] = ACTIONS(1372), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1375), - [anon_sym_BSLASHtext] = ACTIONS(1378), - [anon_sym_BSLASHintertext] = ACTIONS(1378), - [anon_sym_shortintertext] = ACTIONS(1378), - }, - [80] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [81] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1385), + [sym_block_comment] = STATE(67), + [sym__root_content] = STATE(67), + [sym__flat_content] = STATE(67), + [sym__text_with_env_content] = STATE(67), + [sym__text_content] = STATE(67), + [sym__section] = STATE(67), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(67), + [sym_text] = STATE(67), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(67), + [sym_inline_formula] = STATE(67), + [sym_math_set] = STATE(67), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(67), + [sym_comment_environment] = STATE(67), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(67), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(67), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(67), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(67), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(67), + [sym_generic_command] = STATE(67), + [sym_title_declaration] = STATE(67), + [sym_author_declaration] = STATE(67), + [sym_package_include] = STATE(67), + [sym_class_include] = STATE(67), + [sym_latex_include] = STATE(67), + [sym_biblatex_include] = STATE(67), + [sym_bibtex_include] = STATE(67), + [sym_graphics_include] = STATE(67), + [sym_svg_include] = STATE(67), + [sym_inkscape_include] = STATE(67), + [sym_verbatim_include] = STATE(67), + [sym_import_include] = STATE(67), + [sym_caption] = STATE(67), + [sym_citation] = STATE(67), + [sym_label_definition] = STATE(67), + [sym_label_reference] = STATE(67), + [sym_label_reference_range] = STATE(67), + [sym_label_number] = STATE(67), + [sym_new_command_definition] = STATE(67), + [sym_old_command_definition] = STATE(67), + [sym_let_command_definition] = STATE(67), + [sym_paired_delimiter_definition] = STATE(67), + [sym_environment_definition] = STATE(67), + [sym_glossary_entry_definition] = STATE(67), + [sym_glossary_entry_reference] = STATE(67), + [sym_acronym_definition] = STATE(67), + [sym_acronym_reference] = STATE(67), + [sym_theorem_definition] = STATE(67), + [sym_color_definition] = STATE(67), + [sym_color_set_definition] = STATE(67), + [sym_color_reference] = STATE(67), + [sym_tikz_library_import] = STATE(67), + [sym_text_mode] = STATE(67), + [aux_sym_source_file_repeat1] = STATE(67), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACK] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1419), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [82] = { + [79] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [80] = { [sym_block_comment] = STATE(91), [sym__root_content] = STATE(91), [sym__flat_content] = STATE(91), [sym__text_with_env_content] = STATE(91), [sym__text_content] = STATE(91), [sym__section] = STATE(91), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), [sym_curly_group] = STATE(91), [sym_text] = STATE(91), - [sym_operator] = STATE(1196), + [sym_operator] = STATE(793), [sym_displayed_equation] = STATE(91), [sym_inline_formula] = STATE(91), [sym_math_set] = STATE(91), - [sym_begin] = STATE(27), + [sym_begin] = STATE(20), [sym_generic_environment] = STATE(91), [sym_comment_environment] = STATE(91), - [sym__trivia_begin_comment] = STATE(2443), + [sym__trivia_begin_comment] = STATE(2754), [sym_verbatim_environment] = STATE(91), - [sym__trivia_begin_verbatim] = STATE(2442), + [sym__trivia_begin_verbatim] = STATE(2780), [sym_listing_environment] = STATE(91), - [sym__trivia_begin_listing] = STATE(2441), + [sym__trivia_begin_listing] = STATE(2756), [sym_minted_environment] = STATE(91), - [sym__trivia_begin_minted] = STATE(2440), + [sym__trivia_begin_minted] = STATE(2757), [sym_pycode_environment] = STATE(91), - [sym__trivia_begin_pycode] = STATE(2439), + [sym__trivia_begin_pycode] = STATE(2763), [sym__command] = STATE(91), [sym_generic_command] = STATE(91), + [sym_title_declaration] = STATE(91), + [sym_author_declaration] = STATE(91), [sym_package_include] = STATE(91), [sym_class_include] = STATE(91), [sym_latex_include] = STATE(91), @@ -47395,384 +47782,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(91), [sym_text_mode] = STATE(91), [aux_sym_source_file_repeat1] = STATE(91), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1387), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [83] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_math_set] = STATE(103), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(103), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(103), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(103), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(103), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1421), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -47796,7 +47824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1423), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -47817,1398 +47845,2503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [81] = { + [sym_block_comment] = STATE(92), + [sym__root_content] = STATE(92), + [sym__flat_content] = STATE(92), + [sym__text_with_env_content] = STATE(92), + [sym__text_content] = STATE(92), + [sym__section] = STATE(92), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(92), + [sym_text] = STATE(92), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(92), + [sym_inline_formula] = STATE(92), + [sym_math_set] = STATE(92), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(92), + [sym_comment_environment] = STATE(92), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(92), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(92), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(92), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(92), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(92), + [sym_generic_command] = STATE(92), + [sym_title_declaration] = STATE(92), + [sym_author_declaration] = STATE(92), + [sym_package_include] = STATE(92), + [sym_class_include] = STATE(92), + [sym_latex_include] = STATE(92), + [sym_biblatex_include] = STATE(92), + [sym_bibtex_include] = STATE(92), + [sym_graphics_include] = STATE(92), + [sym_svg_include] = STATE(92), + [sym_inkscape_include] = STATE(92), + [sym_verbatim_include] = STATE(92), + [sym_import_include] = STATE(92), + [sym_caption] = STATE(92), + [sym_citation] = STATE(92), + [sym_label_definition] = STATE(92), + [sym_label_reference] = STATE(92), + [sym_label_reference_range] = STATE(92), + [sym_label_number] = STATE(92), + [sym_new_command_definition] = STATE(92), + [sym_old_command_definition] = STATE(92), + [sym_let_command_definition] = STATE(92), + [sym_paired_delimiter_definition] = STATE(92), + [sym_environment_definition] = STATE(92), + [sym_glossary_entry_definition] = STATE(92), + [sym_glossary_entry_reference] = STATE(92), + [sym_acronym_definition] = STATE(92), + [sym_acronym_reference] = STATE(92), + [sym_theorem_definition] = STATE(92), + [sym_color_definition] = STATE(92), + [sym_color_set_definition] = STATE(92), + [sym_color_reference] = STATE(92), + [sym_tikz_library_import] = STATE(92), + [sym_text_mode] = STATE(92), + [aux_sym_source_file_repeat1] = STATE(92), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [82] = { + [sym_block_comment] = STATE(93), + [sym__root_content] = STATE(93), + [sym__flat_content] = STATE(93), + [sym__text_with_env_content] = STATE(93), + [sym__text_content] = STATE(93), + [sym__section] = STATE(93), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(93), + [sym_text] = STATE(93), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(93), + [sym_inline_formula] = STATE(93), + [sym_math_set] = STATE(93), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(93), + [sym_comment_environment] = STATE(93), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(93), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(93), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(93), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(93), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(93), + [sym_generic_command] = STATE(93), + [sym_title_declaration] = STATE(93), + [sym_author_declaration] = STATE(93), + [sym_package_include] = STATE(93), + [sym_class_include] = STATE(93), + [sym_latex_include] = STATE(93), + [sym_biblatex_include] = STATE(93), + [sym_bibtex_include] = STATE(93), + [sym_graphics_include] = STATE(93), + [sym_svg_include] = STATE(93), + [sym_inkscape_include] = STATE(93), + [sym_verbatim_include] = STATE(93), + [sym_import_include] = STATE(93), + [sym_caption] = STATE(93), + [sym_citation] = STATE(93), + [sym_label_definition] = STATE(93), + [sym_label_reference] = STATE(93), + [sym_label_reference_range] = STATE(93), + [sym_label_number] = STATE(93), + [sym_new_command_definition] = STATE(93), + [sym_old_command_definition] = STATE(93), + [sym_let_command_definition] = STATE(93), + [sym_paired_delimiter_definition] = STATE(93), + [sym_environment_definition] = STATE(93), + [sym_glossary_entry_definition] = STATE(93), + [sym_glossary_entry_reference] = STATE(93), + [sym_acronym_definition] = STATE(93), + [sym_acronym_reference] = STATE(93), + [sym_theorem_definition] = STATE(93), + [sym_color_definition] = STATE(93), + [sym_color_set_definition] = STATE(93), + [sym_color_reference] = STATE(93), + [sym_tikz_library_import] = STATE(93), + [sym_text_mode] = STATE(93), + [aux_sym_source_file_repeat1] = STATE(93), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1435), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [83] = { + [sym_block_comment] = STATE(89), + [sym__root_content] = STATE(89), + [sym__flat_content] = STATE(89), + [sym__text_with_env_content] = STATE(89), + [sym__text_content] = STATE(89), + [sym__section] = STATE(89), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(89), + [sym_text] = STATE(89), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(89), + [sym_inline_formula] = STATE(89), + [sym_math_set] = STATE(89), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(89), + [sym_comment_environment] = STATE(89), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(89), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(89), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(89), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(89), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(89), + [sym_generic_command] = STATE(89), + [sym_title_declaration] = STATE(89), + [sym_author_declaration] = STATE(89), + [sym_package_include] = STATE(89), + [sym_class_include] = STATE(89), + [sym_latex_include] = STATE(89), + [sym_biblatex_include] = STATE(89), + [sym_bibtex_include] = STATE(89), + [sym_graphics_include] = STATE(89), + [sym_svg_include] = STATE(89), + [sym_inkscape_include] = STATE(89), + [sym_verbatim_include] = STATE(89), + [sym_import_include] = STATE(89), + [sym_caption] = STATE(89), + [sym_citation] = STATE(89), + [sym_label_definition] = STATE(89), + [sym_label_reference] = STATE(89), + [sym_label_reference_range] = STATE(89), + [sym_label_number] = STATE(89), + [sym_new_command_definition] = STATE(89), + [sym_old_command_definition] = STATE(89), + [sym_let_command_definition] = STATE(89), + [sym_paired_delimiter_definition] = STATE(89), + [sym_environment_definition] = STATE(89), + [sym_glossary_entry_definition] = STATE(89), + [sym_glossary_entry_reference] = STATE(89), + [sym_acronym_definition] = STATE(89), + [sym_acronym_reference] = STATE(89), + [sym_theorem_definition] = STATE(89), + [sym_color_definition] = STATE(89), + [sym_color_set_definition] = STATE(89), + [sym_color_reference] = STATE(89), + [sym_tikz_library_import] = STATE(89), + [sym_text_mode] = STATE(89), + [aux_sym_source_file_repeat1] = STATE(89), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [84] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [sym_block_comment] = STATE(98), + [sym__root_content] = STATE(98), + [sym__flat_content] = STATE(98), + [sym__text_with_env_content] = STATE(98), + [sym__text_content] = STATE(98), + [sym__section] = STATE(98), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(98), + [sym_text] = STATE(98), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(98), + [sym_inline_formula] = STATE(98), + [sym_math_set] = STATE(98), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(98), + [sym_comment_environment] = STATE(98), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(98), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(98), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(98), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(98), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(98), + [sym_generic_command] = STATE(98), + [sym_title_declaration] = STATE(98), + [sym_author_declaration] = STATE(98), + [sym_package_include] = STATE(98), + [sym_class_include] = STATE(98), + [sym_latex_include] = STATE(98), + [sym_biblatex_include] = STATE(98), + [sym_bibtex_include] = STATE(98), + [sym_graphics_include] = STATE(98), + [sym_svg_include] = STATE(98), + [sym_inkscape_include] = STATE(98), + [sym_verbatim_include] = STATE(98), + [sym_import_include] = STATE(98), + [sym_caption] = STATE(98), + [sym_citation] = STATE(98), + [sym_label_definition] = STATE(98), + [sym_label_reference] = STATE(98), + [sym_label_reference_range] = STATE(98), + [sym_label_number] = STATE(98), + [sym_new_command_definition] = STATE(98), + [sym_old_command_definition] = STATE(98), + [sym_let_command_definition] = STATE(98), + [sym_paired_delimiter_definition] = STATE(98), + [sym_environment_definition] = STATE(98), + [sym_glossary_entry_definition] = STATE(98), + [sym_glossary_entry_reference] = STATE(98), + [sym_acronym_definition] = STATE(98), + [sym_acronym_reference] = STATE(98), + [sym_theorem_definition] = STATE(98), + [sym_color_definition] = STATE(98), + [sym_color_set_definition] = STATE(98), + [sym_color_reference] = STATE(98), + [sym_tikz_library_import] = STATE(98), + [sym_text_mode] = STATE(98), + [aux_sym_source_file_repeat1] = STATE(98), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACK] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1447), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, [85] = { - [sym_block_comment] = STATE(109), - [sym__root_content] = STATE(109), - [sym__flat_content] = STATE(109), - [sym__text_with_env_content] = STATE(109), - [sym__text_content] = STATE(109), - [sym__section] = STATE(109), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(109), - [sym_text] = STATE(109), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(109), - [sym_inline_formula] = STATE(109), - [sym_math_set] = STATE(109), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(109), - [sym_comment_environment] = STATE(109), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(109), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(109), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(109), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(109), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(109), - [sym_generic_command] = STATE(109), - [sym_package_include] = STATE(109), - [sym_class_include] = STATE(109), - [sym_latex_include] = STATE(109), - [sym_biblatex_include] = STATE(109), - [sym_bibtex_include] = STATE(109), - [sym_graphics_include] = STATE(109), - [sym_svg_include] = STATE(109), - [sym_inkscape_include] = STATE(109), - [sym_verbatim_include] = STATE(109), - [sym_import_include] = STATE(109), - [sym_caption] = STATE(109), - [sym_citation] = STATE(109), - [sym_label_definition] = STATE(109), - [sym_label_reference] = STATE(109), - [sym_label_reference_range] = STATE(109), - [sym_label_number] = STATE(109), - [sym_new_command_definition] = STATE(109), - [sym_old_command_definition] = STATE(109), - [sym_let_command_definition] = STATE(109), - [sym_paired_delimiter_definition] = STATE(109), - [sym_environment_definition] = STATE(109), - [sym_glossary_entry_definition] = STATE(109), - [sym_glossary_entry_reference] = STATE(109), - [sym_acronym_definition] = STATE(109), - [sym_acronym_reference] = STATE(109), - [sym_theorem_definition] = STATE(109), - [sym_color_definition] = STATE(109), - [sym_color_set_definition] = STATE(109), - [sym_color_reference] = STATE(109), - [sym_tikz_library_import] = STATE(109), - [sym_text_mode] = STATE(109), - [aux_sym_source_file_repeat1] = STATE(109), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), + [sym_block_comment] = STATE(100), + [sym__root_content] = STATE(100), + [sym__flat_content] = STATE(100), + [sym__text_with_env_content] = STATE(100), + [sym__text_content] = STATE(100), + [sym__section] = STATE(100), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(100), + [sym_text] = STATE(100), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(100), + [sym_inline_formula] = STATE(100), + [sym_math_set] = STATE(100), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(100), + [sym_comment_environment] = STATE(100), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(100), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(100), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(100), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(100), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(100), + [sym_generic_command] = STATE(100), + [sym_title_declaration] = STATE(100), + [sym_author_declaration] = STATE(100), + [sym_package_include] = STATE(100), + [sym_class_include] = STATE(100), + [sym_latex_include] = STATE(100), + [sym_biblatex_include] = STATE(100), + [sym_bibtex_include] = STATE(100), + [sym_graphics_include] = STATE(100), + [sym_svg_include] = STATE(100), + [sym_inkscape_include] = STATE(100), + [sym_verbatim_include] = STATE(100), + [sym_import_include] = STATE(100), + [sym_caption] = STATE(100), + [sym_citation] = STATE(100), + [sym_label_definition] = STATE(100), + [sym_label_reference] = STATE(100), + [sym_label_reference_range] = STATE(100), + [sym_label_number] = STATE(100), + [sym_new_command_definition] = STATE(100), + [sym_old_command_definition] = STATE(100), + [sym_let_command_definition] = STATE(100), + [sym_paired_delimiter_definition] = STATE(100), + [sym_environment_definition] = STATE(100), + [sym_glossary_entry_definition] = STATE(100), + [sym_glossary_entry_reference] = STATE(100), + [sym_acronym_definition] = STATE(100), + [sym_acronym_reference] = STATE(100), + [sym_theorem_definition] = STATE(100), + [sym_color_definition] = STATE(100), + [sym_color_set_definition] = STATE(100), + [sym_color_reference] = STATE(100), + [sym_tikz_library_import] = STATE(100), + [sym_text_mode] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(100), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1399), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1401), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_RPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1451), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [86] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(94), + [sym__root_content] = STATE(94), + [sym__flat_content] = STATE(94), + [sym__text_with_env_content] = STATE(94), + [sym__text_content] = STATE(94), + [sym__section] = STATE(94), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(94), + [sym_text] = STATE(94), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(94), + [sym_inline_formula] = STATE(94), + [sym_math_set] = STATE(94), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(94), + [sym_comment_environment] = STATE(94), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(94), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(94), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(94), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(94), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(94), + [sym_generic_command] = STATE(94), + [sym_title_declaration] = STATE(94), + [sym_author_declaration] = STATE(94), + [sym_package_include] = STATE(94), + [sym_class_include] = STATE(94), + [sym_latex_include] = STATE(94), + [sym_biblatex_include] = STATE(94), + [sym_bibtex_include] = STATE(94), + [sym_graphics_include] = STATE(94), + [sym_svg_include] = STATE(94), + [sym_inkscape_include] = STATE(94), + [sym_verbatim_include] = STATE(94), + [sym_import_include] = STATE(94), + [sym_caption] = STATE(94), + [sym_citation] = STATE(94), + [sym_label_definition] = STATE(94), + [sym_label_reference] = STATE(94), + [sym_label_reference_range] = STATE(94), + [sym_label_number] = STATE(94), + [sym_new_command_definition] = STATE(94), + [sym_old_command_definition] = STATE(94), + [sym_let_command_definition] = STATE(94), + [sym_paired_delimiter_definition] = STATE(94), + [sym_environment_definition] = STATE(94), + [sym_glossary_entry_definition] = STATE(94), + [sym_glossary_entry_reference] = STATE(94), + [sym_acronym_definition] = STATE(94), + [sym_acronym_reference] = STATE(94), + [sym_theorem_definition] = STATE(94), + [sym_color_definition] = STATE(94), + [sym_color_set_definition] = STATE(94), + [sym_color_reference] = STATE(94), + [sym_tikz_library_import] = STATE(94), + [sym_text_mode] = STATE(94), + [aux_sym_source_file_repeat1] = STATE(94), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1455), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, [87] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -49232,7 +50365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1457), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -49253,1757 +50386,1414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [88] = { - [sym_block_comment] = STATE(97), - [sym__root_content] = STATE(97), - [sym__flat_content] = STATE(97), - [sym__text_with_env_content] = STATE(97), - [sym__text_content] = STATE(97), - [sym__section] = STATE(97), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(97), - [sym_text] = STATE(97), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(97), - [sym_inline_formula] = STATE(97), - [sym_math_set] = STATE(97), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(97), - [sym_comment_environment] = STATE(97), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(97), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(97), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(97), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(97), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(97), - [sym_generic_command] = STATE(97), - [sym_package_include] = STATE(97), - [sym_class_include] = STATE(97), - [sym_latex_include] = STATE(97), - [sym_biblatex_include] = STATE(97), - [sym_bibtex_include] = STATE(97), - [sym_graphics_include] = STATE(97), - [sym_svg_include] = STATE(97), - [sym_inkscape_include] = STATE(97), - [sym_verbatim_include] = STATE(97), - [sym_import_include] = STATE(97), - [sym_caption] = STATE(97), - [sym_citation] = STATE(97), - [sym_label_definition] = STATE(97), - [sym_label_reference] = STATE(97), - [sym_label_reference_range] = STATE(97), - [sym_label_number] = STATE(97), - [sym_new_command_definition] = STATE(97), - [sym_old_command_definition] = STATE(97), - [sym_let_command_definition] = STATE(97), - [sym_paired_delimiter_definition] = STATE(97), - [sym_environment_definition] = STATE(97), - [sym_glossary_entry_definition] = STATE(97), - [sym_glossary_entry_reference] = STATE(97), - [sym_acronym_definition] = STATE(97), - [sym_acronym_reference] = STATE(97), - [sym_theorem_definition] = STATE(97), - [sym_color_definition] = STATE(97), - [sym_color_set_definition] = STATE(97), - [sym_color_reference] = STATE(97), - [sym_tikz_library_import] = STATE(97), - [sym_text_mode] = STATE(97), - [aux_sym_source_file_repeat1] = STATE(97), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(785), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, [89] = { - [sym_block_comment] = STATE(40), - [sym__root_content] = STATE(40), - [sym__flat_content] = STATE(40), - [sym__text_with_env_content] = STATE(40), - [sym__text_content] = STATE(40), - [sym__section] = STATE(40), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(40), - [sym_text] = STATE(40), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(40), - [sym_inline_formula] = STATE(40), - [sym_math_set] = STATE(40), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(40), - [sym_comment_environment] = STATE(40), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(40), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(40), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(40), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(40), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(40), - [sym_generic_command] = STATE(40), - [sym_package_include] = STATE(40), - [sym_class_include] = STATE(40), - [sym_latex_include] = STATE(40), - [sym_biblatex_include] = STATE(40), - [sym_bibtex_include] = STATE(40), - [sym_graphics_include] = STATE(40), - [sym_svg_include] = STATE(40), - [sym_inkscape_include] = STATE(40), - [sym_verbatim_include] = STATE(40), - [sym_import_include] = STATE(40), - [sym_caption] = STATE(40), - [sym_citation] = STATE(40), - [sym_label_definition] = STATE(40), - [sym_label_reference] = STATE(40), - [sym_label_reference_range] = STATE(40), - [sym_label_number] = STATE(40), - [sym_new_command_definition] = STATE(40), - [sym_old_command_definition] = STATE(40), - [sym_let_command_definition] = STATE(40), - [sym_paired_delimiter_definition] = STATE(40), - [sym_environment_definition] = STATE(40), - [sym_glossary_entry_definition] = STATE(40), - [sym_glossary_entry_reference] = STATE(40), - [sym_acronym_definition] = STATE(40), - [sym_acronym_reference] = STATE(40), - [sym_theorem_definition] = STATE(40), - [sym_color_definition] = STATE(40), - [sym_color_set_definition] = STATE(40), - [sym_color_reference] = STATE(40), - [sym_tikz_library_import] = STATE(40), - [sym_text_mode] = STATE(40), - [aux_sym_source_file_repeat1] = STATE(40), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_RBRACK] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [90] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [91] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [92] = { - [sym_block_comment] = STATE(61), - [sym__root_content] = STATE(61), - [sym__flat_content] = STATE(61), - [sym__text_with_env_content] = STATE(61), - [sym__text_content] = STATE(61), - [sym__section] = STATE(61), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(61), - [sym_text] = STATE(61), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(61), - [sym_inline_formula] = STATE(61), - [sym_math_set] = STATE(61), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(61), - [sym_comment_environment] = STATE(61), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(61), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(61), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(61), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(61), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(61), - [sym_generic_command] = STATE(61), - [sym_package_include] = STATE(61), - [sym_class_include] = STATE(61), - [sym_latex_include] = STATE(61), - [sym_biblatex_include] = STATE(61), - [sym_bibtex_include] = STATE(61), - [sym_graphics_include] = STATE(61), - [sym_svg_include] = STATE(61), - [sym_inkscape_include] = STATE(61), - [sym_verbatim_include] = STATE(61), - [sym_import_include] = STATE(61), - [sym_caption] = STATE(61), - [sym_citation] = STATE(61), - [sym_label_definition] = STATE(61), - [sym_label_reference] = STATE(61), - [sym_label_reference_range] = STATE(61), - [sym_label_number] = STATE(61), - [sym_new_command_definition] = STATE(61), - [sym_old_command_definition] = STATE(61), - [sym_let_command_definition] = STATE(61), - [sym_paired_delimiter_definition] = STATE(61), - [sym_environment_definition] = STATE(61), - [sym_glossary_entry_definition] = STATE(61), - [sym_glossary_entry_reference] = STATE(61), - [sym_acronym_definition] = STATE(61), - [sym_acronym_reference] = STATE(61), - [sym_theorem_definition] = STATE(61), - [sym_color_definition] = STATE(61), - [sym_color_set_definition] = STATE(61), - [sym_color_reference] = STATE(61), - [sym_tikz_library_import] = STATE(61), - [sym_text_mode] = STATE(61), - [aux_sym_source_file_repeat1] = STATE(61), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -51027,7 +51817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1463), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -51048,321 +51838,1414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [92] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1465), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1467), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [93] = { - [sym_block_comment] = STATE(118), - [sym__root_content] = STATE(118), - [sym__flat_content] = STATE(118), - [sym__text_with_env_content] = STATE(118), - [sym__text_content] = STATE(118), - [sym__section] = STATE(118), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(118), - [sym_text] = STATE(118), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(118), - [sym_inline_formula] = STATE(118), - [sym_math_set] = STATE(118), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(118), - [sym_comment_environment] = STATE(118), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(118), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(118), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(118), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(118), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(118), - [sym_generic_command] = STATE(118), - [sym_package_include] = STATE(118), - [sym_class_include] = STATE(118), - [sym_latex_include] = STATE(118), - [sym_biblatex_include] = STATE(118), - [sym_bibtex_include] = STATE(118), - [sym_graphics_include] = STATE(118), - [sym_svg_include] = STATE(118), - [sym_inkscape_include] = STATE(118), - [sym_verbatim_include] = STATE(118), - [sym_import_include] = STATE(118), - [sym_caption] = STATE(118), - [sym_citation] = STATE(118), - [sym_label_definition] = STATE(118), - [sym_label_reference] = STATE(118), - [sym_label_reference_range] = STATE(118), - [sym_label_number] = STATE(118), - [sym_new_command_definition] = STATE(118), - [sym_old_command_definition] = STATE(118), - [sym_let_command_definition] = STATE(118), - [sym_paired_delimiter_definition] = STATE(118), - [sym_environment_definition] = STATE(118), - [sym_glossary_entry_definition] = STATE(118), - [sym_glossary_entry_reference] = STATE(118), - [sym_acronym_definition] = STATE(118), - [sym_acronym_reference] = STATE(118), - [sym_theorem_definition] = STATE(118), - [sym_color_definition] = STATE(118), - [sym_color_set_definition] = STATE(118), - [sym_color_reference] = STATE(118), - [sym_tikz_library_import] = STATE(118), - [sym_text_mode] = STATE(118), - [aux_sym_source_file_repeat1] = STATE(118), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1471), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [94] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1473), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [95] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -51386,7 +53269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1475), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -51407,1757 +53290,3229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [94] = { - [sym_block_comment] = STATE(121), - [sym__root_content] = STATE(121), - [sym__flat_content] = STATE(121), - [sym__text_with_env_content] = STATE(121), - [sym__text_content] = STATE(121), - [sym__section] = STATE(121), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(121), - [sym_text] = STATE(121), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(121), - [sym_inline_formula] = STATE(121), - [sym_math_set] = STATE(121), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(121), - [sym_comment_environment] = STATE(121), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(121), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(121), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(121), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(121), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(121), - [sym_generic_command] = STATE(121), - [sym_package_include] = STATE(121), - [sym_class_include] = STATE(121), - [sym_latex_include] = STATE(121), - [sym_biblatex_include] = STATE(121), - [sym_bibtex_include] = STATE(121), - [sym_graphics_include] = STATE(121), - [sym_svg_include] = STATE(121), - [sym_inkscape_include] = STATE(121), - [sym_verbatim_include] = STATE(121), - [sym_import_include] = STATE(121), - [sym_caption] = STATE(121), - [sym_citation] = STATE(121), - [sym_label_definition] = STATE(121), - [sym_label_reference] = STATE(121), - [sym_label_reference_range] = STATE(121), - [sym_label_number] = STATE(121), - [sym_new_command_definition] = STATE(121), - [sym_old_command_definition] = STATE(121), - [sym_let_command_definition] = STATE(121), - [sym_paired_delimiter_definition] = STATE(121), - [sym_environment_definition] = STATE(121), - [sym_glossary_entry_definition] = STATE(121), - [sym_glossary_entry_reference] = STATE(121), - [sym_acronym_definition] = STATE(121), - [sym_acronym_reference] = STATE(121), - [sym_theorem_definition] = STATE(121), - [sym_color_definition] = STATE(121), - [sym_color_set_definition] = STATE(121), - [sym_color_reference] = STATE(121), - [sym_tikz_library_import] = STATE(121), - [sym_text_mode] = STATE(121), - [aux_sym_source_file_repeat1] = STATE(121), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1437), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [95] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1439), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, [96] = { - [sym_block_comment] = STATE(114), - [sym__root_content] = STATE(114), - [sym__flat_content] = STATE(114), - [sym__text_with_env_content] = STATE(114), - [sym__text_content] = STATE(114), - [sym__section] = STATE(114), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(114), - [sym_text] = STATE(114), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(114), - [sym_inline_formula] = STATE(114), - [sym_math_set] = STATE(114), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(114), - [sym_comment_environment] = STATE(114), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(114), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(114), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(114), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(114), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(114), - [sym_generic_command] = STATE(114), - [sym_package_include] = STATE(114), - [sym_class_include] = STATE(114), - [sym_latex_include] = STATE(114), - [sym_biblatex_include] = STATE(114), - [sym_bibtex_include] = STATE(114), - [sym_graphics_include] = STATE(114), - [sym_svg_include] = STATE(114), - [sym_inkscape_include] = STATE(114), - [sym_verbatim_include] = STATE(114), - [sym_import_include] = STATE(114), - [sym_caption] = STATE(114), - [sym_citation] = STATE(114), - [sym_label_definition] = STATE(114), - [sym_label_reference] = STATE(114), - [sym_label_reference_range] = STATE(114), - [sym_label_number] = STATE(114), - [sym_new_command_definition] = STATE(114), - [sym_old_command_definition] = STATE(114), - [sym_let_command_definition] = STATE(114), - [sym_paired_delimiter_definition] = STATE(114), - [sym_environment_definition] = STATE(114), - [sym_glossary_entry_definition] = STATE(114), - [sym_glossary_entry_reference] = STATE(114), - [sym_acronym_definition] = STATE(114), - [sym_acronym_reference] = STATE(114), - [sym_theorem_definition] = STATE(114), - [sym_color_definition] = STATE(114), - [sym_color_set_definition] = STATE(114), - [sym_color_reference] = STATE(114), - [sym_tikz_library_import] = STATE(114), - [sym_text_mode] = STATE(114), - [aux_sym_source_file_repeat1] = STATE(114), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1441), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1443), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, [97] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(677), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, [98] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1483), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [99] = { + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1487), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [100] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1489), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [101] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [102] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [103] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1491), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [104] = { + [sym_block_comment] = STATE(72), + [sym__root_content] = STATE(72), + [sym__flat_content] = STATE(72), + [sym__text_with_env_content] = STATE(72), + [sym__text_content] = STATE(72), + [sym__section] = STATE(72), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(72), + [sym_text] = STATE(72), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(72), + [sym_inline_formula] = STATE(72), + [sym_math_set] = STATE(72), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(72), + [sym_comment_environment] = STATE(72), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(72), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(72), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(72), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(72), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(72), + [sym_generic_command] = STATE(72), + [sym_title_declaration] = STATE(72), + [sym_author_declaration] = STATE(72), + [sym_package_include] = STATE(72), + [sym_class_include] = STATE(72), + [sym_latex_include] = STATE(72), + [sym_biblatex_include] = STATE(72), + [sym_bibtex_include] = STATE(72), + [sym_graphics_include] = STATE(72), + [sym_svg_include] = STATE(72), + [sym_inkscape_include] = STATE(72), + [sym_verbatim_include] = STATE(72), + [sym_import_include] = STATE(72), + [sym_caption] = STATE(72), + [sym_citation] = STATE(72), + [sym_label_definition] = STATE(72), + [sym_label_reference] = STATE(72), + [sym_label_reference_range] = STATE(72), + [sym_label_number] = STATE(72), + [sym_new_command_definition] = STATE(72), + [sym_old_command_definition] = STATE(72), + [sym_let_command_definition] = STATE(72), + [sym_paired_delimiter_definition] = STATE(72), + [sym_environment_definition] = STATE(72), + [sym_glossary_entry_definition] = STATE(72), + [sym_glossary_entry_reference] = STATE(72), + [sym_acronym_definition] = STATE(72), + [sym_acronym_reference] = STATE(72), + [sym_theorem_definition] = STATE(72), + [sym_color_definition] = STATE(72), + [sym_color_set_definition] = STATE(72), + [sym_color_reference] = STATE(72), + [sym_tikz_library_import] = STATE(72), + [sym_text_mode] = STATE(72), + [aux_sym_source_file_repeat1] = STATE(72), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_RBRACK] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1493), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -53181,7 +56536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1495), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -53202,270 +56557,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [99] = { + [105] = { + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1499), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [106] = { [sym_block_comment] = STATE(111), [sym__root_content] = STATE(111), [sym__flat_content] = STATE(111), [sym__text_with_env_content] = STATE(111), [sym__text_content] = STATE(111), [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), [sym_curly_group] = STATE(111), [sym_text] = STATE(111), - [sym_operator] = STATE(986), + [sym_operator] = STATE(793), [sym_displayed_equation] = STATE(111), [sym_inline_formula] = STATE(111), [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), + [sym_begin] = STATE(20), [sym_generic_environment] = STATE(111), [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), + [sym__trivia_begin_comment] = STATE(2754), [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), + [sym__trivia_begin_verbatim] = STATE(2780), [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), + [sym__trivia_begin_listing] = STATE(2756), [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), + [sym__trivia_begin_minted] = STATE(2757), [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), + [sym__trivia_begin_pycode] = STATE(2763), [sym__command] = STATE(111), [sym_generic_command] = STATE(111), + [sym_title_declaration] = STATE(111), + [sym_author_declaration] = STATE(111), [sym_package_include] = STATE(111), [sym_class_include] = STATE(111), [sym_latex_include] = STATE(111), @@ -53498,1461 +57220,1840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(111), [sym_text_mode] = STATE(111), [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [100] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_RPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_RBRACK] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1451), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [101] = { - [sym_block_comment] = STATE(67), - [sym__root_content] = STATE(67), - [sym__flat_content] = STATE(67), - [sym__text_with_env_content] = STATE(67), - [sym__text_content] = STATE(67), - [sym__section] = STATE(67), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(67), - [sym_text] = STATE(67), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(67), - [sym_inline_formula] = STATE(67), - [sym_math_set] = STATE(67), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(67), - [sym_comment_environment] = STATE(67), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(67), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(67), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(67), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(67), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(67), - [sym_generic_command] = STATE(67), - [sym_package_include] = STATE(67), - [sym_class_include] = STATE(67), - [sym_latex_include] = STATE(67), - [sym_biblatex_include] = STATE(67), - [sym_bibtex_include] = STATE(67), - [sym_graphics_include] = STATE(67), - [sym_svg_include] = STATE(67), - [sym_inkscape_include] = STATE(67), - [sym_verbatim_include] = STATE(67), - [sym_import_include] = STATE(67), - [sym_caption] = STATE(67), - [sym_citation] = STATE(67), - [sym_label_definition] = STATE(67), - [sym_label_reference] = STATE(67), - [sym_label_reference_range] = STATE(67), - [sym_label_number] = STATE(67), - [sym_new_command_definition] = STATE(67), - [sym_old_command_definition] = STATE(67), - [sym_let_command_definition] = STATE(67), - [sym_paired_delimiter_definition] = STATE(67), - [sym_environment_definition] = STATE(67), - [sym_glossary_entry_definition] = STATE(67), - [sym_glossary_entry_reference] = STATE(67), - [sym_acronym_definition] = STATE(67), - [sym_acronym_reference] = STATE(67), - [sym_theorem_definition] = STATE(67), - [sym_color_definition] = STATE(67), - [sym_color_set_definition] = STATE(67), - [sym_color_reference] = STATE(67), - [sym_tikz_library_import] = STATE(67), - [sym_text_mode] = STATE(67), - [aux_sym_source_file_repeat1] = STATE(67), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACK] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1503), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [102] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_paired_delimiter_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [sym_text_mode] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_RPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_RBRACK] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [107] = { + [sym_block_comment] = STATE(114), + [sym__root_content] = STATE(114), + [sym__flat_content] = STATE(114), + [sym__text_with_env_content] = STATE(114), + [sym__text_content] = STATE(114), + [sym__section] = STATE(114), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(114), + [sym_text] = STATE(114), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(114), + [sym_inline_formula] = STATE(114), + [sym_math_set] = STATE(114), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(114), + [sym_comment_environment] = STATE(114), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(114), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(114), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(114), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(114), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(114), + [sym_generic_command] = STATE(114), + [sym_title_declaration] = STATE(114), + [sym_author_declaration] = STATE(114), + [sym_package_include] = STATE(114), + [sym_class_include] = STATE(114), + [sym_latex_include] = STATE(114), + [sym_biblatex_include] = STATE(114), + [sym_bibtex_include] = STATE(114), + [sym_graphics_include] = STATE(114), + [sym_svg_include] = STATE(114), + [sym_inkscape_include] = STATE(114), + [sym_verbatim_include] = STATE(114), + [sym_import_include] = STATE(114), + [sym_caption] = STATE(114), + [sym_citation] = STATE(114), + [sym_label_definition] = STATE(114), + [sym_label_reference] = STATE(114), + [sym_label_reference_range] = STATE(114), + [sym_label_number] = STATE(114), + [sym_new_command_definition] = STATE(114), + [sym_old_command_definition] = STATE(114), + [sym_let_command_definition] = STATE(114), + [sym_paired_delimiter_definition] = STATE(114), + [sym_environment_definition] = STATE(114), + [sym_glossary_entry_definition] = STATE(114), + [sym_glossary_entry_reference] = STATE(114), + [sym_acronym_definition] = STATE(114), + [sym_acronym_reference] = STATE(114), + [sym_theorem_definition] = STATE(114), + [sym_color_definition] = STATE(114), + [sym_color_set_definition] = STATE(114), + [sym_color_reference] = STATE(114), + [sym_tikz_library_import] = STATE(114), + [sym_text_mode] = STATE(114), + [aux_sym_source_file_repeat1] = STATE(114), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [103] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [108] = { + [sym_block_comment] = STATE(64), + [sym__root_content] = STATE(64), + [sym__flat_content] = STATE(64), + [sym__text_with_env_content] = STATE(64), + [sym__text_content] = STATE(64), + [sym__section] = STATE(64), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(64), + [sym_text] = STATE(64), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(64), + [sym_inline_formula] = STATE(64), + [sym_math_set] = STATE(64), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(64), + [sym_comment_environment] = STATE(64), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(64), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(64), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(64), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(64), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(64), + [sym_generic_command] = STATE(64), + [sym_title_declaration] = STATE(64), + [sym_author_declaration] = STATE(64), + [sym_package_include] = STATE(64), + [sym_class_include] = STATE(64), + [sym_latex_include] = STATE(64), + [sym_biblatex_include] = STATE(64), + [sym_bibtex_include] = STATE(64), + [sym_graphics_include] = STATE(64), + [sym_svg_include] = STATE(64), + [sym_inkscape_include] = STATE(64), + [sym_verbatim_include] = STATE(64), + [sym_import_include] = STATE(64), + [sym_caption] = STATE(64), + [sym_citation] = STATE(64), + [sym_label_definition] = STATE(64), + [sym_label_reference] = STATE(64), + [sym_label_reference_range] = STATE(64), + [sym_label_number] = STATE(64), + [sym_new_command_definition] = STATE(64), + [sym_old_command_definition] = STATE(64), + [sym_let_command_definition] = STATE(64), + [sym_paired_delimiter_definition] = STATE(64), + [sym_environment_definition] = STATE(64), + [sym_glossary_entry_definition] = STATE(64), + [sym_glossary_entry_reference] = STATE(64), + [sym_acronym_definition] = STATE(64), + [sym_acronym_reference] = STATE(64), + [sym_theorem_definition] = STATE(64), + [sym_color_definition] = STATE(64), + [sym_color_set_definition] = STATE(64), + [sym_color_reference] = STATE(64), + [sym_tikz_library_import] = STATE(64), + [sym_text_mode] = STATE(64), + [aux_sym_source_file_repeat1] = STATE(64), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1515), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [109] = { + [sym_block_comment] = STATE(120), + [sym__root_content] = STATE(120), + [sym__flat_content] = STATE(120), + [sym__text_with_env_content] = STATE(120), + [sym__text_content] = STATE(120), + [sym__section] = STATE(120), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(120), + [sym_text] = STATE(120), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_math_set] = STATE(120), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(120), + [sym_comment_environment] = STATE(120), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(120), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(120), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(120), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(120), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(120), + [sym_generic_command] = STATE(120), + [sym_title_declaration] = STATE(120), + [sym_author_declaration] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import_include] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_new_command_definition] = STATE(120), + [sym_old_command_definition] = STATE(120), + [sym_let_command_definition] = STATE(120), + [sym_paired_delimiter_definition] = STATE(120), + [sym_environment_definition] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_text_mode] = STATE(120), + [aux_sym_source_file_repeat1] = STATE(120), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_RBRACK] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1519), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [110] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(1521), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_BSLASHpart] = ACTIONS(1530), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1533), + [anon_sym_BSLASHaddpart] = ACTIONS(1530), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1533), + [anon_sym_BSLASHchapter] = ACTIONS(1536), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1539), + [anon_sym_BSLASHaddchap] = ACTIONS(1536), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1539), + [anon_sym_BSLASHsection] = ACTIONS(1542), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1545), + [anon_sym_BSLASHaddsec] = ACTIONS(1542), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1545), + [anon_sym_BSLASHsubsection] = ACTIONS(1548), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1551), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1554), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1557), + [anon_sym_BSLASHparagraph] = ACTIONS(1560), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1566), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1569), + [anon_sym_BSLASHitem] = ACTIONS(1572), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [sym_word] = ACTIONS(1581), + [sym_placeholder] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym__] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1590), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH_RBRACK] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(1593), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1596), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1599), + [anon_sym_BSLASHbegin] = ACTIONS(464), + [anon_sym_BSLASHtitle] = ACTIONS(1602), + [anon_sym_BSLASHauthor] = ACTIONS(1605), + [anon_sym_BSLASHusepackage] = ACTIONS(1608), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1608), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1611), + [anon_sym_BSLASHinclude] = ACTIONS(1614), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1614), + [anon_sym_BSLASHinput] = ACTIONS(1614), + [anon_sym_BSLASHsubfile] = ACTIONS(1614), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1617), + [anon_sym_BSLASHbibliography] = ACTIONS(1620), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1623), + [anon_sym_BSLASHincludesvg] = ACTIONS(1626), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1629), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1632), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1632), + [anon_sym_BSLASHimport] = ACTIONS(1635), + [anon_sym_BSLASHsubimport] = ACTIONS(1635), + [anon_sym_BSLASHinputfrom] = ACTIONS(1635), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1635), + [anon_sym_BSLASHincludefrom] = ACTIONS(1635), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1635), + [anon_sym_BSLASHcaption] = ACTIONS(1638), + [anon_sym_BSLASHcite] = ACTIONS(1641), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1644), + [anon_sym_BSLASHCite] = ACTIONS(1641), + [anon_sym_BSLASHnocite] = ACTIONS(1641), + [anon_sym_BSLASHcitet] = ACTIONS(1641), + [anon_sym_BSLASHcitep] = ACTIONS(1641), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1644), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1644), + [anon_sym_BSLASHciteauthor] = ACTIONS(1641), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1644), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1641), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1644), + [anon_sym_BSLASHcitetitle] = ACTIONS(1641), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1644), + [anon_sym_BSLASHciteyear] = ACTIONS(1641), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1644), + [anon_sym_BSLASHcitedate] = ACTIONS(1641), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1644), + [anon_sym_BSLASHciteurl] = ACTIONS(1641), + [anon_sym_BSLASHfullcite] = ACTIONS(1641), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1641), + [anon_sym_BSLASHcitealt] = ACTIONS(1641), + [anon_sym_BSLASHcitealp] = ACTIONS(1641), + [anon_sym_BSLASHcitetext] = ACTIONS(1641), + [anon_sym_BSLASHparencite] = ACTIONS(1641), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1644), + [anon_sym_BSLASHParencite] = ACTIONS(1641), + [anon_sym_BSLASHfootcite] = ACTIONS(1641), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1641), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1641), + [anon_sym_BSLASHtextcite] = ACTIONS(1641), + [anon_sym_BSLASHTextcite] = ACTIONS(1641), + [anon_sym_BSLASHsmartcite] = ACTIONS(1641), + [anon_sym_BSLASHSmartcite] = ACTIONS(1641), + [anon_sym_BSLASHsupercite] = ACTIONS(1641), + [anon_sym_BSLASHautocite] = ACTIONS(1641), + [anon_sym_BSLASHAutocite] = ACTIONS(1641), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1644), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1644), + [anon_sym_BSLASHvolcite] = ACTIONS(1641), + [anon_sym_BSLASHVolcite] = ACTIONS(1641), + [anon_sym_BSLASHpvolcite] = ACTIONS(1641), + [anon_sym_BSLASHPvolcite] = ACTIONS(1641), + [anon_sym_BSLASHfvolcite] = ACTIONS(1641), + [anon_sym_BSLASHftvolcite] = ACTIONS(1641), + [anon_sym_BSLASHsvolcite] = ACTIONS(1641), + [anon_sym_BSLASHSvolcite] = ACTIONS(1641), + [anon_sym_BSLASHtvolcite] = ACTIONS(1641), + [anon_sym_BSLASHTvolcite] = ACTIONS(1641), + [anon_sym_BSLASHavolcite] = ACTIONS(1641), + [anon_sym_BSLASHAvolcite] = ACTIONS(1641), + [anon_sym_BSLASHnotecite] = ACTIONS(1641), + [anon_sym_BSLASHNotecite] = ACTIONS(1641), + [anon_sym_BSLASHpnotecite] = ACTIONS(1641), + [anon_sym_BSLASHPnotecite] = ACTIONS(1641), + [anon_sym_BSLASHfnotecite] = ACTIONS(1641), + [anon_sym_BSLASHlabel] = ACTIONS(1647), + [anon_sym_BSLASHref] = ACTIONS(1650), + [anon_sym_BSLASHeqref] = ACTIONS(1650), + [anon_sym_BSLASHvref] = ACTIONS(1650), + [anon_sym_BSLASHVref] = ACTIONS(1650), + [anon_sym_BSLASHautoref] = ACTIONS(1650), + [anon_sym_BSLASHpageref] = ACTIONS(1650), + [anon_sym_BSLASHcref] = ACTIONS(1650), + [anon_sym_BSLASHCref] = ACTIONS(1650), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1653), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1653), + [anon_sym_BSLASHnamecref] = ACTIONS(1650), + [anon_sym_BSLASHnameCref] = ACTIONS(1650), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1650), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1650), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1650), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1650), + [anon_sym_BSLASHlabelcref] = ACTIONS(1650), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1650), + [anon_sym_BSLASHcrefrange] = ACTIONS(1656), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1659), + [anon_sym_BSLASHCrefrange] = ACTIONS(1656), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1659), + [anon_sym_BSLASHnewlabel] = ACTIONS(1662), + [anon_sym_BSLASHnewcommand] = ACTIONS(1665), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1668), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1665), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1668), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1665), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1668), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1665), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1668), + [anon_sym_BSLASHdef] = ACTIONS(1671), + [anon_sym_BSLASHlet] = ACTIONS(1674), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1677), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1677), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1680), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1683), + [anon_sym_BSLASHgls] = ACTIONS(1686), + [anon_sym_BSLASHGls] = ACTIONS(1686), + [anon_sym_BSLASHGLS] = ACTIONS(1686), + [anon_sym_BSLASHglspl] = ACTIONS(1686), + [anon_sym_BSLASHGlspl] = ACTIONS(1686), + [anon_sym_BSLASHGLSpl] = ACTIONS(1686), + [anon_sym_BSLASHglsdisp] = ACTIONS(1686), + [anon_sym_BSLASHglslink] = ACTIONS(1686), + [anon_sym_BSLASHglstext] = ACTIONS(1686), + [anon_sym_BSLASHGlstext] = ACTIONS(1686), + [anon_sym_BSLASHGLStext] = ACTIONS(1686), + [anon_sym_BSLASHglsfirst] = ACTIONS(1686), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1686), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1686), + [anon_sym_BSLASHglsplural] = ACTIONS(1686), + [anon_sym_BSLASHGlsplural] = ACTIONS(1686), + [anon_sym_BSLASHGLSplural] = ACTIONS(1686), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1686), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1686), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1686), + [anon_sym_BSLASHglsname] = ACTIONS(1686), + [anon_sym_BSLASHGlsname] = ACTIONS(1686), + [anon_sym_BSLASHGLSname] = ACTIONS(1686), + [anon_sym_BSLASHglssymbol] = ACTIONS(1686), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1686), + [anon_sym_BSLASHglsdesc] = ACTIONS(1686), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1686), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1686), + [anon_sym_BSLASHglsuseri] = ACTIONS(1686), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1686), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1686), + [anon_sym_BSLASHglsuserii] = ACTIONS(1686), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1686), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1686), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1686), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1686), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1686), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1686), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1686), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1686), + [anon_sym_BSLASHglsuserv] = ACTIONS(1686), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1686), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1686), + [anon_sym_BSLASHglsuservi] = ACTIONS(1686), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1686), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1686), + [anon_sym_BSLASHnewacronym] = ACTIONS(1689), + [anon_sym_BSLASHacrshort] = ACTIONS(1692), + [anon_sym_BSLASHAcrshort] = ACTIONS(1692), + [anon_sym_BSLASHACRshort] = ACTIONS(1692), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1692), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1692), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1692), + [anon_sym_BSLASHacrlong] = ACTIONS(1692), + [anon_sym_BSLASHAcrlong] = ACTIONS(1692), + [anon_sym_BSLASHACRlong] = ACTIONS(1692), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1692), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1692), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1692), + [anon_sym_BSLASHacrfull] = ACTIONS(1692), + [anon_sym_BSLASHAcrfull] = ACTIONS(1692), + [anon_sym_BSLASHACRfull] = ACTIONS(1692), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1692), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1692), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1692), + [anon_sym_BSLASHacs] = ACTIONS(1692), + [anon_sym_BSLASHAcs] = ACTIONS(1692), + [anon_sym_BSLASHacsp] = ACTIONS(1692), + [anon_sym_BSLASHAcsp] = ACTIONS(1692), + [anon_sym_BSLASHacl] = ACTIONS(1692), + [anon_sym_BSLASHAcl] = ACTIONS(1692), + [anon_sym_BSLASHaclp] = ACTIONS(1692), + [anon_sym_BSLASHAclp] = ACTIONS(1692), + [anon_sym_BSLASHacf] = ACTIONS(1692), + [anon_sym_BSLASHAcf] = ACTIONS(1692), + [anon_sym_BSLASHacfp] = ACTIONS(1692), + [anon_sym_BSLASHAcfp] = ACTIONS(1692), + [anon_sym_BSLASHac] = ACTIONS(1692), + [anon_sym_BSLASHAc] = ACTIONS(1692), + [anon_sym_BSLASHacp] = ACTIONS(1692), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1692), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1692), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1692), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1692), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1692), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1692), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1692), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1692), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1692), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1692), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1695), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1698), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1695), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1698), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1701), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1704), + [anon_sym_BSLASHcolor] = ACTIONS(1707), + [anon_sym_BSLASHcolorbox] = ACTIONS(1707), + [anon_sym_BSLASHtextcolor] = ACTIONS(1707), + [anon_sym_BSLASHpagecolor] = ACTIONS(1707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1710), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1710), + [anon_sym_BSLASHtext] = ACTIONS(1713), + [anon_sym_BSLASHintertext] = ACTIONS(1713), + [anon_sym_shortintertext] = ACTIONS(1713), + }, + [111] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -54976,7 +59077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1716), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -54997,629 +59098,2089 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [104] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [112] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [105] = { + [113] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(1718), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1724), + [anon_sym_COMMA] = ACTIONS(1724), + [anon_sym_EQ] = ACTIONS(1724), + [anon_sym_BSLASHpart] = ACTIONS(1727), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1730), + [anon_sym_BSLASHaddpart] = ACTIONS(1727), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1730), + [anon_sym_BSLASHchapter] = ACTIONS(1733), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1736), + [anon_sym_BSLASHaddchap] = ACTIONS(1733), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1736), + [anon_sym_BSLASHsection] = ACTIONS(1739), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1742), + [anon_sym_BSLASHaddsec] = ACTIONS(1739), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1742), + [anon_sym_BSLASHsubsection] = ACTIONS(1745), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1748), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1754), + [anon_sym_BSLASHparagraph] = ACTIONS(1757), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1760), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1766), + [anon_sym_BSLASHitem] = ACTIONS(1769), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1775), + [sym_word] = ACTIONS(1778), + [sym_placeholder] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1784), + [anon_sym__] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1787), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1793), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1796), + [anon_sym_BSLASH_RBRACE] = ACTIONS(381), + [anon_sym_BSLASHbegin] = ACTIONS(464), + [anon_sym_BSLASHtitle] = ACTIONS(1799), + [anon_sym_BSLASHauthor] = ACTIONS(1802), + [anon_sym_BSLASHusepackage] = ACTIONS(1805), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1805), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1808), + [anon_sym_BSLASHinclude] = ACTIONS(1811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1811), + [anon_sym_BSLASHinput] = ACTIONS(1811), + [anon_sym_BSLASHsubfile] = ACTIONS(1811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1814), + [anon_sym_BSLASHbibliography] = ACTIONS(1817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1820), + [anon_sym_BSLASHincludesvg] = ACTIONS(1823), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1826), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1829), + [anon_sym_BSLASHimport] = ACTIONS(1832), + [anon_sym_BSLASHsubimport] = ACTIONS(1832), + [anon_sym_BSLASHinputfrom] = ACTIONS(1832), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1832), + [anon_sym_BSLASHincludefrom] = ACTIONS(1832), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1832), + [anon_sym_BSLASHcaption] = ACTIONS(1835), + [anon_sym_BSLASHcite] = ACTIONS(1838), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1841), + [anon_sym_BSLASHCite] = ACTIONS(1838), + [anon_sym_BSLASHnocite] = ACTIONS(1838), + [anon_sym_BSLASHcitet] = ACTIONS(1838), + [anon_sym_BSLASHcitep] = ACTIONS(1838), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1841), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor] = ACTIONS(1838), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1838), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle] = ACTIONS(1838), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1841), + [anon_sym_BSLASHciteyear] = ACTIONS(1838), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1841), + [anon_sym_BSLASHcitedate] = ACTIONS(1838), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1841), + [anon_sym_BSLASHciteurl] = ACTIONS(1838), + [anon_sym_BSLASHfullcite] = ACTIONS(1838), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1838), + [anon_sym_BSLASHcitealt] = ACTIONS(1838), + [anon_sym_BSLASHcitealp] = ACTIONS(1838), + [anon_sym_BSLASHcitetext] = ACTIONS(1838), + [anon_sym_BSLASHparencite] = ACTIONS(1838), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1841), + [anon_sym_BSLASHParencite] = ACTIONS(1838), + [anon_sym_BSLASHfootcite] = ACTIONS(1838), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1838), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1838), + [anon_sym_BSLASHtextcite] = ACTIONS(1838), + [anon_sym_BSLASHTextcite] = ACTIONS(1838), + [anon_sym_BSLASHsmartcite] = ACTIONS(1838), + [anon_sym_BSLASHSmartcite] = ACTIONS(1838), + [anon_sym_BSLASHsupercite] = ACTIONS(1838), + [anon_sym_BSLASHautocite] = ACTIONS(1838), + [anon_sym_BSLASHAutocite] = ACTIONS(1838), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1841), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1841), + [anon_sym_BSLASHvolcite] = ACTIONS(1838), + [anon_sym_BSLASHVolcite] = ACTIONS(1838), + [anon_sym_BSLASHpvolcite] = ACTIONS(1838), + [anon_sym_BSLASHPvolcite] = ACTIONS(1838), + [anon_sym_BSLASHfvolcite] = ACTIONS(1838), + [anon_sym_BSLASHftvolcite] = ACTIONS(1838), + [anon_sym_BSLASHsvolcite] = ACTIONS(1838), + [anon_sym_BSLASHSvolcite] = ACTIONS(1838), + [anon_sym_BSLASHtvolcite] = ACTIONS(1838), + [anon_sym_BSLASHTvolcite] = ACTIONS(1838), + [anon_sym_BSLASHavolcite] = ACTIONS(1838), + [anon_sym_BSLASHAvolcite] = ACTIONS(1838), + [anon_sym_BSLASHnotecite] = ACTIONS(1838), + [anon_sym_BSLASHNotecite] = ACTIONS(1838), + [anon_sym_BSLASHpnotecite] = ACTIONS(1838), + [anon_sym_BSLASHPnotecite] = ACTIONS(1838), + [anon_sym_BSLASHfnotecite] = ACTIONS(1838), + [anon_sym_BSLASHlabel] = ACTIONS(1844), + [anon_sym_BSLASHref] = ACTIONS(1847), + [anon_sym_BSLASHeqref] = ACTIONS(1847), + [anon_sym_BSLASHvref] = ACTIONS(1847), + [anon_sym_BSLASHVref] = ACTIONS(1847), + [anon_sym_BSLASHautoref] = ACTIONS(1847), + [anon_sym_BSLASHpageref] = ACTIONS(1847), + [anon_sym_BSLASHcref] = ACTIONS(1847), + [anon_sym_BSLASHCref] = ACTIONS(1847), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1850), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1850), + [anon_sym_BSLASHnamecref] = ACTIONS(1847), + [anon_sym_BSLASHnameCref] = ACTIONS(1847), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1847), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1847), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1847), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1847), + [anon_sym_BSLASHlabelcref] = ACTIONS(1847), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1847), + [anon_sym_BSLASHcrefrange] = ACTIONS(1853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1856), + [anon_sym_BSLASHCrefrange] = ACTIONS(1853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1856), + [anon_sym_BSLASHnewlabel] = ACTIONS(1859), + [anon_sym_BSLASHnewcommand] = ACTIONS(1862), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1865), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1862), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1865), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1862), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1865), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1862), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1865), + [anon_sym_BSLASHdef] = ACTIONS(1868), + [anon_sym_BSLASHlet] = ACTIONS(1871), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1874), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1874), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1880), + [anon_sym_BSLASHgls] = ACTIONS(1883), + [anon_sym_BSLASHGls] = ACTIONS(1883), + [anon_sym_BSLASHGLS] = ACTIONS(1883), + [anon_sym_BSLASHglspl] = ACTIONS(1883), + [anon_sym_BSLASHGlspl] = ACTIONS(1883), + [anon_sym_BSLASHGLSpl] = ACTIONS(1883), + [anon_sym_BSLASHglsdisp] = ACTIONS(1883), + [anon_sym_BSLASHglslink] = ACTIONS(1883), + [anon_sym_BSLASHglstext] = ACTIONS(1883), + [anon_sym_BSLASHGlstext] = ACTIONS(1883), + [anon_sym_BSLASHGLStext] = ACTIONS(1883), + [anon_sym_BSLASHglsfirst] = ACTIONS(1883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1883), + [anon_sym_BSLASHglsplural] = ACTIONS(1883), + [anon_sym_BSLASHGlsplural] = ACTIONS(1883), + [anon_sym_BSLASHGLSplural] = ACTIONS(1883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1883), + [anon_sym_BSLASHglsname] = ACTIONS(1883), + [anon_sym_BSLASHGlsname] = ACTIONS(1883), + [anon_sym_BSLASHGLSname] = ACTIONS(1883), + [anon_sym_BSLASHglssymbol] = ACTIONS(1883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1883), + [anon_sym_BSLASHglsdesc] = ACTIONS(1883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1883), + [anon_sym_BSLASHglsuseri] = ACTIONS(1883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1883), + [anon_sym_BSLASHglsuserii] = ACTIONS(1883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1883), + [anon_sym_BSLASHglsuserv] = ACTIONS(1883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1883), + [anon_sym_BSLASHglsuservi] = ACTIONS(1883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1883), + [anon_sym_BSLASHnewacronym] = ACTIONS(1886), + [anon_sym_BSLASHacrshort] = ACTIONS(1889), + [anon_sym_BSLASHAcrshort] = ACTIONS(1889), + [anon_sym_BSLASHACRshort] = ACTIONS(1889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1889), + [anon_sym_BSLASHacrlong] = ACTIONS(1889), + [anon_sym_BSLASHAcrlong] = ACTIONS(1889), + [anon_sym_BSLASHACRlong] = ACTIONS(1889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1889), + [anon_sym_BSLASHacrfull] = ACTIONS(1889), + [anon_sym_BSLASHAcrfull] = ACTIONS(1889), + [anon_sym_BSLASHACRfull] = ACTIONS(1889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1889), + [anon_sym_BSLASHacs] = ACTIONS(1889), + [anon_sym_BSLASHAcs] = ACTIONS(1889), + [anon_sym_BSLASHacsp] = ACTIONS(1889), + [anon_sym_BSLASHAcsp] = ACTIONS(1889), + [anon_sym_BSLASHacl] = ACTIONS(1889), + [anon_sym_BSLASHAcl] = ACTIONS(1889), + [anon_sym_BSLASHaclp] = ACTIONS(1889), + [anon_sym_BSLASHAclp] = ACTIONS(1889), + [anon_sym_BSLASHacf] = ACTIONS(1889), + [anon_sym_BSLASHAcf] = ACTIONS(1889), + [anon_sym_BSLASHacfp] = ACTIONS(1889), + [anon_sym_BSLASHAcfp] = ACTIONS(1889), + [anon_sym_BSLASHac] = ACTIONS(1889), + [anon_sym_BSLASHAc] = ACTIONS(1889), + [anon_sym_BSLASHacp] = ACTIONS(1889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1892), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1892), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1901), + [anon_sym_BSLASHcolor] = ACTIONS(1904), + [anon_sym_BSLASHcolorbox] = ACTIONS(1904), + [anon_sym_BSLASHtextcolor] = ACTIONS(1904), + [anon_sym_BSLASHpagecolor] = ACTIONS(1904), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1907), + [anon_sym_BSLASHtext] = ACTIONS(1910), + [anon_sym_BSLASHintertext] = ACTIONS(1910), + [anon_sym_shortintertext] = ACTIONS(1910), + }, + [114] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [115] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [116] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [117] = { [sym_block_comment] = STATE(95), [sym__root_content] = STATE(95), [sym__flat_content] = STATE(95), [sym__text_with_env_content] = STATE(95), [sym__text_content] = STATE(95), [sym__section] = STATE(95), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), [sym_curly_group] = STATE(95), [sym_text] = STATE(95), - [sym_operator] = STATE(879), + [sym_operator] = STATE(793), [sym_displayed_equation] = STATE(95), [sym_inline_formula] = STATE(95), [sym_math_set] = STATE(95), - [sym_begin] = STATE(13), + [sym_begin] = STATE(20), [sym_generic_environment] = STATE(95), [sym_comment_environment] = STATE(95), - [sym__trivia_begin_comment] = STATE(2426), + [sym__trivia_begin_comment] = STATE(2754), [sym_verbatim_environment] = STATE(95), - [sym__trivia_begin_verbatim] = STATE(2423), + [sym__trivia_begin_verbatim] = STATE(2780), [sym_listing_environment] = STATE(95), - [sym__trivia_begin_listing] = STATE(2417), + [sym__trivia_begin_listing] = STATE(2756), [sym_minted_environment] = STATE(95), - [sym__trivia_begin_minted] = STATE(2415), + [sym__trivia_begin_minted] = STATE(2757), [sym_pycode_environment] = STATE(95), - [sym__trivia_begin_pycode] = STATE(2414), + [sym__trivia_begin_pycode] = STATE(2763), [sym__command] = STATE(95), [sym_generic_command] = STATE(95), + [sym_title_declaration] = STATE(95), + [sym_author_declaration] = STATE(95), [sym_package_include] = STATE(95), [sym_class_include] = STATE(95), [sym_latex_include] = STATE(95), @@ -55652,384 +61213,751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(95), [sym_text_mode] = STATE(95), [aux_sym_source_file_repeat1] = STATE(95), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1469), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_RBRACK] = ACTIONS(1917), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1917), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1919), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [106] = { - [sym_block_comment] = STATE(98), - [sym__root_content] = STATE(98), - [sym__flat_content] = STATE(98), - [sym__text_with_env_content] = STATE(98), - [sym__text_content] = STATE(98), - [sym__section] = STATE(98), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(98), - [sym_text] = STATE(98), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(98), - [sym_inline_formula] = STATE(98), - [sym_math_set] = STATE(98), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(98), - [sym_comment_environment] = STATE(98), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(98), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(98), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(98), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(98), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(98), - [sym_generic_command] = STATE(98), - [sym_package_include] = STATE(98), - [sym_class_include] = STATE(98), - [sym_latex_include] = STATE(98), - [sym_biblatex_include] = STATE(98), - [sym_bibtex_include] = STATE(98), - [sym_graphics_include] = STATE(98), - [sym_svg_include] = STATE(98), - [sym_inkscape_include] = STATE(98), - [sym_verbatim_include] = STATE(98), - [sym_import_include] = STATE(98), - [sym_caption] = STATE(98), - [sym_citation] = STATE(98), - [sym_label_definition] = STATE(98), - [sym_label_reference] = STATE(98), - [sym_label_reference_range] = STATE(98), - [sym_label_number] = STATE(98), - [sym_new_command_definition] = STATE(98), - [sym_old_command_definition] = STATE(98), - [sym_let_command_definition] = STATE(98), - [sym_paired_delimiter_definition] = STATE(98), - [sym_environment_definition] = STATE(98), - [sym_glossary_entry_definition] = STATE(98), - [sym_glossary_entry_reference] = STATE(98), - [sym_acronym_definition] = STATE(98), - [sym_acronym_reference] = STATE(98), - [sym_theorem_definition] = STATE(98), - [sym_color_definition] = STATE(98), - [sym_color_set_definition] = STATE(98), - [sym_color_reference] = STATE(98), - [sym_tikz_library_import] = STATE(98), - [sym_text_mode] = STATE(98), - [aux_sym_source_file_repeat1] = STATE(98), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [118] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [119] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -56053,7 +61981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1925), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -56074,4270 +62002,3229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [107] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [120] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1927), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [108] = { - [sym_block_comment] = STATE(119), - [sym__root_content] = STATE(119), - [sym__flat_content] = STATE(119), - [sym__text_with_env_content] = STATE(119), - [sym__text_content] = STATE(119), - [sym__section] = STATE(119), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(119), - [sym_text] = STATE(119), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(119), - [sym_inline_formula] = STATE(119), - [sym_math_set] = STATE(119), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(119), - [sym_comment_environment] = STATE(119), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(119), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(119), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(119), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(119), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(119), - [sym_generic_command] = STATE(119), - [sym_package_include] = STATE(119), - [sym_class_include] = STATE(119), - [sym_latex_include] = STATE(119), - [sym_biblatex_include] = STATE(119), - [sym_bibtex_include] = STATE(119), - [sym_graphics_include] = STATE(119), - [sym_svg_include] = STATE(119), - [sym_inkscape_include] = STATE(119), - [sym_verbatim_include] = STATE(119), - [sym_import_include] = STATE(119), - [sym_caption] = STATE(119), - [sym_citation] = STATE(119), - [sym_label_definition] = STATE(119), - [sym_label_reference] = STATE(119), - [sym_label_reference_range] = STATE(119), - [sym_label_number] = STATE(119), - [sym_new_command_definition] = STATE(119), - [sym_old_command_definition] = STATE(119), - [sym_let_command_definition] = STATE(119), - [sym_paired_delimiter_definition] = STATE(119), - [sym_environment_definition] = STATE(119), - [sym_glossary_entry_definition] = STATE(119), - [sym_glossary_entry_reference] = STATE(119), - [sym_acronym_definition] = STATE(119), - [sym_acronym_reference] = STATE(119), - [sym_theorem_definition] = STATE(119), - [sym_color_definition] = STATE(119), - [sym_color_set_definition] = STATE(119), - [sym_color_reference] = STATE(119), - [sym_tikz_library_import] = STATE(119), - [sym_text_mode] = STATE(119), - [aux_sym_source_file_repeat1] = STATE(119), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACK] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1479), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [121] = { + [sym_block_comment] = STATE(113), + [sym__root_content] = STATE(113), + [sym__flat_content] = STATE(113), + [sym__text_with_env_content] = STATE(113), + [sym__text_content] = STATE(113), + [sym__section] = STATE(113), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(113), + [sym_text] = STATE(113), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_math_set] = STATE(113), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(113), + [sym_comment_environment] = STATE(113), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(113), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(113), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(113), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(113), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(113), + [sym_generic_command] = STATE(113), + [sym_title_declaration] = STATE(113), + [sym_author_declaration] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import_include] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_new_command_definition] = STATE(113), + [sym_old_command_definition] = STATE(113), + [sym_let_command_definition] = STATE(113), + [sym_paired_delimiter_definition] = STATE(113), + [sym_environment_definition] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_text_mode] = STATE(113), + [aux_sym_source_file_repeat1] = STATE(113), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1929), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [109] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [122] = { + [sym_block_comment] = STATE(103), + [sym__root_content] = STATE(103), + [sym__flat_content] = STATE(103), + [sym__text_with_env_content] = STATE(103), + [sym__text_content] = STATE(103), + [sym__section] = STATE(103), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(103), + [sym_text] = STATE(103), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(103), + [sym_inline_formula] = STATE(103), + [sym_math_set] = STATE(103), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(103), + [sym_comment_environment] = STATE(103), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(103), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(103), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(103), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(103), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(103), + [sym_generic_command] = STATE(103), + [sym_title_declaration] = STATE(103), + [sym_author_declaration] = STATE(103), + [sym_package_include] = STATE(103), + [sym_class_include] = STATE(103), + [sym_latex_include] = STATE(103), + [sym_biblatex_include] = STATE(103), + [sym_bibtex_include] = STATE(103), + [sym_graphics_include] = STATE(103), + [sym_svg_include] = STATE(103), + [sym_inkscape_include] = STATE(103), + [sym_verbatim_include] = STATE(103), + [sym_import_include] = STATE(103), + [sym_caption] = STATE(103), + [sym_citation] = STATE(103), + [sym_label_definition] = STATE(103), + [sym_label_reference] = STATE(103), + [sym_label_reference_range] = STATE(103), + [sym_label_number] = STATE(103), + [sym_new_command_definition] = STATE(103), + [sym_old_command_definition] = STATE(103), + [sym_let_command_definition] = STATE(103), + [sym_paired_delimiter_definition] = STATE(103), + [sym_environment_definition] = STATE(103), + [sym_glossary_entry_definition] = STATE(103), + [sym_glossary_entry_reference] = STATE(103), + [sym_acronym_definition] = STATE(103), + [sym_acronym_reference] = STATE(103), + [sym_theorem_definition] = STATE(103), + [sym_color_definition] = STATE(103), + [sym_color_set_definition] = STATE(103), + [sym_color_reference] = STATE(103), + [sym_tikz_library_import] = STATE(103), + [sym_text_mode] = STATE(103), + [aux_sym_source_file_repeat1] = STATE(103), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1933), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [110] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [123] = { + [sym_block_comment] = STATE(62), + [sym__root_content] = STATE(62), + [sym__flat_content] = STATE(62), + [sym__text_with_env_content] = STATE(62), + [sym__text_content] = STATE(62), + [sym__section] = STATE(62), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(62), + [sym_text] = STATE(62), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(62), + [sym_inline_formula] = STATE(62), + [sym_math_set] = STATE(62), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(62), + [sym_comment_environment] = STATE(62), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(62), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(62), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(62), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(62), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(62), + [sym_generic_command] = STATE(62), + [sym_title_declaration] = STATE(62), + [sym_author_declaration] = STATE(62), + [sym_package_include] = STATE(62), + [sym_class_include] = STATE(62), + [sym_latex_include] = STATE(62), + [sym_biblatex_include] = STATE(62), + [sym_bibtex_include] = STATE(62), + [sym_graphics_include] = STATE(62), + [sym_svg_include] = STATE(62), + [sym_inkscape_include] = STATE(62), + [sym_verbatim_include] = STATE(62), + [sym_import_include] = STATE(62), + [sym_caption] = STATE(62), + [sym_citation] = STATE(62), + [sym_label_definition] = STATE(62), + [sym_label_reference] = STATE(62), + [sym_label_reference_range] = STATE(62), + [sym_label_number] = STATE(62), + [sym_new_command_definition] = STATE(62), + [sym_old_command_definition] = STATE(62), + [sym_let_command_definition] = STATE(62), + [sym_paired_delimiter_definition] = STATE(62), + [sym_environment_definition] = STATE(62), + [sym_glossary_entry_definition] = STATE(62), + [sym_glossary_entry_reference] = STATE(62), + [sym_acronym_definition] = STATE(62), + [sym_acronym_reference] = STATE(62), + [sym_theorem_definition] = STATE(62), + [sym_color_definition] = STATE(62), + [sym_color_set_definition] = STATE(62), + [sym_color_reference] = STATE(62), + [sym_tikz_library_import] = STATE(62), + [sym_text_mode] = STATE(62), + [aux_sym_source_file_repeat1] = STATE(62), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1124), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [111] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [124] = { + [sym_block_comment] = STATE(105), + [sym__root_content] = STATE(105), + [sym__flat_content] = STATE(105), + [sym__text_with_env_content] = STATE(105), + [sym__text_content] = STATE(105), + [sym__section] = STATE(105), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(105), + [sym_text] = STATE(105), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(105), + [sym_inline_formula] = STATE(105), + [sym_math_set] = STATE(105), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(105), + [sym_comment_environment] = STATE(105), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(105), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(105), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(105), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(105), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(105), + [sym_generic_command] = STATE(105), + [sym_title_declaration] = STATE(105), + [sym_author_declaration] = STATE(105), + [sym_package_include] = STATE(105), + [sym_class_include] = STATE(105), + [sym_latex_include] = STATE(105), + [sym_biblatex_include] = STATE(105), + [sym_bibtex_include] = STATE(105), + [sym_graphics_include] = STATE(105), + [sym_svg_include] = STATE(105), + [sym_inkscape_include] = STATE(105), + [sym_verbatim_include] = STATE(105), + [sym_import_include] = STATE(105), + [sym_caption] = STATE(105), + [sym_citation] = STATE(105), + [sym_label_definition] = STATE(105), + [sym_label_reference] = STATE(105), + [sym_label_reference_range] = STATE(105), + [sym_label_number] = STATE(105), + [sym_new_command_definition] = STATE(105), + [sym_old_command_definition] = STATE(105), + [sym_let_command_definition] = STATE(105), + [sym_paired_delimiter_definition] = STATE(105), + [sym_environment_definition] = STATE(105), + [sym_glossary_entry_definition] = STATE(105), + [sym_glossary_entry_reference] = STATE(105), + [sym_acronym_definition] = STATE(105), + [sym_acronym_reference] = STATE(105), + [sym_theorem_definition] = STATE(105), + [sym_color_definition] = STATE(105), + [sym_color_set_definition] = STATE(105), + [sym_color_reference] = STATE(105), + [sym_tikz_library_import] = STATE(105), + [sym_text_mode] = STATE(105), + [aux_sym_source_file_repeat1] = STATE(105), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1937), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [112] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_paired_delimiter_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [sym_text_mode] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [125] = { + [sym_block_comment] = STATE(128), + [sym__root_content] = STATE(128), + [sym__flat_content] = STATE(128), + [sym__text_with_env_content] = STATE(128), + [sym__text_content] = STATE(128), + [sym__section] = STATE(128), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(128), + [sym_text] = STATE(128), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(128), + [sym_inline_formula] = STATE(128), + [sym_math_set] = STATE(128), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(128), + [sym_comment_environment] = STATE(128), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(128), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(128), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(128), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(128), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(128), + [sym_generic_command] = STATE(128), + [sym_title_declaration] = STATE(128), + [sym_author_declaration] = STATE(128), + [sym_package_include] = STATE(128), + [sym_class_include] = STATE(128), + [sym_latex_include] = STATE(128), + [sym_biblatex_include] = STATE(128), + [sym_bibtex_include] = STATE(128), + [sym_graphics_include] = STATE(128), + [sym_svg_include] = STATE(128), + [sym_inkscape_include] = STATE(128), + [sym_verbatim_include] = STATE(128), + [sym_import_include] = STATE(128), + [sym_caption] = STATE(128), + [sym_citation] = STATE(128), + [sym_label_definition] = STATE(128), + [sym_label_reference] = STATE(128), + [sym_label_reference_range] = STATE(128), + [sym_label_number] = STATE(128), + [sym_new_command_definition] = STATE(128), + [sym_old_command_definition] = STATE(128), + [sym_let_command_definition] = STATE(128), + [sym_paired_delimiter_definition] = STATE(128), + [sym_environment_definition] = STATE(128), + [sym_glossary_entry_definition] = STATE(128), + [sym_glossary_entry_reference] = STATE(128), + [sym_acronym_definition] = STATE(128), + [sym_acronym_reference] = STATE(128), + [sym_theorem_definition] = STATE(128), + [sym_color_definition] = STATE(128), + [sym_color_set_definition] = STATE(128), + [sym_color_reference] = STATE(128), + [sym_tikz_library_import] = STATE(128), + [sym_text_mode] = STATE(128), + [aux_sym_source_file_repeat1] = STATE(128), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_RBRACK] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1943), + [anon_sym_EQ] = ACTIONS(1943), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), [anon_sym_BSLASHtext] = ACTIONS(137), [anon_sym_BSLASHintertext] = ACTIONS(137), [anon_sym_shortintertext] = ACTIONS(137), }, - [113] = { - [sym_block_comment] = STATE(111), - [sym__root_content] = STATE(111), - [sym__flat_content] = STATE(111), - [sym__text_with_env_content] = STATE(111), - [sym__text_content] = STATE(111), - [sym__section] = STATE(111), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(111), - [sym_text] = STATE(111), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_math_set] = STATE(111), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(111), - [sym_comment_environment] = STATE(111), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(111), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(111), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(111), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(111), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(111), - [sym_generic_command] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import_include] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_new_command_definition] = STATE(111), - [sym_old_command_definition] = STATE(111), - [sym_let_command_definition] = STATE(111), - [sym_paired_delimiter_definition] = STATE(111), - [sym_environment_definition] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_text_mode] = STATE(111), - [aux_sym_source_file_repeat1] = STATE(111), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), + [126] = { + [sym_block_comment] = STATE(110), + [sym__root_content] = STATE(110), + [sym__flat_content] = STATE(110), + [sym__text_with_env_content] = STATE(110), + [sym__text_content] = STATE(110), + [sym__section] = STATE(110), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(110), + [sym_text] = STATE(110), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_math_set] = STATE(110), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(110), + [sym_comment_environment] = STATE(110), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(110), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(110), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(110), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(110), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(110), + [sym_generic_command] = STATE(110), + [sym_title_declaration] = STATE(110), + [sym_author_declaration] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import_include] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_new_command_definition] = STATE(110), + [sym_old_command_definition] = STATE(110), + [sym_let_command_definition] = STATE(110), + [sym_paired_delimiter_definition] = STATE(110), + [sym_environment_definition] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_text_mode] = STATE(110), + [aux_sym_source_file_repeat1] = STATE(110), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [114] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1489), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [115] = { - [sym_block_comment] = STATE(116), - [sym__root_content] = STATE(116), - [sym__flat_content] = STATE(116), - [sym__text_with_env_content] = STATE(116), - [sym__text_content] = STATE(116), - [sym__section] = STATE(116), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(116), - [sym_text] = STATE(116), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(116), - [sym_inline_formula] = STATE(116), - [sym_math_set] = STATE(116), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(116), - [sym_comment_environment] = STATE(116), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(116), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(116), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(116), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(116), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(116), - [sym_generic_command] = STATE(116), - [sym_package_include] = STATE(116), - [sym_class_include] = STATE(116), - [sym_latex_include] = STATE(116), - [sym_biblatex_include] = STATE(116), - [sym_bibtex_include] = STATE(116), - [sym_graphics_include] = STATE(116), - [sym_svg_include] = STATE(116), - [sym_inkscape_include] = STATE(116), - [sym_verbatim_include] = STATE(116), - [sym_import_include] = STATE(116), - [sym_caption] = STATE(116), - [sym_citation] = STATE(116), - [sym_label_definition] = STATE(116), - [sym_label_reference] = STATE(116), - [sym_label_reference_range] = STATE(116), - [sym_label_number] = STATE(116), - [sym_new_command_definition] = STATE(116), - [sym_old_command_definition] = STATE(116), - [sym_let_command_definition] = STATE(116), - [sym_paired_delimiter_definition] = STATE(116), - [sym_environment_definition] = STATE(116), - [sym_glossary_entry_definition] = STATE(116), - [sym_glossary_entry_reference] = STATE(116), - [sym_acronym_definition] = STATE(116), - [sym_acronym_reference] = STATE(116), - [sym_theorem_definition] = STATE(116), - [sym_color_definition] = STATE(116), - [sym_color_set_definition] = STATE(116), - [sym_color_reference] = STATE(116), - [sym_tikz_library_import] = STATE(116), - [sym_text_mode] = STATE(116), - [aux_sym_source_file_repeat1] = STATE(116), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1493), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [116] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1495), + [127] = { + [sym_block_comment] = STATE(118), + [sym__root_content] = STATE(118), + [sym__flat_content] = STATE(118), + [sym__text_with_env_content] = STATE(118), + [sym__text_content] = STATE(118), + [sym__section] = STATE(118), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(118), + [sym_text] = STATE(118), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(118), + [sym_inline_formula] = STATE(118), + [sym_math_set] = STATE(118), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(118), + [sym_comment_environment] = STATE(118), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(118), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(118), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(118), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(118), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(118), + [sym_generic_command] = STATE(118), + [sym_title_declaration] = STATE(118), + [sym_author_declaration] = STATE(118), + [sym_package_include] = STATE(118), + [sym_class_include] = STATE(118), + [sym_latex_include] = STATE(118), + [sym_biblatex_include] = STATE(118), + [sym_bibtex_include] = STATE(118), + [sym_graphics_include] = STATE(118), + [sym_svg_include] = STATE(118), + [sym_inkscape_include] = STATE(118), + [sym_verbatim_include] = STATE(118), + [sym_import_include] = STATE(118), + [sym_caption] = STATE(118), + [sym_citation] = STATE(118), + [sym_label_definition] = STATE(118), + [sym_label_reference] = STATE(118), + [sym_label_reference_range] = STATE(118), + [sym_label_number] = STATE(118), + [sym_new_command_definition] = STATE(118), + [sym_old_command_definition] = STATE(118), + [sym_let_command_definition] = STATE(118), + [sym_paired_delimiter_definition] = STATE(118), + [sym_environment_definition] = STATE(118), + [sym_glossary_entry_definition] = STATE(118), + [sym_glossary_entry_reference] = STATE(118), + [sym_acronym_definition] = STATE(118), + [sym_acronym_reference] = STATE(118), + [sym_theorem_definition] = STATE(118), + [sym_color_definition] = STATE(118), + [sym_color_set_definition] = STATE(118), + [sym_color_reference] = STATE(118), + [sym_tikz_library_import] = STATE(118), + [sym_text_mode] = STATE(118), + [aux_sym_source_file_repeat1] = STATE(118), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1949), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1953), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [117] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(547), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(546), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(545), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(544), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(543), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(542), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(541), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(539), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_math_set] = STATE(117), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(117), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(117), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(117), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(117), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(547), - [aux_sym__section_repeat2] = STATE(546), - [aux_sym__section_repeat3] = STATE(545), - [aux_sym__section_repeat4] = STATE(544), - [aux_sym__section_repeat5] = STATE(543), - [aux_sym__section_repeat6] = STATE(542), - [aux_sym__section_repeat7] = STATE(541), - [aux_sym__section_repeat8] = STATE(539), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(1497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_BSLASHpart] = ACTIONS(1506), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1509), - [anon_sym_BSLASHaddpart] = ACTIONS(1506), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1509), - [anon_sym_BSLASHchapter] = ACTIONS(1512), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1515), - [anon_sym_BSLASHaddchap] = ACTIONS(1512), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1515), - [anon_sym_BSLASHsection] = ACTIONS(1518), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1521), - [anon_sym_BSLASHaddsec] = ACTIONS(1518), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1521), - [anon_sym_BSLASHsubsection] = ACTIONS(1524), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1530), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1533), - [anon_sym_BSLASHparagraph] = ACTIONS(1536), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1539), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1542), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1545), - [anon_sym_BSLASHitem] = ACTIONS(1548), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1554), - [sym_word] = ACTIONS(1557), - [sym_placeholder] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym__] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1566), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1572), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1575), - [anon_sym_BSLASHbegin] = ACTIONS(410), - [anon_sym_BSLASHend] = ACTIONS(1578), - [anon_sym_BSLASHusepackage] = ACTIONS(1580), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1580), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1583), - [anon_sym_BSLASHinclude] = ACTIONS(1586), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1586), - [anon_sym_BSLASHinput] = ACTIONS(1586), - [anon_sym_BSLASHsubfile] = ACTIONS(1586), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1589), - [anon_sym_BSLASHbibliography] = ACTIONS(1592), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1595), - [anon_sym_BSLASHincludesvg] = ACTIONS(1598), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1601), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1604), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1604), - [anon_sym_BSLASHimport] = ACTIONS(1607), - [anon_sym_BSLASHsubimport] = ACTIONS(1607), - [anon_sym_BSLASHinputfrom] = ACTIONS(1607), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1607), - [anon_sym_BSLASHincludefrom] = ACTIONS(1607), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1607), - [anon_sym_BSLASHcaption] = ACTIONS(1610), - [anon_sym_BSLASHcite] = ACTIONS(1613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1616), - [anon_sym_BSLASHCite] = ACTIONS(1613), - [anon_sym_BSLASHnocite] = ACTIONS(1613), - [anon_sym_BSLASHcitet] = ACTIONS(1613), - [anon_sym_BSLASHcitep] = ACTIONS(1613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1616), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1616), - [anon_sym_BSLASHciteauthor] = ACTIONS(1613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1616), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1616), - [anon_sym_BSLASHcitetitle] = ACTIONS(1613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1616), - [anon_sym_BSLASHciteyear] = ACTIONS(1613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1616), - [anon_sym_BSLASHcitedate] = ACTIONS(1613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1616), - [anon_sym_BSLASHciteurl] = ACTIONS(1613), - [anon_sym_BSLASHfullcite] = ACTIONS(1613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1613), - [anon_sym_BSLASHcitealt] = ACTIONS(1613), - [anon_sym_BSLASHcitealp] = ACTIONS(1613), - [anon_sym_BSLASHcitetext] = ACTIONS(1613), - [anon_sym_BSLASHparencite] = ACTIONS(1613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1616), - [anon_sym_BSLASHParencite] = ACTIONS(1613), - [anon_sym_BSLASHfootcite] = ACTIONS(1613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1613), - [anon_sym_BSLASHtextcite] = ACTIONS(1613), - [anon_sym_BSLASHTextcite] = ACTIONS(1613), - [anon_sym_BSLASHsmartcite] = ACTIONS(1613), - [anon_sym_BSLASHSmartcite] = ACTIONS(1613), - [anon_sym_BSLASHsupercite] = ACTIONS(1613), - [anon_sym_BSLASHautocite] = ACTIONS(1613), - [anon_sym_BSLASHAutocite] = ACTIONS(1613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1616), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1616), - [anon_sym_BSLASHvolcite] = ACTIONS(1613), - [anon_sym_BSLASHVolcite] = ACTIONS(1613), - [anon_sym_BSLASHpvolcite] = ACTIONS(1613), - [anon_sym_BSLASHPvolcite] = ACTIONS(1613), - [anon_sym_BSLASHfvolcite] = ACTIONS(1613), - [anon_sym_BSLASHftvolcite] = ACTIONS(1613), - [anon_sym_BSLASHsvolcite] = ACTIONS(1613), - [anon_sym_BSLASHSvolcite] = ACTIONS(1613), - [anon_sym_BSLASHtvolcite] = ACTIONS(1613), - [anon_sym_BSLASHTvolcite] = ACTIONS(1613), - [anon_sym_BSLASHavolcite] = ACTIONS(1613), - [anon_sym_BSLASHAvolcite] = ACTIONS(1613), - [anon_sym_BSLASHnotecite] = ACTIONS(1613), - [anon_sym_BSLASHNotecite] = ACTIONS(1613), - [anon_sym_BSLASHpnotecite] = ACTIONS(1613), - [anon_sym_BSLASHPnotecite] = ACTIONS(1613), - [anon_sym_BSLASHfnotecite] = ACTIONS(1613), - [anon_sym_BSLASHlabel] = ACTIONS(1619), - [anon_sym_BSLASHref] = ACTIONS(1622), - [anon_sym_BSLASHeqref] = ACTIONS(1622), - [anon_sym_BSLASHvref] = ACTIONS(1622), - [anon_sym_BSLASHVref] = ACTIONS(1622), - [anon_sym_BSLASHautoref] = ACTIONS(1622), - [anon_sym_BSLASHpageref] = ACTIONS(1622), - [anon_sym_BSLASHcref] = ACTIONS(1622), - [anon_sym_BSLASHCref] = ACTIONS(1622), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1625), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1625), - [anon_sym_BSLASHnamecref] = ACTIONS(1622), - [anon_sym_BSLASHnameCref] = ACTIONS(1622), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1622), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1622), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1622), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1622), - [anon_sym_BSLASHlabelcref] = ACTIONS(1622), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1622), - [anon_sym_BSLASHcrefrange] = ACTIONS(1628), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1631), - [anon_sym_BSLASHCrefrange] = ACTIONS(1628), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1631), - [anon_sym_BSLASHnewlabel] = ACTIONS(1634), - [anon_sym_BSLASHnewcommand] = ACTIONS(1637), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1640), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1637), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1640), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1637), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1640), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1637), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1640), - [anon_sym_BSLASHdef] = ACTIONS(1643), - [anon_sym_BSLASHlet] = ACTIONS(1646), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1649), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1649), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1652), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1655), - [anon_sym_BSLASHgls] = ACTIONS(1658), - [anon_sym_BSLASHGls] = ACTIONS(1658), - [anon_sym_BSLASHGLS] = ACTIONS(1658), - [anon_sym_BSLASHglspl] = ACTIONS(1658), - [anon_sym_BSLASHGlspl] = ACTIONS(1658), - [anon_sym_BSLASHGLSpl] = ACTIONS(1658), - [anon_sym_BSLASHglsdisp] = ACTIONS(1658), - [anon_sym_BSLASHglslink] = ACTIONS(1658), - [anon_sym_BSLASHglstext] = ACTIONS(1658), - [anon_sym_BSLASHGlstext] = ACTIONS(1658), - [anon_sym_BSLASHGLStext] = ACTIONS(1658), - [anon_sym_BSLASHglsfirst] = ACTIONS(1658), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1658), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1658), - [anon_sym_BSLASHglsplural] = ACTIONS(1658), - [anon_sym_BSLASHGlsplural] = ACTIONS(1658), - [anon_sym_BSLASHGLSplural] = ACTIONS(1658), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1658), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1658), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1658), - [anon_sym_BSLASHglsname] = ACTIONS(1658), - [anon_sym_BSLASHGlsname] = ACTIONS(1658), - [anon_sym_BSLASHGLSname] = ACTIONS(1658), - [anon_sym_BSLASHglssymbol] = ACTIONS(1658), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1658), - [anon_sym_BSLASHglsdesc] = ACTIONS(1658), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1658), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1658), - [anon_sym_BSLASHglsuseri] = ACTIONS(1658), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1658), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1658), - [anon_sym_BSLASHglsuserii] = ACTIONS(1658), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1658), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1658), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1658), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1658), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1658), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1658), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1658), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1658), - [anon_sym_BSLASHglsuserv] = ACTIONS(1658), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1658), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1658), - [anon_sym_BSLASHglsuservi] = ACTIONS(1658), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1658), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1658), - [anon_sym_BSLASHnewacronym] = ACTIONS(1661), - [anon_sym_BSLASHacrshort] = ACTIONS(1664), - [anon_sym_BSLASHAcrshort] = ACTIONS(1664), - [anon_sym_BSLASHACRshort] = ACTIONS(1664), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1664), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1664), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1664), - [anon_sym_BSLASHacrlong] = ACTIONS(1664), - [anon_sym_BSLASHAcrlong] = ACTIONS(1664), - [anon_sym_BSLASHACRlong] = ACTIONS(1664), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1664), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1664), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1664), - [anon_sym_BSLASHacrfull] = ACTIONS(1664), - [anon_sym_BSLASHAcrfull] = ACTIONS(1664), - [anon_sym_BSLASHACRfull] = ACTIONS(1664), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1664), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1664), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1664), - [anon_sym_BSLASHacs] = ACTIONS(1664), - [anon_sym_BSLASHAcs] = ACTIONS(1664), - [anon_sym_BSLASHacsp] = ACTIONS(1664), - [anon_sym_BSLASHAcsp] = ACTIONS(1664), - [anon_sym_BSLASHacl] = ACTIONS(1664), - [anon_sym_BSLASHAcl] = ACTIONS(1664), - [anon_sym_BSLASHaclp] = ACTIONS(1664), - [anon_sym_BSLASHAclp] = ACTIONS(1664), - [anon_sym_BSLASHacf] = ACTIONS(1664), - [anon_sym_BSLASHAcf] = ACTIONS(1664), - [anon_sym_BSLASHacfp] = ACTIONS(1664), - [anon_sym_BSLASHAcfp] = ACTIONS(1664), - [anon_sym_BSLASHac] = ACTIONS(1664), - [anon_sym_BSLASHAc] = ACTIONS(1664), - [anon_sym_BSLASHacp] = ACTIONS(1664), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1664), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1664), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1664), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1664), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1664), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1664), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1664), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1664), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1664), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1664), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1667), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1670), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1667), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1670), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1676), - [anon_sym_BSLASHcolor] = ACTIONS(1679), - [anon_sym_BSLASHcolorbox] = ACTIONS(1679), - [anon_sym_BSLASHtextcolor] = ACTIONS(1679), - [anon_sym_BSLASHpagecolor] = ACTIONS(1679), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1682), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1682), - [anon_sym_BSLASHtext] = ACTIONS(1685), - [anon_sym_BSLASHintertext] = ACTIONS(1685), - [anon_sym_shortintertext] = ACTIONS(1685), - }, - [118] = { - [sym_block_comment] = STATE(14), - [sym__root_content] = STATE(14), - [sym__flat_content] = STATE(14), - [sym__text_with_env_content] = STATE(14), - [sym__text_content] = STATE(14), - [sym__section] = STATE(14), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(273), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(272), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(276), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(275), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(274), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(278), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(279), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(271), - [sym_curly_group] = STATE(14), - [sym_text] = STATE(14), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(14), - [sym_inline_formula] = STATE(14), - [sym_math_set] = STATE(14), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(14), - [sym_comment_environment] = STATE(14), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(14), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(14), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(14), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(14), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(14), - [sym_generic_command] = STATE(14), - [sym_package_include] = STATE(14), - [sym_class_include] = STATE(14), - [sym_latex_include] = STATE(14), - [sym_biblatex_include] = STATE(14), - [sym_bibtex_include] = STATE(14), - [sym_graphics_include] = STATE(14), - [sym_svg_include] = STATE(14), - [sym_inkscape_include] = STATE(14), - [sym_verbatim_include] = STATE(14), - [sym_import_include] = STATE(14), - [sym_caption] = STATE(14), - [sym_citation] = STATE(14), - [sym_label_definition] = STATE(14), - [sym_label_reference] = STATE(14), - [sym_label_reference_range] = STATE(14), - [sym_label_number] = STATE(14), - [sym_new_command_definition] = STATE(14), - [sym_old_command_definition] = STATE(14), - [sym_let_command_definition] = STATE(14), - [sym_paired_delimiter_definition] = STATE(14), - [sym_environment_definition] = STATE(14), - [sym_glossary_entry_definition] = STATE(14), - [sym_glossary_entry_reference] = STATE(14), - [sym_acronym_definition] = STATE(14), - [sym_acronym_reference] = STATE(14), - [sym_theorem_definition] = STATE(14), - [sym_color_definition] = STATE(14), - [sym_color_set_definition] = STATE(14), - [sym_color_reference] = STATE(14), - [sym_tikz_library_import] = STATE(14), - [sym_text_mode] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym__section_repeat1] = STATE(273), - [aux_sym__section_repeat2] = STATE(272), - [aux_sym__section_repeat3] = STATE(276), - [aux_sym__section_repeat4] = STATE(275), - [aux_sym__section_repeat5] = STATE(274), - [aux_sym__section_repeat6] = STATE(278), - [aux_sym__section_repeat7] = STATE(279), - [aux_sym__section_repeat8] = STATE(271), - [aux_sym_text_repeat1] = STATE(207), + [128] = { + [sym_block_comment] = STATE(29), + [sym__root_content] = STATE(29), + [sym__flat_content] = STATE(29), + [sym__text_with_env_content] = STATE(29), + [sym__text_content] = STATE(29), + [sym__section] = STATE(29), + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(353), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(350), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(311), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(344), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(342), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(339), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(338), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(337), + [sym_curly_group] = STATE(29), + [sym_text] = STATE(29), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(29), + [sym_inline_formula] = STATE(29), + [sym_math_set] = STATE(29), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(29), + [sym_comment_environment] = STATE(29), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(29), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(29), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(29), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(29), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(29), + [sym_generic_command] = STATE(29), + [sym_title_declaration] = STATE(29), + [sym_author_declaration] = STATE(29), + [sym_package_include] = STATE(29), + [sym_class_include] = STATE(29), + [sym_latex_include] = STATE(29), + [sym_biblatex_include] = STATE(29), + [sym_bibtex_include] = STATE(29), + [sym_graphics_include] = STATE(29), + [sym_svg_include] = STATE(29), + [sym_inkscape_include] = STATE(29), + [sym_verbatim_include] = STATE(29), + [sym_import_include] = STATE(29), + [sym_caption] = STATE(29), + [sym_citation] = STATE(29), + [sym_label_definition] = STATE(29), + [sym_label_reference] = STATE(29), + [sym_label_reference_range] = STATE(29), + [sym_label_number] = STATE(29), + [sym_new_command_definition] = STATE(29), + [sym_old_command_definition] = STATE(29), + [sym_let_command_definition] = STATE(29), + [sym_paired_delimiter_definition] = STATE(29), + [sym_environment_definition] = STATE(29), + [sym_glossary_entry_definition] = STATE(29), + [sym_glossary_entry_reference] = STATE(29), + [sym_acronym_definition] = STATE(29), + [sym_acronym_reference] = STATE(29), + [sym_theorem_definition] = STATE(29), + [sym_color_definition] = STATE(29), + [sym_color_set_definition] = STATE(29), + [sym_color_reference] = STATE(29), + [sym_tikz_library_import] = STATE(29), + [sym_text_mode] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym__section_repeat1] = STATE(353), + [aux_sym__section_repeat2] = STATE(350), + [aux_sym__section_repeat3] = STATE(311), + [aux_sym__section_repeat4] = STATE(344), + [aux_sym__section_repeat5] = STATE(342), + [aux_sym__section_repeat6] = STATE(339), + [aux_sym__section_repeat7] = STATE(338), + [aux_sym__section_repeat8] = STATE(337), + [aux_sym_text_repeat1] = STATE(220), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -60361,7 +65248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1955), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -60382,1398 +65269,2140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [119] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(645), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(644), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(643), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(642), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(640), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(639), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(633), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(631), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_math_set] = STATE(79), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(79), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(79), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(79), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(79), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(645), - [aux_sym__section_repeat2] = STATE(644), - [aux_sym__section_repeat3] = STATE(643), - [aux_sym__section_repeat4] = STATE(642), - [aux_sym__section_repeat5] = STATE(640), - [aux_sym__section_repeat6] = STATE(639), - [aux_sym__section_repeat7] = STATE(633), - [aux_sym__section_repeat8] = STATE(631), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1692), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [129] = { + [sym_block_comment] = STATE(121), + [sym__root_content] = STATE(121), + [sym__flat_content] = STATE(121), + [sym__text_with_env_content] = STATE(121), + [sym__text_content] = STATE(121), + [sym__section] = STATE(121), + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(388), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(389), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(390), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(392), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(393), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(394), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(395), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(396), + [sym_curly_group] = STATE(121), + [sym_text] = STATE(121), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(121), + [sym_inline_formula] = STATE(121), + [sym_math_set] = STATE(121), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(121), + [sym_comment_environment] = STATE(121), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(121), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(121), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(121), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(121), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(121), + [sym_generic_command] = STATE(121), + [sym_title_declaration] = STATE(121), + [sym_author_declaration] = STATE(121), + [sym_package_include] = STATE(121), + [sym_class_include] = STATE(121), + [sym_latex_include] = STATE(121), + [sym_biblatex_include] = STATE(121), + [sym_bibtex_include] = STATE(121), + [sym_graphics_include] = STATE(121), + [sym_svg_include] = STATE(121), + [sym_inkscape_include] = STATE(121), + [sym_verbatim_include] = STATE(121), + [sym_import_include] = STATE(121), + [sym_caption] = STATE(121), + [sym_citation] = STATE(121), + [sym_label_definition] = STATE(121), + [sym_label_reference] = STATE(121), + [sym_label_reference_range] = STATE(121), + [sym_label_number] = STATE(121), + [sym_new_command_definition] = STATE(121), + [sym_old_command_definition] = STATE(121), + [sym_let_command_definition] = STATE(121), + [sym_paired_delimiter_definition] = STATE(121), + [sym_environment_definition] = STATE(121), + [sym_glossary_entry_definition] = STATE(121), + [sym_glossary_entry_reference] = STATE(121), + [sym_acronym_definition] = STATE(121), + [sym_acronym_reference] = STATE(121), + [sym_theorem_definition] = STATE(121), + [sym_color_definition] = STATE(121), + [sym_color_set_definition] = STATE(121), + [sym_color_reference] = STATE(121), + [sym_tikz_library_import] = STATE(121), + [sym_text_mode] = STATE(121), + [aux_sym_source_file_repeat1] = STATE(121), + [aux_sym__section_repeat1] = STATE(388), + [aux_sym__section_repeat2] = STATE(389), + [aux_sym__section_repeat3] = STATE(390), + [aux_sym__section_repeat4] = STATE(392), + [aux_sym__section_repeat5] = STATE(393), + [aux_sym__section_repeat6] = STATE(394), + [aux_sym__section_repeat7] = STATE(395), + [aux_sym__section_repeat8] = STATE(396), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [120] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(406), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(408), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(410), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(411), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(412), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(415), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(416), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_paired_delimiter_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_text_mode] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(406), - [aux_sym__section_repeat2] = STATE(408), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(410), - [aux_sym__section_repeat5] = STATE(411), - [aux_sym__section_repeat6] = STATE(412), - [aux_sym__section_repeat7] = STATE(415), - [aux_sym__section_repeat8] = STATE(416), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(1694), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_RBRACK] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1700), - [anon_sym_BSLASHpart] = ACTIONS(1703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1706), - [anon_sym_BSLASHaddpart] = ACTIONS(1703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1706), - [anon_sym_BSLASHchapter] = ACTIONS(1709), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1712), - [anon_sym_BSLASHaddchap] = ACTIONS(1709), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1712), - [anon_sym_BSLASHsection] = ACTIONS(1715), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1718), - [anon_sym_BSLASHaddsec] = ACTIONS(1715), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1718), - [anon_sym_BSLASHsubsection] = ACTIONS(1721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1724), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1727), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1730), - [anon_sym_BSLASHparagraph] = ACTIONS(1733), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1736), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1739), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1742), - [anon_sym_BSLASHitem] = ACTIONS(1745), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1751), - [sym_word] = ACTIONS(1754), - [sym_placeholder] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym__] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1769), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1772), - [anon_sym_BSLASH_RBRACE] = ACTIONS(327), - [anon_sym_BSLASHbegin] = ACTIONS(410), - [anon_sym_BSLASHusepackage] = ACTIONS(1775), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1775), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1778), - [anon_sym_BSLASHinclude] = ACTIONS(1781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1781), - [anon_sym_BSLASHinput] = ACTIONS(1781), - [anon_sym_BSLASHsubfile] = ACTIONS(1781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1784), - [anon_sym_BSLASHbibliography] = ACTIONS(1787), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1790), - [anon_sym_BSLASHincludesvg] = ACTIONS(1793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1796), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1799), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1799), - [anon_sym_BSLASHimport] = ACTIONS(1802), - [anon_sym_BSLASHsubimport] = ACTIONS(1802), - [anon_sym_BSLASHinputfrom] = ACTIONS(1802), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1802), - [anon_sym_BSLASHincludefrom] = ACTIONS(1802), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1802), - [anon_sym_BSLASHcaption] = ACTIONS(1805), - [anon_sym_BSLASHcite] = ACTIONS(1808), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1811), - [anon_sym_BSLASHCite] = ACTIONS(1808), - [anon_sym_BSLASHnocite] = ACTIONS(1808), - [anon_sym_BSLASHcitet] = ACTIONS(1808), - [anon_sym_BSLASHcitep] = ACTIONS(1808), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1811), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1811), - [anon_sym_BSLASHciteauthor] = ACTIONS(1808), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1811), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1808), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1811), - [anon_sym_BSLASHcitetitle] = ACTIONS(1808), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1811), - [anon_sym_BSLASHciteyear] = ACTIONS(1808), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1811), - [anon_sym_BSLASHcitedate] = ACTIONS(1808), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1811), - [anon_sym_BSLASHciteurl] = ACTIONS(1808), - [anon_sym_BSLASHfullcite] = ACTIONS(1808), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1808), - [anon_sym_BSLASHcitealt] = ACTIONS(1808), - [anon_sym_BSLASHcitealp] = ACTIONS(1808), - [anon_sym_BSLASHcitetext] = ACTIONS(1808), - [anon_sym_BSLASHparencite] = ACTIONS(1808), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1811), - [anon_sym_BSLASHParencite] = ACTIONS(1808), - [anon_sym_BSLASHfootcite] = ACTIONS(1808), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1808), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1808), - [anon_sym_BSLASHtextcite] = ACTIONS(1808), - [anon_sym_BSLASHTextcite] = ACTIONS(1808), - [anon_sym_BSLASHsmartcite] = ACTIONS(1808), - [anon_sym_BSLASHSmartcite] = ACTIONS(1808), - [anon_sym_BSLASHsupercite] = ACTIONS(1808), - [anon_sym_BSLASHautocite] = ACTIONS(1808), - [anon_sym_BSLASHAutocite] = ACTIONS(1808), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1811), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1811), - [anon_sym_BSLASHvolcite] = ACTIONS(1808), - [anon_sym_BSLASHVolcite] = ACTIONS(1808), - [anon_sym_BSLASHpvolcite] = ACTIONS(1808), - [anon_sym_BSLASHPvolcite] = ACTIONS(1808), - [anon_sym_BSLASHfvolcite] = ACTIONS(1808), - [anon_sym_BSLASHftvolcite] = ACTIONS(1808), - [anon_sym_BSLASHsvolcite] = ACTIONS(1808), - [anon_sym_BSLASHSvolcite] = ACTIONS(1808), - [anon_sym_BSLASHtvolcite] = ACTIONS(1808), - [anon_sym_BSLASHTvolcite] = ACTIONS(1808), - [anon_sym_BSLASHavolcite] = ACTIONS(1808), - [anon_sym_BSLASHAvolcite] = ACTIONS(1808), - [anon_sym_BSLASHnotecite] = ACTIONS(1808), - [anon_sym_BSLASHNotecite] = ACTIONS(1808), - [anon_sym_BSLASHpnotecite] = ACTIONS(1808), - [anon_sym_BSLASHPnotecite] = ACTIONS(1808), - [anon_sym_BSLASHfnotecite] = ACTIONS(1808), - [anon_sym_BSLASHlabel] = ACTIONS(1814), - [anon_sym_BSLASHref] = ACTIONS(1817), - [anon_sym_BSLASHeqref] = ACTIONS(1817), - [anon_sym_BSLASHvref] = ACTIONS(1817), - [anon_sym_BSLASHVref] = ACTIONS(1817), - [anon_sym_BSLASHautoref] = ACTIONS(1817), - [anon_sym_BSLASHpageref] = ACTIONS(1817), - [anon_sym_BSLASHcref] = ACTIONS(1817), - [anon_sym_BSLASHCref] = ACTIONS(1817), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1820), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1820), - [anon_sym_BSLASHnamecref] = ACTIONS(1817), - [anon_sym_BSLASHnameCref] = ACTIONS(1817), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1817), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1817), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1817), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1817), - [anon_sym_BSLASHlabelcref] = ACTIONS(1817), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1817), - [anon_sym_BSLASHcrefrange] = ACTIONS(1823), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1826), - [anon_sym_BSLASHCrefrange] = ACTIONS(1823), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1826), - [anon_sym_BSLASHnewlabel] = ACTIONS(1829), - [anon_sym_BSLASHnewcommand] = ACTIONS(1832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1835), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1835), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1835), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1835), - [anon_sym_BSLASHdef] = ACTIONS(1838), - [anon_sym_BSLASHlet] = ACTIONS(1841), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1847), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1850), - [anon_sym_BSLASHgls] = ACTIONS(1853), - [anon_sym_BSLASHGls] = ACTIONS(1853), - [anon_sym_BSLASHGLS] = ACTIONS(1853), - [anon_sym_BSLASHglspl] = ACTIONS(1853), - [anon_sym_BSLASHGlspl] = ACTIONS(1853), - [anon_sym_BSLASHGLSpl] = ACTIONS(1853), - [anon_sym_BSLASHglsdisp] = ACTIONS(1853), - [anon_sym_BSLASHglslink] = ACTIONS(1853), - [anon_sym_BSLASHglstext] = ACTIONS(1853), - [anon_sym_BSLASHGlstext] = ACTIONS(1853), - [anon_sym_BSLASHGLStext] = ACTIONS(1853), - [anon_sym_BSLASHglsfirst] = ACTIONS(1853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1853), - [anon_sym_BSLASHglsplural] = ACTIONS(1853), - [anon_sym_BSLASHGlsplural] = ACTIONS(1853), - [anon_sym_BSLASHGLSplural] = ACTIONS(1853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1853), - [anon_sym_BSLASHglsname] = ACTIONS(1853), - [anon_sym_BSLASHGlsname] = ACTIONS(1853), - [anon_sym_BSLASHGLSname] = ACTIONS(1853), - [anon_sym_BSLASHglssymbol] = ACTIONS(1853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1853), - [anon_sym_BSLASHglsdesc] = ACTIONS(1853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1853), - [anon_sym_BSLASHglsuseri] = ACTIONS(1853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1853), - [anon_sym_BSLASHglsuserii] = ACTIONS(1853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1853), - [anon_sym_BSLASHglsuserv] = ACTIONS(1853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1853), - [anon_sym_BSLASHglsuservi] = ACTIONS(1853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1853), - [anon_sym_BSLASHnewacronym] = ACTIONS(1856), - [anon_sym_BSLASHacrshort] = ACTIONS(1859), - [anon_sym_BSLASHAcrshort] = ACTIONS(1859), - [anon_sym_BSLASHACRshort] = ACTIONS(1859), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1859), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1859), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1859), - [anon_sym_BSLASHacrlong] = ACTIONS(1859), - [anon_sym_BSLASHAcrlong] = ACTIONS(1859), - [anon_sym_BSLASHACRlong] = ACTIONS(1859), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1859), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1859), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1859), - [anon_sym_BSLASHacrfull] = ACTIONS(1859), - [anon_sym_BSLASHAcrfull] = ACTIONS(1859), - [anon_sym_BSLASHACRfull] = ACTIONS(1859), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1859), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1859), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1859), - [anon_sym_BSLASHacs] = ACTIONS(1859), - [anon_sym_BSLASHAcs] = ACTIONS(1859), - [anon_sym_BSLASHacsp] = ACTIONS(1859), - [anon_sym_BSLASHAcsp] = ACTIONS(1859), - [anon_sym_BSLASHacl] = ACTIONS(1859), - [anon_sym_BSLASHAcl] = ACTIONS(1859), - [anon_sym_BSLASHaclp] = ACTIONS(1859), - [anon_sym_BSLASHAclp] = ACTIONS(1859), - [anon_sym_BSLASHacf] = ACTIONS(1859), - [anon_sym_BSLASHAcf] = ACTIONS(1859), - [anon_sym_BSLASHacfp] = ACTIONS(1859), - [anon_sym_BSLASHAcfp] = ACTIONS(1859), - [anon_sym_BSLASHac] = ACTIONS(1859), - [anon_sym_BSLASHAc] = ACTIONS(1859), - [anon_sym_BSLASHacp] = ACTIONS(1859), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1859), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1859), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1859), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1859), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1859), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1859), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1859), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1859), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1859), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1859), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1862), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1865), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1862), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1865), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1871), - [anon_sym_BSLASHcolor] = ACTIONS(1874), - [anon_sym_BSLASHcolorbox] = ACTIONS(1874), - [anon_sym_BSLASHtextcolor] = ACTIONS(1874), - [anon_sym_BSLASHpagecolor] = ACTIONS(1874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1877), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1877), - [anon_sym_BSLASHtext] = ACTIONS(1880), - [anon_sym_BSLASHintertext] = ACTIONS(1880), - [anon_sym_shortintertext] = ACTIONS(1880), + [130] = { + [sym_block_comment] = STATE(123), + [sym__root_content] = STATE(123), + [sym__flat_content] = STATE(123), + [sym__text_with_env_content] = STATE(123), + [sym__text_content] = STATE(123), + [sym__section] = STATE(123), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(123), + [sym_text] = STATE(123), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_math_set] = STATE(123), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(123), + [sym_comment_environment] = STATE(123), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(123), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(123), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(123), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(123), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(123), + [sym_generic_command] = STATE(123), + [sym_title_declaration] = STATE(123), + [sym_author_declaration] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import_include] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_new_command_definition] = STATE(123), + [sym_old_command_definition] = STATE(123), + [sym_let_command_definition] = STATE(123), + [sym_paired_delimiter_definition] = STATE(123), + [sym_environment_definition] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_text_mode] = STATE(123), + [aux_sym_source_file_repeat1] = STATE(123), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1961), + [anon_sym_COMMA] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1136), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [121] = { - [sym_block_comment] = STATE(64), - [sym__root_content] = STATE(64), - [sym__flat_content] = STATE(64), - [sym__text_with_env_content] = STATE(64), - [sym__text_content] = STATE(64), - [sym__section] = STATE(64), - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(438), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(439), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(440), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(441), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(442), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(443), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(444), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(445), - [sym_curly_group] = STATE(64), - [sym_text] = STATE(64), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(64), - [sym_inline_formula] = STATE(64), - [sym_math_set] = STATE(64), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(64), - [sym_comment_environment] = STATE(64), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(64), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(64), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(64), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(64), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(64), - [sym_generic_command] = STATE(64), - [sym_package_include] = STATE(64), - [sym_class_include] = STATE(64), - [sym_latex_include] = STATE(64), - [sym_biblatex_include] = STATE(64), - [sym_bibtex_include] = STATE(64), - [sym_graphics_include] = STATE(64), - [sym_svg_include] = STATE(64), - [sym_inkscape_include] = STATE(64), - [sym_verbatim_include] = STATE(64), - [sym_import_include] = STATE(64), - [sym_caption] = STATE(64), - [sym_citation] = STATE(64), - [sym_label_definition] = STATE(64), - [sym_label_reference] = STATE(64), - [sym_label_reference_range] = STATE(64), - [sym_label_number] = STATE(64), - [sym_new_command_definition] = STATE(64), - [sym_old_command_definition] = STATE(64), - [sym_let_command_definition] = STATE(64), - [sym_paired_delimiter_definition] = STATE(64), - [sym_environment_definition] = STATE(64), - [sym_glossary_entry_definition] = STATE(64), - [sym_glossary_entry_reference] = STATE(64), - [sym_acronym_definition] = STATE(64), - [sym_acronym_reference] = STATE(64), - [sym_theorem_definition] = STATE(64), - [sym_color_definition] = STATE(64), - [sym_color_set_definition] = STATE(64), - [sym_color_reference] = STATE(64), - [sym_tikz_library_import] = STATE(64), - [sym_text_mode] = STATE(64), - [aux_sym_source_file_repeat1] = STATE(64), - [aux_sym__section_repeat1] = STATE(438), - [aux_sym__section_repeat2] = STATE(439), - [aux_sym__section_repeat3] = STATE(440), - [aux_sym__section_repeat4] = STATE(441), - [aux_sym__section_repeat5] = STATE(442), - [aux_sym__section_repeat6] = STATE(443), - [aux_sym__section_repeat7] = STATE(444), - [aux_sym__section_repeat8] = STATE(445), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1883), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [131] = { + [sym_block_comment] = STATE(66), + [sym__root_content] = STATE(66), + [sym__flat_content] = STATE(66), + [sym__text_with_env_content] = STATE(66), + [sym__text_content] = STATE(66), + [sym__section] = STATE(66), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(66), + [sym_text] = STATE(66), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(66), + [sym_inline_formula] = STATE(66), + [sym_math_set] = STATE(66), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(66), + [sym_comment_environment] = STATE(66), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(66), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(66), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(66), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(66), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(66), + [sym_generic_command] = STATE(66), + [sym_title_declaration] = STATE(66), + [sym_author_declaration] = STATE(66), + [sym_package_include] = STATE(66), + [sym_class_include] = STATE(66), + [sym_latex_include] = STATE(66), + [sym_biblatex_include] = STATE(66), + [sym_bibtex_include] = STATE(66), + [sym_graphics_include] = STATE(66), + [sym_svg_include] = STATE(66), + [sym_inkscape_include] = STATE(66), + [sym_verbatim_include] = STATE(66), + [sym_import_include] = STATE(66), + [sym_caption] = STATE(66), + [sym_citation] = STATE(66), + [sym_label_definition] = STATE(66), + [sym_label_reference] = STATE(66), + [sym_label_reference_range] = STATE(66), + [sym_label_number] = STATE(66), + [sym_new_command_definition] = STATE(66), + [sym_old_command_definition] = STATE(66), + [sym_let_command_definition] = STATE(66), + [sym_paired_delimiter_definition] = STATE(66), + [sym_environment_definition] = STATE(66), + [sym_glossary_entry_definition] = STATE(66), + [sym_glossary_entry_reference] = STATE(66), + [sym_acronym_definition] = STATE(66), + [sym_acronym_reference] = STATE(66), + [sym_theorem_definition] = STATE(66), + [sym_color_definition] = STATE(66), + [sym_color_set_definition] = STATE(66), + [sym_color_reference] = STATE(66), + [sym_tikz_library_import] = STATE(66), + [sym_text_mode] = STATE(66), + [aux_sym_source_file_repeat1] = STATE(66), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [122] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(286), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(287), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(288), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(289), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(290), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(291), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(292), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat2] = STATE(286), - [aux_sym__section_repeat3] = STATE(287), - [aux_sym__section_repeat4] = STATE(288), - [aux_sym__section_repeat5] = STATE(289), - [aux_sym__section_repeat6] = STATE(290), - [aux_sym__section_repeat7] = STATE(291), - [aux_sym__section_repeat8] = STATE(292), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1887), + [132] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(685), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(686), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(687), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(684), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(683), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(682), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(681), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(680), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_title_declaration] = STATE(58), + [sym_author_declaration] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_paired_delimiter_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(685), + [aux_sym__section_repeat2] = STATE(686), + [aux_sym__section_repeat3] = STATE(687), + [aux_sym__section_repeat4] = STATE(684), + [aux_sym__section_repeat5] = STATE(683), + [aux_sym__section_repeat6] = STATE(682), + [aux_sym__section_repeat7] = STATE(681), + [aux_sym__section_repeat8] = STATE(680), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [133] = { + [sym_block_comment] = STATE(126), + [sym__root_content] = STATE(126), + [sym__flat_content] = STATE(126), + [sym__text_with_env_content] = STATE(126), + [sym__text_content] = STATE(126), + [sym__section] = STATE(126), + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(452), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(453), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(454), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(455), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(456), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(457), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(458), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(459), + [sym_curly_group] = STATE(126), + [sym_text] = STATE(126), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(126), + [sym_inline_formula] = STATE(126), + [sym_math_set] = STATE(126), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(126), + [sym_comment_environment] = STATE(126), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(126), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(126), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(126), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(126), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(126), + [sym_generic_command] = STATE(126), + [sym_title_declaration] = STATE(126), + [sym_author_declaration] = STATE(126), + [sym_package_include] = STATE(126), + [sym_class_include] = STATE(126), + [sym_latex_include] = STATE(126), + [sym_biblatex_include] = STATE(126), + [sym_bibtex_include] = STATE(126), + [sym_graphics_include] = STATE(126), + [sym_svg_include] = STATE(126), + [sym_inkscape_include] = STATE(126), + [sym_verbatim_include] = STATE(126), + [sym_import_include] = STATE(126), + [sym_caption] = STATE(126), + [sym_citation] = STATE(126), + [sym_label_definition] = STATE(126), + [sym_label_reference] = STATE(126), + [sym_label_reference_range] = STATE(126), + [sym_label_number] = STATE(126), + [sym_new_command_definition] = STATE(126), + [sym_old_command_definition] = STATE(126), + [sym_let_command_definition] = STATE(126), + [sym_paired_delimiter_definition] = STATE(126), + [sym_environment_definition] = STATE(126), + [sym_glossary_entry_definition] = STATE(126), + [sym_glossary_entry_reference] = STATE(126), + [sym_acronym_definition] = STATE(126), + [sym_acronym_reference] = STATE(126), + [sym_theorem_definition] = STATE(126), + [sym_color_definition] = STATE(126), + [sym_color_set_definition] = STATE(126), + [sym_color_reference] = STATE(126), + [sym_tikz_library_import] = STATE(126), + [sym_text_mode] = STATE(126), + [aux_sym_source_file_repeat1] = STATE(126), + [aux_sym__section_repeat1] = STATE(452), + [aux_sym__section_repeat2] = STATE(453), + [aux_sym__section_repeat3] = STATE(454), + [aux_sym__section_repeat4] = STATE(455), + [aux_sym__section_repeat5] = STATE(456), + [aux_sym__section_repeat6] = STATE(457), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(459), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_RBRACK] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_EQ] = ACTIONS(1965), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [134] = { + [sym_block_comment] = STATE(135), + [sym__flat_content] = STATE(135), + [sym__text_with_env_content] = STATE(135), + [sym__text_content] = STATE(135), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(343), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(357), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(380), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(379), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(384), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(381), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(377), + [sym_curly_group] = STATE(135), + [sym_text] = STATE(135), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(135), + [sym_inline_formula] = STATE(135), + [sym_math_set] = STATE(135), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(135), + [sym_comment_environment] = STATE(135), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(135), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(135), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(135), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(135), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(135), + [sym_generic_command] = STATE(135), + [sym_title_declaration] = STATE(135), + [sym_author_declaration] = STATE(135), + [sym_package_include] = STATE(135), + [sym_class_include] = STATE(135), + [sym_latex_include] = STATE(135), + [sym_biblatex_include] = STATE(135), + [sym_bibtex_include] = STATE(135), + [sym_graphics_include] = STATE(135), + [sym_svg_include] = STATE(135), + [sym_inkscape_include] = STATE(135), + [sym_verbatim_include] = STATE(135), + [sym_import_include] = STATE(135), + [sym_caption] = STATE(135), + [sym_citation] = STATE(135), + [sym_label_definition] = STATE(135), + [sym_label_reference] = STATE(135), + [sym_label_reference_range] = STATE(135), + [sym_label_number] = STATE(135), + [sym_new_command_definition] = STATE(135), + [sym_old_command_definition] = STATE(135), + [sym_let_command_definition] = STATE(135), + [sym_paired_delimiter_definition] = STATE(135), + [sym_environment_definition] = STATE(135), + [sym_glossary_entry_definition] = STATE(135), + [sym_glossary_entry_reference] = STATE(135), + [sym_acronym_definition] = STATE(135), + [sym_acronym_reference] = STATE(135), + [sym_theorem_definition] = STATE(135), + [sym_color_definition] = STATE(135), + [sym_color_set_definition] = STATE(135), + [sym_color_reference] = STATE(135), + [sym_tikz_library_import] = STATE(135), + [sym_text_mode] = STATE(135), + [aux_sym__section_repeat2] = STATE(343), + [aux_sym__section_repeat3] = STATE(357), + [aux_sym__section_repeat4] = STATE(380), + [aux_sym__section_repeat5] = STATE(379), + [aux_sym__section_repeat6] = STATE(384), + [aux_sym__section_repeat7] = STATE(381), + [aux_sym__section_repeat8] = STATE(377), + [aux_sym_part_repeat1] = STATE(135), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1969), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_BSLASHpart] = ACTIONS(1973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHaddpart] = ACTIONS(1973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1969), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -61793,7 +67422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1969), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -61814,321 +67443,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [123] = { - [sym_block_comment] = STATE(122), - [sym__flat_content] = STATE(122), - [sym__text_with_env_content] = STATE(122), - [sym__text_content] = STATE(122), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(345), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(344), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(343), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(342), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(341), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(340), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(339), - [sym_curly_group] = STATE(122), - [sym_text] = STATE(122), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(122), - [sym_inline_formula] = STATE(122), - [sym_math_set] = STATE(122), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(122), - [sym_comment_environment] = STATE(122), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(122), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(122), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(122), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(122), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(122), - [sym_generic_command] = STATE(122), - [sym_package_include] = STATE(122), - [sym_class_include] = STATE(122), - [sym_latex_include] = STATE(122), - [sym_biblatex_include] = STATE(122), - [sym_bibtex_include] = STATE(122), - [sym_graphics_include] = STATE(122), - [sym_svg_include] = STATE(122), - [sym_inkscape_include] = STATE(122), - [sym_verbatim_include] = STATE(122), - [sym_import_include] = STATE(122), - [sym_caption] = STATE(122), - [sym_citation] = STATE(122), - [sym_label_definition] = STATE(122), - [sym_label_reference] = STATE(122), - [sym_label_reference_range] = STATE(122), - [sym_label_number] = STATE(122), - [sym_new_command_definition] = STATE(122), - [sym_old_command_definition] = STATE(122), - [sym_let_command_definition] = STATE(122), - [sym_paired_delimiter_definition] = STATE(122), - [sym_environment_definition] = STATE(122), - [sym_glossary_entry_definition] = STATE(122), - [sym_glossary_entry_reference] = STATE(122), - [sym_acronym_definition] = STATE(122), - [sym_acronym_reference] = STATE(122), - [sym_theorem_definition] = STATE(122), - [sym_color_definition] = STATE(122), - [sym_color_set_definition] = STATE(122), - [sym_color_reference] = STATE(122), - [sym_tikz_library_import] = STATE(122), - [sym_text_mode] = STATE(122), - [aux_sym__section_repeat2] = STATE(345), - [aux_sym__section_repeat3] = STATE(344), - [aux_sym__section_repeat4] = STATE(343), - [aux_sym__section_repeat5] = STATE(342), - [aux_sym__section_repeat6] = STATE(341), - [aux_sym__section_repeat7] = STATE(340), - [aux_sym__section_repeat8] = STATE(339), - [aux_sym_part_repeat1] = STATE(122), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1893), + [135] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(378), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(375), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(374), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(373), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(372), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(367), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(365), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat2] = STATE(378), + [aux_sym__section_repeat3] = STATE(375), + [aux_sym__section_repeat4] = STATE(374), + [aux_sym__section_repeat5] = STATE(373), + [aux_sym__section_repeat6] = STATE(372), + [aux_sym__section_repeat7] = STATE(367), + [aux_sym__section_repeat8] = STATE(365), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_RPAREN] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_RBRACK] = ACTIONS(1895), - [anon_sym_COMMA] = ACTIONS(1895), - [anon_sym_EQ] = ACTIONS(1895), - [anon_sym_BSLASHpart] = ACTIONS(1897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHaddpart] = ACTIONS(1897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -62148,7 +67781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -62169,3154 +67802,3190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [124] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(638), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(637), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(636), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(635), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(634), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(632), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(630), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat2] = STATE(638), - [aux_sym__section_repeat3] = STATE(637), - [aux_sym__section_repeat4] = STATE(636), - [aux_sym__section_repeat5] = STATE(635), - [aux_sym__section_repeat6] = STATE(634), - [aux_sym__section_repeat7] = STATE(632), - [aux_sym__section_repeat8] = STATE(630), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), + [136] = { + [sym_block_comment] = STATE(137), + [sym__flat_content] = STATE(137), + [sym__text_with_env_content] = STATE(137), + [sym__text_content] = STATE(137), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(398), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(399), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(400), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(401), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(402), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(403), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(404), + [sym_curly_group] = STATE(137), + [sym_text] = STATE(137), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(137), + [sym_inline_formula] = STATE(137), + [sym_math_set] = STATE(137), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(137), + [sym_comment_environment] = STATE(137), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(137), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(137), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(137), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(137), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(137), + [sym_generic_command] = STATE(137), + [sym_title_declaration] = STATE(137), + [sym_author_declaration] = STATE(137), + [sym_package_include] = STATE(137), + [sym_class_include] = STATE(137), + [sym_latex_include] = STATE(137), + [sym_biblatex_include] = STATE(137), + [sym_bibtex_include] = STATE(137), + [sym_graphics_include] = STATE(137), + [sym_svg_include] = STATE(137), + [sym_inkscape_include] = STATE(137), + [sym_verbatim_include] = STATE(137), + [sym_import_include] = STATE(137), + [sym_caption] = STATE(137), + [sym_citation] = STATE(137), + [sym_label_definition] = STATE(137), + [sym_label_reference] = STATE(137), + [sym_label_reference_range] = STATE(137), + [sym_label_number] = STATE(137), + [sym_new_command_definition] = STATE(137), + [sym_old_command_definition] = STATE(137), + [sym_let_command_definition] = STATE(137), + [sym_paired_delimiter_definition] = STATE(137), + [sym_environment_definition] = STATE(137), + [sym_glossary_entry_definition] = STATE(137), + [sym_glossary_entry_reference] = STATE(137), + [sym_acronym_definition] = STATE(137), + [sym_acronym_reference] = STATE(137), + [sym_theorem_definition] = STATE(137), + [sym_color_definition] = STATE(137), + [sym_color_set_definition] = STATE(137), + [sym_color_reference] = STATE(137), + [sym_tikz_library_import] = STATE(137), + [sym_text_mode] = STATE(137), + [aux_sym__section_repeat2] = STATE(398), + [aux_sym__section_repeat3] = STATE(399), + [aux_sym__section_repeat4] = STATE(400), + [aux_sym__section_repeat5] = STATE(401), + [aux_sym__section_repeat6] = STATE(402), + [aux_sym__section_repeat7] = STATE(403), + [aux_sym__section_repeat8] = STATE(404), + [aux_sym_part_repeat1] = STATE(137), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(1981), + [anon_sym_EQ] = ACTIONS(1981), + [anon_sym_BSLASHpart] = ACTIONS(1973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHaddpart] = ACTIONS(1973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1969), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [125] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(562), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(563), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(564), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(565), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(566), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(567), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(568), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat2] = STATE(562), - [aux_sym__section_repeat3] = STATE(563), - [aux_sym__section_repeat4] = STATE(564), - [aux_sym__section_repeat5] = STATE(565), - [aux_sym__section_repeat6] = STATE(566), - [aux_sym__section_repeat7] = STATE(567), - [aux_sym__section_repeat8] = STATE(568), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [137] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(642), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(644), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(652), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(654), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(385), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(655), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat2] = STATE(642), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(644), + [aux_sym__section_repeat5] = STATE(652), + [aux_sym__section_repeat6] = STATE(654), + [aux_sym__section_repeat7] = STATE(385), + [aux_sym__section_repeat8] = STATE(655), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [126] = { - [sym_block_comment] = STATE(125), - [sym__flat_content] = STATE(125), - [sym__text_with_env_content] = STATE(125), - [sym__text_content] = STATE(125), - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(485), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(486), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(487), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(488), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(489), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(490), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(491), - [sym_curly_group] = STATE(125), - [sym_text] = STATE(125), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(125), - [sym_inline_formula] = STATE(125), - [sym_math_set] = STATE(125), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(125), - [sym_comment_environment] = STATE(125), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(125), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(125), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(125), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(125), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(125), - [sym_generic_command] = STATE(125), - [sym_package_include] = STATE(125), - [sym_class_include] = STATE(125), - [sym_latex_include] = STATE(125), - [sym_biblatex_include] = STATE(125), - [sym_bibtex_include] = STATE(125), - [sym_graphics_include] = STATE(125), - [sym_svg_include] = STATE(125), - [sym_inkscape_include] = STATE(125), - [sym_verbatim_include] = STATE(125), - [sym_import_include] = STATE(125), - [sym_caption] = STATE(125), - [sym_citation] = STATE(125), - [sym_label_definition] = STATE(125), - [sym_label_reference] = STATE(125), - [sym_label_reference_range] = STATE(125), - [sym_label_number] = STATE(125), - [sym_new_command_definition] = STATE(125), - [sym_old_command_definition] = STATE(125), - [sym_let_command_definition] = STATE(125), - [sym_paired_delimiter_definition] = STATE(125), - [sym_environment_definition] = STATE(125), - [sym_glossary_entry_definition] = STATE(125), - [sym_glossary_entry_reference] = STATE(125), - [sym_acronym_definition] = STATE(125), - [sym_acronym_reference] = STATE(125), - [sym_theorem_definition] = STATE(125), - [sym_color_definition] = STATE(125), - [sym_color_set_definition] = STATE(125), - [sym_color_reference] = STATE(125), - [sym_tikz_library_import] = STATE(125), - [sym_text_mode] = STATE(125), - [aux_sym__section_repeat2] = STATE(485), - [aux_sym__section_repeat3] = STATE(486), - [aux_sym__section_repeat4] = STATE(487), - [aux_sym__section_repeat5] = STATE(488), - [aux_sym__section_repeat6] = STATE(489), - [aux_sym__section_repeat7] = STATE(490), - [aux_sym__section_repeat8] = STATE(491), - [aux_sym_part_repeat1] = STATE(125), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_EQ] = ACTIONS(1903), - [anon_sym_BSLASHpart] = ACTIONS(1897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHaddpart] = ACTIONS(1897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [138] = { + [sym_block_comment] = STATE(143), + [sym__flat_content] = STATE(143), + [sym__text_with_env_content] = STATE(143), + [sym__text_content] = STATE(143), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(501), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(502), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(503), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(504), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(505), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(506), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(507), + [sym_curly_group] = STATE(143), + [sym_text] = STATE(143), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(143), + [sym_inline_formula] = STATE(143), + [sym_math_set] = STATE(143), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(143), + [sym_comment_environment] = STATE(143), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(143), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(143), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(143), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(143), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(143), + [sym_generic_command] = STATE(143), + [sym_title_declaration] = STATE(143), + [sym_author_declaration] = STATE(143), + [sym_package_include] = STATE(143), + [sym_class_include] = STATE(143), + [sym_latex_include] = STATE(143), + [sym_biblatex_include] = STATE(143), + [sym_bibtex_include] = STATE(143), + [sym_graphics_include] = STATE(143), + [sym_svg_include] = STATE(143), + [sym_inkscape_include] = STATE(143), + [sym_verbatim_include] = STATE(143), + [sym_import_include] = STATE(143), + [sym_caption] = STATE(143), + [sym_citation] = STATE(143), + [sym_label_definition] = STATE(143), + [sym_label_reference] = STATE(143), + [sym_label_reference_range] = STATE(143), + [sym_label_number] = STATE(143), + [sym_new_command_definition] = STATE(143), + [sym_old_command_definition] = STATE(143), + [sym_let_command_definition] = STATE(143), + [sym_paired_delimiter_definition] = STATE(143), + [sym_environment_definition] = STATE(143), + [sym_glossary_entry_definition] = STATE(143), + [sym_glossary_entry_reference] = STATE(143), + [sym_acronym_definition] = STATE(143), + [sym_acronym_reference] = STATE(143), + [sym_theorem_definition] = STATE(143), + [sym_color_definition] = STATE(143), + [sym_color_set_definition] = STATE(143), + [sym_color_reference] = STATE(143), + [sym_tikz_library_import] = STATE(143), + [sym_text_mode] = STATE(143), + [aux_sym__section_repeat2] = STATE(501), + [aux_sym__section_repeat3] = STATE(502), + [aux_sym__section_repeat4] = STATE(503), + [aux_sym__section_repeat5] = STATE(504), + [aux_sym__section_repeat6] = STATE(505), + [aux_sym__section_repeat7] = STATE(506), + [aux_sym__section_repeat8] = STATE(507), + [aux_sym_part_repeat1] = STATE(143), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_BSLASHpart] = ACTIONS(1973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHaddpart] = ACTIONS(1973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [127] = { - [sym_block_comment] = STATE(131), - [sym__flat_content] = STATE(131), - [sym__text_with_env_content] = STATE(131), - [sym__text_content] = STATE(131), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(554), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(553), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(347), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(551), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(550), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(549), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(548), - [sym_curly_group] = STATE(131), - [sym_text] = STATE(131), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(131), - [sym_inline_formula] = STATE(131), - [sym_math_set] = STATE(131), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(131), - [sym_comment_environment] = STATE(131), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(131), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(131), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(131), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(131), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(131), - [sym_generic_command] = STATE(131), - [sym_package_include] = STATE(131), - [sym_class_include] = STATE(131), - [sym_latex_include] = STATE(131), - [sym_biblatex_include] = STATE(131), - [sym_bibtex_include] = STATE(131), - [sym_graphics_include] = STATE(131), - [sym_svg_include] = STATE(131), - [sym_inkscape_include] = STATE(131), - [sym_verbatim_include] = STATE(131), - [sym_import_include] = STATE(131), - [sym_caption] = STATE(131), - [sym_citation] = STATE(131), - [sym_label_definition] = STATE(131), - [sym_label_reference] = STATE(131), - [sym_label_reference_range] = STATE(131), - [sym_label_number] = STATE(131), - [sym_new_command_definition] = STATE(131), - [sym_old_command_definition] = STATE(131), - [sym_let_command_definition] = STATE(131), - [sym_paired_delimiter_definition] = STATE(131), - [sym_environment_definition] = STATE(131), - [sym_glossary_entry_definition] = STATE(131), - [sym_glossary_entry_reference] = STATE(131), - [sym_acronym_definition] = STATE(131), - [sym_acronym_reference] = STATE(131), - [sym_theorem_definition] = STATE(131), - [sym_color_definition] = STATE(131), - [sym_color_set_definition] = STATE(131), - [sym_color_reference] = STATE(131), - [sym_tikz_library_import] = STATE(131), - [sym_text_mode] = STATE(131), - [aux_sym__section_repeat2] = STATE(554), - [aux_sym__section_repeat3] = STATE(553), - [aux_sym__section_repeat4] = STATE(347), - [aux_sym__section_repeat5] = STATE(551), - [aux_sym__section_repeat6] = STATE(550), - [aux_sym__section_repeat7] = STATE(549), - [aux_sym__section_repeat8] = STATE(548), - [aux_sym_part_repeat1] = STATE(131), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_RBRACK] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASHpart] = ACTIONS(1897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHaddpart] = ACTIONS(1897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1893), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [139] = { + [sym_block_comment] = STATE(141), + [sym__flat_content] = STATE(141), + [sym__text_with_env_content] = STATE(141), + [sym__text_content] = STATE(141), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(641), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(640), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(639), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(637), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(635), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(634), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(629), + [sym_curly_group] = STATE(141), + [sym_text] = STATE(141), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(141), + [sym_inline_formula] = STATE(141), + [sym_math_set] = STATE(141), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(141), + [sym_comment_environment] = STATE(141), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(141), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(141), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(141), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(141), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(141), + [sym_generic_command] = STATE(141), + [sym_title_declaration] = STATE(141), + [sym_author_declaration] = STATE(141), + [sym_package_include] = STATE(141), + [sym_class_include] = STATE(141), + [sym_latex_include] = STATE(141), + [sym_biblatex_include] = STATE(141), + [sym_bibtex_include] = STATE(141), + [sym_graphics_include] = STATE(141), + [sym_svg_include] = STATE(141), + [sym_inkscape_include] = STATE(141), + [sym_verbatim_include] = STATE(141), + [sym_import_include] = STATE(141), + [sym_caption] = STATE(141), + [sym_citation] = STATE(141), + [sym_label_definition] = STATE(141), + [sym_label_reference] = STATE(141), + [sym_label_reference_range] = STATE(141), + [sym_label_number] = STATE(141), + [sym_new_command_definition] = STATE(141), + [sym_old_command_definition] = STATE(141), + [sym_let_command_definition] = STATE(141), + [sym_paired_delimiter_definition] = STATE(141), + [sym_environment_definition] = STATE(141), + [sym_glossary_entry_definition] = STATE(141), + [sym_glossary_entry_reference] = STATE(141), + [sym_acronym_definition] = STATE(141), + [sym_acronym_reference] = STATE(141), + [sym_theorem_definition] = STATE(141), + [sym_color_definition] = STATE(141), + [sym_color_set_definition] = STATE(141), + [sym_color_reference] = STATE(141), + [sym_tikz_library_import] = STATE(141), + [sym_text_mode] = STATE(141), + [aux_sym__section_repeat2] = STATE(641), + [aux_sym__section_repeat3] = STATE(640), + [aux_sym__section_repeat4] = STATE(639), + [aux_sym__section_repeat5] = STATE(637), + [aux_sym__section_repeat6] = STATE(635), + [aux_sym__section_repeat7] = STATE(634), + [aux_sym__section_repeat8] = STATE(629), + [aux_sym_part_repeat1] = STATE(141), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_BSLASHpart] = ACTIONS(1973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHaddpart] = ACTIONS(1973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1969), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [128] = { - [sym_block_comment] = STATE(124), - [sym__flat_content] = STATE(124), - [sym__text_with_env_content] = STATE(124), - [sym__text_content] = STATE(124), - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(418), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(419), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(420), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(421), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(423), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(424), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(425), - [sym_curly_group] = STATE(124), - [sym_text] = STATE(124), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(124), - [sym_inline_formula] = STATE(124), - [sym_math_set] = STATE(124), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(124), - [sym_comment_environment] = STATE(124), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(124), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(124), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(124), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(124), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(124), - [sym_generic_command] = STATE(124), - [sym_package_include] = STATE(124), - [sym_class_include] = STATE(124), - [sym_latex_include] = STATE(124), - [sym_biblatex_include] = STATE(124), - [sym_bibtex_include] = STATE(124), - [sym_graphics_include] = STATE(124), - [sym_svg_include] = STATE(124), - [sym_inkscape_include] = STATE(124), - [sym_verbatim_include] = STATE(124), - [sym_import_include] = STATE(124), - [sym_caption] = STATE(124), - [sym_citation] = STATE(124), - [sym_label_definition] = STATE(124), - [sym_label_reference] = STATE(124), - [sym_label_reference_range] = STATE(124), - [sym_label_number] = STATE(124), - [sym_new_command_definition] = STATE(124), - [sym_old_command_definition] = STATE(124), - [sym_let_command_definition] = STATE(124), - [sym_paired_delimiter_definition] = STATE(124), - [sym_environment_definition] = STATE(124), - [sym_glossary_entry_definition] = STATE(124), - [sym_glossary_entry_reference] = STATE(124), - [sym_acronym_definition] = STATE(124), - [sym_acronym_reference] = STATE(124), - [sym_theorem_definition] = STATE(124), - [sym_color_definition] = STATE(124), - [sym_color_set_definition] = STATE(124), - [sym_color_reference] = STATE(124), - [sym_tikz_library_import] = STATE(124), - [sym_text_mode] = STATE(124), - [aux_sym__section_repeat2] = STATE(418), - [aux_sym__section_repeat3] = STATE(419), - [aux_sym__section_repeat4] = STATE(420), - [aux_sym__section_repeat5] = STATE(421), - [aux_sym__section_repeat6] = STATE(423), - [aux_sym__section_repeat7] = STATE(424), - [aux_sym__section_repeat8] = STATE(425), - [aux_sym_part_repeat1] = STATE(124), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_RBRACK] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1909), - [anon_sym_BSLASHpart] = ACTIONS(1897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHaddpart] = ACTIONS(1897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1893), + [140] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(500), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(499), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(498), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(496), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(495), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(494), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(493), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat2] = STATE(500), + [aux_sym__section_repeat3] = STATE(499), + [aux_sym__section_repeat4] = STATE(498), + [aux_sym__section_repeat5] = STATE(496), + [aux_sym__section_repeat6] = STATE(495), + [aux_sym__section_repeat7] = STATE(494), + [aux_sym__section_repeat8] = STATE(493), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [129] = { - [sym_block_comment] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(484), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(483), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(482), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(480), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(479), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(478), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(477), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_math_set] = STATE(130), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(130), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(130), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(130), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(130), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym__section_repeat2] = STATE(484), - [aux_sym__section_repeat3] = STATE(483), - [aux_sym__section_repeat4] = STATE(482), - [aux_sym__section_repeat5] = STATE(480), - [aux_sym__section_repeat6] = STATE(479), - [aux_sym__section_repeat7] = STATE(478), - [aux_sym__section_repeat8] = STATE(477), - [aux_sym_part_repeat1] = STATE(130), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(1911), - [anon_sym_BSLASHpart] = ACTIONS(1897), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHaddpart] = ACTIONS(1897), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1893), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [141] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(444), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(442), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(441), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(440), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(439), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(438), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(437), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat2] = STATE(444), + [aux_sym__section_repeat3] = STATE(442), + [aux_sym__section_repeat4] = STATE(441), + [aux_sym__section_repeat5] = STATE(440), + [aux_sym__section_repeat6] = STATE(439), + [aux_sym__section_repeat7] = STATE(438), + [aux_sym__section_repeat8] = STATE(437), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1897), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [130] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(383), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(381), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(380), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(379), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(378), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(376), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(372), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat2] = STATE(383), - [aux_sym__section_repeat3] = STATE(381), - [aux_sym__section_repeat4] = STATE(380), - [aux_sym__section_repeat5] = STATE(379), - [aux_sym__section_repeat6] = STATE(378), - [aux_sym__section_repeat7] = STATE(376), - [aux_sym__section_repeat8] = STATE(372), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [142] = { + [sym_block_comment] = STATE(140), + [sym__flat_content] = STATE(140), + [sym__text_with_env_content] = STATE(140), + [sym__text_content] = STATE(140), + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(636), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(633), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(632), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(631), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(630), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(628), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(627), + [sym_curly_group] = STATE(140), + [sym_text] = STATE(140), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(140), + [sym_inline_formula] = STATE(140), + [sym_math_set] = STATE(140), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(140), + [sym_comment_environment] = STATE(140), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(140), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(140), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(140), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(140), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(140), + [sym_generic_command] = STATE(140), + [sym_title_declaration] = STATE(140), + [sym_author_declaration] = STATE(140), + [sym_package_include] = STATE(140), + [sym_class_include] = STATE(140), + [sym_latex_include] = STATE(140), + [sym_biblatex_include] = STATE(140), + [sym_bibtex_include] = STATE(140), + [sym_graphics_include] = STATE(140), + [sym_svg_include] = STATE(140), + [sym_inkscape_include] = STATE(140), + [sym_verbatim_include] = STATE(140), + [sym_import_include] = STATE(140), + [sym_caption] = STATE(140), + [sym_citation] = STATE(140), + [sym_label_definition] = STATE(140), + [sym_label_reference] = STATE(140), + [sym_label_reference_range] = STATE(140), + [sym_label_number] = STATE(140), + [sym_new_command_definition] = STATE(140), + [sym_old_command_definition] = STATE(140), + [sym_let_command_definition] = STATE(140), + [sym_paired_delimiter_definition] = STATE(140), + [sym_environment_definition] = STATE(140), + [sym_glossary_entry_definition] = STATE(140), + [sym_glossary_entry_reference] = STATE(140), + [sym_acronym_definition] = STATE(140), + [sym_acronym_reference] = STATE(140), + [sym_theorem_definition] = STATE(140), + [sym_color_definition] = STATE(140), + [sym_color_set_definition] = STATE(140), + [sym_color_reference] = STATE(140), + [sym_tikz_library_import] = STATE(140), + [sym_text_mode] = STATE(140), + [aux_sym__section_repeat2] = STATE(636), + [aux_sym__section_repeat3] = STATE(633), + [aux_sym__section_repeat4] = STATE(632), + [aux_sym__section_repeat5] = STATE(631), + [aux_sym__section_repeat6] = STATE(630), + [aux_sym__section_repeat7] = STATE(628), + [aux_sym__section_repeat8] = STATE(627), + [aux_sym_part_repeat1] = STATE(140), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_RBRACK] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(1995), + [anon_sym_EQ] = ACTIONS(1995), + [anon_sym_BSLASHpart] = ACTIONS(1973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHaddpart] = ACTIONS(1973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1969), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(1973), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [131] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(405), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(404), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(403), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(402), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(400), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(397), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(393), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat2] = STATE(405), - [aux_sym__section_repeat3] = STATE(404), - [aux_sym__section_repeat4] = STATE(403), - [aux_sym__section_repeat5] = STATE(402), - [aux_sym__section_repeat6] = STATE(400), - [aux_sym__section_repeat7] = STATE(397), - [aux_sym__section_repeat8] = STATE(393), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [143] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(580), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(581), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(582), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(583), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(584), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(585), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(586), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat2] = STATE(580), + [aux_sym__section_repeat3] = STATE(581), + [aux_sym__section_repeat4] = STATE(582), + [aux_sym__section_repeat5] = STATE(583), + [aux_sym__section_repeat6] = STATE(584), + [aux_sym__section_repeat7] = STATE(585), + [aux_sym__section_repeat8] = STATE(586), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [132] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(294), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(295), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(296), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(297), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(298), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(299), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat3] = STATE(294), - [aux_sym__section_repeat4] = STATE(295), - [aux_sym__section_repeat5] = STATE(296), - [aux_sym__section_repeat6] = STATE(297), - [aux_sym__section_repeat7] = STATE(298), - [aux_sym__section_repeat8] = STATE(299), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1917), + [144] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(364), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(352), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(349), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(346), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(345), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(341), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat3] = STATE(364), + [aux_sym__section_repeat4] = STATE(352), + [aux_sym__section_repeat5] = STATE(349), + [aux_sym__section_repeat6] = STATE(346), + [aux_sym__section_repeat7] = STATE(345), + [aux_sym__section_repeat8] = STATE(341), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1999), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -65332,7 +71001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1999), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -65353,322 +71022,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [133] = { - [sym_block_comment] = STATE(132), - [sym__flat_content] = STATE(132), - [sym__text_with_env_content] = STATE(132), - [sym__text_content] = STATE(132), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(338), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(337), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(336), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(335), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(334), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(333), - [sym_curly_group] = STATE(132), - [sym_text] = STATE(132), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(132), - [sym_inline_formula] = STATE(132), - [sym_math_set] = STATE(132), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(132), - [sym_comment_environment] = STATE(132), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(132), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(132), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(132), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(132), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(132), - [sym_generic_command] = STATE(132), - [sym_package_include] = STATE(132), - [sym_class_include] = STATE(132), - [sym_latex_include] = STATE(132), - [sym_biblatex_include] = STATE(132), - [sym_bibtex_include] = STATE(132), - [sym_graphics_include] = STATE(132), - [sym_svg_include] = STATE(132), - [sym_inkscape_include] = STATE(132), - [sym_verbatim_include] = STATE(132), - [sym_import_include] = STATE(132), - [sym_caption] = STATE(132), - [sym_citation] = STATE(132), - [sym_label_definition] = STATE(132), - [sym_label_reference] = STATE(132), - [sym_label_reference_range] = STATE(132), - [sym_label_number] = STATE(132), - [sym_new_command_definition] = STATE(132), - [sym_old_command_definition] = STATE(132), - [sym_let_command_definition] = STATE(132), - [sym_paired_delimiter_definition] = STATE(132), - [sym_environment_definition] = STATE(132), - [sym_glossary_entry_definition] = STATE(132), - [sym_glossary_entry_reference] = STATE(132), - [sym_acronym_definition] = STATE(132), - [sym_acronym_reference] = STATE(132), - [sym_theorem_definition] = STATE(132), - [sym_color_definition] = STATE(132), - [sym_color_set_definition] = STATE(132), - [sym_color_reference] = STATE(132), - [sym_tikz_library_import] = STATE(132), - [sym_text_mode] = STATE(132), - [aux_sym__section_repeat3] = STATE(338), - [aux_sym__section_repeat4] = STATE(337), - [aux_sym__section_repeat5] = STATE(336), - [aux_sym__section_repeat6] = STATE(335), - [aux_sym__section_repeat7] = STATE(334), - [aux_sym__section_repeat8] = STATE(333), - [aux_sym_part_repeat1] = STATE(132), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1921), + [145] = { + [sym_block_comment] = STATE(144), + [sym__flat_content] = STATE(144), + [sym__text_with_env_content] = STATE(144), + [sym__text_content] = STATE(144), + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(371), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(370), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(369), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(368), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(366), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(363), + [sym_curly_group] = STATE(144), + [sym_text] = STATE(144), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(144), + [sym_inline_formula] = STATE(144), + [sym_math_set] = STATE(144), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(144), + [sym_comment_environment] = STATE(144), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(144), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(144), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(144), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(144), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(144), + [sym_generic_command] = STATE(144), + [sym_title_declaration] = STATE(144), + [sym_author_declaration] = STATE(144), + [sym_package_include] = STATE(144), + [sym_class_include] = STATE(144), + [sym_latex_include] = STATE(144), + [sym_biblatex_include] = STATE(144), + [sym_bibtex_include] = STATE(144), + [sym_graphics_include] = STATE(144), + [sym_svg_include] = STATE(144), + [sym_inkscape_include] = STATE(144), + [sym_verbatim_include] = STATE(144), + [sym_import_include] = STATE(144), + [sym_caption] = STATE(144), + [sym_citation] = STATE(144), + [sym_label_definition] = STATE(144), + [sym_label_reference] = STATE(144), + [sym_label_reference_range] = STATE(144), + [sym_label_number] = STATE(144), + [sym_new_command_definition] = STATE(144), + [sym_old_command_definition] = STATE(144), + [sym_let_command_definition] = STATE(144), + [sym_paired_delimiter_definition] = STATE(144), + [sym_environment_definition] = STATE(144), + [sym_glossary_entry_definition] = STATE(144), + [sym_glossary_entry_reference] = STATE(144), + [sym_acronym_definition] = STATE(144), + [sym_acronym_reference] = STATE(144), + [sym_theorem_definition] = STATE(144), + [sym_color_definition] = STATE(144), + [sym_color_set_definition] = STATE(144), + [sym_color_reference] = STATE(144), + [sym_tikz_library_import] = STATE(144), + [sym_text_mode] = STATE(144), + [aux_sym__section_repeat3] = STATE(371), + [aux_sym__section_repeat4] = STATE(370), + [aux_sym__section_repeat5] = STATE(369), + [aux_sym__section_repeat6] = STATE(368), + [aux_sym__section_repeat7] = STATE(366), + [aux_sym__section_repeat8] = STATE(363), + [aux_sym_part_repeat1] = STATE(144), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2003), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_RBRACK] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_BSLASHpart] = ACTIONS(1925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2005), + [anon_sym_COMMA] = ACTIONS(2005), + [anon_sym_EQ] = ACTIONS(2005), + [anon_sym_BSLASHpart] = ACTIONS(2007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddpart] = ACTIONS(2007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHchapter] = ACTIONS(2007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddchap] = ACTIONS(2007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2003), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -65684,7 +71357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2003), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -65705,3131 +71378,3167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [134] = { - [sym_block_comment] = STATE(139), - [sym__flat_content] = STATE(139), - [sym__text_with_env_content] = STATE(139), - [sym__text_content] = STATE(139), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(426), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(427), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(455), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(555), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(557), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(558), - [sym_curly_group] = STATE(139), - [sym_text] = STATE(139), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(139), - [sym_inline_formula] = STATE(139), - [sym_math_set] = STATE(139), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(139), - [sym_comment_environment] = STATE(139), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(139), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(139), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(139), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(139), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(139), - [sym_generic_command] = STATE(139), - [sym_package_include] = STATE(139), - [sym_class_include] = STATE(139), - [sym_latex_include] = STATE(139), - [sym_biblatex_include] = STATE(139), - [sym_bibtex_include] = STATE(139), - [sym_graphics_include] = STATE(139), - [sym_svg_include] = STATE(139), - [sym_inkscape_include] = STATE(139), - [sym_verbatim_include] = STATE(139), - [sym_import_include] = STATE(139), - [sym_caption] = STATE(139), - [sym_citation] = STATE(139), - [sym_label_definition] = STATE(139), - [sym_label_reference] = STATE(139), - [sym_label_reference_range] = STATE(139), - [sym_label_number] = STATE(139), - [sym_new_command_definition] = STATE(139), - [sym_old_command_definition] = STATE(139), - [sym_let_command_definition] = STATE(139), - [sym_paired_delimiter_definition] = STATE(139), - [sym_environment_definition] = STATE(139), - [sym_glossary_entry_definition] = STATE(139), - [sym_glossary_entry_reference] = STATE(139), - [sym_acronym_definition] = STATE(139), - [sym_acronym_reference] = STATE(139), - [sym_theorem_definition] = STATE(139), - [sym_color_definition] = STATE(139), - [sym_color_set_definition] = STATE(139), - [sym_color_reference] = STATE(139), - [sym_tikz_library_import] = STATE(139), - [sym_text_mode] = STATE(139), - [aux_sym__section_repeat3] = STATE(426), - [aux_sym__section_repeat4] = STATE(427), - [aux_sym__section_repeat5] = STATE(455), - [aux_sym__section_repeat6] = STATE(555), - [aux_sym__section_repeat7] = STATE(557), - [aux_sym__section_repeat8] = STATE(558), - [aux_sym_part_repeat1] = STATE(139), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_BSLASHpart] = ACTIONS(1925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [135] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(367), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(365), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(363), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(360), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(367), - [aux_sym__section_repeat5] = STATE(365), - [aux_sym__section_repeat6] = STATE(363), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(360), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [146] = { + [sym_block_comment] = STATE(151), + [sym__flat_content] = STATE(151), + [sym__text_with_env_content] = STATE(151), + [sym__text_content] = STATE(151), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(624), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(623), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(621), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(616), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(615), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(614), + [sym_curly_group] = STATE(151), + [sym_text] = STATE(151), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(151), + [sym_inline_formula] = STATE(151), + [sym_math_set] = STATE(151), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(151), + [sym_comment_environment] = STATE(151), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(151), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(151), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(151), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(151), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(151), + [sym_generic_command] = STATE(151), + [sym_title_declaration] = STATE(151), + [sym_author_declaration] = STATE(151), + [sym_package_include] = STATE(151), + [sym_class_include] = STATE(151), + [sym_latex_include] = STATE(151), + [sym_biblatex_include] = STATE(151), + [sym_bibtex_include] = STATE(151), + [sym_graphics_include] = STATE(151), + [sym_svg_include] = STATE(151), + [sym_inkscape_include] = STATE(151), + [sym_verbatim_include] = STATE(151), + [sym_import_include] = STATE(151), + [sym_caption] = STATE(151), + [sym_citation] = STATE(151), + [sym_label_definition] = STATE(151), + [sym_label_reference] = STATE(151), + [sym_label_reference_range] = STATE(151), + [sym_label_number] = STATE(151), + [sym_new_command_definition] = STATE(151), + [sym_old_command_definition] = STATE(151), + [sym_let_command_definition] = STATE(151), + [sym_paired_delimiter_definition] = STATE(151), + [sym_environment_definition] = STATE(151), + [sym_glossary_entry_definition] = STATE(151), + [sym_glossary_entry_reference] = STATE(151), + [sym_acronym_definition] = STATE(151), + [sym_acronym_reference] = STATE(151), + [sym_theorem_definition] = STATE(151), + [sym_color_definition] = STATE(151), + [sym_color_set_definition] = STATE(151), + [sym_color_reference] = STATE(151), + [sym_tikz_library_import] = STATE(151), + [sym_text_mode] = STATE(151), + [aux_sym__section_repeat3] = STATE(624), + [aux_sym__section_repeat4] = STATE(623), + [aux_sym__section_repeat5] = STATE(621), + [aux_sym__section_repeat6] = STATE(616), + [aux_sym__section_repeat7] = STATE(615), + [aux_sym__section_repeat8] = STATE(614), + [aux_sym_part_repeat1] = STATE(151), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(2009), + [anon_sym_EQ] = ACTIONS(2009), + [anon_sym_BSLASHpart] = ACTIONS(2007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddpart] = ACTIONS(2007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHchapter] = ACTIONS(2007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddchap] = ACTIONS(2007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2003), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(2007), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [136] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(390), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(388), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(387), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(386), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(385), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(384), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat3] = STATE(390), - [aux_sym__section_repeat4] = STATE(388), - [aux_sym__section_repeat5] = STATE(387), - [aux_sym__section_repeat6] = STATE(386), - [aux_sym__section_repeat7] = STATE(385), - [aux_sym__section_repeat8] = STATE(384), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [147] = { + [sym_block_comment] = STATE(150), + [sym__flat_content] = STATE(150), + [sym__text_with_env_content] = STATE(150), + [sym__text_content] = STATE(150), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(405), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(150), + [sym_text] = STATE(150), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(150), + [sym_inline_formula] = STATE(150), + [sym_math_set] = STATE(150), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(150), + [sym_comment_environment] = STATE(150), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(150), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(150), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(150), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(150), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(150), + [sym_generic_command] = STATE(150), + [sym_title_declaration] = STATE(150), + [sym_author_declaration] = STATE(150), + [sym_package_include] = STATE(150), + [sym_class_include] = STATE(150), + [sym_latex_include] = STATE(150), + [sym_biblatex_include] = STATE(150), + [sym_bibtex_include] = STATE(150), + [sym_graphics_include] = STATE(150), + [sym_svg_include] = STATE(150), + [sym_inkscape_include] = STATE(150), + [sym_verbatim_include] = STATE(150), + [sym_import_include] = STATE(150), + [sym_caption] = STATE(150), + [sym_citation] = STATE(150), + [sym_label_definition] = STATE(150), + [sym_label_reference] = STATE(150), + [sym_label_reference_range] = STATE(150), + [sym_label_number] = STATE(150), + [sym_new_command_definition] = STATE(150), + [sym_old_command_definition] = STATE(150), + [sym_let_command_definition] = STATE(150), + [sym_paired_delimiter_definition] = STATE(150), + [sym_environment_definition] = STATE(150), + [sym_glossary_entry_definition] = STATE(150), + [sym_glossary_entry_reference] = STATE(150), + [sym_acronym_definition] = STATE(150), + [sym_acronym_reference] = STATE(150), + [sym_theorem_definition] = STATE(150), + [sym_color_definition] = STATE(150), + [sym_color_set_definition] = STATE(150), + [sym_color_reference] = STATE(150), + [sym_tikz_library_import] = STATE(150), + [sym_text_mode] = STATE(150), + [aux_sym__section_repeat3] = STATE(405), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_part_repeat1] = STATE(150), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_RBRACK] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(2011), + [anon_sym_EQ] = ACTIONS(2011), + [anon_sym_BSLASHpart] = ACTIONS(2007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddpart] = ACTIONS(2007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHchapter] = ACTIONS(2007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddchap] = ACTIONS(2007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2003), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2003), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [137] = { - [sym_block_comment] = STATE(136), - [sym__flat_content] = STATE(136), - [sym__text_with_env_content] = STATE(136), - [sym__text_content] = STATE(136), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(537), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(536), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(535), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(534), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(533), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(531), - [sym_curly_group] = STATE(136), - [sym_text] = STATE(136), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(136), - [sym_inline_formula] = STATE(136), - [sym_math_set] = STATE(136), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(136), - [sym_comment_environment] = STATE(136), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(136), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(136), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(136), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(136), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(136), - [sym_generic_command] = STATE(136), - [sym_package_include] = STATE(136), - [sym_class_include] = STATE(136), - [sym_latex_include] = STATE(136), - [sym_biblatex_include] = STATE(136), - [sym_bibtex_include] = STATE(136), - [sym_graphics_include] = STATE(136), - [sym_svg_include] = STATE(136), - [sym_inkscape_include] = STATE(136), - [sym_verbatim_include] = STATE(136), - [sym_import_include] = STATE(136), - [sym_caption] = STATE(136), - [sym_citation] = STATE(136), - [sym_label_definition] = STATE(136), - [sym_label_reference] = STATE(136), - [sym_label_reference_range] = STATE(136), - [sym_label_number] = STATE(136), - [sym_new_command_definition] = STATE(136), - [sym_old_command_definition] = STATE(136), - [sym_let_command_definition] = STATE(136), - [sym_paired_delimiter_definition] = STATE(136), - [sym_environment_definition] = STATE(136), - [sym_glossary_entry_definition] = STATE(136), - [sym_glossary_entry_reference] = STATE(136), - [sym_acronym_definition] = STATE(136), - [sym_acronym_reference] = STATE(136), - [sym_theorem_definition] = STATE(136), - [sym_color_definition] = STATE(136), - [sym_color_set_definition] = STATE(136), - [sym_color_reference] = STATE(136), - [sym_tikz_library_import] = STATE(136), - [sym_text_mode] = STATE(136), - [aux_sym__section_repeat3] = STATE(537), - [aux_sym__section_repeat4] = STATE(536), - [aux_sym__section_repeat5] = STATE(535), - [aux_sym__section_repeat6] = STATE(534), - [aux_sym__section_repeat7] = STATE(533), - [aux_sym__section_repeat8] = STATE(531), - [aux_sym_part_repeat1] = STATE(136), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_RBRACK] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1929), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_BSLASHpart] = ACTIONS(1925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [148] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(588), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(589), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(590), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(591), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(592), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(593), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat3] = STATE(588), + [aux_sym__section_repeat4] = STATE(589), + [aux_sym__section_repeat5] = STATE(590), + [aux_sym__section_repeat6] = STATE(591), + [aux_sym__section_repeat7] = STATE(592), + [aux_sym__section_repeat8] = STATE(593), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [138] = { - [sym_block_comment] = STATE(140), - [sym__flat_content] = STATE(140), - [sym__text_with_env_content] = STATE(140), - [sym__text_content] = STATE(140), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(493), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(494), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(495), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(496), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(497), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(498), - [sym_curly_group] = STATE(140), - [sym_text] = STATE(140), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(140), - [sym_inline_formula] = STATE(140), - [sym_math_set] = STATE(140), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(140), - [sym_comment_environment] = STATE(140), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(140), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(140), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(140), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(140), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(140), - [sym_generic_command] = STATE(140), - [sym_package_include] = STATE(140), - [sym_class_include] = STATE(140), - [sym_latex_include] = STATE(140), - [sym_biblatex_include] = STATE(140), - [sym_bibtex_include] = STATE(140), - [sym_graphics_include] = STATE(140), - [sym_svg_include] = STATE(140), - [sym_inkscape_include] = STATE(140), - [sym_verbatim_include] = STATE(140), - [sym_import_include] = STATE(140), - [sym_caption] = STATE(140), - [sym_citation] = STATE(140), - [sym_label_definition] = STATE(140), - [sym_label_reference] = STATE(140), - [sym_label_reference_range] = STATE(140), - [sym_label_number] = STATE(140), - [sym_new_command_definition] = STATE(140), - [sym_old_command_definition] = STATE(140), - [sym_let_command_definition] = STATE(140), - [sym_paired_delimiter_definition] = STATE(140), - [sym_environment_definition] = STATE(140), - [sym_glossary_entry_definition] = STATE(140), - [sym_glossary_entry_reference] = STATE(140), - [sym_acronym_definition] = STATE(140), - [sym_acronym_reference] = STATE(140), - [sym_theorem_definition] = STATE(140), - [sym_color_definition] = STATE(140), - [sym_color_set_definition] = STATE(140), - [sym_color_reference] = STATE(140), - [sym_tikz_library_import] = STATE(140), - [sym_text_mode] = STATE(140), - [aux_sym__section_repeat3] = STATE(493), - [aux_sym__section_repeat4] = STATE(494), - [aux_sym__section_repeat5] = STATE(495), - [aux_sym__section_repeat6] = STATE(496), - [aux_sym__section_repeat7] = STATE(497), - [aux_sym__section_repeat8] = STATE(498), - [aux_sym_part_repeat1] = STATE(140), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_RBRACK] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_EQ] = ACTIONS(1931), - [anon_sym_BSLASHpart] = ACTIONS(1925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [149] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(436), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(435), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(434), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(433), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(432), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(431), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat3] = STATE(436), + [aux_sym__section_repeat4] = STATE(435), + [aux_sym__section_repeat5] = STATE(434), + [aux_sym__section_repeat6] = STATE(433), + [aux_sym__section_repeat7] = STATE(432), + [aux_sym__section_repeat8] = STATE(431), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [139] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(628), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(346), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(626), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(625), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(624), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(623), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat3] = STATE(628), - [aux_sym__section_repeat4] = STATE(346), - [aux_sym__section_repeat5] = STATE(626), - [aux_sym__section_repeat6] = STATE(625), - [aux_sym__section_repeat7] = STATE(624), - [aux_sym__section_repeat8] = STATE(623), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), + [150] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(656), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(657), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(658), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(659), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(660), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(662), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat3] = STATE(656), + [aux_sym__section_repeat4] = STATE(657), + [aux_sym__section_repeat5] = STATE(658), + [aux_sym__section_repeat6] = STATE(659), + [aux_sym__section_repeat7] = STATE(660), + [aux_sym__section_repeat8] = STATE(662), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [140] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(570), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(571), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(572), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(573), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(574), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(575), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat3] = STATE(570), - [aux_sym__section_repeat4] = STATE(571), - [aux_sym__section_repeat5] = STATE(572), - [aux_sym__section_repeat6] = STATE(573), - [aux_sym__section_repeat7] = STATE(574), - [aux_sym__section_repeat8] = STATE(575), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [151] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(491), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(490), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(489), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(488), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(487), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(486), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat3] = STATE(491), + [aux_sym__section_repeat4] = STATE(490), + [aux_sym__section_repeat5] = STATE(489), + [aux_sym__section_repeat6] = STATE(488), + [aux_sym__section_repeat7] = STATE(487), + [aux_sym__section_repeat8] = STATE(486), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [141] = { - [sym_block_comment] = STATE(135), - [sym__flat_content] = STATE(135), - [sym__text_with_env_content] = STATE(135), - [sym__text_content] = STATE(135), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(475), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(474), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(473), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(472), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(471), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(470), - [sym_curly_group] = STATE(135), - [sym_text] = STATE(135), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(135), - [sym_inline_formula] = STATE(135), - [sym_math_set] = STATE(135), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(135), - [sym_comment_environment] = STATE(135), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(135), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(135), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(135), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(135), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(135), - [sym_generic_command] = STATE(135), - [sym_package_include] = STATE(135), - [sym_class_include] = STATE(135), - [sym_latex_include] = STATE(135), - [sym_biblatex_include] = STATE(135), - [sym_bibtex_include] = STATE(135), - [sym_graphics_include] = STATE(135), - [sym_svg_include] = STATE(135), - [sym_inkscape_include] = STATE(135), - [sym_verbatim_include] = STATE(135), - [sym_import_include] = STATE(135), - [sym_caption] = STATE(135), - [sym_citation] = STATE(135), - [sym_label_definition] = STATE(135), - [sym_label_reference] = STATE(135), - [sym_label_reference_range] = STATE(135), - [sym_label_number] = STATE(135), - [sym_new_command_definition] = STATE(135), - [sym_old_command_definition] = STATE(135), - [sym_let_command_definition] = STATE(135), - [sym_paired_delimiter_definition] = STATE(135), - [sym_environment_definition] = STATE(135), - [sym_glossary_entry_definition] = STATE(135), - [sym_glossary_entry_reference] = STATE(135), - [sym_acronym_definition] = STATE(135), - [sym_acronym_reference] = STATE(135), - [sym_theorem_definition] = STATE(135), - [sym_color_definition] = STATE(135), - [sym_color_set_definition] = STATE(135), - [sym_color_reference] = STATE(135), - [sym_tikz_library_import] = STATE(135), - [sym_text_mode] = STATE(135), - [aux_sym__section_repeat3] = STATE(475), - [aux_sym__section_repeat4] = STATE(474), - [aux_sym__section_repeat5] = STATE(473), - [aux_sym__section_repeat6] = STATE(472), - [aux_sym__section_repeat7] = STATE(471), - [aux_sym__section_repeat8] = STATE(470), - [aux_sym_part_repeat1] = STATE(135), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_RBRACK] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_EQ] = ACTIONS(1933), - [anon_sym_BSLASHpart] = ACTIONS(1925), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddpart] = ACTIONS(1925), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), - [anon_sym_BSLASHchapter] = ACTIONS(1925), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), - [anon_sym_BSLASHaddchap] = ACTIONS(1925), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [152] = { + [sym_block_comment] = STATE(148), + [sym__flat_content] = STATE(148), + [sym__text_with_env_content] = STATE(148), + [sym__text_content] = STATE(148), + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(509), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(510), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(511), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(512), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(513), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(514), + [sym_curly_group] = STATE(148), + [sym_text] = STATE(148), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(148), + [sym_inline_formula] = STATE(148), + [sym_math_set] = STATE(148), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(148), + [sym_comment_environment] = STATE(148), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(148), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(148), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(148), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(148), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(148), + [sym_generic_command] = STATE(148), + [sym_title_declaration] = STATE(148), + [sym_author_declaration] = STATE(148), + [sym_package_include] = STATE(148), + [sym_class_include] = STATE(148), + [sym_latex_include] = STATE(148), + [sym_biblatex_include] = STATE(148), + [sym_bibtex_include] = STATE(148), + [sym_graphics_include] = STATE(148), + [sym_svg_include] = STATE(148), + [sym_inkscape_include] = STATE(148), + [sym_verbatim_include] = STATE(148), + [sym_import_include] = STATE(148), + [sym_caption] = STATE(148), + [sym_citation] = STATE(148), + [sym_label_definition] = STATE(148), + [sym_label_reference] = STATE(148), + [sym_label_reference_range] = STATE(148), + [sym_label_number] = STATE(148), + [sym_new_command_definition] = STATE(148), + [sym_old_command_definition] = STATE(148), + [sym_let_command_definition] = STATE(148), + [sym_paired_delimiter_definition] = STATE(148), + [sym_environment_definition] = STATE(148), + [sym_glossary_entry_definition] = STATE(148), + [sym_glossary_entry_reference] = STATE(148), + [sym_acronym_definition] = STATE(148), + [sym_acronym_reference] = STATE(148), + [sym_theorem_definition] = STATE(148), + [sym_color_definition] = STATE(148), + [sym_color_set_definition] = STATE(148), + [sym_color_reference] = STATE(148), + [sym_tikz_library_import] = STATE(148), + [sym_text_mode] = STATE(148), + [aux_sym__section_repeat3] = STATE(509), + [aux_sym__section_repeat4] = STATE(510), + [aux_sym__section_repeat5] = STATE(511), + [aux_sym__section_repeat6] = STATE(512), + [aux_sym__section_repeat7] = STATE(513), + [aux_sym__section_repeat8] = STATE(514), + [aux_sym_part_repeat1] = STATE(148), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_RBRACK] = ACTIONS(2013), + [anon_sym_COMMA] = ACTIONS(2013), + [anon_sym_EQ] = ACTIONS(2013), + [anon_sym_BSLASHpart] = ACTIONS(2007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddpart] = ACTIONS(2007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHchapter] = ACTIONS(2007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddchap] = ACTIONS(2007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2003), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1925), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [142] = { - [sym_block_comment] = STATE(143), - [sym__flat_content] = STATE(143), - [sym__text_with_env_content] = STATE(143), - [sym__text_content] = STATE(143), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(332), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(331), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(330), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(329), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(328), - [sym_curly_group] = STATE(143), - [sym_text] = STATE(143), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(143), - [sym_inline_formula] = STATE(143), - [sym_math_set] = STATE(143), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(143), - [sym_comment_environment] = STATE(143), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(143), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(143), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(143), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(143), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(143), - [sym_generic_command] = STATE(143), - [sym_package_include] = STATE(143), - [sym_class_include] = STATE(143), - [sym_latex_include] = STATE(143), - [sym_biblatex_include] = STATE(143), - [sym_bibtex_include] = STATE(143), - [sym_graphics_include] = STATE(143), - [sym_svg_include] = STATE(143), - [sym_inkscape_include] = STATE(143), - [sym_verbatim_include] = STATE(143), - [sym_import_include] = STATE(143), - [sym_caption] = STATE(143), - [sym_citation] = STATE(143), - [sym_label_definition] = STATE(143), - [sym_label_reference] = STATE(143), - [sym_label_reference_range] = STATE(143), - [sym_label_number] = STATE(143), - [sym_new_command_definition] = STATE(143), - [sym_old_command_definition] = STATE(143), - [sym_let_command_definition] = STATE(143), - [sym_paired_delimiter_definition] = STATE(143), - [sym_environment_definition] = STATE(143), - [sym_glossary_entry_definition] = STATE(143), - [sym_glossary_entry_reference] = STATE(143), - [sym_acronym_definition] = STATE(143), - [sym_acronym_reference] = STATE(143), - [sym_theorem_definition] = STATE(143), - [sym_color_definition] = STATE(143), - [sym_color_set_definition] = STATE(143), - [sym_color_reference] = STATE(143), - [sym_tikz_library_import] = STATE(143), - [sym_text_mode] = STATE(143), - [aux_sym__section_repeat4] = STATE(332), - [aux_sym__section_repeat5] = STATE(331), - [aux_sym__section_repeat6] = STATE(330), - [aux_sym__section_repeat7] = STATE(329), - [aux_sym__section_repeat8] = STATE(328), - [aux_sym_part_repeat1] = STATE(143), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1935), + [153] = { + [sym_block_comment] = STATE(149), + [sym__flat_content] = STATE(149), + [sym__text_with_env_content] = STATE(149), + [sym__text_content] = STATE(149), + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(626), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(625), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(622), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(620), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(619), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(618), + [sym_curly_group] = STATE(149), + [sym_text] = STATE(149), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(149), + [sym_inline_formula] = STATE(149), + [sym_math_set] = STATE(149), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(149), + [sym_comment_environment] = STATE(149), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(149), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(149), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(149), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(149), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(149), + [sym_generic_command] = STATE(149), + [sym_title_declaration] = STATE(149), + [sym_author_declaration] = STATE(149), + [sym_package_include] = STATE(149), + [sym_class_include] = STATE(149), + [sym_latex_include] = STATE(149), + [sym_biblatex_include] = STATE(149), + [sym_bibtex_include] = STATE(149), + [sym_graphics_include] = STATE(149), + [sym_svg_include] = STATE(149), + [sym_inkscape_include] = STATE(149), + [sym_verbatim_include] = STATE(149), + [sym_import_include] = STATE(149), + [sym_caption] = STATE(149), + [sym_citation] = STATE(149), + [sym_label_definition] = STATE(149), + [sym_label_reference] = STATE(149), + [sym_label_reference_range] = STATE(149), + [sym_label_number] = STATE(149), + [sym_new_command_definition] = STATE(149), + [sym_old_command_definition] = STATE(149), + [sym_let_command_definition] = STATE(149), + [sym_paired_delimiter_definition] = STATE(149), + [sym_environment_definition] = STATE(149), + [sym_glossary_entry_definition] = STATE(149), + [sym_glossary_entry_reference] = STATE(149), + [sym_acronym_definition] = STATE(149), + [sym_acronym_reference] = STATE(149), + [sym_theorem_definition] = STATE(149), + [sym_color_definition] = STATE(149), + [sym_color_set_definition] = STATE(149), + [sym_color_reference] = STATE(149), + [sym_tikz_library_import] = STATE(149), + [sym_text_mode] = STATE(149), + [aux_sym__section_repeat3] = STATE(626), + [aux_sym__section_repeat4] = STATE(625), + [aux_sym__section_repeat5] = STATE(622), + [aux_sym__section_repeat6] = STATE(620), + [aux_sym__section_repeat7] = STATE(619), + [aux_sym__section_repeat8] = STATE(618), + [aux_sym_part_repeat1] = STATE(149), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_RBRACK] = ACTIONS(2015), + [anon_sym_COMMA] = ACTIONS(2015), + [anon_sym_EQ] = ACTIONS(2015), + [anon_sym_BSLASHpart] = ACTIONS(2007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddpart] = ACTIONS(2007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2003), + [anon_sym_BSLASHchapter] = ACTIONS(2007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2003), + [anon_sym_BSLASHaddchap] = ACTIONS(2007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2003), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2003), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [154] = { + [sym_block_comment] = STATE(155), + [sym__flat_content] = STATE(155), + [sym__text_with_env_content] = STATE(155), + [sym__text_content] = STATE(155), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(362), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(361), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(360), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(359), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(358), + [sym_curly_group] = STATE(155), + [sym_text] = STATE(155), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(155), + [sym_inline_formula] = STATE(155), + [sym_math_set] = STATE(155), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(155), + [sym_comment_environment] = STATE(155), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(155), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(155), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(155), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(155), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(155), + [sym_generic_command] = STATE(155), + [sym_title_declaration] = STATE(155), + [sym_author_declaration] = STATE(155), + [sym_package_include] = STATE(155), + [sym_class_include] = STATE(155), + [sym_latex_include] = STATE(155), + [sym_biblatex_include] = STATE(155), + [sym_bibtex_include] = STATE(155), + [sym_graphics_include] = STATE(155), + [sym_svg_include] = STATE(155), + [sym_inkscape_include] = STATE(155), + [sym_verbatim_include] = STATE(155), + [sym_import_include] = STATE(155), + [sym_caption] = STATE(155), + [sym_citation] = STATE(155), + [sym_label_definition] = STATE(155), + [sym_label_reference] = STATE(155), + [sym_label_reference_range] = STATE(155), + [sym_label_number] = STATE(155), + [sym_new_command_definition] = STATE(155), + [sym_old_command_definition] = STATE(155), + [sym_let_command_definition] = STATE(155), + [sym_paired_delimiter_definition] = STATE(155), + [sym_environment_definition] = STATE(155), + [sym_glossary_entry_definition] = STATE(155), + [sym_glossary_entry_reference] = STATE(155), + [sym_acronym_definition] = STATE(155), + [sym_acronym_reference] = STATE(155), + [sym_theorem_definition] = STATE(155), + [sym_color_definition] = STATE(155), + [sym_color_set_definition] = STATE(155), + [sym_color_reference] = STATE(155), + [sym_tikz_library_import] = STATE(155), + [sym_text_mode] = STATE(155), + [aux_sym__section_repeat4] = STATE(362), + [aux_sym__section_repeat5] = STATE(361), + [aux_sym__section_repeat6] = STATE(360), + [aux_sym__section_repeat7] = STATE(359), + [aux_sym__section_repeat8] = STATE(358), + [aux_sym_part_repeat1] = STATE(155), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2017), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_RBRACK] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1937), - [anon_sym_BSLASHpart] = ACTIONS(1939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddpart] = ACTIONS(1939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHchapter] = ACTIONS(1939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddchap] = ACTIONS(1939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsection] = ACTIONS(1939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddsec] = ACTIONS(1939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_BSLASHpart] = ACTIONS(2021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddpart] = ACTIONS(2021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHchapter] = ACTIONS(2021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddchap] = ACTIONS(2021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsection] = ACTIONS(2021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddsec] = ACTIONS(2021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2017), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -68841,7 +74550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(2017), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -68862,323 +74571,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [143] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(300), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(301), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(302), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(303), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(304), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat4] = STATE(300), - [aux_sym__section_repeat5] = STATE(301), - [aux_sym__section_repeat6] = STATE(302), - [aux_sym__section_repeat7] = STATE(303), - [aux_sym__section_repeat8] = STATE(304), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1941), + [155] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(331), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(347), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(312), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(313), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(314), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat4] = STATE(331), + [aux_sym__section_repeat5] = STATE(347), + [aux_sym__section_repeat6] = STATE(312), + [aux_sym__section_repeat7] = STATE(313), + [aux_sym__section_repeat8] = STATE(314), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2023), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -69190,7 +74903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(2023), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -69211,3106 +74924,3142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [144] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(382), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(377), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(375), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(373), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat4] = STATE(382), - [aux_sym__section_repeat5] = STATE(377), - [aux_sym__section_repeat6] = STATE(375), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(373), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [156] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(594), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(595), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(596), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(597), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(598), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat4] = STATE(594), + [aux_sym__section_repeat5] = STATE(595), + [aux_sym__section_repeat6] = STATE(596), + [aux_sym__section_repeat7] = STATE(597), + [aux_sym__section_repeat8] = STATE(598), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [145] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(576), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(577), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(578), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(579), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(580), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat4] = STATE(576), - [aux_sym__section_repeat5] = STATE(577), - [aux_sym__section_repeat6] = STATE(578), - [aux_sym__section_repeat7] = STATE(579), - [aux_sym__section_repeat8] = STATE(580), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [157] = { + [sym_block_comment] = STATE(158), + [sym__flat_content] = STATE(158), + [sym__text_with_env_content] = STATE(158), + [sym__text_content] = STATE(158), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(612), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(611), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(610), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(609), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(587), + [sym_curly_group] = STATE(158), + [sym_text] = STATE(158), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(158), + [sym_inline_formula] = STATE(158), + [sym_math_set] = STATE(158), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(158), + [sym_comment_environment] = STATE(158), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(158), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(158), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(158), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(158), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(158), + [sym_generic_command] = STATE(158), + [sym_title_declaration] = STATE(158), + [sym_author_declaration] = STATE(158), + [sym_package_include] = STATE(158), + [sym_class_include] = STATE(158), + [sym_latex_include] = STATE(158), + [sym_biblatex_include] = STATE(158), + [sym_bibtex_include] = STATE(158), + [sym_graphics_include] = STATE(158), + [sym_svg_include] = STATE(158), + [sym_inkscape_include] = STATE(158), + [sym_verbatim_include] = STATE(158), + [sym_import_include] = STATE(158), + [sym_caption] = STATE(158), + [sym_citation] = STATE(158), + [sym_label_definition] = STATE(158), + [sym_label_reference] = STATE(158), + [sym_label_reference_range] = STATE(158), + [sym_label_number] = STATE(158), + [sym_new_command_definition] = STATE(158), + [sym_old_command_definition] = STATE(158), + [sym_let_command_definition] = STATE(158), + [sym_paired_delimiter_definition] = STATE(158), + [sym_environment_definition] = STATE(158), + [sym_glossary_entry_definition] = STATE(158), + [sym_glossary_entry_reference] = STATE(158), + [sym_acronym_definition] = STATE(158), + [sym_acronym_reference] = STATE(158), + [sym_theorem_definition] = STATE(158), + [sym_color_definition] = STATE(158), + [sym_color_set_definition] = STATE(158), + [sym_color_reference] = STATE(158), + [sym_tikz_library_import] = STATE(158), + [sym_text_mode] = STATE(158), + [aux_sym__section_repeat4] = STATE(612), + [aux_sym__section_repeat5] = STATE(611), + [aux_sym__section_repeat6] = STATE(610), + [aux_sym__section_repeat7] = STATE(609), + [aux_sym__section_repeat8] = STATE(587), + [aux_sym_part_repeat1] = STATE(158), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_RBRACK] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_BSLASHpart] = ACTIONS(2021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddpart] = ACTIONS(2021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHchapter] = ACTIONS(2021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddchap] = ACTIONS(2021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsection] = ACTIONS(2021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddsec] = ACTIONS(2021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHend] = ACTIONS(2021), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [146] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(358), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(356), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(355), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(354), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(352), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat4] = STATE(358), - [aux_sym__section_repeat5] = STATE(356), - [aux_sym__section_repeat6] = STATE(355), - [aux_sym__section_repeat7] = STATE(354), - [aux_sym__section_repeat8] = STATE(352), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [158] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(485), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(484), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(483), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(482), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(481), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat4] = STATE(485), + [aux_sym__section_repeat5] = STATE(484), + [aux_sym__section_repeat6] = STATE(483), + [aux_sym__section_repeat7] = STATE(482), + [aux_sym__section_repeat8] = STATE(481), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [147] = { - [sym_block_comment] = STATE(145), - [sym__flat_content] = STATE(145), - [sym__text_with_env_content] = STATE(145), - [sym__text_content] = STATE(145), - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(500), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(501), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(502), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(503), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(504), - [sym_curly_group] = STATE(145), - [sym_text] = STATE(145), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(145), - [sym_inline_formula] = STATE(145), - [sym_math_set] = STATE(145), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(145), - [sym_comment_environment] = STATE(145), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(145), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(145), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(145), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(145), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(145), - [sym_generic_command] = STATE(145), - [sym_package_include] = STATE(145), - [sym_class_include] = STATE(145), - [sym_latex_include] = STATE(145), - [sym_biblatex_include] = STATE(145), - [sym_bibtex_include] = STATE(145), - [sym_graphics_include] = STATE(145), - [sym_svg_include] = STATE(145), - [sym_inkscape_include] = STATE(145), - [sym_verbatim_include] = STATE(145), - [sym_import_include] = STATE(145), - [sym_caption] = STATE(145), - [sym_citation] = STATE(145), - [sym_label_definition] = STATE(145), - [sym_label_reference] = STATE(145), - [sym_label_reference_range] = STATE(145), - [sym_label_number] = STATE(145), - [sym_new_command_definition] = STATE(145), - [sym_old_command_definition] = STATE(145), - [sym_let_command_definition] = STATE(145), - [sym_paired_delimiter_definition] = STATE(145), - [sym_environment_definition] = STATE(145), - [sym_glossary_entry_definition] = STATE(145), - [sym_glossary_entry_reference] = STATE(145), - [sym_acronym_definition] = STATE(145), - [sym_acronym_reference] = STATE(145), - [sym_theorem_definition] = STATE(145), - [sym_color_definition] = STATE(145), - [sym_color_set_definition] = STATE(145), - [sym_color_reference] = STATE(145), - [sym_tikz_library_import] = STATE(145), - [sym_text_mode] = STATE(145), - [aux_sym__section_repeat4] = STATE(500), - [aux_sym__section_repeat5] = STATE(501), - [aux_sym__section_repeat6] = STATE(502), - [aux_sym__section_repeat7] = STATE(503), - [aux_sym__section_repeat8] = STATE(504), - [aux_sym_part_repeat1] = STATE(145), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_RBRACK] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_EQ] = ACTIONS(1945), - [anon_sym_BSLASHpart] = ACTIONS(1939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddpart] = ACTIONS(1939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHchapter] = ACTIONS(1939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddchap] = ACTIONS(1939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsection] = ACTIONS(1939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddsec] = ACTIONS(1939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [159] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(430), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(429), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(428), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(427), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(426), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat4] = STATE(430), + [aux_sym__section_repeat5] = STATE(429), + [aux_sym__section_repeat6] = STATE(428), + [aux_sym__section_repeat7] = STATE(427), + [aux_sym__section_repeat8] = STATE(426), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [148] = { - [sym_block_comment] = STATE(151), - [sym__flat_content] = STATE(151), - [sym__text_with_env_content] = STATE(151), - [sym__text_content] = STATE(151), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(559), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(560), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(561), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(569), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(591), - [sym_curly_group] = STATE(151), - [sym_text] = STATE(151), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(151), - [sym_inline_formula] = STATE(151), - [sym_math_set] = STATE(151), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(151), - [sym_comment_environment] = STATE(151), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(151), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(151), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(151), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(151), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(151), - [sym_generic_command] = STATE(151), - [sym_package_include] = STATE(151), - [sym_class_include] = STATE(151), - [sym_latex_include] = STATE(151), - [sym_biblatex_include] = STATE(151), - [sym_bibtex_include] = STATE(151), - [sym_graphics_include] = STATE(151), - [sym_svg_include] = STATE(151), - [sym_inkscape_include] = STATE(151), - [sym_verbatim_include] = STATE(151), - [sym_import_include] = STATE(151), - [sym_caption] = STATE(151), - [sym_citation] = STATE(151), - [sym_label_definition] = STATE(151), - [sym_label_reference] = STATE(151), - [sym_label_reference_range] = STATE(151), - [sym_label_number] = STATE(151), - [sym_new_command_definition] = STATE(151), - [sym_old_command_definition] = STATE(151), - [sym_let_command_definition] = STATE(151), - [sym_paired_delimiter_definition] = STATE(151), - [sym_environment_definition] = STATE(151), - [sym_glossary_entry_definition] = STATE(151), - [sym_glossary_entry_reference] = STATE(151), - [sym_acronym_definition] = STATE(151), - [sym_acronym_reference] = STATE(151), - [sym_theorem_definition] = STATE(151), - [sym_color_definition] = STATE(151), - [sym_color_set_definition] = STATE(151), - [sym_color_reference] = STATE(151), - [sym_tikz_library_import] = STATE(151), - [sym_text_mode] = STATE(151), - [aux_sym__section_repeat4] = STATE(559), - [aux_sym__section_repeat5] = STATE(560), - [aux_sym__section_repeat6] = STATE(561), - [aux_sym__section_repeat7] = STATE(569), - [aux_sym__section_repeat8] = STATE(591), - [aux_sym_part_repeat1] = STATE(151), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [anon_sym_EQ] = ACTIONS(1947), - [anon_sym_BSLASHpart] = ACTIONS(1939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddpart] = ACTIONS(1939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHchapter] = ACTIONS(1939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddchap] = ACTIONS(1939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsection] = ACTIONS(1939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddsec] = ACTIONS(1939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1935), + [160] = { + [sym_block_comment] = STATE(156), + [sym__flat_content] = STATE(156), + [sym__text_with_env_content] = STATE(156), + [sym__text_content] = STATE(156), + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(516), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(517), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(518), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(519), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(520), + [sym_curly_group] = STATE(156), + [sym_text] = STATE(156), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(156), + [sym_inline_formula] = STATE(156), + [sym_math_set] = STATE(156), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(156), + [sym_comment_environment] = STATE(156), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(156), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(156), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(156), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(156), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(156), + [sym_generic_command] = STATE(156), + [sym_title_declaration] = STATE(156), + [sym_author_declaration] = STATE(156), + [sym_package_include] = STATE(156), + [sym_class_include] = STATE(156), + [sym_latex_include] = STATE(156), + [sym_biblatex_include] = STATE(156), + [sym_bibtex_include] = STATE(156), + [sym_graphics_include] = STATE(156), + [sym_svg_include] = STATE(156), + [sym_inkscape_include] = STATE(156), + [sym_verbatim_include] = STATE(156), + [sym_import_include] = STATE(156), + [sym_caption] = STATE(156), + [sym_citation] = STATE(156), + [sym_label_definition] = STATE(156), + [sym_label_reference] = STATE(156), + [sym_label_reference_range] = STATE(156), + [sym_label_number] = STATE(156), + [sym_new_command_definition] = STATE(156), + [sym_old_command_definition] = STATE(156), + [sym_let_command_definition] = STATE(156), + [sym_paired_delimiter_definition] = STATE(156), + [sym_environment_definition] = STATE(156), + [sym_glossary_entry_definition] = STATE(156), + [sym_glossary_entry_reference] = STATE(156), + [sym_acronym_definition] = STATE(156), + [sym_acronym_reference] = STATE(156), + [sym_theorem_definition] = STATE(156), + [sym_color_definition] = STATE(156), + [sym_color_set_definition] = STATE(156), + [sym_color_reference] = STATE(156), + [sym_tikz_library_import] = STATE(156), + [sym_text_mode] = STATE(156), + [aux_sym__section_repeat4] = STATE(516), + [aux_sym__section_repeat5] = STATE(517), + [aux_sym__section_repeat6] = STATE(518), + [aux_sym__section_repeat7] = STATE(519), + [aux_sym__section_repeat8] = STATE(520), + [aux_sym_part_repeat1] = STATE(156), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_RBRACK] = ACTIONS(2029), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2029), + [anon_sym_BSLASHpart] = ACTIONS(2021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddpart] = ACTIONS(2021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHchapter] = ACTIONS(2021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddchap] = ACTIONS(2021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsection] = ACTIONS(2021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddsec] = ACTIONS(2021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [149] = { - [sym_block_comment] = STATE(146), - [sym__flat_content] = STATE(146), - [sym__text_with_env_content] = STATE(146), - [sym__text_content] = STATE(146), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(468), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(467), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(466), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(465), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(463), - [sym_curly_group] = STATE(146), - [sym_text] = STATE(146), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(146), - [sym_inline_formula] = STATE(146), - [sym_math_set] = STATE(146), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(146), - [sym_comment_environment] = STATE(146), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(146), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(146), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(146), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(146), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(146), - [sym_generic_command] = STATE(146), - [sym_package_include] = STATE(146), - [sym_class_include] = STATE(146), - [sym_latex_include] = STATE(146), - [sym_biblatex_include] = STATE(146), - [sym_bibtex_include] = STATE(146), - [sym_graphics_include] = STATE(146), - [sym_svg_include] = STATE(146), - [sym_inkscape_include] = STATE(146), - [sym_verbatim_include] = STATE(146), - [sym_import_include] = STATE(146), - [sym_caption] = STATE(146), - [sym_citation] = STATE(146), - [sym_label_definition] = STATE(146), - [sym_label_reference] = STATE(146), - [sym_label_reference_range] = STATE(146), - [sym_label_number] = STATE(146), - [sym_new_command_definition] = STATE(146), - [sym_old_command_definition] = STATE(146), - [sym_let_command_definition] = STATE(146), - [sym_paired_delimiter_definition] = STATE(146), - [sym_environment_definition] = STATE(146), - [sym_glossary_entry_definition] = STATE(146), - [sym_glossary_entry_reference] = STATE(146), - [sym_acronym_definition] = STATE(146), - [sym_acronym_reference] = STATE(146), - [sym_theorem_definition] = STATE(146), - [sym_color_definition] = STATE(146), - [sym_color_set_definition] = STATE(146), - [sym_color_reference] = STATE(146), - [sym_tikz_library_import] = STATE(146), - [sym_text_mode] = STATE(146), - [aux_sym__section_repeat4] = STATE(468), - [aux_sym__section_repeat5] = STATE(467), - [aux_sym__section_repeat6] = STATE(466), - [aux_sym__section_repeat7] = STATE(465), - [aux_sym__section_repeat8] = STATE(463), - [aux_sym_part_repeat1] = STATE(146), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_RBRACK] = ACTIONS(1949), - [anon_sym_COMMA] = ACTIONS(1949), - [anon_sym_EQ] = ACTIONS(1949), - [anon_sym_BSLASHpart] = ACTIONS(1939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddpart] = ACTIONS(1939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHchapter] = ACTIONS(1939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddchap] = ACTIONS(1939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsection] = ACTIONS(1939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddsec] = ACTIONS(1939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [161] = { + [sym_block_comment] = STATE(163), + [sym__flat_content] = STATE(163), + [sym__text_with_env_content] = STATE(163), + [sym__text_content] = STATE(163), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(411), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(412), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(413), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(414), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(415), + [sym_curly_group] = STATE(163), + [sym_text] = STATE(163), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_math_set] = STATE(163), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(163), + [sym_comment_environment] = STATE(163), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(163), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(163), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(163), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(163), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(163), + [sym_generic_command] = STATE(163), + [sym_title_declaration] = STATE(163), + [sym_author_declaration] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_latex_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_bibtex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_svg_include] = STATE(163), + [sym_inkscape_include] = STATE(163), + [sym_verbatim_include] = STATE(163), + [sym_import_include] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_new_command_definition] = STATE(163), + [sym_old_command_definition] = STATE(163), + [sym_let_command_definition] = STATE(163), + [sym_paired_delimiter_definition] = STATE(163), + [sym_environment_definition] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_acronym_reference] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_color_definition] = STATE(163), + [sym_color_set_definition] = STATE(163), + [sym_color_reference] = STATE(163), + [sym_tikz_library_import] = STATE(163), + [sym_text_mode] = STATE(163), + [aux_sym__section_repeat4] = STATE(411), + [aux_sym__section_repeat5] = STATE(412), + [aux_sym__section_repeat6] = STATE(413), + [aux_sym__section_repeat7] = STATE(414), + [aux_sym__section_repeat8] = STATE(415), + [aux_sym_part_repeat1] = STATE(163), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_BSLASHpart] = ACTIONS(2021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddpart] = ACTIONS(2021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHchapter] = ACTIONS(2021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddchap] = ACTIONS(2021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsection] = ACTIONS(2021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddsec] = ACTIONS(2021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2017), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1939), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [150] = { - [sym_block_comment] = STATE(144), - [sym__flat_content] = STATE(144), - [sym__text_with_env_content] = STATE(144), - [sym__text_content] = STATE(144), - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(522), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(521), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(520), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(519), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(517), - [sym_curly_group] = STATE(144), - [sym_text] = STATE(144), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(144), - [sym_inline_formula] = STATE(144), - [sym_math_set] = STATE(144), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(144), - [sym_comment_environment] = STATE(144), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(144), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(144), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(144), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(144), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(144), - [sym_generic_command] = STATE(144), - [sym_package_include] = STATE(144), - [sym_class_include] = STATE(144), - [sym_latex_include] = STATE(144), - [sym_biblatex_include] = STATE(144), - [sym_bibtex_include] = STATE(144), - [sym_graphics_include] = STATE(144), - [sym_svg_include] = STATE(144), - [sym_inkscape_include] = STATE(144), - [sym_verbatim_include] = STATE(144), - [sym_import_include] = STATE(144), - [sym_caption] = STATE(144), - [sym_citation] = STATE(144), - [sym_label_definition] = STATE(144), - [sym_label_reference] = STATE(144), - [sym_label_reference_range] = STATE(144), - [sym_label_number] = STATE(144), - [sym_new_command_definition] = STATE(144), - [sym_old_command_definition] = STATE(144), - [sym_let_command_definition] = STATE(144), - [sym_paired_delimiter_definition] = STATE(144), - [sym_environment_definition] = STATE(144), - [sym_glossary_entry_definition] = STATE(144), - [sym_glossary_entry_reference] = STATE(144), - [sym_acronym_definition] = STATE(144), - [sym_acronym_reference] = STATE(144), - [sym_theorem_definition] = STATE(144), - [sym_color_definition] = STATE(144), - [sym_color_set_definition] = STATE(144), - [sym_color_reference] = STATE(144), - [sym_tikz_library_import] = STATE(144), - [sym_text_mode] = STATE(144), - [aux_sym__section_repeat4] = STATE(522), - [aux_sym__section_repeat5] = STATE(521), - [aux_sym__section_repeat6] = STATE(520), - [aux_sym__section_repeat7] = STATE(519), - [aux_sym__section_repeat8] = STATE(517), - [aux_sym_part_repeat1] = STATE(144), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_EQ] = ACTIONS(1951), - [anon_sym_BSLASHpart] = ACTIONS(1939), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddpart] = ACTIONS(1939), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1935), - [anon_sym_BSLASHchapter] = ACTIONS(1939), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddchap] = ACTIONS(1939), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsection] = ACTIONS(1939), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1935), - [anon_sym_BSLASHaddsec] = ACTIONS(1939), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1935), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1935), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [162] = { + [sym_block_comment] = STATE(159), + [sym__flat_content] = STATE(159), + [sym__text_with_env_content] = STATE(159), + [sym__text_content] = STATE(159), + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(617), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(613), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(579), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(578), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(577), + [sym_curly_group] = STATE(159), + [sym_text] = STATE(159), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(159), + [sym_inline_formula] = STATE(159), + [sym_math_set] = STATE(159), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(159), + [sym_comment_environment] = STATE(159), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(159), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(159), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(159), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(159), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(159), + [sym_generic_command] = STATE(159), + [sym_title_declaration] = STATE(159), + [sym_author_declaration] = STATE(159), + [sym_package_include] = STATE(159), + [sym_class_include] = STATE(159), + [sym_latex_include] = STATE(159), + [sym_biblatex_include] = STATE(159), + [sym_bibtex_include] = STATE(159), + [sym_graphics_include] = STATE(159), + [sym_svg_include] = STATE(159), + [sym_inkscape_include] = STATE(159), + [sym_verbatim_include] = STATE(159), + [sym_import_include] = STATE(159), + [sym_caption] = STATE(159), + [sym_citation] = STATE(159), + [sym_label_definition] = STATE(159), + [sym_label_reference] = STATE(159), + [sym_label_reference_range] = STATE(159), + [sym_label_number] = STATE(159), + [sym_new_command_definition] = STATE(159), + [sym_old_command_definition] = STATE(159), + [sym_let_command_definition] = STATE(159), + [sym_paired_delimiter_definition] = STATE(159), + [sym_environment_definition] = STATE(159), + [sym_glossary_entry_definition] = STATE(159), + [sym_glossary_entry_reference] = STATE(159), + [sym_acronym_definition] = STATE(159), + [sym_acronym_reference] = STATE(159), + [sym_theorem_definition] = STATE(159), + [sym_color_definition] = STATE(159), + [sym_color_set_definition] = STATE(159), + [sym_color_reference] = STATE(159), + [sym_tikz_library_import] = STATE(159), + [sym_text_mode] = STATE(159), + [aux_sym__section_repeat4] = STATE(617), + [aux_sym__section_repeat5] = STATE(613), + [aux_sym__section_repeat6] = STATE(579), + [aux_sym__section_repeat7] = STATE(578), + [aux_sym__section_repeat8] = STATE(577), + [aux_sym_part_repeat1] = STATE(159), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2033), + [anon_sym_BSLASHpart] = ACTIONS(2021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddpart] = ACTIONS(2021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2017), + [anon_sym_BSLASHchapter] = ACTIONS(2021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddchap] = ACTIONS(2021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsection] = ACTIONS(2021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2017), + [anon_sym_BSLASHaddsec] = ACTIONS(2021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2017), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2017), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [151] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(622), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(620), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(619), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(618), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(617), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat4] = STATE(622), - [aux_sym__section_repeat5] = STATE(620), - [aux_sym__section_repeat6] = STATE(619), - [aux_sym__section_repeat7] = STATE(618), - [aux_sym__section_repeat8] = STATE(617), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), + [163] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(663), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(664), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(665), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(666), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(667), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat4] = STATE(663), + [aux_sym__section_repeat5] = STATE(664), + [aux_sym__section_repeat6] = STATE(665), + [aux_sym__section_repeat7] = STATE(666), + [aux_sym__section_repeat8] = STATE(667), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [152] = { - [sym_block_comment] = STATE(153), - [sym__flat_content] = STATE(153), - [sym__text_with_env_content] = STATE(153), - [sym__text_content] = STATE(153), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(327), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(153), - [sym_text] = STATE(153), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(153), - [sym_inline_formula] = STATE(153), - [sym_math_set] = STATE(153), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(153), - [sym_comment_environment] = STATE(153), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(153), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(153), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(153), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(153), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(153), - [sym_generic_command] = STATE(153), - [sym_package_include] = STATE(153), - [sym_class_include] = STATE(153), - [sym_latex_include] = STATE(153), - [sym_biblatex_include] = STATE(153), - [sym_bibtex_include] = STATE(153), - [sym_graphics_include] = STATE(153), - [sym_svg_include] = STATE(153), - [sym_inkscape_include] = STATE(153), - [sym_verbatim_include] = STATE(153), - [sym_import_include] = STATE(153), - [sym_caption] = STATE(153), - [sym_citation] = STATE(153), - [sym_label_definition] = STATE(153), - [sym_label_reference] = STATE(153), - [sym_label_reference_range] = STATE(153), - [sym_label_number] = STATE(153), - [sym_new_command_definition] = STATE(153), - [sym_old_command_definition] = STATE(153), - [sym_let_command_definition] = STATE(153), - [sym_paired_delimiter_definition] = STATE(153), - [sym_environment_definition] = STATE(153), - [sym_glossary_entry_definition] = STATE(153), - [sym_glossary_entry_reference] = STATE(153), - [sym_acronym_definition] = STATE(153), - [sym_acronym_reference] = STATE(153), - [sym_theorem_definition] = STATE(153), - [sym_color_definition] = STATE(153), - [sym_color_set_definition] = STATE(153), - [sym_color_reference] = STATE(153), - [sym_tikz_library_import] = STATE(153), - [sym_text_mode] = STATE(153), - [aux_sym__section_repeat5] = STATE(327), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), - [aux_sym_part_repeat1] = STATE(153), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1953), + [164] = { + [sym_block_comment] = STATE(165), + [sym__flat_content] = STATE(165), + [sym__text_with_env_content] = STATE(165), + [sym__text_content] = STATE(165), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(356), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(354), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(351), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(348), + [sym_curly_group] = STATE(165), + [sym_text] = STATE(165), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(165), + [sym_inline_formula] = STATE(165), + [sym_math_set] = STATE(165), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(165), + [sym_comment_environment] = STATE(165), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(165), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(165), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(165), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(165), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(165), + [sym_generic_command] = STATE(165), + [sym_title_declaration] = STATE(165), + [sym_author_declaration] = STATE(165), + [sym_package_include] = STATE(165), + [sym_class_include] = STATE(165), + [sym_latex_include] = STATE(165), + [sym_biblatex_include] = STATE(165), + [sym_bibtex_include] = STATE(165), + [sym_graphics_include] = STATE(165), + [sym_svg_include] = STATE(165), + [sym_inkscape_include] = STATE(165), + [sym_verbatim_include] = STATE(165), + [sym_import_include] = STATE(165), + [sym_caption] = STATE(165), + [sym_citation] = STATE(165), + [sym_label_definition] = STATE(165), + [sym_label_reference] = STATE(165), + [sym_label_reference_range] = STATE(165), + [sym_label_number] = STATE(165), + [sym_new_command_definition] = STATE(165), + [sym_old_command_definition] = STATE(165), + [sym_let_command_definition] = STATE(165), + [sym_paired_delimiter_definition] = STATE(165), + [sym_environment_definition] = STATE(165), + [sym_glossary_entry_definition] = STATE(165), + [sym_glossary_entry_reference] = STATE(165), + [sym_acronym_definition] = STATE(165), + [sym_acronym_reference] = STATE(165), + [sym_theorem_definition] = STATE(165), + [sym_color_definition] = STATE(165), + [sym_color_set_definition] = STATE(165), + [sym_color_reference] = STATE(165), + [sym_tikz_library_import] = STATE(165), + [sym_text_mode] = STATE(165), + [aux_sym__section_repeat5] = STATE(356), + [aux_sym__section_repeat6] = STATE(354), + [aux_sym__section_repeat7] = STATE(351), + [aux_sym__section_repeat8] = STATE(348), + [aux_sym_part_repeat1] = STATE(165), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2035), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_EQ] = ACTIONS(1955), - [anon_sym_BSLASHpart] = ACTIONS(1957), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddpart] = ACTIONS(1957), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHchapter] = ACTIONS(1957), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddchap] = ACTIONS(1957), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsection] = ACTIONS(1957), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddsec] = ACTIONS(1957), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsection] = ACTIONS(1957), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_BSLASHpart] = ACTIONS(2039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddpart] = ACTIONS(2039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHchapter] = ACTIONS(2039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddchap] = ACTIONS(2039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsection] = ACTIONS(2039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddsec] = ACTIONS(2039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsection] = ACTIONS(2039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2035), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -72320,7 +78069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2035), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -72341,322 +78090,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [153] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(305), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(306), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(307), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(308), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat5] = STATE(305), - [aux_sym__section_repeat6] = STATE(306), - [aux_sym__section_repeat7] = STATE(307), - [aux_sym__section_repeat8] = STATE(308), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1959), + [165] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(315), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(316), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(317), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(318), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat5] = STATE(315), + [aux_sym__section_repeat6] = STATE(316), + [aux_sym__section_repeat7] = STATE(317), + [aux_sym__section_repeat8] = STATE(318), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2041), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -72666,7 +78419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(2041), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -72687,3081 +78440,3117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [154] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(370), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(368), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(366), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(370), - [aux_sym__section_repeat7] = STATE(368), - [aux_sym__section_repeat8] = STATE(366), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [166] = { + [sym_block_comment] = STATE(173), + [sym__flat_content] = STATE(173), + [sym__text_with_env_content] = STATE(173), + [sym__text_content] = STATE(173), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(572), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(568), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(567), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(564), + [sym_curly_group] = STATE(173), + [sym_text] = STATE(173), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(173), + [sym_inline_formula] = STATE(173), + [sym_math_set] = STATE(173), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(173), + [sym_comment_environment] = STATE(173), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(173), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(173), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(173), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(173), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(173), + [sym_generic_command] = STATE(173), + [sym_title_declaration] = STATE(173), + [sym_author_declaration] = STATE(173), + [sym_package_include] = STATE(173), + [sym_class_include] = STATE(173), + [sym_latex_include] = STATE(173), + [sym_biblatex_include] = STATE(173), + [sym_bibtex_include] = STATE(173), + [sym_graphics_include] = STATE(173), + [sym_svg_include] = STATE(173), + [sym_inkscape_include] = STATE(173), + [sym_verbatim_include] = STATE(173), + [sym_import_include] = STATE(173), + [sym_caption] = STATE(173), + [sym_citation] = STATE(173), + [sym_label_definition] = STATE(173), + [sym_label_reference] = STATE(173), + [sym_label_reference_range] = STATE(173), + [sym_label_number] = STATE(173), + [sym_new_command_definition] = STATE(173), + [sym_old_command_definition] = STATE(173), + [sym_let_command_definition] = STATE(173), + [sym_paired_delimiter_definition] = STATE(173), + [sym_environment_definition] = STATE(173), + [sym_glossary_entry_definition] = STATE(173), + [sym_glossary_entry_reference] = STATE(173), + [sym_acronym_definition] = STATE(173), + [sym_acronym_reference] = STATE(173), + [sym_theorem_definition] = STATE(173), + [sym_color_definition] = STATE(173), + [sym_color_set_definition] = STATE(173), + [sym_color_reference] = STATE(173), + [sym_tikz_library_import] = STATE(173), + [sym_text_mode] = STATE(173), + [aux_sym__section_repeat5] = STATE(572), + [aux_sym__section_repeat6] = STATE(568), + [aux_sym__section_repeat7] = STATE(567), + [aux_sym__section_repeat8] = STATE(564), + [aux_sym_part_repeat1] = STATE(173), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_RBRACK] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_BSLASHpart] = ACTIONS(2039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddpart] = ACTIONS(2039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHchapter] = ACTIONS(2039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddchap] = ACTIONS(2039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsection] = ACTIONS(2039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddsec] = ACTIONS(2039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsection] = ACTIONS(2039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [155] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(581), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(582), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(583), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(584), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat5] = STATE(581), - [aux_sym__section_repeat6] = STATE(582), - [aux_sym__section_repeat7] = STATE(583), - [aux_sym__section_repeat8] = STATE(584), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [167] = { + [sym_block_comment] = STATE(171), + [sym__flat_content] = STATE(171), + [sym__text_with_env_content] = STATE(171), + [sym__text_content] = STATE(171), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(522), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(523), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(524), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(525), + [sym_curly_group] = STATE(171), + [sym_text] = STATE(171), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(171), + [sym_inline_formula] = STATE(171), + [sym_math_set] = STATE(171), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(171), + [sym_comment_environment] = STATE(171), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(171), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(171), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(171), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(171), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(171), + [sym_generic_command] = STATE(171), + [sym_title_declaration] = STATE(171), + [sym_author_declaration] = STATE(171), + [sym_package_include] = STATE(171), + [sym_class_include] = STATE(171), + [sym_latex_include] = STATE(171), + [sym_biblatex_include] = STATE(171), + [sym_bibtex_include] = STATE(171), + [sym_graphics_include] = STATE(171), + [sym_svg_include] = STATE(171), + [sym_inkscape_include] = STATE(171), + [sym_verbatim_include] = STATE(171), + [sym_import_include] = STATE(171), + [sym_caption] = STATE(171), + [sym_citation] = STATE(171), + [sym_label_definition] = STATE(171), + [sym_label_reference] = STATE(171), + [sym_label_reference_range] = STATE(171), + [sym_label_number] = STATE(171), + [sym_new_command_definition] = STATE(171), + [sym_old_command_definition] = STATE(171), + [sym_let_command_definition] = STATE(171), + [sym_paired_delimiter_definition] = STATE(171), + [sym_environment_definition] = STATE(171), + [sym_glossary_entry_definition] = STATE(171), + [sym_glossary_entry_reference] = STATE(171), + [sym_acronym_definition] = STATE(171), + [sym_acronym_reference] = STATE(171), + [sym_theorem_definition] = STATE(171), + [sym_color_definition] = STATE(171), + [sym_color_set_definition] = STATE(171), + [sym_color_reference] = STATE(171), + [sym_tikz_library_import] = STATE(171), + [sym_text_mode] = STATE(171), + [aux_sym__section_repeat5] = STATE(522), + [aux_sym__section_repeat6] = STATE(523), + [aux_sym__section_repeat7] = STATE(524), + [aux_sym__section_repeat8] = STATE(525), + [aux_sym_part_repeat1] = STATE(171), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2047), + [anon_sym_BSLASHpart] = ACTIONS(2039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddpart] = ACTIONS(2039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHchapter] = ACTIONS(2039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddchap] = ACTIONS(2039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsection] = ACTIONS(2039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddsec] = ACTIONS(2039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsection] = ACTIONS(2039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [156] = { - [sym_block_comment] = STATE(154), - [sym__flat_content] = STATE(154), - [sym__text_with_env_content] = STATE(154), - [sym__text_content] = STATE(154), - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(514), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(510), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(505), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(499), - [sym_curly_group] = STATE(154), - [sym_text] = STATE(154), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(154), - [sym_inline_formula] = STATE(154), - [sym_math_set] = STATE(154), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(154), - [sym_comment_environment] = STATE(154), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(154), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(154), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(154), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(154), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(154), - [sym_generic_command] = STATE(154), - [sym_package_include] = STATE(154), - [sym_class_include] = STATE(154), - [sym_latex_include] = STATE(154), - [sym_biblatex_include] = STATE(154), - [sym_bibtex_include] = STATE(154), - [sym_graphics_include] = STATE(154), - [sym_svg_include] = STATE(154), - [sym_inkscape_include] = STATE(154), - [sym_verbatim_include] = STATE(154), - [sym_import_include] = STATE(154), - [sym_caption] = STATE(154), - [sym_citation] = STATE(154), - [sym_label_definition] = STATE(154), - [sym_label_reference] = STATE(154), - [sym_label_reference_range] = STATE(154), - [sym_label_number] = STATE(154), - [sym_new_command_definition] = STATE(154), - [sym_old_command_definition] = STATE(154), - [sym_let_command_definition] = STATE(154), - [sym_paired_delimiter_definition] = STATE(154), - [sym_environment_definition] = STATE(154), - [sym_glossary_entry_definition] = STATE(154), - [sym_glossary_entry_reference] = STATE(154), - [sym_acronym_definition] = STATE(154), - [sym_acronym_reference] = STATE(154), - [sym_theorem_definition] = STATE(154), - [sym_color_definition] = STATE(154), - [sym_color_set_definition] = STATE(154), - [sym_color_reference] = STATE(154), - [sym_tikz_library_import] = STATE(154), - [sym_text_mode] = STATE(154), - [aux_sym__section_repeat5] = STATE(514), - [aux_sym__section_repeat6] = STATE(510), - [aux_sym__section_repeat7] = STATE(505), - [aux_sym__section_repeat8] = STATE(499), - [aux_sym_part_repeat1] = STATE(154), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1963), - [anon_sym_EQ] = ACTIONS(1963), - [anon_sym_BSLASHpart] = ACTIONS(1957), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddpart] = ACTIONS(1957), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHchapter] = ACTIONS(1957), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddchap] = ACTIONS(1957), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsection] = ACTIONS(1957), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddsec] = ACTIONS(1957), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsection] = ACTIONS(1957), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1953), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [168] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(668), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(670), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(671), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(672), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat5] = STATE(668), + [aux_sym__section_repeat6] = STATE(670), + [aux_sym__section_repeat7] = STATE(671), + [aux_sym__section_repeat8] = STATE(672), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2041), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [157] = { - [sym_block_comment] = STATE(155), - [sym__flat_content] = STATE(155), - [sym__text_with_env_content] = STATE(155), - [sym__text_content] = STATE(155), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(506), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(507), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(508), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(509), - [sym_curly_group] = STATE(155), - [sym_text] = STATE(155), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(155), - [sym_inline_formula] = STATE(155), - [sym_math_set] = STATE(155), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(155), - [sym_comment_environment] = STATE(155), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(155), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(155), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(155), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(155), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(155), - [sym_generic_command] = STATE(155), - [sym_package_include] = STATE(155), - [sym_class_include] = STATE(155), - [sym_latex_include] = STATE(155), - [sym_biblatex_include] = STATE(155), - [sym_bibtex_include] = STATE(155), - [sym_graphics_include] = STATE(155), - [sym_svg_include] = STATE(155), - [sym_inkscape_include] = STATE(155), - [sym_verbatim_include] = STATE(155), - [sym_import_include] = STATE(155), - [sym_caption] = STATE(155), - [sym_citation] = STATE(155), - [sym_label_definition] = STATE(155), - [sym_label_reference] = STATE(155), - [sym_label_reference_range] = STATE(155), - [sym_label_number] = STATE(155), - [sym_new_command_definition] = STATE(155), - [sym_old_command_definition] = STATE(155), - [sym_let_command_definition] = STATE(155), - [sym_paired_delimiter_definition] = STATE(155), - [sym_environment_definition] = STATE(155), - [sym_glossary_entry_definition] = STATE(155), - [sym_glossary_entry_reference] = STATE(155), - [sym_acronym_definition] = STATE(155), - [sym_acronym_reference] = STATE(155), - [sym_theorem_definition] = STATE(155), - [sym_color_definition] = STATE(155), - [sym_color_set_definition] = STATE(155), - [sym_color_reference] = STATE(155), - [sym_tikz_library_import] = STATE(155), - [sym_text_mode] = STATE(155), - [aux_sym__section_repeat5] = STATE(506), - [aux_sym__section_repeat6] = STATE(507), - [aux_sym__section_repeat7] = STATE(508), - [aux_sym__section_repeat8] = STATE(509), - [aux_sym_part_repeat1] = STATE(155), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), + [169] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(480), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(479), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(477), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(476), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat5] = STATE(480), + [aux_sym__section_repeat6] = STATE(479), + [aux_sym__section_repeat7] = STATE(477), + [aux_sym__section_repeat8] = STATE(476), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_RBRACK] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_EQ] = ACTIONS(1965), - [anon_sym_BSLASHpart] = ACTIONS(1957), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddpart] = ACTIONS(1957), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHchapter] = ACTIONS(1957), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddchap] = ACTIONS(1957), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsection] = ACTIONS(1957), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddsec] = ACTIONS(1957), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsection] = ACTIONS(1957), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [158] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(351), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(349), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(552), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(407), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat5] = STATE(351), - [aux_sym__section_repeat6] = STATE(349), - [aux_sym__section_repeat7] = STATE(552), - [aux_sym__section_repeat8] = STATE(407), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [159] = { - [sym_block_comment] = STATE(158), - [sym__flat_content] = STATE(158), - [sym__text_with_env_content] = STATE(158), - [sym__text_content] = STATE(158), - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(461), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(459), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(456), - [sym_curly_group] = STATE(158), - [sym_text] = STATE(158), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(158), - [sym_inline_formula] = STATE(158), - [sym_math_set] = STATE(158), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(158), - [sym_comment_environment] = STATE(158), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(158), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(158), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(158), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(158), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(158), - [sym_generic_command] = STATE(158), - [sym_package_include] = STATE(158), - [sym_class_include] = STATE(158), - [sym_latex_include] = STATE(158), - [sym_biblatex_include] = STATE(158), - [sym_bibtex_include] = STATE(158), - [sym_graphics_include] = STATE(158), - [sym_svg_include] = STATE(158), - [sym_inkscape_include] = STATE(158), - [sym_verbatim_include] = STATE(158), - [sym_import_include] = STATE(158), - [sym_caption] = STATE(158), - [sym_citation] = STATE(158), - [sym_label_definition] = STATE(158), - [sym_label_reference] = STATE(158), - [sym_label_reference_range] = STATE(158), - [sym_label_number] = STATE(158), - [sym_new_command_definition] = STATE(158), - [sym_old_command_definition] = STATE(158), - [sym_let_command_definition] = STATE(158), - [sym_paired_delimiter_definition] = STATE(158), - [sym_environment_definition] = STATE(158), - [sym_glossary_entry_definition] = STATE(158), - [sym_glossary_entry_reference] = STATE(158), - [sym_acronym_definition] = STATE(158), - [sym_acronym_reference] = STATE(158), - [sym_theorem_definition] = STATE(158), - [sym_color_definition] = STATE(158), - [sym_color_set_definition] = STATE(158), - [sym_color_reference] = STATE(158), - [sym_tikz_library_import] = STATE(158), - [sym_text_mode] = STATE(158), - [aux_sym__section_repeat5] = STATE(461), - [aux_sym__section_repeat6] = STATE(459), - [aux_sym__section_repeat7] = STATE(457), - [aux_sym__section_repeat8] = STATE(456), - [aux_sym_part_repeat1] = STATE(158), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_RBRACK] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_EQ] = ACTIONS(1967), - [anon_sym_BSLASHpart] = ACTIONS(1957), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddpart] = ACTIONS(1957), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHchapter] = ACTIONS(1957), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddchap] = ACTIONS(1957), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsection] = ACTIONS(1957), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddsec] = ACTIONS(1957), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsection] = ACTIONS(1957), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [170] = { + [sym_block_comment] = STATE(168), + [sym__flat_content] = STATE(168), + [sym__text_with_env_content] = STATE(168), + [sym__text_content] = STATE(168), + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(445), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(446), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(447), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(448), + [sym_curly_group] = STATE(168), + [sym_text] = STATE(168), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(168), + [sym_inline_formula] = STATE(168), + [sym_math_set] = STATE(168), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(168), + [sym_comment_environment] = STATE(168), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(168), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(168), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(168), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(168), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(168), + [sym_generic_command] = STATE(168), + [sym_title_declaration] = STATE(168), + [sym_author_declaration] = STATE(168), + [sym_package_include] = STATE(168), + [sym_class_include] = STATE(168), + [sym_latex_include] = STATE(168), + [sym_biblatex_include] = STATE(168), + [sym_bibtex_include] = STATE(168), + [sym_graphics_include] = STATE(168), + [sym_svg_include] = STATE(168), + [sym_inkscape_include] = STATE(168), + [sym_verbatim_include] = STATE(168), + [sym_import_include] = STATE(168), + [sym_caption] = STATE(168), + [sym_citation] = STATE(168), + [sym_label_definition] = STATE(168), + [sym_label_reference] = STATE(168), + [sym_label_reference_range] = STATE(168), + [sym_label_number] = STATE(168), + [sym_new_command_definition] = STATE(168), + [sym_old_command_definition] = STATE(168), + [sym_let_command_definition] = STATE(168), + [sym_paired_delimiter_definition] = STATE(168), + [sym_environment_definition] = STATE(168), + [sym_glossary_entry_definition] = STATE(168), + [sym_glossary_entry_reference] = STATE(168), + [sym_acronym_definition] = STATE(168), + [sym_acronym_reference] = STATE(168), + [sym_theorem_definition] = STATE(168), + [sym_color_definition] = STATE(168), + [sym_color_set_definition] = STATE(168), + [sym_color_reference] = STATE(168), + [sym_tikz_library_import] = STATE(168), + [sym_text_mode] = STATE(168), + [aux_sym__section_repeat5] = STATE(445), + [aux_sym__section_repeat6] = STATE(446), + [aux_sym__section_repeat7] = STATE(447), + [aux_sym__section_repeat8] = STATE(448), + [aux_sym_part_repeat1] = STATE(168), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_EQ] = ACTIONS(2049), + [anon_sym_BSLASHpart] = ACTIONS(2039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddpart] = ACTIONS(2039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHchapter] = ACTIONS(2039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddchap] = ACTIONS(2039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsection] = ACTIONS(2039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddsec] = ACTIONS(2039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsection] = ACTIONS(2039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2035), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1957), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [160] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(616), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(613), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(612), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(611), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat5] = STATE(616), - [aux_sym__section_repeat6] = STATE(613), - [aux_sym__section_repeat7] = STATE(612), - [aux_sym__section_repeat8] = STATE(611), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), + [171] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(599), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(600), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(601), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(602), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat5] = STATE(599), + [aux_sym__section_repeat6] = STATE(600), + [aux_sym__section_repeat7] = STATE(601), + [aux_sym__section_repeat8] = STATE(602), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [161] = { - [sym_block_comment] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(592), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(593), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(594), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(595), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_math_set] = STATE(160), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(160), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(160), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(160), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(160), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym__section_repeat5] = STATE(592), - [aux_sym__section_repeat6] = STATE(593), - [aux_sym__section_repeat7] = STATE(594), - [aux_sym__section_repeat8] = STATE(595), - [aux_sym_part_repeat1] = STATE(160), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_RBRACK] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(1969), - [anon_sym_BSLASHpart] = ACTIONS(1957), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddpart] = ACTIONS(1957), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1953), - [anon_sym_BSLASHchapter] = ACTIONS(1957), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddchap] = ACTIONS(1957), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsection] = ACTIONS(1957), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHaddsec] = ACTIONS(1957), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsection] = ACTIONS(1957), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1953), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1953), + [172] = { + [sym_block_comment] = STATE(169), + [sym__flat_content] = STATE(169), + [sym__text_with_env_content] = STATE(169), + [sym__text_content] = STATE(169), + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(576), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(575), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(574), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(573), + [sym_curly_group] = STATE(169), + [sym_text] = STATE(169), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(169), + [sym_inline_formula] = STATE(169), + [sym_math_set] = STATE(169), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(169), + [sym_comment_environment] = STATE(169), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(169), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(169), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(169), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(169), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(169), + [sym_generic_command] = STATE(169), + [sym_title_declaration] = STATE(169), + [sym_author_declaration] = STATE(169), + [sym_package_include] = STATE(169), + [sym_class_include] = STATE(169), + [sym_latex_include] = STATE(169), + [sym_biblatex_include] = STATE(169), + [sym_bibtex_include] = STATE(169), + [sym_graphics_include] = STATE(169), + [sym_svg_include] = STATE(169), + [sym_inkscape_include] = STATE(169), + [sym_verbatim_include] = STATE(169), + [sym_import_include] = STATE(169), + [sym_caption] = STATE(169), + [sym_citation] = STATE(169), + [sym_label_definition] = STATE(169), + [sym_label_reference] = STATE(169), + [sym_label_reference_range] = STATE(169), + [sym_label_number] = STATE(169), + [sym_new_command_definition] = STATE(169), + [sym_old_command_definition] = STATE(169), + [sym_let_command_definition] = STATE(169), + [sym_paired_delimiter_definition] = STATE(169), + [sym_environment_definition] = STATE(169), + [sym_glossary_entry_definition] = STATE(169), + [sym_glossary_entry_reference] = STATE(169), + [sym_acronym_definition] = STATE(169), + [sym_acronym_reference] = STATE(169), + [sym_theorem_definition] = STATE(169), + [sym_color_definition] = STATE(169), + [sym_color_set_definition] = STATE(169), + [sym_color_reference] = STATE(169), + [sym_tikz_library_import] = STATE(169), + [sym_text_mode] = STATE(169), + [aux_sym__section_repeat5] = STATE(576), + [aux_sym__section_repeat6] = STATE(575), + [aux_sym__section_repeat7] = STATE(574), + [aux_sym__section_repeat8] = STATE(573), + [aux_sym_part_repeat1] = STATE(169), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(2051), + [anon_sym_BSLASHpart] = ACTIONS(2039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddpart] = ACTIONS(2039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2035), + [anon_sym_BSLASHchapter] = ACTIONS(2039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddchap] = ACTIONS(2039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsection] = ACTIONS(2039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHaddsec] = ACTIONS(2039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsection] = ACTIONS(2039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHend] = ACTIONS(2039), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [162] = { - [sym_block_comment] = STATE(163), - [sym__flat_content] = STATE(163), - [sym__text_with_env_content] = STATE(163), - [sym__text_content] = STATE(163), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(323), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [sym__enum_itemdeclaration] = STATE(193), + [173] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(425), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(424), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(423), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(422), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat5] = STATE(425), + [aux_sym__section_repeat6] = STATE(424), + [aux_sym__section_repeat7] = STATE(423), + [aux_sym__section_repeat8] = STATE(422), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [174] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(319), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(320), + [sym__enum_itemdeclaration] = STATE(205), [sym_enum_item] = STATE(321), - [sym_curly_group] = STATE(163), - [sym_text] = STATE(163), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(163), - [sym_inline_formula] = STATE(163), - [sym_math_set] = STATE(163), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(163), - [sym_comment_environment] = STATE(163), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(163), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(163), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(163), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(163), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(163), - [sym_generic_command] = STATE(163), - [sym_package_include] = STATE(163), - [sym_class_include] = STATE(163), - [sym_latex_include] = STATE(163), - [sym_biblatex_include] = STATE(163), - [sym_bibtex_include] = STATE(163), - [sym_graphics_include] = STATE(163), - [sym_svg_include] = STATE(163), - [sym_inkscape_include] = STATE(163), - [sym_verbatim_include] = STATE(163), - [sym_import_include] = STATE(163), - [sym_caption] = STATE(163), - [sym_citation] = STATE(163), - [sym_label_definition] = STATE(163), - [sym_label_reference] = STATE(163), - [sym_label_reference_range] = STATE(163), - [sym_label_number] = STATE(163), - [sym_new_command_definition] = STATE(163), - [sym_old_command_definition] = STATE(163), - [sym_let_command_definition] = STATE(163), - [sym_paired_delimiter_definition] = STATE(163), - [sym_environment_definition] = STATE(163), - [sym_glossary_entry_definition] = STATE(163), - [sym_glossary_entry_reference] = STATE(163), - [sym_acronym_definition] = STATE(163), - [sym_acronym_reference] = STATE(163), - [sym_theorem_definition] = STATE(163), - [sym_color_definition] = STATE(163), - [sym_color_set_definition] = STATE(163), - [sym_color_reference] = STATE(163), - [sym_tikz_library_import] = STATE(163), - [sym_text_mode] = STATE(163), - [aux_sym__section_repeat6] = STATE(323), - [aux_sym__section_repeat7] = STATE(322), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat6] = STATE(319), + [aux_sym__section_repeat7] = STATE(320), [aux_sym__section_repeat8] = STATE(321), - [aux_sym_part_repeat1] = STATE(163), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1971), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2053), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_RBRACK] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(1973), - [anon_sym_BSLASHpart] = ACTIONS(1975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddpart] = ACTIONS(1975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHchapter] = ACTIONS(1975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddchap] = ACTIONS(1975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsection] = ACTIONS(1975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddsec] = ACTIONS(1975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -75769,7 +81558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(2053), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -75790,321 +81579,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [163] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(309), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(310), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(311), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat6] = STATE(309), - [aux_sym__section_repeat7] = STATE(310), - [aux_sym__section_repeat8] = STATE(311), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1977), + [175] = { + [sym_block_comment] = STATE(174), + [sym__flat_content] = STATE(174), + [sym__text_with_env_content] = STATE(174), + [sym__text_content] = STATE(174), + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(340), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(336), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(335), + [sym_curly_group] = STATE(174), + [sym_text] = STATE(174), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(174), + [sym_inline_formula] = STATE(174), + [sym_math_set] = STATE(174), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(174), + [sym_comment_environment] = STATE(174), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(174), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(174), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(174), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(174), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(174), + [sym_generic_command] = STATE(174), + [sym_title_declaration] = STATE(174), + [sym_author_declaration] = STATE(174), + [sym_package_include] = STATE(174), + [sym_class_include] = STATE(174), + [sym_latex_include] = STATE(174), + [sym_biblatex_include] = STATE(174), + [sym_bibtex_include] = STATE(174), + [sym_graphics_include] = STATE(174), + [sym_svg_include] = STATE(174), + [sym_inkscape_include] = STATE(174), + [sym_verbatim_include] = STATE(174), + [sym_import_include] = STATE(174), + [sym_caption] = STATE(174), + [sym_citation] = STATE(174), + [sym_label_definition] = STATE(174), + [sym_label_reference] = STATE(174), + [sym_label_reference_range] = STATE(174), + [sym_label_number] = STATE(174), + [sym_new_command_definition] = STATE(174), + [sym_old_command_definition] = STATE(174), + [sym_let_command_definition] = STATE(174), + [sym_paired_delimiter_definition] = STATE(174), + [sym_environment_definition] = STATE(174), + [sym_glossary_entry_definition] = STATE(174), + [sym_glossary_entry_reference] = STATE(174), + [sym_acronym_definition] = STATE(174), + [sym_acronym_reference] = STATE(174), + [sym_theorem_definition] = STATE(174), + [sym_color_definition] = STATE(174), + [sym_color_set_definition] = STATE(174), + [sym_color_reference] = STATE(174), + [sym_tikz_library_import] = STATE(174), + [sym_text_mode] = STATE(174), + [aux_sym__section_repeat6] = STATE(340), + [aux_sym__section_repeat7] = STATE(336), + [aux_sym__section_repeat8] = STATE(335), + [aux_sym_part_repeat1] = STATE(174), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2057), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_RPAREN] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_RBRACK] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_EQ] = ACTIONS(2059), + [anon_sym_BSLASHpart] = ACTIONS(2061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddpart] = ACTIONS(2061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHchapter] = ACTIONS(2061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddchap] = ACTIONS(2061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsection] = ACTIONS(2061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddsec] = ACTIONS(2061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2057), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -76112,7 +81905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(2057), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -76133,3062 +81926,3098 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [164] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(364), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(362), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(359), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat6] = STATE(364), - [aux_sym__section_repeat7] = STATE(362), - [aux_sym__section_repeat8] = STATE(359), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [165] = { - [sym_block_comment] = STATE(169), - [sym__flat_content] = STATE(169), - [sym__text_with_env_content] = STATE(169), - [sym__text_content] = STATE(169), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(454), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(453), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(452), - [sym_curly_group] = STATE(169), - [sym_text] = STATE(169), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(169), - [sym_inline_formula] = STATE(169), - [sym_math_set] = STATE(169), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(169), - [sym_comment_environment] = STATE(169), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(169), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(169), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(169), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(169), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(169), - [sym_generic_command] = STATE(169), - [sym_package_include] = STATE(169), - [sym_class_include] = STATE(169), - [sym_latex_include] = STATE(169), - [sym_biblatex_include] = STATE(169), - [sym_bibtex_include] = STATE(169), - [sym_graphics_include] = STATE(169), - [sym_svg_include] = STATE(169), - [sym_inkscape_include] = STATE(169), - [sym_verbatim_include] = STATE(169), - [sym_import_include] = STATE(169), - [sym_caption] = STATE(169), - [sym_citation] = STATE(169), - [sym_label_definition] = STATE(169), - [sym_label_reference] = STATE(169), - [sym_label_reference_range] = STATE(169), - [sym_label_number] = STATE(169), - [sym_new_command_definition] = STATE(169), - [sym_old_command_definition] = STATE(169), - [sym_let_command_definition] = STATE(169), - [sym_paired_delimiter_definition] = STATE(169), - [sym_environment_definition] = STATE(169), - [sym_glossary_entry_definition] = STATE(169), - [sym_glossary_entry_reference] = STATE(169), - [sym_acronym_definition] = STATE(169), - [sym_acronym_reference] = STATE(169), - [sym_theorem_definition] = STATE(169), - [sym_color_definition] = STATE(169), - [sym_color_set_definition] = STATE(169), - [sym_color_reference] = STATE(169), - [sym_tikz_library_import] = STATE(169), - [sym_text_mode] = STATE(169), - [aux_sym__section_repeat6] = STATE(454), - [aux_sym__section_repeat7] = STATE(453), - [aux_sym__section_repeat8] = STATE(452), - [aux_sym_part_repeat1] = STATE(169), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_RBRACK] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_BSLASHpart] = ACTIONS(1975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddpart] = ACTIONS(1975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHchapter] = ACTIONS(1975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddchap] = ACTIONS(1975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsection] = ACTIONS(1975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddsec] = ACTIONS(1975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1975), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [166] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(585), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(586), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(587), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat6] = STATE(585), - [aux_sym__section_repeat7] = STATE(586), - [aux_sym__section_repeat8] = STATE(587), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [176] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(475), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(474), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(473), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat6] = STATE(475), + [aux_sym__section_repeat7] = STATE(474), + [aux_sym__section_repeat8] = STATE(473), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHend] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [167] = { - [sym_block_comment] = STATE(168), - [sym__flat_content] = STATE(168), - [sym__text_with_env_content] = STATE(168), - [sym__text_content] = STATE(168), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(596), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(597), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(598), - [sym_curly_group] = STATE(168), - [sym_text] = STATE(168), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(168), - [sym_inline_formula] = STATE(168), - [sym_math_set] = STATE(168), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(168), - [sym_comment_environment] = STATE(168), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(168), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(168), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(168), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(168), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(168), - [sym_generic_command] = STATE(168), - [sym_package_include] = STATE(168), - [sym_class_include] = STATE(168), - [sym_latex_include] = STATE(168), - [sym_biblatex_include] = STATE(168), - [sym_bibtex_include] = STATE(168), - [sym_graphics_include] = STATE(168), - [sym_svg_include] = STATE(168), - [sym_inkscape_include] = STATE(168), - [sym_verbatim_include] = STATE(168), - [sym_import_include] = STATE(168), - [sym_caption] = STATE(168), - [sym_citation] = STATE(168), - [sym_label_definition] = STATE(168), - [sym_label_reference] = STATE(168), - [sym_label_reference_range] = STATE(168), - [sym_label_number] = STATE(168), - [sym_new_command_definition] = STATE(168), - [sym_old_command_definition] = STATE(168), - [sym_let_command_definition] = STATE(168), - [sym_paired_delimiter_definition] = STATE(168), - [sym_environment_definition] = STATE(168), - [sym_glossary_entry_definition] = STATE(168), - [sym_glossary_entry_reference] = STATE(168), - [sym_acronym_definition] = STATE(168), - [sym_acronym_reference] = STATE(168), - [sym_theorem_definition] = STATE(168), - [sym_color_definition] = STATE(168), - [sym_color_set_definition] = STATE(168), - [sym_color_reference] = STATE(168), - [sym_tikz_library_import] = STATE(168), - [sym_text_mode] = STATE(168), - [aux_sym__section_repeat6] = STATE(596), - [aux_sym__section_repeat7] = STATE(597), - [aux_sym__section_repeat8] = STATE(598), - [aux_sym_part_repeat1] = STATE(168), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), + [177] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(673), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(674), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(675), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat6] = STATE(673), + [aux_sym__section_repeat7] = STATE(674), + [aux_sym__section_repeat8] = STATE(675), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), [anon_sym_LPAREN] = ACTIONS(1983), [anon_sym_RPAREN] = ACTIONS(1983), [anon_sym_LBRACK] = ACTIONS(1983), [anon_sym_RBRACK] = ACTIONS(1983), [anon_sym_COMMA] = ACTIONS(1983), [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASHpart] = ACTIONS(1975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddpart] = ACTIONS(1975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHchapter] = ACTIONS(1975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddchap] = ACTIONS(1975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsection] = ACTIONS(1975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddsec] = ACTIONS(1975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1971), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [168] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(610), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(609), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(608), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat6] = STATE(610), - [aux_sym__section_repeat7] = STATE(609), - [aux_sym__section_repeat8] = STATE(608), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2053), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [169] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(413), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(414), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(430), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat6] = STATE(413), - [aux_sym__section_repeat7] = STATE(414), - [aux_sym__section_repeat8] = STATE(430), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [178] = { + [sym_block_comment] = STATE(183), + [sym__flat_content] = STATE(183), + [sym__text_with_env_content] = STATE(183), + [sym__text_content] = STATE(183), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(562), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(558), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(552), + [sym_curly_group] = STATE(183), + [sym_text] = STATE(183), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(183), + [sym_inline_formula] = STATE(183), + [sym_math_set] = STATE(183), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(183), + [sym_comment_environment] = STATE(183), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(183), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(183), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(183), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(183), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(183), + [sym_generic_command] = STATE(183), + [sym_title_declaration] = STATE(183), + [sym_author_declaration] = STATE(183), + [sym_package_include] = STATE(183), + [sym_class_include] = STATE(183), + [sym_latex_include] = STATE(183), + [sym_biblatex_include] = STATE(183), + [sym_bibtex_include] = STATE(183), + [sym_graphics_include] = STATE(183), + [sym_svg_include] = STATE(183), + [sym_inkscape_include] = STATE(183), + [sym_verbatim_include] = STATE(183), + [sym_import_include] = STATE(183), + [sym_caption] = STATE(183), + [sym_citation] = STATE(183), + [sym_label_definition] = STATE(183), + [sym_label_reference] = STATE(183), + [sym_label_reference_range] = STATE(183), + [sym_label_number] = STATE(183), + [sym_new_command_definition] = STATE(183), + [sym_old_command_definition] = STATE(183), + [sym_let_command_definition] = STATE(183), + [sym_paired_delimiter_definition] = STATE(183), + [sym_environment_definition] = STATE(183), + [sym_glossary_entry_definition] = STATE(183), + [sym_glossary_entry_reference] = STATE(183), + [sym_acronym_definition] = STATE(183), + [sym_acronym_reference] = STATE(183), + [sym_theorem_definition] = STATE(183), + [sym_color_definition] = STATE(183), + [sym_color_set_definition] = STATE(183), + [sym_color_reference] = STATE(183), + [sym_tikz_library_import] = STATE(183), + [sym_text_mode] = STATE(183), + [aux_sym__section_repeat6] = STATE(562), + [aux_sym__section_repeat7] = STATE(558), + [aux_sym__section_repeat8] = STATE(552), + [aux_sym_part_repeat1] = STATE(183), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_EQ] = ACTIONS(2063), + [anon_sym_BSLASHpart] = ACTIONS(2061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddpart] = ACTIONS(2061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHchapter] = ACTIONS(2061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddchap] = ACTIONS(2061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsection] = ACTIONS(2061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddsec] = ACTIONS(2061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2057), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [170] = { - [sym_block_comment] = STATE(164), - [sym__flat_content] = STATE(164), - [sym__text_with_env_content] = STATE(164), - [sym__text_content] = STATE(164), - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(492), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(481), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(469), - [sym_curly_group] = STATE(164), - [sym_text] = STATE(164), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(164), - [sym_inline_formula] = STATE(164), - [sym_math_set] = STATE(164), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(164), - [sym_comment_environment] = STATE(164), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(164), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(164), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(164), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(164), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(164), - [sym_generic_command] = STATE(164), - [sym_package_include] = STATE(164), - [sym_class_include] = STATE(164), - [sym_latex_include] = STATE(164), - [sym_biblatex_include] = STATE(164), - [sym_bibtex_include] = STATE(164), - [sym_graphics_include] = STATE(164), - [sym_svg_include] = STATE(164), - [sym_inkscape_include] = STATE(164), - [sym_verbatim_include] = STATE(164), - [sym_import_include] = STATE(164), - [sym_caption] = STATE(164), - [sym_citation] = STATE(164), - [sym_label_definition] = STATE(164), - [sym_label_reference] = STATE(164), - [sym_label_reference_range] = STATE(164), - [sym_label_number] = STATE(164), - [sym_new_command_definition] = STATE(164), - [sym_old_command_definition] = STATE(164), - [sym_let_command_definition] = STATE(164), - [sym_paired_delimiter_definition] = STATE(164), - [sym_environment_definition] = STATE(164), - [sym_glossary_entry_definition] = STATE(164), - [sym_glossary_entry_reference] = STATE(164), - [sym_acronym_definition] = STATE(164), - [sym_acronym_reference] = STATE(164), - [sym_theorem_definition] = STATE(164), - [sym_color_definition] = STATE(164), - [sym_color_set_definition] = STATE(164), - [sym_color_reference] = STATE(164), - [sym_tikz_library_import] = STATE(164), - [sym_text_mode] = STATE(164), - [aux_sym__section_repeat6] = STATE(492), - [aux_sym__section_repeat7] = STATE(481), - [aux_sym__section_repeat8] = STATE(469), - [aux_sym_part_repeat1] = STATE(164), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_RBRACK] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_BSLASHpart] = ACTIONS(1975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddpart] = ACTIONS(1975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHchapter] = ACTIONS(1975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddchap] = ACTIONS(1975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsection] = ACTIONS(1975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddsec] = ACTIONS(1975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [179] = { + [sym_block_comment] = STATE(181), + [sym__flat_content] = STATE(181), + [sym__text_with_env_content] = STATE(181), + [sym__text_content] = STATE(181), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(527), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(528), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(529), + [sym_curly_group] = STATE(181), + [sym_text] = STATE(181), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(181), + [sym_inline_formula] = STATE(181), + [sym_math_set] = STATE(181), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(181), + [sym_comment_environment] = STATE(181), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(181), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(181), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(181), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(181), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(181), + [sym_generic_command] = STATE(181), + [sym_title_declaration] = STATE(181), + [sym_author_declaration] = STATE(181), + [sym_package_include] = STATE(181), + [sym_class_include] = STATE(181), + [sym_latex_include] = STATE(181), + [sym_biblatex_include] = STATE(181), + [sym_bibtex_include] = STATE(181), + [sym_graphics_include] = STATE(181), + [sym_svg_include] = STATE(181), + [sym_inkscape_include] = STATE(181), + [sym_verbatim_include] = STATE(181), + [sym_import_include] = STATE(181), + [sym_caption] = STATE(181), + [sym_citation] = STATE(181), + [sym_label_definition] = STATE(181), + [sym_label_reference] = STATE(181), + [sym_label_reference_range] = STATE(181), + [sym_label_number] = STATE(181), + [sym_new_command_definition] = STATE(181), + [sym_old_command_definition] = STATE(181), + [sym_let_command_definition] = STATE(181), + [sym_paired_delimiter_definition] = STATE(181), + [sym_environment_definition] = STATE(181), + [sym_glossary_entry_definition] = STATE(181), + [sym_glossary_entry_reference] = STATE(181), + [sym_acronym_definition] = STATE(181), + [sym_acronym_reference] = STATE(181), + [sym_theorem_definition] = STATE(181), + [sym_color_definition] = STATE(181), + [sym_color_set_definition] = STATE(181), + [sym_color_reference] = STATE(181), + [sym_tikz_library_import] = STATE(181), + [sym_text_mode] = STATE(181), + [aux_sym__section_repeat6] = STATE(527), + [aux_sym__section_repeat7] = STATE(528), + [aux_sym__section_repeat8] = STATE(529), + [aux_sym_part_repeat1] = STATE(181), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_EQ] = ACTIONS(2065), + [anon_sym_BSLASHpart] = ACTIONS(2061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddpart] = ACTIONS(2061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHchapter] = ACTIONS(2061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddchap] = ACTIONS(2061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsection] = ACTIONS(2061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddsec] = ACTIONS(2061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [171] = { - [sym_block_comment] = STATE(166), - [sym__flat_content] = STATE(166), - [sym__text_with_env_content] = STATE(166), - [sym__text_content] = STATE(166), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(511), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(512), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(513), - [sym_curly_group] = STATE(166), - [sym_text] = STATE(166), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(166), - [sym_inline_formula] = STATE(166), - [sym_math_set] = STATE(166), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(166), - [sym_comment_environment] = STATE(166), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(166), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(166), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(166), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(166), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(166), - [sym_generic_command] = STATE(166), - [sym_package_include] = STATE(166), - [sym_class_include] = STATE(166), - [sym_latex_include] = STATE(166), - [sym_biblatex_include] = STATE(166), - [sym_bibtex_include] = STATE(166), - [sym_graphics_include] = STATE(166), - [sym_svg_include] = STATE(166), - [sym_inkscape_include] = STATE(166), - [sym_verbatim_include] = STATE(166), - [sym_import_include] = STATE(166), - [sym_caption] = STATE(166), - [sym_citation] = STATE(166), - [sym_label_definition] = STATE(166), - [sym_label_reference] = STATE(166), - [sym_label_reference_range] = STATE(166), - [sym_label_number] = STATE(166), - [sym_new_command_definition] = STATE(166), - [sym_old_command_definition] = STATE(166), - [sym_let_command_definition] = STATE(166), - [sym_paired_delimiter_definition] = STATE(166), - [sym_environment_definition] = STATE(166), - [sym_glossary_entry_definition] = STATE(166), - [sym_glossary_entry_reference] = STATE(166), - [sym_acronym_definition] = STATE(166), - [sym_acronym_reference] = STATE(166), - [sym_theorem_definition] = STATE(166), - [sym_color_definition] = STATE(166), - [sym_color_set_definition] = STATE(166), - [sym_color_reference] = STATE(166), - [sym_tikz_library_import] = STATE(166), - [sym_text_mode] = STATE(166), - [aux_sym__section_repeat6] = STATE(511), - [aux_sym__section_repeat7] = STATE(512), - [aux_sym__section_repeat8] = STATE(513), - [aux_sym_part_repeat1] = STATE(166), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_RBRACK] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_BSLASHpart] = ACTIONS(1975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddpart] = ACTIONS(1975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1971), - [anon_sym_BSLASHchapter] = ACTIONS(1975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddchap] = ACTIONS(1975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsection] = ACTIONS(1975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHaddsec] = ACTIONS(1975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1971), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [180] = { + [sym_block_comment] = STATE(177), + [sym__flat_content] = STATE(177), + [sym__text_with_env_content] = STATE(177), + [sym__text_content] = STATE(177), + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(449), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(450), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(451), + [sym_curly_group] = STATE(177), + [sym_text] = STATE(177), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(177), + [sym_inline_formula] = STATE(177), + [sym_math_set] = STATE(177), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(177), + [sym_comment_environment] = STATE(177), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(177), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(177), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(177), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(177), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(177), + [sym_generic_command] = STATE(177), + [sym_title_declaration] = STATE(177), + [sym_author_declaration] = STATE(177), + [sym_package_include] = STATE(177), + [sym_class_include] = STATE(177), + [sym_latex_include] = STATE(177), + [sym_biblatex_include] = STATE(177), + [sym_bibtex_include] = STATE(177), + [sym_graphics_include] = STATE(177), + [sym_svg_include] = STATE(177), + [sym_inkscape_include] = STATE(177), + [sym_verbatim_include] = STATE(177), + [sym_import_include] = STATE(177), + [sym_caption] = STATE(177), + [sym_citation] = STATE(177), + [sym_label_definition] = STATE(177), + [sym_label_reference] = STATE(177), + [sym_label_reference_range] = STATE(177), + [sym_label_number] = STATE(177), + [sym_new_command_definition] = STATE(177), + [sym_old_command_definition] = STATE(177), + [sym_let_command_definition] = STATE(177), + [sym_paired_delimiter_definition] = STATE(177), + [sym_environment_definition] = STATE(177), + [sym_glossary_entry_definition] = STATE(177), + [sym_glossary_entry_reference] = STATE(177), + [sym_acronym_definition] = STATE(177), + [sym_acronym_reference] = STATE(177), + [sym_theorem_definition] = STATE(177), + [sym_color_definition] = STATE(177), + [sym_color_set_definition] = STATE(177), + [sym_color_reference] = STATE(177), + [sym_tikz_library_import] = STATE(177), + [sym_text_mode] = STATE(177), + [aux_sym__section_repeat6] = STATE(449), + [aux_sym__section_repeat7] = STATE(450), + [aux_sym__section_repeat8] = STATE(451), + [aux_sym_part_repeat1] = STATE(177), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_EQ] = ACTIONS(2067), + [anon_sym_BSLASHpart] = ACTIONS(2061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddpart] = ACTIONS(2061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHchapter] = ACTIONS(2061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddchap] = ACTIONS(2061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsection] = ACTIONS(2061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddsec] = ACTIONS(2061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2057), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [172] = { - [sym_block_comment] = STATE(173), - [sym__flat_content] = STATE(173), - [sym__text_with_env_content] = STATE(173), - [sym__text_content] = STATE(173), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(320), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(319), - [sym_curly_group] = STATE(173), - [sym_text] = STATE(173), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(173), - [sym_inline_formula] = STATE(173), - [sym_math_set] = STATE(173), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(173), - [sym_comment_environment] = STATE(173), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(173), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(173), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(173), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(173), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(173), - [sym_generic_command] = STATE(173), - [sym_package_include] = STATE(173), - [sym_class_include] = STATE(173), - [sym_latex_include] = STATE(173), - [sym_biblatex_include] = STATE(173), - [sym_bibtex_include] = STATE(173), - [sym_graphics_include] = STATE(173), - [sym_svg_include] = STATE(173), - [sym_inkscape_include] = STATE(173), - [sym_verbatim_include] = STATE(173), - [sym_import_include] = STATE(173), - [sym_caption] = STATE(173), - [sym_citation] = STATE(173), - [sym_label_definition] = STATE(173), - [sym_label_reference] = STATE(173), - [sym_label_reference_range] = STATE(173), - [sym_label_number] = STATE(173), - [sym_new_command_definition] = STATE(173), - [sym_old_command_definition] = STATE(173), - [sym_let_command_definition] = STATE(173), - [sym_paired_delimiter_definition] = STATE(173), - [sym_environment_definition] = STATE(173), - [sym_glossary_entry_definition] = STATE(173), - [sym_glossary_entry_reference] = STATE(173), - [sym_acronym_definition] = STATE(173), - [sym_acronym_reference] = STATE(173), - [sym_theorem_definition] = STATE(173), - [sym_color_definition] = STATE(173), - [sym_color_set_definition] = STATE(173), - [sym_color_reference] = STATE(173), - [sym_tikz_library_import] = STATE(173), - [sym_text_mode] = STATE(173), - [aux_sym__section_repeat7] = STATE(320), - [aux_sym__section_repeat8] = STATE(319), - [aux_sym_part_repeat1] = STATE(173), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1989), + [181] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(603), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(604), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(605), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat6] = STATE(603), + [aux_sym__section_repeat7] = STATE(604), + [aux_sym__section_repeat8] = STATE(605), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [182] = { + [sym_block_comment] = STATE(176), + [sym__flat_content] = STATE(176), + [sym__text_with_env_content] = STATE(176), + [sym__text_content] = STATE(176), + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(571), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(570), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(569), + [sym_curly_group] = STATE(176), + [sym_text] = STATE(176), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_math_set] = STATE(176), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(176), + [sym_comment_environment] = STATE(176), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(176), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(176), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(176), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(176), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(176), + [sym_generic_command] = STATE(176), + [sym_title_declaration] = STATE(176), + [sym_author_declaration] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import_include] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_new_command_definition] = STATE(176), + [sym_old_command_definition] = STATE(176), + [sym_let_command_definition] = STATE(176), + [sym_paired_delimiter_definition] = STATE(176), + [sym_environment_definition] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_text_mode] = STATE(176), + [aux_sym__section_repeat6] = STATE(571), + [aux_sym__section_repeat7] = STATE(570), + [aux_sym__section_repeat8] = STATE(569), + [aux_sym_part_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_EQ] = ACTIONS(2069), + [anon_sym_BSLASHpart] = ACTIONS(2061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddpart] = ACTIONS(2061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2057), + [anon_sym_BSLASHchapter] = ACTIONS(2061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddchap] = ACTIONS(2061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsection] = ACTIONS(2061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHaddsec] = ACTIONS(2061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2057), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(2061), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [183] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(421), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(420), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(419), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat6] = STATE(421), + [aux_sym__section_repeat7] = STATE(420), + [aux_sym__section_repeat8] = STATE(419), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [184] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(322), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(310), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat7] = STATE(322), + [aux_sym__section_repeat8] = STATE(310), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2071), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_RBRACK] = ACTIONS(1991), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(1991), - [anon_sym_BSLASHpart] = ACTIONS(1993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddpart] = ACTIONS(1993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHchapter] = ACTIONS(1993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddchap] = ACTIONS(1993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsection] = ACTIONS(1993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddsec] = ACTIONS(1993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHparagraph] = ACTIONS(1993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(2071), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -79209,256 +85038,1290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [173] = { + [185] = { + [sym_block_comment] = STATE(184), + [sym__flat_content] = STATE(184), + [sym__text_with_env_content] = STATE(184), + [sym__text_content] = STATE(184), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(334), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(333), + [sym_curly_group] = STATE(184), + [sym_text] = STATE(184), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(184), + [sym_inline_formula] = STATE(184), + [sym_math_set] = STATE(184), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(184), + [sym_comment_environment] = STATE(184), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(184), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(184), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(184), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(184), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(184), + [sym_generic_command] = STATE(184), + [sym_title_declaration] = STATE(184), + [sym_author_declaration] = STATE(184), + [sym_package_include] = STATE(184), + [sym_class_include] = STATE(184), + [sym_latex_include] = STATE(184), + [sym_biblatex_include] = STATE(184), + [sym_bibtex_include] = STATE(184), + [sym_graphics_include] = STATE(184), + [sym_svg_include] = STATE(184), + [sym_inkscape_include] = STATE(184), + [sym_verbatim_include] = STATE(184), + [sym_import_include] = STATE(184), + [sym_caption] = STATE(184), + [sym_citation] = STATE(184), + [sym_label_definition] = STATE(184), + [sym_label_reference] = STATE(184), + [sym_label_reference_range] = STATE(184), + [sym_label_number] = STATE(184), + [sym_new_command_definition] = STATE(184), + [sym_old_command_definition] = STATE(184), + [sym_let_command_definition] = STATE(184), + [sym_paired_delimiter_definition] = STATE(184), + [sym_environment_definition] = STATE(184), + [sym_glossary_entry_definition] = STATE(184), + [sym_glossary_entry_reference] = STATE(184), + [sym_acronym_definition] = STATE(184), + [sym_acronym_reference] = STATE(184), + [sym_theorem_definition] = STATE(184), + [sym_color_definition] = STATE(184), + [sym_color_set_definition] = STATE(184), + [sym_color_reference] = STATE(184), + [sym_tikz_library_import] = STATE(184), + [sym_text_mode] = STATE(184), + [aux_sym__section_repeat7] = STATE(334), + [aux_sym__section_repeat8] = STATE(333), + [aux_sym_part_repeat1] = STATE(184), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_RBRACK] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_EQ] = ACTIONS(2077), + [anon_sym_BSLASHpart] = ACTIONS(2079), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddpart] = ACTIONS(2079), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHchapter] = ACTIONS(2079), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddchap] = ACTIONS(2079), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsection] = ACTIONS(2079), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddsec] = ACTIONS(2079), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHparagraph] = ACTIONS(2079), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(2075), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), + }, + [186] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(606), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(607), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat7] = STATE(606), + [aux_sym__section_repeat8] = STATE(607), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [187] = { + [sym_block_comment] = STATE(186), + [sym__flat_content] = STATE(186), + [sym__text_with_env_content] = STATE(186), + [sym__text_content] = STATE(186), + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(531), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(532), + [sym_curly_group] = STATE(186), + [sym_text] = STATE(186), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(186), + [sym_inline_formula] = STATE(186), + [sym_math_set] = STATE(186), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(186), + [sym_comment_environment] = STATE(186), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(186), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(186), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(186), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(186), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(186), + [sym_generic_command] = STATE(186), + [sym_title_declaration] = STATE(186), + [sym_author_declaration] = STATE(186), + [sym_package_include] = STATE(186), + [sym_class_include] = STATE(186), + [sym_latex_include] = STATE(186), + [sym_biblatex_include] = STATE(186), + [sym_bibtex_include] = STATE(186), + [sym_graphics_include] = STATE(186), + [sym_svg_include] = STATE(186), + [sym_inkscape_include] = STATE(186), + [sym_verbatim_include] = STATE(186), + [sym_import_include] = STATE(186), + [sym_caption] = STATE(186), + [sym_citation] = STATE(186), + [sym_label_definition] = STATE(186), + [sym_label_reference] = STATE(186), + [sym_label_reference_range] = STATE(186), + [sym_label_number] = STATE(186), + [sym_new_command_definition] = STATE(186), + [sym_old_command_definition] = STATE(186), + [sym_let_command_definition] = STATE(186), + [sym_paired_delimiter_definition] = STATE(186), + [sym_environment_definition] = STATE(186), + [sym_glossary_entry_definition] = STATE(186), + [sym_glossary_entry_reference] = STATE(186), + [sym_acronym_definition] = STATE(186), + [sym_acronym_reference] = STATE(186), + [sym_theorem_definition] = STATE(186), + [sym_color_definition] = STATE(186), + [sym_color_set_definition] = STATE(186), + [sym_color_reference] = STATE(186), + [sym_tikz_library_import] = STATE(186), + [sym_text_mode] = STATE(186), + [aux_sym__section_repeat7] = STATE(531), + [aux_sym__section_repeat8] = STATE(532), + [aux_sym_part_repeat1] = STATE(186), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_RBRACK] = ACTIONS(2081), + [anon_sym_COMMA] = ACTIONS(2081), + [anon_sym_EQ] = ACTIONS(2081), + [anon_sym_BSLASHpart] = ACTIONS(2079), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddpart] = ACTIONS(2079), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHchapter] = ACTIONS(2079), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddchap] = ACTIONS(2079), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsection] = ACTIONS(2079), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddsec] = ACTIONS(2079), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHparagraph] = ACTIONS(2079), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [188] = { [sym_block_comment] = STATE(192), [sym__flat_content] = STATE(192), [sym__text_with_env_content] = STATE(192), [sym__text_content] = STATE(192), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(312), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(313), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(566), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(565), [sym_curly_group] = STATE(192), [sym_text] = STATE(192), - [sym_operator] = STATE(776), + [sym_operator] = STATE(1134), [sym_displayed_equation] = STATE(192), [sym_inline_formula] = STATE(192), [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), + [sym_begin] = STATE(15), [sym_generic_environment] = STATE(192), [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), + [sym__trivia_begin_comment] = STATE(2711), [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), + [sym__trivia_begin_verbatim] = STATE(2710), [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), + [sym__trivia_begin_listing] = STATE(2709), [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), + [sym__trivia_begin_minted] = STATE(2708), [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), + [sym__trivia_begin_pycode] = STATE(2707), [sym__command] = STATE(192), [sym_generic_command] = STATE(192), + [sym_title_declaration] = STATE(192), + [sym_author_declaration] = STATE(192), [sym_package_include] = STATE(192), [sym_class_include] = STATE(192), [sym_latex_include] = STATE(192), @@ -79490,45 +86353,2100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(192), [sym_tikz_library_import] = STATE(192), [sym_text_mode] = STATE(192), - [aux_sym__section_repeat7] = STATE(312), - [aux_sym__section_repeat8] = STATE(313), + [aux_sym__section_repeat7] = STATE(566), + [aux_sym__section_repeat8] = STATE(565), [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1995), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_RBRACK] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_BSLASHpart] = ACTIONS(2079), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddpart] = ACTIONS(2079), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHchapter] = ACTIONS(2079), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddchap] = ACTIONS(2079), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsection] = ACTIONS(2079), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddsec] = ACTIONS(2079), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHparagraph] = ACTIONS(2079), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(2079), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [189] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(418), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(417), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat7] = STATE(418), + [aux_sym__section_repeat8] = STATE(417), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [190] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(677), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(678), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat7] = STATE(677), + [aux_sym__section_repeat8] = STATE(678), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [191] = { + [sym_block_comment] = STATE(190), + [sym__flat_content] = STATE(190), + [sym__text_with_env_content] = STATE(190), + [sym__text_content] = STATE(190), + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(460), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(461), + [sym_curly_group] = STATE(190), + [sym_text] = STATE(190), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(190), + [sym_inline_formula] = STATE(190), + [sym_math_set] = STATE(190), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(190), + [sym_comment_environment] = STATE(190), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(190), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(190), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(190), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(190), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(190), + [sym_generic_command] = STATE(190), + [sym_title_declaration] = STATE(190), + [sym_author_declaration] = STATE(190), + [sym_package_include] = STATE(190), + [sym_class_include] = STATE(190), + [sym_latex_include] = STATE(190), + [sym_biblatex_include] = STATE(190), + [sym_bibtex_include] = STATE(190), + [sym_graphics_include] = STATE(190), + [sym_svg_include] = STATE(190), + [sym_inkscape_include] = STATE(190), + [sym_verbatim_include] = STATE(190), + [sym_import_include] = STATE(190), + [sym_caption] = STATE(190), + [sym_citation] = STATE(190), + [sym_label_definition] = STATE(190), + [sym_label_reference] = STATE(190), + [sym_label_reference_range] = STATE(190), + [sym_label_number] = STATE(190), + [sym_new_command_definition] = STATE(190), + [sym_old_command_definition] = STATE(190), + [sym_let_command_definition] = STATE(190), + [sym_paired_delimiter_definition] = STATE(190), + [sym_environment_definition] = STATE(190), + [sym_glossary_entry_definition] = STATE(190), + [sym_glossary_entry_reference] = STATE(190), + [sym_acronym_definition] = STATE(190), + [sym_acronym_reference] = STATE(190), + [sym_theorem_definition] = STATE(190), + [sym_color_definition] = STATE(190), + [sym_color_set_definition] = STATE(190), + [sym_color_reference] = STATE(190), + [sym_tikz_library_import] = STATE(190), + [sym_text_mode] = STATE(190), + [aux_sym__section_repeat7] = STATE(460), + [aux_sym__section_repeat8] = STATE(461), + [aux_sym_part_repeat1] = STATE(190), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_BSLASHpart] = ACTIONS(2079), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddpart] = ACTIONS(2079), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHchapter] = ACTIONS(2079), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddchap] = ACTIONS(2079), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsection] = ACTIONS(2079), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddsec] = ACTIONS(2079), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHparagraph] = ACTIONS(2079), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2075), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [192] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(471), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(470), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat7] = STATE(471), + [aux_sym__section_repeat8] = STATE(470), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), + }, + [193] = { + [sym_block_comment] = STATE(189), + [sym__flat_content] = STATE(189), + [sym__text_with_env_content] = STATE(189), + [sym__text_content] = STATE(189), + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(550), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(386), + [sym_curly_group] = STATE(189), + [sym_text] = STATE(189), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(189), + [sym_inline_formula] = STATE(189), + [sym_math_set] = STATE(189), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(189), + [sym_comment_environment] = STATE(189), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(189), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(189), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(189), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(189), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(189), + [sym_generic_command] = STATE(189), + [sym_title_declaration] = STATE(189), + [sym_author_declaration] = STATE(189), + [sym_package_include] = STATE(189), + [sym_class_include] = STATE(189), + [sym_latex_include] = STATE(189), + [sym_biblatex_include] = STATE(189), + [sym_bibtex_include] = STATE(189), + [sym_graphics_include] = STATE(189), + [sym_svg_include] = STATE(189), + [sym_inkscape_include] = STATE(189), + [sym_verbatim_include] = STATE(189), + [sym_import_include] = STATE(189), + [sym_caption] = STATE(189), + [sym_citation] = STATE(189), + [sym_label_definition] = STATE(189), + [sym_label_reference] = STATE(189), + [sym_label_reference_range] = STATE(189), + [sym_label_number] = STATE(189), + [sym_new_command_definition] = STATE(189), + [sym_old_command_definition] = STATE(189), + [sym_let_command_definition] = STATE(189), + [sym_paired_delimiter_definition] = STATE(189), + [sym_environment_definition] = STATE(189), + [sym_glossary_entry_definition] = STATE(189), + [sym_glossary_entry_reference] = STATE(189), + [sym_acronym_definition] = STATE(189), + [sym_acronym_reference] = STATE(189), + [sym_theorem_definition] = STATE(189), + [sym_color_definition] = STATE(189), + [sym_color_set_definition] = STATE(189), + [sym_color_reference] = STATE(189), + [sym_tikz_library_import] = STATE(189), + [sym_text_mode] = STATE(189), + [aux_sym__section_repeat7] = STATE(550), + [aux_sym__section_repeat8] = STATE(386), + [aux_sym_part_repeat1] = STATE(189), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_COMMA] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2087), + [anon_sym_BSLASHpart] = ACTIONS(2079), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddpart] = ACTIONS(2079), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2075), + [anon_sym_BSLASHchapter] = ACTIONS(2079), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddchap] = ACTIONS(2079), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsection] = ACTIONS(2079), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHaddsec] = ACTIONS(2079), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2079), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2075), + [anon_sym_BSLASHparagraph] = ACTIONS(2079), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [194] = { + [sym_block_comment] = STATE(195), + [sym__flat_content] = STATE(195), + [sym__text_with_env_content] = STATE(195), + [sym__text_content] = STATE(195), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(332), + [sym_curly_group] = STATE(195), + [sym_text] = STATE(195), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(195), + [sym_inline_formula] = STATE(195), + [sym_math_set] = STATE(195), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(195), + [sym_comment_environment] = STATE(195), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(195), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(195), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(195), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(195), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(195), + [sym_generic_command] = STATE(195), + [sym_title_declaration] = STATE(195), + [sym_author_declaration] = STATE(195), + [sym_package_include] = STATE(195), + [sym_class_include] = STATE(195), + [sym_latex_include] = STATE(195), + [sym_biblatex_include] = STATE(195), + [sym_bibtex_include] = STATE(195), + [sym_graphics_include] = STATE(195), + [sym_svg_include] = STATE(195), + [sym_inkscape_include] = STATE(195), + [sym_verbatim_include] = STATE(195), + [sym_import_include] = STATE(195), + [sym_caption] = STATE(195), + [sym_citation] = STATE(195), + [sym_label_definition] = STATE(195), + [sym_label_reference] = STATE(195), + [sym_label_reference_range] = STATE(195), + [sym_label_number] = STATE(195), + [sym_new_command_definition] = STATE(195), + [sym_old_command_definition] = STATE(195), + [sym_let_command_definition] = STATE(195), + [sym_paired_delimiter_definition] = STATE(195), + [sym_environment_definition] = STATE(195), + [sym_glossary_entry_definition] = STATE(195), + [sym_glossary_entry_reference] = STATE(195), + [sym_acronym_definition] = STATE(195), + [sym_acronym_reference] = STATE(195), + [sym_theorem_definition] = STATE(195), + [sym_color_definition] = STATE(195), + [sym_color_set_definition] = STATE(195), + [sym_color_reference] = STATE(195), + [sym_tikz_library_import] = STATE(195), + [sym_text_mode] = STATE(195), + [aux_sym__section_repeat8] = STATE(332), + [aux_sym_part_repeat1] = STATE(195), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2089), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_RBRACK] = ACTIONS(2091), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_BSLASHpart] = ACTIONS(2093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddpart] = ACTIONS(2093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHchapter] = ACTIONS(2093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddchap] = ACTIONS(2093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsection] = ACTIONS(2093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddsec] = ACTIONS(2093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHparagraph] = ACTIONS(2093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(2089), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -79549,934 +88467,1959 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [174] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(357), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(353), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat7] = STATE(357), - [aux_sym__section_repeat8] = STATE(353), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [195] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(324), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym__section_repeat8] = STATE(324), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [175] = { - [sym_block_comment] = STATE(176), - [sym__flat_content] = STATE(176), - [sym__text_with_env_content] = STATE(176), - [sym__text_content] = STATE(176), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(450), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(449), - [sym_curly_group] = STATE(176), - [sym_text] = STATE(176), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_math_set] = STATE(176), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(176), - [sym_comment_environment] = STATE(176), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(176), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(176), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(176), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(176), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(176), - [sym_generic_command] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import_include] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_new_command_definition] = STATE(176), - [sym_old_command_definition] = STATE(176), - [sym_let_command_definition] = STATE(176), - [sym_paired_delimiter_definition] = STATE(176), - [sym_environment_definition] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_text_mode] = STATE(176), - [aux_sym__section_repeat7] = STATE(450), - [aux_sym__section_repeat8] = STATE(449), - [aux_sym_part_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_RBRACK] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(1999), - [anon_sym_EQ] = ACTIONS(1999), - [anon_sym_BSLASHpart] = ACTIONS(1993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddpart] = ACTIONS(1993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHchapter] = ACTIONS(1993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddchap] = ACTIONS(1993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsection] = ACTIONS(1993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddsec] = ACTIONS(1993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHparagraph] = ACTIONS(1993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [196] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(462), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_title_declaration] = STATE(198), + [sym_author_declaration] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_paired_delimiter_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat8] = STATE(462), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym_BSLASHpart] = ACTIONS(2093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddpart] = ACTIONS(2093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHchapter] = ACTIONS(2093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddchap] = ACTIONS(2093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsection] = ACTIONS(2093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddsec] = ACTIONS(2093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHparagraph] = ACTIONS(2093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2089), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1993), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [176] = { + [197] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(608), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym__section_repeat8] = STATE(608), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), + }, + [198] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(679), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym__section_repeat8] = STATE(679), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), + }, + [199] = { + [sym_block_comment] = STATE(203), + [sym__flat_content] = STATE(203), + [sym__text_with_env_content] = STATE(203), + [sym__text_content] = STATE(203), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(547), + [sym_curly_group] = STATE(203), + [sym_text] = STATE(203), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(203), + [sym_inline_formula] = STATE(203), + [sym_math_set] = STATE(203), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(203), + [sym_comment_environment] = STATE(203), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(203), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(203), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(203), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(203), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(203), + [sym_generic_command] = STATE(203), + [sym_title_declaration] = STATE(203), + [sym_author_declaration] = STATE(203), + [sym_package_include] = STATE(203), + [sym_class_include] = STATE(203), + [sym_latex_include] = STATE(203), + [sym_biblatex_include] = STATE(203), + [sym_bibtex_include] = STATE(203), + [sym_graphics_include] = STATE(203), + [sym_svg_include] = STATE(203), + [sym_inkscape_include] = STATE(203), + [sym_verbatim_include] = STATE(203), + [sym_import_include] = STATE(203), + [sym_caption] = STATE(203), + [sym_citation] = STATE(203), + [sym_label_definition] = STATE(203), + [sym_label_reference] = STATE(203), + [sym_label_reference_range] = STATE(203), + [sym_label_number] = STATE(203), + [sym_new_command_definition] = STATE(203), + [sym_old_command_definition] = STATE(203), + [sym_let_command_definition] = STATE(203), + [sym_paired_delimiter_definition] = STATE(203), + [sym_environment_definition] = STATE(203), + [sym_glossary_entry_definition] = STATE(203), + [sym_glossary_entry_reference] = STATE(203), + [sym_acronym_definition] = STATE(203), + [sym_acronym_reference] = STATE(203), + [sym_theorem_definition] = STATE(203), + [sym_color_definition] = STATE(203), + [sym_color_set_definition] = STATE(203), + [sym_color_reference] = STATE(203), + [sym_tikz_library_import] = STATE(203), + [sym_text_mode] = STATE(203), + [aux_sym__section_repeat8] = STATE(547), + [aux_sym_part_repeat1] = STATE(203), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_BSLASHpart] = ACTIONS(2093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddpart] = ACTIONS(2093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHchapter] = ACTIONS(2093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddchap] = ACTIONS(2093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsection] = ACTIONS(2093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddsec] = ACTIONS(2093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHparagraph] = ACTIONS(2093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2089), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), + }, + [200] = { [sym_block_comment] = STATE(202), [sym__flat_content] = STATE(202), [sym__text_with_env_content] = STATE(202), [sym__text_content] = STATE(202), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(432), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(433), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(563), [sym_curly_group] = STATE(202), [sym_text] = STATE(202), - [sym_operator] = STATE(1103), + [sym_operator] = STATE(1134), [sym_displayed_equation] = STATE(202), [sym_inline_formula] = STATE(202), [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), + [sym_begin] = STATE(15), [sym_generic_environment] = STATE(202), [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), + [sym__trivia_begin_comment] = STATE(2711), [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), + [sym__trivia_begin_verbatim] = STATE(2710), [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), + [sym__trivia_begin_listing] = STATE(2709), [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), + [sym__trivia_begin_minted] = STATE(2708), [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), + [sym__trivia_begin_pycode] = STATE(2707), [sym__command] = STATE(202), [sym_generic_command] = STATE(202), + [sym_title_declaration] = STATE(202), + [sym_author_declaration] = STATE(202), [sym_package_include] = STATE(202), [sym_class_include] = STATE(202), [sym_latex_include] = STATE(202), @@ -80508,2076 +90451,1739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(202), [sym_tikz_library_import] = STATE(202), [sym_text_mode] = STATE(202), - [aux_sym__section_repeat7] = STATE(432), - [aux_sym__section_repeat8] = STATE(433), + [aux_sym__section_repeat8] = STATE(563), [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [177] = { - [sym_block_comment] = STATE(174), - [sym__flat_content] = STATE(174), - [sym__text_with_env_content] = STATE(174), - [sym__text_content] = STATE(174), - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(462), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(460), - [sym_curly_group] = STATE(174), - [sym_text] = STATE(174), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(174), - [sym_inline_formula] = STATE(174), - [sym_math_set] = STATE(174), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(174), - [sym_comment_environment] = STATE(174), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(174), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(174), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(174), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(174), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(174), - [sym_generic_command] = STATE(174), - [sym_package_include] = STATE(174), - [sym_class_include] = STATE(174), - [sym_latex_include] = STATE(174), - [sym_biblatex_include] = STATE(174), - [sym_bibtex_include] = STATE(174), - [sym_graphics_include] = STATE(174), - [sym_svg_include] = STATE(174), - [sym_inkscape_include] = STATE(174), - [sym_verbatim_include] = STATE(174), - [sym_import_include] = STATE(174), - [sym_caption] = STATE(174), - [sym_citation] = STATE(174), - [sym_label_definition] = STATE(174), - [sym_label_reference] = STATE(174), - [sym_label_reference_range] = STATE(174), - [sym_label_number] = STATE(174), - [sym_new_command_definition] = STATE(174), - [sym_old_command_definition] = STATE(174), - [sym_let_command_definition] = STATE(174), - [sym_paired_delimiter_definition] = STATE(174), - [sym_environment_definition] = STATE(174), - [sym_glossary_entry_definition] = STATE(174), - [sym_glossary_entry_reference] = STATE(174), - [sym_acronym_definition] = STATE(174), - [sym_acronym_reference] = STATE(174), - [sym_theorem_definition] = STATE(174), - [sym_color_definition] = STATE(174), - [sym_color_set_definition] = STATE(174), - [sym_color_reference] = STATE(174), - [sym_tikz_library_import] = STATE(174), - [sym_text_mode] = STATE(174), - [aux_sym__section_repeat7] = STATE(462), - [aux_sym__section_repeat8] = STATE(460), - [aux_sym_part_repeat1] = STATE(174), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_RBRACK] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASHpart] = ACTIONS(1993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddpart] = ACTIONS(1993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHchapter] = ACTIONS(1993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddchap] = ACTIONS(1993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsection] = ACTIONS(1993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddsec] = ACTIONS(1993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHparagraph] = ACTIONS(1993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [178] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(588), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(589), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat7] = STATE(588), - [aux_sym__section_repeat8] = STATE(589), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(2103), + [anon_sym_BSLASHpart] = ACTIONS(2093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddpart] = ACTIONS(2093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHchapter] = ACTIONS(2093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddchap] = ACTIONS(2093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsection] = ACTIONS(2093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddsec] = ACTIONS(2093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHparagraph] = ACTIONS(2093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHend] = ACTIONS(2093), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [179] = { - [sym_block_comment] = STATE(178), - [sym__flat_content] = STATE(178), - [sym__text_with_env_content] = STATE(178), - [sym__text_content] = STATE(178), - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(515), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(516), - [sym_curly_group] = STATE(178), - [sym_text] = STATE(178), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(178), - [sym_inline_formula] = STATE(178), - [sym_math_set] = STATE(178), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(178), - [sym_comment_environment] = STATE(178), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(178), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(178), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(178), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(178), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(178), - [sym_generic_command] = STATE(178), - [sym_package_include] = STATE(178), - [sym_class_include] = STATE(178), - [sym_latex_include] = STATE(178), - [sym_biblatex_include] = STATE(178), - [sym_bibtex_include] = STATE(178), - [sym_graphics_include] = STATE(178), - [sym_svg_include] = STATE(178), - [sym_inkscape_include] = STATE(178), - [sym_verbatim_include] = STATE(178), - [sym_import_include] = STATE(178), - [sym_caption] = STATE(178), - [sym_citation] = STATE(178), - [sym_label_definition] = STATE(178), - [sym_label_reference] = STATE(178), - [sym_label_reference_range] = STATE(178), - [sym_label_number] = STATE(178), - [sym_new_command_definition] = STATE(178), - [sym_old_command_definition] = STATE(178), - [sym_let_command_definition] = STATE(178), - [sym_paired_delimiter_definition] = STATE(178), - [sym_environment_definition] = STATE(178), - [sym_glossary_entry_definition] = STATE(178), - [sym_glossary_entry_reference] = STATE(178), - [sym_acronym_definition] = STATE(178), - [sym_acronym_reference] = STATE(178), - [sym_theorem_definition] = STATE(178), - [sym_color_definition] = STATE(178), - [sym_color_set_definition] = STATE(178), - [sym_color_reference] = STATE(178), - [sym_tikz_library_import] = STATE(178), - [sym_text_mode] = STATE(178), - [aux_sym__section_repeat7] = STATE(515), - [aux_sym__section_repeat8] = STATE(516), - [aux_sym_part_repeat1] = STATE(178), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_RBRACK] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_BSLASHpart] = ACTIONS(1993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddpart] = ACTIONS(1993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHchapter] = ACTIONS(1993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddchap] = ACTIONS(1993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsection] = ACTIONS(1993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddsec] = ACTIONS(1993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHparagraph] = ACTIONS(1993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [201] = { + [sym_block_comment] = STATE(197), + [sym__flat_content] = STATE(197), + [sym__text_with_env_content] = STATE(197), + [sym__text_content] = STATE(197), + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(534), + [sym_curly_group] = STATE(197), + [sym_text] = STATE(197), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(197), + [sym_inline_formula] = STATE(197), + [sym_math_set] = STATE(197), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(197), + [sym_comment_environment] = STATE(197), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(197), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(197), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(197), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(197), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(197), + [sym_generic_command] = STATE(197), + [sym_title_declaration] = STATE(197), + [sym_author_declaration] = STATE(197), + [sym_package_include] = STATE(197), + [sym_class_include] = STATE(197), + [sym_latex_include] = STATE(197), + [sym_biblatex_include] = STATE(197), + [sym_bibtex_include] = STATE(197), + [sym_graphics_include] = STATE(197), + [sym_svg_include] = STATE(197), + [sym_inkscape_include] = STATE(197), + [sym_verbatim_include] = STATE(197), + [sym_import_include] = STATE(197), + [sym_caption] = STATE(197), + [sym_citation] = STATE(197), + [sym_label_definition] = STATE(197), + [sym_label_reference] = STATE(197), + [sym_label_reference_range] = STATE(197), + [sym_label_number] = STATE(197), + [sym_new_command_definition] = STATE(197), + [sym_old_command_definition] = STATE(197), + [sym_let_command_definition] = STATE(197), + [sym_paired_delimiter_definition] = STATE(197), + [sym_environment_definition] = STATE(197), + [sym_glossary_entry_definition] = STATE(197), + [sym_glossary_entry_reference] = STATE(197), + [sym_acronym_definition] = STATE(197), + [sym_acronym_reference] = STATE(197), + [sym_theorem_definition] = STATE(197), + [sym_color_definition] = STATE(197), + [sym_color_set_definition] = STATE(197), + [sym_color_reference] = STATE(197), + [sym_tikz_library_import] = STATE(197), + [sym_text_mode] = STATE(197), + [aux_sym__section_repeat8] = STATE(534), + [aux_sym_part_repeat1] = STATE(197), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_RBRACK] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_BSLASHpart] = ACTIONS(2093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddpart] = ACTIONS(2093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), + [anon_sym_BSLASHchapter] = ACTIONS(2093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddchap] = ACTIONS(2093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsection] = ACTIONS(2093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHaddsec] = ACTIONS(2093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), + [anon_sym_BSLASHparagraph] = ACTIONS(2093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [180] = { - [sym_block_comment] = STATE(181), - [sym__flat_content] = STATE(181), - [sym__text_with_env_content] = STATE(181), - [sym__text_content] = STATE(181), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(600), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(601), - [sym_curly_group] = STATE(181), - [sym_text] = STATE(181), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(181), - [sym_inline_formula] = STATE(181), - [sym_math_set] = STATE(181), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(181), - [sym_comment_environment] = STATE(181), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(181), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(181), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(181), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(181), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(181), - [sym_generic_command] = STATE(181), - [sym_package_include] = STATE(181), - [sym_class_include] = STATE(181), - [sym_latex_include] = STATE(181), - [sym_biblatex_include] = STATE(181), - [sym_bibtex_include] = STATE(181), - [sym_graphics_include] = STATE(181), - [sym_svg_include] = STATE(181), - [sym_inkscape_include] = STATE(181), - [sym_verbatim_include] = STATE(181), - [sym_import_include] = STATE(181), - [sym_caption] = STATE(181), - [sym_citation] = STATE(181), - [sym_label_definition] = STATE(181), - [sym_label_reference] = STATE(181), - [sym_label_reference_range] = STATE(181), - [sym_label_number] = STATE(181), - [sym_new_command_definition] = STATE(181), - [sym_old_command_definition] = STATE(181), - [sym_let_command_definition] = STATE(181), - [sym_paired_delimiter_definition] = STATE(181), - [sym_environment_definition] = STATE(181), - [sym_glossary_entry_definition] = STATE(181), - [sym_glossary_entry_reference] = STATE(181), - [sym_acronym_definition] = STATE(181), - [sym_acronym_reference] = STATE(181), - [sym_theorem_definition] = STATE(181), - [sym_color_definition] = STATE(181), - [sym_color_set_definition] = STATE(181), - [sym_color_reference] = STATE(181), - [sym_tikz_library_import] = STATE(181), - [sym_text_mode] = STATE(181), - [aux_sym__section_repeat7] = STATE(600), - [aux_sym__section_repeat8] = STATE(601), - [aux_sym_part_repeat1] = STATE(181), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), + [202] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(469), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym__section_repeat8] = STATE(469), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_BSLASHpart] = ACTIONS(1993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddpart] = ACTIONS(1993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1989), - [anon_sym_BSLASHchapter] = ACTIONS(1993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddchap] = ACTIONS(1993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsection] = ACTIONS(1993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHaddsec] = ACTIONS(1993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1989), - [anon_sym_BSLASHparagraph] = ACTIONS(1993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1989), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHend] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [181] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1995), + [203] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(416), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym__section_repeat8] = STATE(416), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [182] = { - [sym_block_comment] = STATE(183), - [sym__flat_content] = STATE(183), - [sym__text_with_env_content] = STATE(183), - [sym__text_content] = STATE(183), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(318), - [sym_curly_group] = STATE(183), - [sym_text] = STATE(183), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(183), - [sym_inline_formula] = STATE(183), - [sym_math_set] = STATE(183), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(183), - [sym_comment_environment] = STATE(183), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(183), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(183), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(183), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(183), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(183), - [sym_generic_command] = STATE(183), - [sym_package_include] = STATE(183), - [sym_class_include] = STATE(183), - [sym_latex_include] = STATE(183), - [sym_biblatex_include] = STATE(183), - [sym_bibtex_include] = STATE(183), - [sym_graphics_include] = STATE(183), - [sym_svg_include] = STATE(183), - [sym_inkscape_include] = STATE(183), - [sym_verbatim_include] = STATE(183), - [sym_import_include] = STATE(183), - [sym_caption] = STATE(183), - [sym_citation] = STATE(183), - [sym_label_definition] = STATE(183), - [sym_label_reference] = STATE(183), - [sym_label_reference_range] = STATE(183), - [sym_label_number] = STATE(183), - [sym_new_command_definition] = STATE(183), - [sym_old_command_definition] = STATE(183), - [sym_let_command_definition] = STATE(183), - [sym_paired_delimiter_definition] = STATE(183), - [sym_environment_definition] = STATE(183), - [sym_glossary_entry_definition] = STATE(183), - [sym_glossary_entry_reference] = STATE(183), - [sym_acronym_definition] = STATE(183), - [sym_acronym_reference] = STATE(183), - [sym_theorem_definition] = STATE(183), - [sym_color_definition] = STATE(183), - [sym_color_set_definition] = STATE(183), - [sym_color_reference] = STATE(183), - [sym_tikz_library_import] = STATE(183), - [sym_text_mode] = STATE(183), - [aux_sym__section_repeat8] = STATE(318), - [aux_sym_part_repeat1] = STATE(183), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2007), + [204] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_command_name] = ACTIONS(2109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_EQ] = ACTIONS(2115), + [anon_sym_BSLASHpart] = ACTIONS(2118), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddpart] = ACTIONS(2118), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHchapter] = ACTIONS(2118), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddchap] = ACTIONS(2118), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsection] = ACTIONS(2118), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddsec] = ACTIONS(2118), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHparagraph] = ACTIONS(2118), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2118), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHitem] = ACTIONS(2118), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2107), + [sym_word] = ACTIONS(2123), + [sym_placeholder] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym__] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2132), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2138), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2141), + [anon_sym_BSLASHbegin] = ACTIONS(2144), + [anon_sym_BSLASHtitle] = ACTIONS(2147), + [anon_sym_BSLASHauthor] = ACTIONS(2150), + [anon_sym_BSLASHusepackage] = ACTIONS(2153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2156), + [anon_sym_BSLASHinclude] = ACTIONS(2159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2159), + [anon_sym_BSLASHinput] = ACTIONS(2159), + [anon_sym_BSLASHsubfile] = ACTIONS(2159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2162), + [anon_sym_BSLASHbibliography] = ACTIONS(2165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2168), + [anon_sym_BSLASHincludesvg] = ACTIONS(2171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2174), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2177), + [anon_sym_BSLASHimport] = ACTIONS(2180), + [anon_sym_BSLASHsubimport] = ACTIONS(2180), + [anon_sym_BSLASHinputfrom] = ACTIONS(2180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2180), + [anon_sym_BSLASHincludefrom] = ACTIONS(2180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2180), + [anon_sym_BSLASHcaption] = ACTIONS(2183), + [anon_sym_BSLASHcite] = ACTIONS(2186), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2189), + [anon_sym_BSLASHCite] = ACTIONS(2186), + [anon_sym_BSLASHnocite] = ACTIONS(2186), + [anon_sym_BSLASHcitet] = ACTIONS(2186), + [anon_sym_BSLASHcitep] = ACTIONS(2186), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2189), + [anon_sym_BSLASHciteauthor] = ACTIONS(2186), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2186), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2189), + [anon_sym_BSLASHcitetitle] = ACTIONS(2186), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2189), + [anon_sym_BSLASHciteyear] = ACTIONS(2186), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2189), + [anon_sym_BSLASHcitedate] = ACTIONS(2186), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2189), + [anon_sym_BSLASHciteurl] = ACTIONS(2186), + [anon_sym_BSLASHfullcite] = ACTIONS(2186), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2186), + [anon_sym_BSLASHcitealt] = ACTIONS(2186), + [anon_sym_BSLASHcitealp] = ACTIONS(2186), + [anon_sym_BSLASHcitetext] = ACTIONS(2186), + [anon_sym_BSLASHparencite] = ACTIONS(2186), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2189), + [anon_sym_BSLASHParencite] = ACTIONS(2186), + [anon_sym_BSLASHfootcite] = ACTIONS(2186), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2186), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2186), + [anon_sym_BSLASHtextcite] = ACTIONS(2186), + [anon_sym_BSLASHTextcite] = ACTIONS(2186), + [anon_sym_BSLASHsmartcite] = ACTIONS(2186), + [anon_sym_BSLASHSmartcite] = ACTIONS(2186), + [anon_sym_BSLASHsupercite] = ACTIONS(2186), + [anon_sym_BSLASHautocite] = ACTIONS(2186), + [anon_sym_BSLASHAutocite] = ACTIONS(2186), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2189), + [anon_sym_BSLASHvolcite] = ACTIONS(2186), + [anon_sym_BSLASHVolcite] = ACTIONS(2186), + [anon_sym_BSLASHpvolcite] = ACTIONS(2186), + [anon_sym_BSLASHPvolcite] = ACTIONS(2186), + [anon_sym_BSLASHfvolcite] = ACTIONS(2186), + [anon_sym_BSLASHftvolcite] = ACTIONS(2186), + [anon_sym_BSLASHsvolcite] = ACTIONS(2186), + [anon_sym_BSLASHSvolcite] = ACTIONS(2186), + [anon_sym_BSLASHtvolcite] = ACTIONS(2186), + [anon_sym_BSLASHTvolcite] = ACTIONS(2186), + [anon_sym_BSLASHavolcite] = ACTIONS(2186), + [anon_sym_BSLASHAvolcite] = ACTIONS(2186), + [anon_sym_BSLASHnotecite] = ACTIONS(2186), + [anon_sym_BSLASHNotecite] = ACTIONS(2186), + [anon_sym_BSLASHpnotecite] = ACTIONS(2186), + [anon_sym_BSLASHPnotecite] = ACTIONS(2186), + [anon_sym_BSLASHfnotecite] = ACTIONS(2186), + [anon_sym_BSLASHlabel] = ACTIONS(2192), + [anon_sym_BSLASHref] = ACTIONS(2195), + [anon_sym_BSLASHeqref] = ACTIONS(2195), + [anon_sym_BSLASHvref] = ACTIONS(2195), + [anon_sym_BSLASHVref] = ACTIONS(2195), + [anon_sym_BSLASHautoref] = ACTIONS(2195), + [anon_sym_BSLASHpageref] = ACTIONS(2195), + [anon_sym_BSLASHcref] = ACTIONS(2195), + [anon_sym_BSLASHCref] = ACTIONS(2195), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2198), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2198), + [anon_sym_BSLASHnamecref] = ACTIONS(2195), + [anon_sym_BSLASHnameCref] = ACTIONS(2195), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2195), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2195), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2195), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2195), + [anon_sym_BSLASHlabelcref] = ACTIONS(2195), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2195), + [anon_sym_BSLASHcrefrange] = ACTIONS(2201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), + [anon_sym_BSLASHCrefrange] = ACTIONS(2201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), + [anon_sym_BSLASHnewlabel] = ACTIONS(2207), + [anon_sym_BSLASHnewcommand] = ACTIONS(2210), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2210), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2210), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2210), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2213), + [anon_sym_BSLASHdef] = ACTIONS(2216), + [anon_sym_BSLASHlet] = ACTIONS(2219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2222), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2222), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2228), + [anon_sym_BSLASHgls] = ACTIONS(2231), + [anon_sym_BSLASHGls] = ACTIONS(2231), + [anon_sym_BSLASHGLS] = ACTIONS(2231), + [anon_sym_BSLASHglspl] = ACTIONS(2231), + [anon_sym_BSLASHGlspl] = ACTIONS(2231), + [anon_sym_BSLASHGLSpl] = ACTIONS(2231), + [anon_sym_BSLASHglsdisp] = ACTIONS(2231), + [anon_sym_BSLASHglslink] = ACTIONS(2231), + [anon_sym_BSLASHglstext] = ACTIONS(2231), + [anon_sym_BSLASHGlstext] = ACTIONS(2231), + [anon_sym_BSLASHGLStext] = ACTIONS(2231), + [anon_sym_BSLASHglsfirst] = ACTIONS(2231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2231), + [anon_sym_BSLASHglsplural] = ACTIONS(2231), + [anon_sym_BSLASHGlsplural] = ACTIONS(2231), + [anon_sym_BSLASHGLSplural] = ACTIONS(2231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2231), + [anon_sym_BSLASHglsname] = ACTIONS(2231), + [anon_sym_BSLASHGlsname] = ACTIONS(2231), + [anon_sym_BSLASHGLSname] = ACTIONS(2231), + [anon_sym_BSLASHglssymbol] = ACTIONS(2231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2231), + [anon_sym_BSLASHglsdesc] = ACTIONS(2231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2231), + [anon_sym_BSLASHglsuseri] = ACTIONS(2231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2231), + [anon_sym_BSLASHglsuserii] = ACTIONS(2231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2231), + [anon_sym_BSLASHglsuserv] = ACTIONS(2231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2231), + [anon_sym_BSLASHglsuservi] = ACTIONS(2231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2231), + [anon_sym_BSLASHnewacronym] = ACTIONS(2234), + [anon_sym_BSLASHacrshort] = ACTIONS(2237), + [anon_sym_BSLASHAcrshort] = ACTIONS(2237), + [anon_sym_BSLASHACRshort] = ACTIONS(2237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2237), + [anon_sym_BSLASHacrlong] = ACTIONS(2237), + [anon_sym_BSLASHAcrlong] = ACTIONS(2237), + [anon_sym_BSLASHACRlong] = ACTIONS(2237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2237), + [anon_sym_BSLASHacrfull] = ACTIONS(2237), + [anon_sym_BSLASHAcrfull] = ACTIONS(2237), + [anon_sym_BSLASHACRfull] = ACTIONS(2237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2237), + [anon_sym_BSLASHacs] = ACTIONS(2237), + [anon_sym_BSLASHAcs] = ACTIONS(2237), + [anon_sym_BSLASHacsp] = ACTIONS(2237), + [anon_sym_BSLASHAcsp] = ACTIONS(2237), + [anon_sym_BSLASHacl] = ACTIONS(2237), + [anon_sym_BSLASHAcl] = ACTIONS(2237), + [anon_sym_BSLASHaclp] = ACTIONS(2237), + [anon_sym_BSLASHAclp] = ACTIONS(2237), + [anon_sym_BSLASHacf] = ACTIONS(2237), + [anon_sym_BSLASHAcf] = ACTIONS(2237), + [anon_sym_BSLASHacfp] = ACTIONS(2237), + [anon_sym_BSLASHAcfp] = ACTIONS(2237), + [anon_sym_BSLASHac] = ACTIONS(2237), + [anon_sym_BSLASHAc] = ACTIONS(2237), + [anon_sym_BSLASHacp] = ACTIONS(2237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2240), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2240), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2246), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2249), + [anon_sym_BSLASHcolor] = ACTIONS(2252), + [anon_sym_BSLASHcolorbox] = ACTIONS(2252), + [anon_sym_BSLASHtextcolor] = ACTIONS(2252), + [anon_sym_BSLASHpagecolor] = ACTIONS(2252), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2255), + [anon_sym_BSLASHtext] = ACTIONS(2258), + [anon_sym_BSLASHintertext] = ACTIONS(2258), + [anon_sym_shortintertext] = ACTIONS(2258), + }, + [205] = { + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_title_declaration] = STATE(206), + [sym_author_declaration] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_paired_delimiter_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2261), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2009), - [anon_sym_BSLASHpart] = ACTIONS(2011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddpart] = ACTIONS(2011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHchapter] = ACTIONS(2011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddchap] = ACTIONS(2011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsection] = ACTIONS(2011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddsec] = ACTIONS(2011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHparagraph] = ACTIONS(2011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2263), + [anon_sym_EQ] = ACTIONS(2263), + [anon_sym_BSLASHpart] = ACTIONS(2265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddpart] = ACTIONS(2265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHchapter] = ACTIONS(2265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddchap] = ACTIONS(2265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsection] = ACTIONS(2265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddsec] = ACTIONS(2265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHparagraph] = ACTIONS(2265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHitem] = ACTIONS(2265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2261), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2261), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -82598,323 +92204,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [183] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(314), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym__section_repeat8] = STATE(314), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2013), + [206] = { + [sym_block_comment] = STATE(204), + [sym__flat_content] = STATE(204), + [sym__text_with_env_content] = STATE(204), + [sym__text_content] = STATE(204), + [sym_curly_group] = STATE(204), + [sym_text] = STATE(204), + [sym_operator] = STATE(793), + [sym_displayed_equation] = STATE(204), + [sym_inline_formula] = STATE(204), + [sym_math_set] = STATE(204), + [sym_begin] = STATE(20), + [sym_generic_environment] = STATE(204), + [sym_comment_environment] = STATE(204), + [sym__trivia_begin_comment] = STATE(2754), + [sym_verbatim_environment] = STATE(204), + [sym__trivia_begin_verbatim] = STATE(2780), + [sym_listing_environment] = STATE(204), + [sym__trivia_begin_listing] = STATE(2756), + [sym_minted_environment] = STATE(204), + [sym__trivia_begin_minted] = STATE(2757), + [sym_pycode_environment] = STATE(204), + [sym__trivia_begin_pycode] = STATE(2763), + [sym__command] = STATE(204), + [sym_generic_command] = STATE(204), + [sym_title_declaration] = STATE(204), + [sym_author_declaration] = STATE(204), + [sym_package_include] = STATE(204), + [sym_class_include] = STATE(204), + [sym_latex_include] = STATE(204), + [sym_biblatex_include] = STATE(204), + [sym_bibtex_include] = STATE(204), + [sym_graphics_include] = STATE(204), + [sym_svg_include] = STATE(204), + [sym_inkscape_include] = STATE(204), + [sym_verbatim_include] = STATE(204), + [sym_import_include] = STATE(204), + [sym_caption] = STATE(204), + [sym_citation] = STATE(204), + [sym_label_definition] = STATE(204), + [sym_label_reference] = STATE(204), + [sym_label_reference_range] = STATE(204), + [sym_label_number] = STATE(204), + [sym_new_command_definition] = STATE(204), + [sym_old_command_definition] = STATE(204), + [sym_let_command_definition] = STATE(204), + [sym_paired_delimiter_definition] = STATE(204), + [sym_environment_definition] = STATE(204), + [sym_glossary_entry_definition] = STATE(204), + [sym_glossary_entry_reference] = STATE(204), + [sym_acronym_definition] = STATE(204), + [sym_acronym_reference] = STATE(204), + [sym_theorem_definition] = STATE(204), + [sym_color_definition] = STATE(204), + [sym_color_set_definition] = STATE(204), + [sym_color_reference] = STATE(204), + [sym_tikz_library_import] = STATE(204), + [sym_text_mode] = STATE(204), + [aux_sym_part_repeat1] = STATE(204), + [aux_sym_text_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(2267), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_BSLASHpart] = ACTIONS(2269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddpart] = ACTIONS(2269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHchapter] = ACTIONS(2269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddchap] = ACTIONS(2269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsection] = ACTIONS(2269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddsec] = ACTIONS(2269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHparagraph] = ACTIONS(2269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHitem] = ACTIONS(2269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2267), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2267), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -82935,7984 +92542,4662 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(57), [anon_sym_BSLASH_LBRACE] = ACTIONS(59), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(137), + [anon_sym_BSLASHintertext] = ACTIONS(137), + [anon_sym_shortintertext] = ACTIONS(137), }, - [184] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(350), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym__section_repeat8] = STATE(350), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [207] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_BSLASHpart] = ACTIONS(2269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddpart] = ACTIONS(2269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHchapter] = ACTIONS(2269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddchap] = ACTIONS(2269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsection] = ACTIONS(2269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddsec] = ACTIONS(2269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHparagraph] = ACTIONS(2269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHitem] = ACTIONS(2269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2267), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [185] = { - [sym_block_comment] = STATE(187), - [sym__flat_content] = STATE(187), - [sym__text_with_env_content] = STATE(187), - [sym__text_content] = STATE(187), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(428), - [sym_curly_group] = STATE(187), - [sym_text] = STATE(187), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(187), - [sym_inline_formula] = STATE(187), - [sym_math_set] = STATE(187), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(187), - [sym_comment_environment] = STATE(187), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(187), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(187), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(187), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(187), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(187), - [sym_generic_command] = STATE(187), - [sym_package_include] = STATE(187), - [sym_class_include] = STATE(187), - [sym_latex_include] = STATE(187), - [sym_biblatex_include] = STATE(187), - [sym_bibtex_include] = STATE(187), - [sym_graphics_include] = STATE(187), - [sym_svg_include] = STATE(187), - [sym_inkscape_include] = STATE(187), - [sym_verbatim_include] = STATE(187), - [sym_import_include] = STATE(187), - [sym_caption] = STATE(187), - [sym_citation] = STATE(187), - [sym_label_definition] = STATE(187), - [sym_label_reference] = STATE(187), - [sym_label_reference_range] = STATE(187), - [sym_label_number] = STATE(187), - [sym_new_command_definition] = STATE(187), - [sym_old_command_definition] = STATE(187), - [sym_let_command_definition] = STATE(187), - [sym_paired_delimiter_definition] = STATE(187), - [sym_environment_definition] = STATE(187), - [sym_glossary_entry_definition] = STATE(187), - [sym_glossary_entry_reference] = STATE(187), - [sym_acronym_definition] = STATE(187), - [sym_acronym_reference] = STATE(187), - [sym_theorem_definition] = STATE(187), - [sym_color_definition] = STATE(187), - [sym_color_set_definition] = STATE(187), - [sym_color_reference] = STATE(187), - [sym_tikz_library_import] = STATE(187), - [sym_text_mode] = STATE(187), - [aux_sym__section_repeat8] = STATE(428), - [aux_sym_part_repeat1] = STATE(187), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(2017), - [anon_sym_BSLASHpart] = ACTIONS(2011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddpart] = ACTIONS(2011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHchapter] = ACTIONS(2011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddchap] = ACTIONS(2011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsection] = ACTIONS(2011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddsec] = ACTIONS(2011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHparagraph] = ACTIONS(2011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [208] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_RBRACK] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_BSLASHpart] = ACTIONS(2269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddpart] = ACTIONS(2269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHchapter] = ACTIONS(2269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddchap] = ACTIONS(2269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsection] = ACTIONS(2269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddsec] = ACTIONS(2269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHparagraph] = ACTIONS(2269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHitem] = ACTIONS(2269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2011), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHend] = ACTIONS(2269), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [186] = { - [sym_block_comment] = STATE(184), - [sym__flat_content] = STATE(184), - [sym__text_with_env_content] = STATE(184), - [sym__text_content] = STATE(184), - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(458), - [sym_curly_group] = STATE(184), - [sym_text] = STATE(184), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(184), - [sym_inline_formula] = STATE(184), - [sym_math_set] = STATE(184), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(184), - [sym_comment_environment] = STATE(184), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(184), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(184), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(184), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(184), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(184), - [sym_generic_command] = STATE(184), - [sym_package_include] = STATE(184), - [sym_class_include] = STATE(184), - [sym_latex_include] = STATE(184), - [sym_biblatex_include] = STATE(184), - [sym_bibtex_include] = STATE(184), - [sym_graphics_include] = STATE(184), - [sym_svg_include] = STATE(184), - [sym_inkscape_include] = STATE(184), - [sym_verbatim_include] = STATE(184), - [sym_import_include] = STATE(184), - [sym_caption] = STATE(184), - [sym_citation] = STATE(184), - [sym_label_definition] = STATE(184), - [sym_label_reference] = STATE(184), - [sym_label_reference_range] = STATE(184), - [sym_label_number] = STATE(184), - [sym_new_command_definition] = STATE(184), - [sym_old_command_definition] = STATE(184), - [sym_let_command_definition] = STATE(184), - [sym_paired_delimiter_definition] = STATE(184), - [sym_environment_definition] = STATE(184), - [sym_glossary_entry_definition] = STATE(184), - [sym_glossary_entry_reference] = STATE(184), - [sym_acronym_definition] = STATE(184), - [sym_acronym_reference] = STATE(184), - [sym_theorem_definition] = STATE(184), - [sym_color_definition] = STATE(184), - [sym_color_set_definition] = STATE(184), - [sym_color_reference] = STATE(184), - [sym_tikz_library_import] = STATE(184), - [sym_text_mode] = STATE(184), - [aux_sym__section_repeat8] = STATE(458), - [aux_sym_part_repeat1] = STATE(184), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_COMMA] = ACTIONS(2019), - [anon_sym_EQ] = ACTIONS(2019), - [anon_sym_BSLASHpart] = ACTIONS(2011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddpart] = ACTIONS(2011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHchapter] = ACTIONS(2011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddchap] = ACTIONS(2011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsection] = ACTIONS(2011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddsec] = ACTIONS(2011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHparagraph] = ACTIONS(2011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2007), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [187] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), - }, - [188] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(605), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym__section_repeat8] = STATE(605), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [189] = { - [sym_block_comment] = STATE(191), - [sym__flat_content] = STATE(191), - [sym__text_with_env_content] = STATE(191), - [sym__text_content] = STATE(191), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(518), - [sym_curly_group] = STATE(191), - [sym_text] = STATE(191), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(191), - [sym_inline_formula] = STATE(191), - [sym_math_set] = STATE(191), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(191), - [sym_comment_environment] = STATE(191), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(191), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(191), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(191), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(191), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(191), - [sym_generic_command] = STATE(191), - [sym_package_include] = STATE(191), - [sym_class_include] = STATE(191), - [sym_latex_include] = STATE(191), - [sym_biblatex_include] = STATE(191), - [sym_bibtex_include] = STATE(191), - [sym_graphics_include] = STATE(191), - [sym_svg_include] = STATE(191), - [sym_inkscape_include] = STATE(191), - [sym_verbatim_include] = STATE(191), - [sym_import_include] = STATE(191), - [sym_caption] = STATE(191), - [sym_citation] = STATE(191), - [sym_label_definition] = STATE(191), - [sym_label_reference] = STATE(191), - [sym_label_reference_range] = STATE(191), - [sym_label_number] = STATE(191), - [sym_new_command_definition] = STATE(191), - [sym_old_command_definition] = STATE(191), - [sym_let_command_definition] = STATE(191), - [sym_paired_delimiter_definition] = STATE(191), - [sym_environment_definition] = STATE(191), - [sym_glossary_entry_definition] = STATE(191), - [sym_glossary_entry_reference] = STATE(191), - [sym_acronym_definition] = STATE(191), - [sym_acronym_reference] = STATE(191), - [sym_theorem_definition] = STATE(191), - [sym_color_definition] = STATE(191), - [sym_color_set_definition] = STATE(191), - [sym_color_reference] = STATE(191), - [sym_tikz_library_import] = STATE(191), - [sym_text_mode] = STATE(191), - [aux_sym__section_repeat8] = STATE(518), - [aux_sym_part_repeat1] = STATE(191), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(2021), - [anon_sym_BSLASHpart] = ACTIONS(2011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddpart] = ACTIONS(2011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHchapter] = ACTIONS(2011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddchap] = ACTIONS(2011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsection] = ACTIONS(2011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddsec] = ACTIONS(2011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHparagraph] = ACTIONS(2011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [190] = { - [sym_block_comment] = STATE(188), - [sym__flat_content] = STATE(188), - [sym__text_with_env_content] = STATE(188), - [sym__text_content] = STATE(188), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(602), - [sym_curly_group] = STATE(188), - [sym_text] = STATE(188), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(188), - [sym_inline_formula] = STATE(188), - [sym_math_set] = STATE(188), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(188), - [sym_comment_environment] = STATE(188), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(188), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(188), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(188), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(188), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(188), - [sym_generic_command] = STATE(188), - [sym_package_include] = STATE(188), - [sym_class_include] = STATE(188), - [sym_latex_include] = STATE(188), - [sym_biblatex_include] = STATE(188), - [sym_bibtex_include] = STATE(188), - [sym_graphics_include] = STATE(188), - [sym_svg_include] = STATE(188), - [sym_inkscape_include] = STATE(188), - [sym_verbatim_include] = STATE(188), - [sym_import_include] = STATE(188), - [sym_caption] = STATE(188), - [sym_citation] = STATE(188), - [sym_label_definition] = STATE(188), - [sym_label_reference] = STATE(188), - [sym_label_reference_range] = STATE(188), - [sym_label_number] = STATE(188), - [sym_new_command_definition] = STATE(188), - [sym_old_command_definition] = STATE(188), - [sym_let_command_definition] = STATE(188), - [sym_paired_delimiter_definition] = STATE(188), - [sym_environment_definition] = STATE(188), - [sym_glossary_entry_definition] = STATE(188), - [sym_glossary_entry_reference] = STATE(188), - [sym_acronym_definition] = STATE(188), - [sym_acronym_reference] = STATE(188), - [sym_theorem_definition] = STATE(188), - [sym_color_definition] = STATE(188), - [sym_color_set_definition] = STATE(188), - [sym_color_reference] = STATE(188), - [sym_tikz_library_import] = STATE(188), - [sym_text_mode] = STATE(188), - [aux_sym__section_repeat8] = STATE(602), - [aux_sym_part_repeat1] = STATE(188), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2023), - [anon_sym_BSLASHpart] = ACTIONS(2011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddpart] = ACTIONS(2011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2007), - [anon_sym_BSLASHchapter] = ACTIONS(2011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddchap] = ACTIONS(2011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsection] = ACTIONS(2011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHaddsec] = ACTIONS(2011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2007), - [anon_sym_BSLASHparagraph] = ACTIONS(2011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2007), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2007), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), - }, - [191] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(590), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym__section_repeat8] = STATE(590), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [192] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_command_name] = ACTIONS(2027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_EQ] = ACTIONS(2033), - [anon_sym_BSLASHpart] = ACTIONS(2036), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddpart] = ACTIONS(2036), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHchapter] = ACTIONS(2036), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddchap] = ACTIONS(2036), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsection] = ACTIONS(2036), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddsec] = ACTIONS(2036), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHparagraph] = ACTIONS(2036), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2036), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHitem] = ACTIONS(2036), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2025), - [sym_word] = ACTIONS(2041), - [sym_placeholder] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym__] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_GT] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_COLON] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2050), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2056), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2059), - [anon_sym_BSLASHbegin] = ACTIONS(2062), - [anon_sym_BSLASHusepackage] = ACTIONS(2065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2068), - [anon_sym_BSLASHinclude] = ACTIONS(2071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2071), - [anon_sym_BSLASHinput] = ACTIONS(2071), - [anon_sym_BSLASHsubfile] = ACTIONS(2071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2074), - [anon_sym_BSLASHbibliography] = ACTIONS(2077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2080), - [anon_sym_BSLASHincludesvg] = ACTIONS(2083), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2086), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2089), - [anon_sym_BSLASHimport] = ACTIONS(2092), - [anon_sym_BSLASHsubimport] = ACTIONS(2092), - [anon_sym_BSLASHinputfrom] = ACTIONS(2092), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2092), - [anon_sym_BSLASHincludefrom] = ACTIONS(2092), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2092), - [anon_sym_BSLASHcaption] = ACTIONS(2095), - [anon_sym_BSLASHcite] = ACTIONS(2098), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2101), - [anon_sym_BSLASHCite] = ACTIONS(2098), - [anon_sym_BSLASHnocite] = ACTIONS(2098), - [anon_sym_BSLASHcitet] = ACTIONS(2098), - [anon_sym_BSLASHcitep] = ACTIONS(2098), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2101), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2101), - [anon_sym_BSLASHciteauthor] = ACTIONS(2098), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2101), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2098), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2101), - [anon_sym_BSLASHcitetitle] = ACTIONS(2098), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2101), - [anon_sym_BSLASHciteyear] = ACTIONS(2098), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2101), - [anon_sym_BSLASHcitedate] = ACTIONS(2098), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2101), - [anon_sym_BSLASHciteurl] = ACTIONS(2098), - [anon_sym_BSLASHfullcite] = ACTIONS(2098), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2098), - [anon_sym_BSLASHcitealt] = ACTIONS(2098), - [anon_sym_BSLASHcitealp] = ACTIONS(2098), - [anon_sym_BSLASHcitetext] = ACTIONS(2098), - [anon_sym_BSLASHparencite] = ACTIONS(2098), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2101), - [anon_sym_BSLASHParencite] = ACTIONS(2098), - [anon_sym_BSLASHfootcite] = ACTIONS(2098), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2098), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2098), - [anon_sym_BSLASHtextcite] = ACTIONS(2098), - [anon_sym_BSLASHTextcite] = ACTIONS(2098), - [anon_sym_BSLASHsmartcite] = ACTIONS(2098), - [anon_sym_BSLASHSmartcite] = ACTIONS(2098), - [anon_sym_BSLASHsupercite] = ACTIONS(2098), - [anon_sym_BSLASHautocite] = ACTIONS(2098), - [anon_sym_BSLASHAutocite] = ACTIONS(2098), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2101), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2101), - [anon_sym_BSLASHvolcite] = ACTIONS(2098), - [anon_sym_BSLASHVolcite] = ACTIONS(2098), - [anon_sym_BSLASHpvolcite] = ACTIONS(2098), - [anon_sym_BSLASHPvolcite] = ACTIONS(2098), - [anon_sym_BSLASHfvolcite] = ACTIONS(2098), - [anon_sym_BSLASHftvolcite] = ACTIONS(2098), - [anon_sym_BSLASHsvolcite] = ACTIONS(2098), - [anon_sym_BSLASHSvolcite] = ACTIONS(2098), - [anon_sym_BSLASHtvolcite] = ACTIONS(2098), - [anon_sym_BSLASHTvolcite] = ACTIONS(2098), - [anon_sym_BSLASHavolcite] = ACTIONS(2098), - [anon_sym_BSLASHAvolcite] = ACTIONS(2098), - [anon_sym_BSLASHnotecite] = ACTIONS(2098), - [anon_sym_BSLASHNotecite] = ACTIONS(2098), - [anon_sym_BSLASHpnotecite] = ACTIONS(2098), - [anon_sym_BSLASHPnotecite] = ACTIONS(2098), - [anon_sym_BSLASHfnotecite] = ACTIONS(2098), - [anon_sym_BSLASHlabel] = ACTIONS(2104), - [anon_sym_BSLASHref] = ACTIONS(2107), - [anon_sym_BSLASHeqref] = ACTIONS(2107), - [anon_sym_BSLASHvref] = ACTIONS(2107), - [anon_sym_BSLASHVref] = ACTIONS(2107), - [anon_sym_BSLASHautoref] = ACTIONS(2107), - [anon_sym_BSLASHpageref] = ACTIONS(2107), - [anon_sym_BSLASHcref] = ACTIONS(2107), - [anon_sym_BSLASHCref] = ACTIONS(2107), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2110), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2110), - [anon_sym_BSLASHnamecref] = ACTIONS(2107), - [anon_sym_BSLASHnameCref] = ACTIONS(2107), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2107), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2107), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2107), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2107), - [anon_sym_BSLASHlabelcref] = ACTIONS(2107), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2107), - [anon_sym_BSLASHcrefrange] = ACTIONS(2113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2116), - [anon_sym_BSLASHCrefrange] = ACTIONS(2113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2116), - [anon_sym_BSLASHnewlabel] = ACTIONS(2119), - [anon_sym_BSLASHnewcommand] = ACTIONS(2122), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2125), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2122), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2125), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2122), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2125), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2122), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2125), - [anon_sym_BSLASHdef] = ACTIONS(2128), - [anon_sym_BSLASHlet] = ACTIONS(2131), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2134), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2134), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2140), - [anon_sym_BSLASHgls] = ACTIONS(2143), - [anon_sym_BSLASHGls] = ACTIONS(2143), - [anon_sym_BSLASHGLS] = ACTIONS(2143), - [anon_sym_BSLASHglspl] = ACTIONS(2143), - [anon_sym_BSLASHGlspl] = ACTIONS(2143), - [anon_sym_BSLASHGLSpl] = ACTIONS(2143), - [anon_sym_BSLASHglsdisp] = ACTIONS(2143), - [anon_sym_BSLASHglslink] = ACTIONS(2143), - [anon_sym_BSLASHglstext] = ACTIONS(2143), - [anon_sym_BSLASHGlstext] = ACTIONS(2143), - [anon_sym_BSLASHGLStext] = ACTIONS(2143), - [anon_sym_BSLASHglsfirst] = ACTIONS(2143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2143), - [anon_sym_BSLASHglsplural] = ACTIONS(2143), - [anon_sym_BSLASHGlsplural] = ACTIONS(2143), - [anon_sym_BSLASHGLSplural] = ACTIONS(2143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2143), - [anon_sym_BSLASHglsname] = ACTIONS(2143), - [anon_sym_BSLASHGlsname] = ACTIONS(2143), - [anon_sym_BSLASHGLSname] = ACTIONS(2143), - [anon_sym_BSLASHglssymbol] = ACTIONS(2143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2143), - [anon_sym_BSLASHglsdesc] = ACTIONS(2143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2143), - [anon_sym_BSLASHglsuseri] = ACTIONS(2143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2143), - [anon_sym_BSLASHglsuserii] = ACTIONS(2143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2143), - [anon_sym_BSLASHglsuserv] = ACTIONS(2143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2143), - [anon_sym_BSLASHglsuservi] = ACTIONS(2143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2143), - [anon_sym_BSLASHnewacronym] = ACTIONS(2146), - [anon_sym_BSLASHacrshort] = ACTIONS(2149), - [anon_sym_BSLASHAcrshort] = ACTIONS(2149), - [anon_sym_BSLASHACRshort] = ACTIONS(2149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2149), - [anon_sym_BSLASHacrlong] = ACTIONS(2149), - [anon_sym_BSLASHAcrlong] = ACTIONS(2149), - [anon_sym_BSLASHACRlong] = ACTIONS(2149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2149), - [anon_sym_BSLASHacrfull] = ACTIONS(2149), - [anon_sym_BSLASHAcrfull] = ACTIONS(2149), - [anon_sym_BSLASHACRfull] = ACTIONS(2149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2149), - [anon_sym_BSLASHacs] = ACTIONS(2149), - [anon_sym_BSLASHAcs] = ACTIONS(2149), - [anon_sym_BSLASHacsp] = ACTIONS(2149), - [anon_sym_BSLASHAcsp] = ACTIONS(2149), - [anon_sym_BSLASHacl] = ACTIONS(2149), - [anon_sym_BSLASHAcl] = ACTIONS(2149), - [anon_sym_BSLASHaclp] = ACTIONS(2149), - [anon_sym_BSLASHAclp] = ACTIONS(2149), - [anon_sym_BSLASHacf] = ACTIONS(2149), - [anon_sym_BSLASHAcf] = ACTIONS(2149), - [anon_sym_BSLASHacfp] = ACTIONS(2149), - [anon_sym_BSLASHAcfp] = ACTIONS(2149), - [anon_sym_BSLASHac] = ACTIONS(2149), - [anon_sym_BSLASHAc] = ACTIONS(2149), - [anon_sym_BSLASHacp] = ACTIONS(2149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2152), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2152), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2161), - [anon_sym_BSLASHcolor] = ACTIONS(2164), - [anon_sym_BSLASHcolorbox] = ACTIONS(2164), - [anon_sym_BSLASHtextcolor] = ACTIONS(2164), - [anon_sym_BSLASHpagecolor] = ACTIONS(2164), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2167), - [anon_sym_BSLASHtext] = ACTIONS(2170), - [anon_sym_BSLASHintertext] = ACTIONS(2170), - [anon_sym_shortintertext] = ACTIONS(2170), - }, - [193] = { - [sym_block_comment] = STATE(194), - [sym__flat_content] = STATE(194), - [sym__text_with_env_content] = STATE(194), - [sym__text_content] = STATE(194), - [sym_curly_group] = STATE(194), - [sym_text] = STATE(194), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(194), - [sym_inline_formula] = STATE(194), - [sym_math_set] = STATE(194), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(194), - [sym_comment_environment] = STATE(194), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(194), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(194), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(194), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(194), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(194), - [sym_generic_command] = STATE(194), - [sym_package_include] = STATE(194), - [sym_class_include] = STATE(194), - [sym_latex_include] = STATE(194), - [sym_biblatex_include] = STATE(194), - [sym_bibtex_include] = STATE(194), - [sym_graphics_include] = STATE(194), - [sym_svg_include] = STATE(194), - [sym_inkscape_include] = STATE(194), - [sym_verbatim_include] = STATE(194), - [sym_import_include] = STATE(194), - [sym_caption] = STATE(194), - [sym_citation] = STATE(194), - [sym_label_definition] = STATE(194), - [sym_label_reference] = STATE(194), - [sym_label_reference_range] = STATE(194), - [sym_label_number] = STATE(194), - [sym_new_command_definition] = STATE(194), - [sym_old_command_definition] = STATE(194), - [sym_let_command_definition] = STATE(194), - [sym_paired_delimiter_definition] = STATE(194), - [sym_environment_definition] = STATE(194), - [sym_glossary_entry_definition] = STATE(194), - [sym_glossary_entry_reference] = STATE(194), - [sym_acronym_definition] = STATE(194), - [sym_acronym_reference] = STATE(194), - [sym_theorem_definition] = STATE(194), - [sym_color_definition] = STATE(194), - [sym_color_set_definition] = STATE(194), - [sym_color_reference] = STATE(194), - [sym_tikz_library_import] = STATE(194), - [sym_text_mode] = STATE(194), - [aux_sym_part_repeat1] = STATE(194), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2175), - [anon_sym_BSLASHpart] = ACTIONS(2177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddpart] = ACTIONS(2177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHchapter] = ACTIONS(2177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddchap] = ACTIONS(2177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsection] = ACTIONS(2177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddsec] = ACTIONS(2177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHparagraph] = ACTIONS(2177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHitem] = ACTIONS(2177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2173), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym__] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(51), - [anon_sym_GT] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH_LBRACK] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(55), - [anon_sym_BSLASH_LPAREN] = ACTIONS(57), - [anon_sym_BSLASH_LBRACE] = ACTIONS(59), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), - }, - [194] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(776), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(30), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2499), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2503), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2540), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2511), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2512), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_paired_delimiter_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [sym_text_mode] = STATE(192), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_BSLASHpart] = ACTIONS(2181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddpart] = ACTIONS(2181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHchapter] = ACTIONS(2181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddchap] = ACTIONS(2181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsection] = ACTIONS(2181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddsec] = ACTIONS(2181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHparagraph] = ACTIONS(2181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHitem] = ACTIONS(2181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2179), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym__] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(51), - [anon_sym_GT] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH_LBRACK] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(55), - [anon_sym_BSLASH_LPAREN] = ACTIONS(57), - [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [209] = { + [sym_block_comment] = STATE(207), + [sym__flat_content] = STATE(207), + [sym__text_with_env_content] = STATE(207), + [sym__text_content] = STATE(207), + [sym_curly_group] = STATE(207), + [sym_text] = STATE(207), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(207), + [sym_inline_formula] = STATE(207), + [sym_math_set] = STATE(207), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(207), + [sym_comment_environment] = STATE(207), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(207), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(207), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(207), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(207), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(207), + [sym_generic_command] = STATE(207), + [sym_title_declaration] = STATE(207), + [sym_author_declaration] = STATE(207), + [sym_package_include] = STATE(207), + [sym_class_include] = STATE(207), + [sym_latex_include] = STATE(207), + [sym_biblatex_include] = STATE(207), + [sym_bibtex_include] = STATE(207), + [sym_graphics_include] = STATE(207), + [sym_svg_include] = STATE(207), + [sym_inkscape_include] = STATE(207), + [sym_verbatim_include] = STATE(207), + [sym_import_include] = STATE(207), + [sym_caption] = STATE(207), + [sym_citation] = STATE(207), + [sym_label_definition] = STATE(207), + [sym_label_reference] = STATE(207), + [sym_label_reference_range] = STATE(207), + [sym_label_number] = STATE(207), + [sym_new_command_definition] = STATE(207), + [sym_old_command_definition] = STATE(207), + [sym_let_command_definition] = STATE(207), + [sym_paired_delimiter_definition] = STATE(207), + [sym_environment_definition] = STATE(207), + [sym_glossary_entry_definition] = STATE(207), + [sym_glossary_entry_reference] = STATE(207), + [sym_acronym_definition] = STATE(207), + [sym_acronym_reference] = STATE(207), + [sym_theorem_definition] = STATE(207), + [sym_color_definition] = STATE(207), + [sym_color_set_definition] = STATE(207), + [sym_color_reference] = STATE(207), + [sym_tikz_library_import] = STATE(207), + [sym_text_mode] = STATE(207), + [aux_sym_part_repeat1] = STATE(207), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_COMMA] = ACTIONS(2271), + [anon_sym_EQ] = ACTIONS(2271), + [anon_sym_BSLASHpart] = ACTIONS(2265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddpart] = ACTIONS(2265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHchapter] = ACTIONS(2265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddchap] = ACTIONS(2265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsection] = ACTIONS(2265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddsec] = ACTIONS(2265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHparagraph] = ACTIONS(2265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHitem] = ACTIONS(2265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(627), + [anon_sym_BSLASH_LBRACK] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(631), + [anon_sym_BSLASH_LBRACE] = ACTIONS(633), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2261), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(133), - [anon_sym_BSLASHintertext] = ACTIONS(133), - [anon_sym_shortintertext] = ACTIONS(133), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(711), + [anon_sym_BSLASHintertext] = ACTIONS(711), + [anon_sym_shortintertext] = ACTIONS(711), }, - [195] = { - [sym_block_comment] = STATE(206), - [sym__flat_content] = STATE(206), - [sym__text_with_env_content] = STATE(206), - [sym__text_content] = STATE(206), - [sym_curly_group] = STATE(206), - [sym_text] = STATE(206), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(206), - [sym_inline_formula] = STATE(206), - [sym_math_set] = STATE(206), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(206), - [sym_comment_environment] = STATE(206), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(206), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(206), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(206), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(206), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(206), - [sym_generic_command] = STATE(206), - [sym_package_include] = STATE(206), - [sym_class_include] = STATE(206), - [sym_latex_include] = STATE(206), - [sym_biblatex_include] = STATE(206), - [sym_bibtex_include] = STATE(206), - [sym_graphics_include] = STATE(206), - [sym_svg_include] = STATE(206), - [sym_inkscape_include] = STATE(206), - [sym_verbatim_include] = STATE(206), - [sym_import_include] = STATE(206), - [sym_caption] = STATE(206), - [sym_citation] = STATE(206), - [sym_label_definition] = STATE(206), - [sym_label_reference] = STATE(206), - [sym_label_reference_range] = STATE(206), - [sym_label_number] = STATE(206), - [sym_new_command_definition] = STATE(206), - [sym_old_command_definition] = STATE(206), - [sym_let_command_definition] = STATE(206), - [sym_paired_delimiter_definition] = STATE(206), - [sym_environment_definition] = STATE(206), - [sym_glossary_entry_definition] = STATE(206), - [sym_glossary_entry_reference] = STATE(206), - [sym_acronym_definition] = STATE(206), - [sym_acronym_reference] = STATE(206), - [sym_theorem_definition] = STATE(206), - [sym_color_definition] = STATE(206), - [sym_color_set_definition] = STATE(206), - [sym_color_reference] = STATE(206), - [sym_tikz_library_import] = STATE(206), - [sym_text_mode] = STATE(206), - [aux_sym_part_repeat1] = STATE(206), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_EQ] = ACTIONS(2183), - [anon_sym_BSLASHpart] = ACTIONS(2177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddpart] = ACTIONS(2177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHchapter] = ACTIONS(2177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddchap] = ACTIONS(2177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsection] = ACTIONS(2177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddsec] = ACTIONS(2177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHparagraph] = ACTIONS(2177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHitem] = ACTIONS(2177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), + [210] = { + [sym_block_comment] = STATE(208), + [sym__flat_content] = STATE(208), + [sym__text_with_env_content] = STATE(208), + [sym__text_content] = STATE(208), + [sym_curly_group] = STATE(208), + [sym_text] = STATE(208), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(208), + [sym_inline_formula] = STATE(208), + [sym_math_set] = STATE(208), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(208), + [sym_comment_environment] = STATE(208), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(208), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(208), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(208), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(208), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(208), + [sym_generic_command] = STATE(208), + [sym_title_declaration] = STATE(208), + [sym_author_declaration] = STATE(208), + [sym_package_include] = STATE(208), + [sym_class_include] = STATE(208), + [sym_latex_include] = STATE(208), + [sym_biblatex_include] = STATE(208), + [sym_bibtex_include] = STATE(208), + [sym_graphics_include] = STATE(208), + [sym_svg_include] = STATE(208), + [sym_inkscape_include] = STATE(208), + [sym_verbatim_include] = STATE(208), + [sym_import_include] = STATE(208), + [sym_caption] = STATE(208), + [sym_citation] = STATE(208), + [sym_label_definition] = STATE(208), + [sym_label_reference] = STATE(208), + [sym_label_reference_range] = STATE(208), + [sym_label_number] = STATE(208), + [sym_new_command_definition] = STATE(208), + [sym_old_command_definition] = STATE(208), + [sym_let_command_definition] = STATE(208), + [sym_paired_delimiter_definition] = STATE(208), + [sym_environment_definition] = STATE(208), + [sym_glossary_entry_definition] = STATE(208), + [sym_glossary_entry_reference] = STATE(208), + [sym_acronym_definition] = STATE(208), + [sym_acronym_reference] = STATE(208), + [sym_theorem_definition] = STATE(208), + [sym_color_definition] = STATE(208), + [sym_color_set_definition] = STATE(208), + [sym_color_reference] = STATE(208), + [sym_tikz_library_import] = STATE(208), + [sym_text_mode] = STATE(208), + [aux_sym_part_repeat1] = STATE(208), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_EQ] = ACTIONS(2273), + [anon_sym_BSLASHpart] = ACTIONS(2265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddpart] = ACTIONS(2265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHchapter] = ACTIONS(2265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddchap] = ACTIONS(2265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsection] = ACTIONS(2265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddsec] = ACTIONS(2265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHparagraph] = ACTIONS(2265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHitem] = ACTIONS(2265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(273), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(277), + [anon_sym_BSLASH_LBRACE] = ACTIONS(279), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), - }, - [196] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(2185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_RBRACK] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_EQ] = ACTIONS(2191), - [anon_sym_BSLASHpart] = ACTIONS(2036), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddpart] = ACTIONS(2036), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHchapter] = ACTIONS(2036), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddchap] = ACTIONS(2036), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsection] = ACTIONS(2036), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddsec] = ACTIONS(2036), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHparagraph] = ACTIONS(2036), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2036), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHitem] = ACTIONS(2036), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2194), - [sym_word] = ACTIONS(2197), - [sym_placeholder] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym__] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_COLON] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2206), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2212), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2215), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2025), - [anon_sym_BSLASHbegin] = ACTIONS(2062), - [anon_sym_BSLASHusepackage] = ACTIONS(2218), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2218), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2221), - [anon_sym_BSLASHinclude] = ACTIONS(2224), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2224), - [anon_sym_BSLASHinput] = ACTIONS(2224), - [anon_sym_BSLASHsubfile] = ACTIONS(2224), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2227), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2233), - [anon_sym_BSLASHincludesvg] = ACTIONS(2236), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2242), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2242), - [anon_sym_BSLASHimport] = ACTIONS(2245), - [anon_sym_BSLASHsubimport] = ACTIONS(2245), - [anon_sym_BSLASHinputfrom] = ACTIONS(2245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2245), - [anon_sym_BSLASHincludefrom] = ACTIONS(2245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2245), - [anon_sym_BSLASHcaption] = ACTIONS(2248), - [anon_sym_BSLASHcite] = ACTIONS(2251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2254), - [anon_sym_BSLASHCite] = ACTIONS(2251), - [anon_sym_BSLASHnocite] = ACTIONS(2251), - [anon_sym_BSLASHcitet] = ACTIONS(2251), - [anon_sym_BSLASHcitep] = ACTIONS(2251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2254), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2254), - [anon_sym_BSLASHciteauthor] = ACTIONS(2251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2254), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2254), - [anon_sym_BSLASHcitetitle] = ACTIONS(2251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2254), - [anon_sym_BSLASHciteyear] = ACTIONS(2251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2254), - [anon_sym_BSLASHcitedate] = ACTIONS(2251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2254), - [anon_sym_BSLASHciteurl] = ACTIONS(2251), - [anon_sym_BSLASHfullcite] = ACTIONS(2251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2251), - [anon_sym_BSLASHcitealt] = ACTIONS(2251), - [anon_sym_BSLASHcitealp] = ACTIONS(2251), - [anon_sym_BSLASHcitetext] = ACTIONS(2251), - [anon_sym_BSLASHparencite] = ACTIONS(2251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2254), - [anon_sym_BSLASHParencite] = ACTIONS(2251), - [anon_sym_BSLASHfootcite] = ACTIONS(2251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2251), - [anon_sym_BSLASHtextcite] = ACTIONS(2251), - [anon_sym_BSLASHTextcite] = ACTIONS(2251), - [anon_sym_BSLASHsmartcite] = ACTIONS(2251), - [anon_sym_BSLASHSmartcite] = ACTIONS(2251), - [anon_sym_BSLASHsupercite] = ACTIONS(2251), - [anon_sym_BSLASHautocite] = ACTIONS(2251), - [anon_sym_BSLASHAutocite] = ACTIONS(2251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2254), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2254), - [anon_sym_BSLASHvolcite] = ACTIONS(2251), - [anon_sym_BSLASHVolcite] = ACTIONS(2251), - [anon_sym_BSLASHpvolcite] = ACTIONS(2251), - [anon_sym_BSLASHPvolcite] = ACTIONS(2251), - [anon_sym_BSLASHfvolcite] = ACTIONS(2251), - [anon_sym_BSLASHftvolcite] = ACTIONS(2251), - [anon_sym_BSLASHsvolcite] = ACTIONS(2251), - [anon_sym_BSLASHSvolcite] = ACTIONS(2251), - [anon_sym_BSLASHtvolcite] = ACTIONS(2251), - [anon_sym_BSLASHTvolcite] = ACTIONS(2251), - [anon_sym_BSLASHavolcite] = ACTIONS(2251), - [anon_sym_BSLASHAvolcite] = ACTIONS(2251), - [anon_sym_BSLASHnotecite] = ACTIONS(2251), - [anon_sym_BSLASHNotecite] = ACTIONS(2251), - [anon_sym_BSLASHpnotecite] = ACTIONS(2251), - [anon_sym_BSLASHPnotecite] = ACTIONS(2251), - [anon_sym_BSLASHfnotecite] = ACTIONS(2251), - [anon_sym_BSLASHlabel] = ACTIONS(2257), - [anon_sym_BSLASHref] = ACTIONS(2260), - [anon_sym_BSLASHeqref] = ACTIONS(2260), - [anon_sym_BSLASHvref] = ACTIONS(2260), - [anon_sym_BSLASHVref] = ACTIONS(2260), - [anon_sym_BSLASHautoref] = ACTIONS(2260), - [anon_sym_BSLASHpageref] = ACTIONS(2260), - [anon_sym_BSLASHcref] = ACTIONS(2260), - [anon_sym_BSLASHCref] = ACTIONS(2260), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2263), - [anon_sym_BSLASHnamecref] = ACTIONS(2260), - [anon_sym_BSLASHnameCref] = ACTIONS(2260), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2260), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2260), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2260), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2260), - [anon_sym_BSLASHlabelcref] = ACTIONS(2260), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2260), - [anon_sym_BSLASHcrefrange] = ACTIONS(2266), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2269), - [anon_sym_BSLASHCrefrange] = ACTIONS(2266), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2269), - [anon_sym_BSLASHnewlabel] = ACTIONS(2272), - [anon_sym_BSLASHnewcommand] = ACTIONS(2275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2278), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2278), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2278), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2278), - [anon_sym_BSLASHdef] = ACTIONS(2281), - [anon_sym_BSLASHlet] = ACTIONS(2284), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2290), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2293), - [anon_sym_BSLASHgls] = ACTIONS(2296), - [anon_sym_BSLASHGls] = ACTIONS(2296), - [anon_sym_BSLASHGLS] = ACTIONS(2296), - [anon_sym_BSLASHglspl] = ACTIONS(2296), - [anon_sym_BSLASHGlspl] = ACTIONS(2296), - [anon_sym_BSLASHGLSpl] = ACTIONS(2296), - [anon_sym_BSLASHglsdisp] = ACTIONS(2296), - [anon_sym_BSLASHglslink] = ACTIONS(2296), - [anon_sym_BSLASHglstext] = ACTIONS(2296), - [anon_sym_BSLASHGlstext] = ACTIONS(2296), - [anon_sym_BSLASHGLStext] = ACTIONS(2296), - [anon_sym_BSLASHglsfirst] = ACTIONS(2296), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2296), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2296), - [anon_sym_BSLASHglsplural] = ACTIONS(2296), - [anon_sym_BSLASHGlsplural] = ACTIONS(2296), - [anon_sym_BSLASHGLSplural] = ACTIONS(2296), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2296), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2296), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2296), - [anon_sym_BSLASHglsname] = ACTIONS(2296), - [anon_sym_BSLASHGlsname] = ACTIONS(2296), - [anon_sym_BSLASHGLSname] = ACTIONS(2296), - [anon_sym_BSLASHglssymbol] = ACTIONS(2296), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2296), - [anon_sym_BSLASHglsdesc] = ACTIONS(2296), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2296), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2296), - [anon_sym_BSLASHglsuseri] = ACTIONS(2296), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2296), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2296), - [anon_sym_BSLASHglsuserii] = ACTIONS(2296), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2296), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2296), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2296), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2296), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2296), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2296), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2296), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2296), - [anon_sym_BSLASHglsuserv] = ACTIONS(2296), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2296), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2296), - [anon_sym_BSLASHglsuservi] = ACTIONS(2296), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2296), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2296), - [anon_sym_BSLASHnewacronym] = ACTIONS(2299), - [anon_sym_BSLASHacrshort] = ACTIONS(2302), - [anon_sym_BSLASHAcrshort] = ACTIONS(2302), - [anon_sym_BSLASHACRshort] = ACTIONS(2302), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2302), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2302), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2302), - [anon_sym_BSLASHacrlong] = ACTIONS(2302), - [anon_sym_BSLASHAcrlong] = ACTIONS(2302), - [anon_sym_BSLASHACRlong] = ACTIONS(2302), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2302), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2302), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2302), - [anon_sym_BSLASHacrfull] = ACTIONS(2302), - [anon_sym_BSLASHAcrfull] = ACTIONS(2302), - [anon_sym_BSLASHACRfull] = ACTIONS(2302), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2302), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2302), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2302), - [anon_sym_BSLASHacs] = ACTIONS(2302), - [anon_sym_BSLASHAcs] = ACTIONS(2302), - [anon_sym_BSLASHacsp] = ACTIONS(2302), - [anon_sym_BSLASHAcsp] = ACTIONS(2302), - [anon_sym_BSLASHacl] = ACTIONS(2302), - [anon_sym_BSLASHAcl] = ACTIONS(2302), - [anon_sym_BSLASHaclp] = ACTIONS(2302), - [anon_sym_BSLASHAclp] = ACTIONS(2302), - [anon_sym_BSLASHacf] = ACTIONS(2302), - [anon_sym_BSLASHAcf] = ACTIONS(2302), - [anon_sym_BSLASHacfp] = ACTIONS(2302), - [anon_sym_BSLASHAcfp] = ACTIONS(2302), - [anon_sym_BSLASHac] = ACTIONS(2302), - [anon_sym_BSLASHAc] = ACTIONS(2302), - [anon_sym_BSLASHacp] = ACTIONS(2302), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2302), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2302), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2302), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2302), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2302), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2302), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2302), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2302), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2302), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2302), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2308), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2308), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2314), - [anon_sym_BSLASHcolor] = ACTIONS(2317), - [anon_sym_BSLASHcolorbox] = ACTIONS(2317), - [anon_sym_BSLASHtextcolor] = ACTIONS(2317), - [anon_sym_BSLASHpagecolor] = ACTIONS(2317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2320), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2320), - [anon_sym_BSLASHtext] = ACTIONS(2323), - [anon_sym_BSLASHintertext] = ACTIONS(2323), - [anon_sym_shortintertext] = ACTIONS(2323), + [anon_sym_BSLASHend] = ACTIONS(2265), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(357), + [anon_sym_BSLASHintertext] = ACTIONS(357), + [anon_sym_shortintertext] = ACTIONS(357), }, - [197] = { - [sym_block_comment] = STATE(198), - [sym__flat_content] = STATE(198), - [sym__text_with_env_content] = STATE(198), - [sym__text_content] = STATE(198), - [sym_curly_group] = STATE(198), - [sym_text] = STATE(198), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(198), - [sym_inline_formula] = STATE(198), - [sym_math_set] = STATE(198), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(198), - [sym_comment_environment] = STATE(198), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(198), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(198), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(198), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(198), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(198), - [sym_generic_command] = STATE(198), - [sym_package_include] = STATE(198), - [sym_class_include] = STATE(198), - [sym_latex_include] = STATE(198), - [sym_biblatex_include] = STATE(198), - [sym_bibtex_include] = STATE(198), - [sym_graphics_include] = STATE(198), - [sym_svg_include] = STATE(198), - [sym_inkscape_include] = STATE(198), - [sym_verbatim_include] = STATE(198), - [sym_import_include] = STATE(198), - [sym_caption] = STATE(198), - [sym_citation] = STATE(198), - [sym_label_definition] = STATE(198), - [sym_label_reference] = STATE(198), - [sym_label_reference_range] = STATE(198), - [sym_label_number] = STATE(198), - [sym_new_command_definition] = STATE(198), - [sym_old_command_definition] = STATE(198), - [sym_let_command_definition] = STATE(198), - [sym_paired_delimiter_definition] = STATE(198), - [sym_environment_definition] = STATE(198), - [sym_glossary_entry_definition] = STATE(198), - [sym_glossary_entry_reference] = STATE(198), - [sym_acronym_definition] = STATE(198), - [sym_acronym_reference] = STATE(198), - [sym_theorem_definition] = STATE(198), - [sym_color_definition] = STATE(198), - [sym_color_set_definition] = STATE(198), - [sym_color_reference] = STATE(198), - [sym_tikz_library_import] = STATE(198), - [sym_text_mode] = STATE(198), - [aux_sym_part_repeat1] = STATE(198), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_RBRACK] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(2326), - [anon_sym_BSLASHpart] = ACTIONS(2177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddpart] = ACTIONS(2177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHchapter] = ACTIONS(2177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddchap] = ACTIONS(2177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsection] = ACTIONS(2177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddsec] = ACTIONS(2177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHparagraph] = ACTIONS(2177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHitem] = ACTIONS(2177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2177), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [211] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(2275), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_RBRACK] = ACTIONS(2281), + [anon_sym_COMMA] = ACTIONS(2281), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_BSLASHpart] = ACTIONS(2118), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddpart] = ACTIONS(2118), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHchapter] = ACTIONS(2118), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddchap] = ACTIONS(2118), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsection] = ACTIONS(2118), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddsec] = ACTIONS(2118), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHparagraph] = ACTIONS(2118), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2118), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHitem] = ACTIONS(2118), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2284), + [sym_word] = ACTIONS(2287), + [sym_placeholder] = ACTIONS(2290), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_CARET] = ACTIONS(2293), + [anon_sym__] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_GT] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_COLON] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2296), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2296), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2302), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2305), + [anon_sym_BSLASHbegin] = ACTIONS(2144), + [anon_sym_BSLASHtitle] = ACTIONS(2308), + [anon_sym_BSLASHauthor] = ACTIONS(2311), + [anon_sym_BSLASHusepackage] = ACTIONS(2314), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2314), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2317), + [anon_sym_BSLASHinclude] = ACTIONS(2320), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2320), + [anon_sym_BSLASHinput] = ACTIONS(2320), + [anon_sym_BSLASHsubfile] = ACTIONS(2320), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2323), + [anon_sym_BSLASHbibliography] = ACTIONS(2326), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2329), + [anon_sym_BSLASHincludesvg] = ACTIONS(2332), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2338), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2338), + [anon_sym_BSLASHimport] = ACTIONS(2341), + [anon_sym_BSLASHsubimport] = ACTIONS(2341), + [anon_sym_BSLASHinputfrom] = ACTIONS(2341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2341), + [anon_sym_BSLASHincludefrom] = ACTIONS(2341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2341), + [anon_sym_BSLASHcaption] = ACTIONS(2344), + [anon_sym_BSLASHcite] = ACTIONS(2347), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2350), + [anon_sym_BSLASHCite] = ACTIONS(2347), + [anon_sym_BSLASHnocite] = ACTIONS(2347), + [anon_sym_BSLASHcitet] = ACTIONS(2347), + [anon_sym_BSLASHcitep] = ACTIONS(2347), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2350), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2350), + [anon_sym_BSLASHciteauthor] = ACTIONS(2347), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2350), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2347), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2350), + [anon_sym_BSLASHcitetitle] = ACTIONS(2347), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2350), + [anon_sym_BSLASHciteyear] = ACTIONS(2347), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2350), + [anon_sym_BSLASHcitedate] = ACTIONS(2347), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2350), + [anon_sym_BSLASHciteurl] = ACTIONS(2347), + [anon_sym_BSLASHfullcite] = ACTIONS(2347), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2347), + [anon_sym_BSLASHcitealt] = ACTIONS(2347), + [anon_sym_BSLASHcitealp] = ACTIONS(2347), + [anon_sym_BSLASHcitetext] = ACTIONS(2347), + [anon_sym_BSLASHparencite] = ACTIONS(2347), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2350), + [anon_sym_BSLASHParencite] = ACTIONS(2347), + [anon_sym_BSLASHfootcite] = ACTIONS(2347), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2347), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2347), + [anon_sym_BSLASHtextcite] = ACTIONS(2347), + [anon_sym_BSLASHTextcite] = ACTIONS(2347), + [anon_sym_BSLASHsmartcite] = ACTIONS(2347), + [anon_sym_BSLASHSmartcite] = ACTIONS(2347), + [anon_sym_BSLASHsupercite] = ACTIONS(2347), + [anon_sym_BSLASHautocite] = ACTIONS(2347), + [anon_sym_BSLASHAutocite] = ACTIONS(2347), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2350), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2350), + [anon_sym_BSLASHvolcite] = ACTIONS(2347), + [anon_sym_BSLASHVolcite] = ACTIONS(2347), + [anon_sym_BSLASHpvolcite] = ACTIONS(2347), + [anon_sym_BSLASHPvolcite] = ACTIONS(2347), + [anon_sym_BSLASHfvolcite] = ACTIONS(2347), + [anon_sym_BSLASHftvolcite] = ACTIONS(2347), + [anon_sym_BSLASHsvolcite] = ACTIONS(2347), + [anon_sym_BSLASHSvolcite] = ACTIONS(2347), + [anon_sym_BSLASHtvolcite] = ACTIONS(2347), + [anon_sym_BSLASHTvolcite] = ACTIONS(2347), + [anon_sym_BSLASHavolcite] = ACTIONS(2347), + [anon_sym_BSLASHAvolcite] = ACTIONS(2347), + [anon_sym_BSLASHnotecite] = ACTIONS(2347), + [anon_sym_BSLASHNotecite] = ACTIONS(2347), + [anon_sym_BSLASHpnotecite] = ACTIONS(2347), + [anon_sym_BSLASHPnotecite] = ACTIONS(2347), + [anon_sym_BSLASHfnotecite] = ACTIONS(2347), + [anon_sym_BSLASHlabel] = ACTIONS(2353), + [anon_sym_BSLASHref] = ACTIONS(2356), + [anon_sym_BSLASHeqref] = ACTIONS(2356), + [anon_sym_BSLASHvref] = ACTIONS(2356), + [anon_sym_BSLASHVref] = ACTIONS(2356), + [anon_sym_BSLASHautoref] = ACTIONS(2356), + [anon_sym_BSLASHpageref] = ACTIONS(2356), + [anon_sym_BSLASHcref] = ACTIONS(2356), + [anon_sym_BSLASHCref] = ACTIONS(2356), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2359), + [anon_sym_BSLASHnamecref] = ACTIONS(2356), + [anon_sym_BSLASHnameCref] = ACTIONS(2356), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2356), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2356), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2356), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2356), + [anon_sym_BSLASHlabelcref] = ACTIONS(2356), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2356), + [anon_sym_BSLASHcrefrange] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2365), + [anon_sym_BSLASHCrefrange] = ACTIONS(2362), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2365), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2371), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2374), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2371), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2374), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2371), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2374), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2371), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHdef] = ACTIONS(2377), + [anon_sym_BSLASHlet] = ACTIONS(2380), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2383), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2383), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2389), + [anon_sym_BSLASHgls] = ACTIONS(2392), + [anon_sym_BSLASHGls] = ACTIONS(2392), + [anon_sym_BSLASHGLS] = ACTIONS(2392), + [anon_sym_BSLASHglspl] = ACTIONS(2392), + [anon_sym_BSLASHGlspl] = ACTIONS(2392), + [anon_sym_BSLASHGLSpl] = ACTIONS(2392), + [anon_sym_BSLASHglsdisp] = ACTIONS(2392), + [anon_sym_BSLASHglslink] = ACTIONS(2392), + [anon_sym_BSLASHglstext] = ACTIONS(2392), + [anon_sym_BSLASHGlstext] = ACTIONS(2392), + [anon_sym_BSLASHGLStext] = ACTIONS(2392), + [anon_sym_BSLASHglsfirst] = ACTIONS(2392), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2392), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2392), + [anon_sym_BSLASHglsplural] = ACTIONS(2392), + [anon_sym_BSLASHGlsplural] = ACTIONS(2392), + [anon_sym_BSLASHGLSplural] = ACTIONS(2392), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2392), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2392), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2392), + [anon_sym_BSLASHglsname] = ACTIONS(2392), + [anon_sym_BSLASHGlsname] = ACTIONS(2392), + [anon_sym_BSLASHGLSname] = ACTIONS(2392), + [anon_sym_BSLASHglssymbol] = ACTIONS(2392), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2392), + [anon_sym_BSLASHglsdesc] = ACTIONS(2392), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2392), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2392), + [anon_sym_BSLASHglsuseri] = ACTIONS(2392), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2392), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2392), + [anon_sym_BSLASHglsuserii] = ACTIONS(2392), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2392), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2392), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2392), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2392), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2392), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2392), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2392), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2392), + [anon_sym_BSLASHglsuserv] = ACTIONS(2392), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2392), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2392), + [anon_sym_BSLASHglsuservi] = ACTIONS(2392), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2392), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2392), + [anon_sym_BSLASHnewacronym] = ACTIONS(2395), + [anon_sym_BSLASHacrshort] = ACTIONS(2398), + [anon_sym_BSLASHAcrshort] = ACTIONS(2398), + [anon_sym_BSLASHACRshort] = ACTIONS(2398), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2398), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2398), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2398), + [anon_sym_BSLASHacrlong] = ACTIONS(2398), + [anon_sym_BSLASHAcrlong] = ACTIONS(2398), + [anon_sym_BSLASHACRlong] = ACTIONS(2398), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2398), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2398), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2398), + [anon_sym_BSLASHacrfull] = ACTIONS(2398), + [anon_sym_BSLASHAcrfull] = ACTIONS(2398), + [anon_sym_BSLASHACRfull] = ACTIONS(2398), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2398), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2398), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2398), + [anon_sym_BSLASHacs] = ACTIONS(2398), + [anon_sym_BSLASHAcs] = ACTIONS(2398), + [anon_sym_BSLASHacsp] = ACTIONS(2398), + [anon_sym_BSLASHAcsp] = ACTIONS(2398), + [anon_sym_BSLASHacl] = ACTIONS(2398), + [anon_sym_BSLASHAcl] = ACTIONS(2398), + [anon_sym_BSLASHaclp] = ACTIONS(2398), + [anon_sym_BSLASHAclp] = ACTIONS(2398), + [anon_sym_BSLASHacf] = ACTIONS(2398), + [anon_sym_BSLASHAcf] = ACTIONS(2398), + [anon_sym_BSLASHacfp] = ACTIONS(2398), + [anon_sym_BSLASHAcfp] = ACTIONS(2398), + [anon_sym_BSLASHac] = ACTIONS(2398), + [anon_sym_BSLASHAc] = ACTIONS(2398), + [anon_sym_BSLASHacp] = ACTIONS(2398), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2398), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2398), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2398), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2398), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2398), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2398), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2398), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2398), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2398), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2398), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2401), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2404), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2401), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2404), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2407), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2410), + [anon_sym_BSLASHcolor] = ACTIONS(2413), + [anon_sym_BSLASHcolorbox] = ACTIONS(2413), + [anon_sym_BSLASHtextcolor] = ACTIONS(2413), + [anon_sym_BSLASHpagecolor] = ACTIONS(2413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2416), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2416), + [anon_sym_BSLASHtext] = ACTIONS(2419), + [anon_sym_BSLASHintertext] = ACTIONS(2419), + [anon_sym_shortintertext] = ACTIONS(2419), }, - [198] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_BSLASHpart] = ACTIONS(2181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddpart] = ACTIONS(2181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHchapter] = ACTIONS(2181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddchap] = ACTIONS(2181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsection] = ACTIONS(2181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddsec] = ACTIONS(2181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHparagraph] = ACTIONS(2181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHitem] = ACTIONS(2181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_BSLASH_LPAREN] = ACTIONS(205), - [anon_sym_BSLASH_LBRACE] = ACTIONS(207), + [212] = { + [sym_block_comment] = STATE(211), + [sym__flat_content] = STATE(211), + [sym__text_with_env_content] = STATE(211), + [sym__text_content] = STATE(211), + [sym_curly_group] = STATE(211), + [sym_text] = STATE(211), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_math_set] = STATE(211), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(211), + [sym_comment_environment] = STATE(211), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(211), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(211), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(211), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(211), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(211), + [sym_generic_command] = STATE(211), + [sym_title_declaration] = STATE(211), + [sym_author_declaration] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import_include] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_new_command_definition] = STATE(211), + [sym_old_command_definition] = STATE(211), + [sym_let_command_definition] = STATE(211), + [sym_paired_delimiter_definition] = STATE(211), + [sym_environment_definition] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_text_mode] = STATE(211), + [aux_sym_part_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(1997), + [anon_sym_BSLASHpart] = ACTIONS(2269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddpart] = ACTIONS(2269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHchapter] = ACTIONS(2269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddchap] = ACTIONS(2269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsection] = ACTIONS(2269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddsec] = ACTIONS(2269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHparagraph] = ACTIONS(2269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHitem] = ACTIONS(2269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2181), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(281), - [anon_sym_BSLASHintertext] = ACTIONS(281), - [anon_sym_shortintertext] = ACTIONS(281), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [199] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_paired_delimiter_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_text_mode] = STATE(196), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BSLASHpart] = ACTIONS(2181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddpart] = ACTIONS(2181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHchapter] = ACTIONS(2181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddchap] = ACTIONS(2181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsection] = ACTIONS(2181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddsec] = ACTIONS(2181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHparagraph] = ACTIONS(2181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHitem] = ACTIONS(2181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2179), + [213] = { + [sym_block_comment] = STATE(214), + [sym__flat_content] = STATE(214), + [sym__text_with_env_content] = STATE(214), + [sym__text_content] = STATE(214), + [sym_curly_group] = STATE(214), + [sym_text] = STATE(214), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_math_set] = STATE(214), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(214), + [sym_comment_environment] = STATE(214), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(214), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(214), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(214), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(214), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(214), + [sym_generic_command] = STATE(214), + [sym_title_declaration] = STATE(214), + [sym_author_declaration] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_latex_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_bibtex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_svg_include] = STATE(214), + [sym_inkscape_include] = STATE(214), + [sym_verbatim_include] = STATE(214), + [sym_import_include] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_label_reference] = STATE(214), + [sym_label_reference_range] = STATE(214), + [sym_label_number] = STATE(214), + [sym_new_command_definition] = STATE(214), + [sym_old_command_definition] = STATE(214), + [sym_let_command_definition] = STATE(214), + [sym_paired_delimiter_definition] = STATE(214), + [sym_environment_definition] = STATE(214), + [sym_glossary_entry_definition] = STATE(214), + [sym_glossary_entry_reference] = STATE(214), + [sym_acronym_definition] = STATE(214), + [sym_acronym_reference] = STATE(214), + [sym_theorem_definition] = STATE(214), + [sym_color_definition] = STATE(214), + [sym_color_set_definition] = STATE(214), + [sym_color_reference] = STATE(214), + [sym_tikz_library_import] = STATE(214), + [sym_text_mode] = STATE(214), + [aux_sym_part_repeat1] = STATE(214), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_RBRACK] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_BSLASHpart] = ACTIONS(2265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddpart] = ACTIONS(2265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHchapter] = ACTIONS(2265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddchap] = ACTIONS(2265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsection] = ACTIONS(2265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddsec] = ACTIONS(2265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHparagraph] = ACTIONS(2265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHitem] = ACTIONS(2265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [200] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BSLASHpart] = ACTIONS(2181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddpart] = ACTIONS(2181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHchapter] = ACTIONS(2181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddchap] = ACTIONS(2181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsection] = ACTIONS(2181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddsec] = ACTIONS(2181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHparagraph] = ACTIONS(2181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHitem] = ACTIONS(2181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2179), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), + [214] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1993), + [anon_sym_BSLASHpart] = ACTIONS(2269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddpart] = ACTIONS(2269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2267), + [anon_sym_BSLASHchapter] = ACTIONS(2269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddchap] = ACTIONS(2269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsection] = ACTIONS(2269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHaddsec] = ACTIONS(2269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2267), + [anon_sym_BSLASHparagraph] = ACTIONS(2269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2267), + [anon_sym_BSLASHitem] = ACTIONS(2269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1036), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1038), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), - }, - [201] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(2328), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2334), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_EQ] = ACTIONS(2334), - [anon_sym_BSLASHpart] = ACTIONS(2036), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddpart] = ACTIONS(2036), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHchapter] = ACTIONS(2036), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddchap] = ACTIONS(2036), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsection] = ACTIONS(2036), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddsec] = ACTIONS(2036), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHparagraph] = ACTIONS(2036), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2036), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHitem] = ACTIONS(2036), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2337), - [sym_word] = ACTIONS(2340), - [sym_placeholder] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2346), - [anon_sym_CARET] = ACTIONS(2346), - [anon_sym__] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_COLON] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2346), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2349), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2358), - [anon_sym_BSLASHbegin] = ACTIONS(2062), - [anon_sym_BSLASHusepackage] = ACTIONS(2361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2364), - [anon_sym_BSLASHinclude] = ACTIONS(2367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2367), - [anon_sym_BSLASHinput] = ACTIONS(2367), - [anon_sym_BSLASHsubfile] = ACTIONS(2367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2370), - [anon_sym_BSLASHbibliography] = ACTIONS(2373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2376), - [anon_sym_BSLASHincludesvg] = ACTIONS(2379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2382), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2385), - [anon_sym_BSLASHimport] = ACTIONS(2388), - [anon_sym_BSLASHsubimport] = ACTIONS(2388), - [anon_sym_BSLASHinputfrom] = ACTIONS(2388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2388), - [anon_sym_BSLASHincludefrom] = ACTIONS(2388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2388), - [anon_sym_BSLASHcaption] = ACTIONS(2391), - [anon_sym_BSLASHcite] = ACTIONS(2394), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2397), - [anon_sym_BSLASHCite] = ACTIONS(2394), - [anon_sym_BSLASHnocite] = ACTIONS(2394), - [anon_sym_BSLASHcitet] = ACTIONS(2394), - [anon_sym_BSLASHcitep] = ACTIONS(2394), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2397), - [anon_sym_BSLASHciteauthor] = ACTIONS(2394), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2394), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2397), - [anon_sym_BSLASHcitetitle] = ACTIONS(2394), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2397), - [anon_sym_BSLASHciteyear] = ACTIONS(2394), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2397), - [anon_sym_BSLASHcitedate] = ACTIONS(2394), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2397), - [anon_sym_BSLASHciteurl] = ACTIONS(2394), - [anon_sym_BSLASHfullcite] = ACTIONS(2394), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2394), - [anon_sym_BSLASHcitealt] = ACTIONS(2394), - [anon_sym_BSLASHcitealp] = ACTIONS(2394), - [anon_sym_BSLASHcitetext] = ACTIONS(2394), - [anon_sym_BSLASHparencite] = ACTIONS(2394), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2397), - [anon_sym_BSLASHParencite] = ACTIONS(2394), - [anon_sym_BSLASHfootcite] = ACTIONS(2394), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2394), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2394), - [anon_sym_BSLASHtextcite] = ACTIONS(2394), - [anon_sym_BSLASHTextcite] = ACTIONS(2394), - [anon_sym_BSLASHsmartcite] = ACTIONS(2394), - [anon_sym_BSLASHSmartcite] = ACTIONS(2394), - [anon_sym_BSLASHsupercite] = ACTIONS(2394), - [anon_sym_BSLASHautocite] = ACTIONS(2394), - [anon_sym_BSLASHAutocite] = ACTIONS(2394), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2397), - [anon_sym_BSLASHvolcite] = ACTIONS(2394), - [anon_sym_BSLASHVolcite] = ACTIONS(2394), - [anon_sym_BSLASHpvolcite] = ACTIONS(2394), - [anon_sym_BSLASHPvolcite] = ACTIONS(2394), - [anon_sym_BSLASHfvolcite] = ACTIONS(2394), - [anon_sym_BSLASHftvolcite] = ACTIONS(2394), - [anon_sym_BSLASHsvolcite] = ACTIONS(2394), - [anon_sym_BSLASHSvolcite] = ACTIONS(2394), - [anon_sym_BSLASHtvolcite] = ACTIONS(2394), - [anon_sym_BSLASHTvolcite] = ACTIONS(2394), - [anon_sym_BSLASHavolcite] = ACTIONS(2394), - [anon_sym_BSLASHAvolcite] = ACTIONS(2394), - [anon_sym_BSLASHnotecite] = ACTIONS(2394), - [anon_sym_BSLASHNotecite] = ACTIONS(2394), - [anon_sym_BSLASHpnotecite] = ACTIONS(2394), - [anon_sym_BSLASHPnotecite] = ACTIONS(2394), - [anon_sym_BSLASHfnotecite] = ACTIONS(2394), - [anon_sym_BSLASHlabel] = ACTIONS(2400), - [anon_sym_BSLASHref] = ACTIONS(2403), - [anon_sym_BSLASHeqref] = ACTIONS(2403), - [anon_sym_BSLASHvref] = ACTIONS(2403), - [anon_sym_BSLASHVref] = ACTIONS(2403), - [anon_sym_BSLASHautoref] = ACTIONS(2403), - [anon_sym_BSLASHpageref] = ACTIONS(2403), - [anon_sym_BSLASHcref] = ACTIONS(2403), - [anon_sym_BSLASHCref] = ACTIONS(2403), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2406), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2406), - [anon_sym_BSLASHnamecref] = ACTIONS(2403), - [anon_sym_BSLASHnameCref] = ACTIONS(2403), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2403), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2403), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2403), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2403), - [anon_sym_BSLASHlabelcref] = ACTIONS(2403), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2403), - [anon_sym_BSLASHcrefrange] = ACTIONS(2409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2412), - [anon_sym_BSLASHCrefrange] = ACTIONS(2409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2412), - [anon_sym_BSLASHnewlabel] = ACTIONS(2415), - [anon_sym_BSLASHnewcommand] = ACTIONS(2418), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2418), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2418), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2418), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2421), - [anon_sym_BSLASHdef] = ACTIONS(2424), - [anon_sym_BSLASHlet] = ACTIONS(2427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2430), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2430), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2436), - [anon_sym_BSLASHgls] = ACTIONS(2439), - [anon_sym_BSLASHGls] = ACTIONS(2439), - [anon_sym_BSLASHGLS] = ACTIONS(2439), - [anon_sym_BSLASHglspl] = ACTIONS(2439), - [anon_sym_BSLASHGlspl] = ACTIONS(2439), - [anon_sym_BSLASHGLSpl] = ACTIONS(2439), - [anon_sym_BSLASHglsdisp] = ACTIONS(2439), - [anon_sym_BSLASHglslink] = ACTIONS(2439), - [anon_sym_BSLASHglstext] = ACTIONS(2439), - [anon_sym_BSLASHGlstext] = ACTIONS(2439), - [anon_sym_BSLASHGLStext] = ACTIONS(2439), - [anon_sym_BSLASHglsfirst] = ACTIONS(2439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2439), - [anon_sym_BSLASHglsplural] = ACTIONS(2439), - [anon_sym_BSLASHGlsplural] = ACTIONS(2439), - [anon_sym_BSLASHGLSplural] = ACTIONS(2439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2439), - [anon_sym_BSLASHglsname] = ACTIONS(2439), - [anon_sym_BSLASHGlsname] = ACTIONS(2439), - [anon_sym_BSLASHGLSname] = ACTIONS(2439), - [anon_sym_BSLASHglssymbol] = ACTIONS(2439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2439), - [anon_sym_BSLASHglsdesc] = ACTIONS(2439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2439), - [anon_sym_BSLASHglsuseri] = ACTIONS(2439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2439), - [anon_sym_BSLASHglsuserii] = ACTIONS(2439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2439), - [anon_sym_BSLASHglsuserv] = ACTIONS(2439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2439), - [anon_sym_BSLASHglsuservi] = ACTIONS(2439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2439), - [anon_sym_BSLASHnewacronym] = ACTIONS(2442), - [anon_sym_BSLASHacrshort] = ACTIONS(2445), - [anon_sym_BSLASHAcrshort] = ACTIONS(2445), - [anon_sym_BSLASHACRshort] = ACTIONS(2445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2445), - [anon_sym_BSLASHacrlong] = ACTIONS(2445), - [anon_sym_BSLASHAcrlong] = ACTIONS(2445), - [anon_sym_BSLASHACRlong] = ACTIONS(2445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2445), - [anon_sym_BSLASHacrfull] = ACTIONS(2445), - [anon_sym_BSLASHAcrfull] = ACTIONS(2445), - [anon_sym_BSLASHACRfull] = ACTIONS(2445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2445), - [anon_sym_BSLASHacs] = ACTIONS(2445), - [anon_sym_BSLASHAcs] = ACTIONS(2445), - [anon_sym_BSLASHacsp] = ACTIONS(2445), - [anon_sym_BSLASHAcsp] = ACTIONS(2445), - [anon_sym_BSLASHacl] = ACTIONS(2445), - [anon_sym_BSLASHAcl] = ACTIONS(2445), - [anon_sym_BSLASHaclp] = ACTIONS(2445), - [anon_sym_BSLASHAclp] = ACTIONS(2445), - [anon_sym_BSLASHacf] = ACTIONS(2445), - [anon_sym_BSLASHAcf] = ACTIONS(2445), - [anon_sym_BSLASHacfp] = ACTIONS(2445), - [anon_sym_BSLASHAcfp] = ACTIONS(2445), - [anon_sym_BSLASHac] = ACTIONS(2445), - [anon_sym_BSLASHAc] = ACTIONS(2445), - [anon_sym_BSLASHacp] = ACTIONS(2445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2448), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2448), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2454), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2457), - [anon_sym_BSLASHcolor] = ACTIONS(2460), - [anon_sym_BSLASHcolorbox] = ACTIONS(2460), - [anon_sym_BSLASHtextcolor] = ACTIONS(2460), - [anon_sym_BSLASHpagecolor] = ACTIONS(2460), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2463), - [anon_sym_BSLASHtext] = ACTIONS(2466), - [anon_sym_BSLASHintertext] = ACTIONS(2466), - [anon_sym_shortintertext] = ACTIONS(2466), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(1114), + [anon_sym_BSLASHintertext] = ACTIONS(1114), + [anon_sym_shortintertext] = ACTIONS(1114), }, - [202] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1103), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(8), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2408), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2407), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2406), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2405), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2404), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(2469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_BSLASHpart] = ACTIONS(2036), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddpart] = ACTIONS(2036), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHchapter] = ACTIONS(2036), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddchap] = ACTIONS(2036), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsection] = ACTIONS(2036), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddsec] = ACTIONS(2036), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHparagraph] = ACTIONS(2036), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2036), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHitem] = ACTIONS(2036), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2478), - [sym_word] = ACTIONS(2481), - [sym_placeholder] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym__] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_COLON] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2490), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2490), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2496), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2499), - [anon_sym_BSLASHbegin] = ACTIONS(2062), - [anon_sym_BSLASHend] = ACTIONS(2036), - [anon_sym_BSLASHusepackage] = ACTIONS(2502), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2502), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2505), - [anon_sym_BSLASHinclude] = ACTIONS(2508), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2508), - [anon_sym_BSLASHinput] = ACTIONS(2508), - [anon_sym_BSLASHsubfile] = ACTIONS(2508), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2511), - [anon_sym_BSLASHbibliography] = ACTIONS(2514), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2517), - [anon_sym_BSLASHincludesvg] = ACTIONS(2520), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2523), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2526), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2526), - [anon_sym_BSLASHimport] = ACTIONS(2529), - [anon_sym_BSLASHsubimport] = ACTIONS(2529), - [anon_sym_BSLASHinputfrom] = ACTIONS(2529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2529), - [anon_sym_BSLASHincludefrom] = ACTIONS(2529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2529), - [anon_sym_BSLASHcaption] = ACTIONS(2532), - [anon_sym_BSLASHcite] = ACTIONS(2535), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2538), - [anon_sym_BSLASHCite] = ACTIONS(2535), - [anon_sym_BSLASHnocite] = ACTIONS(2535), - [anon_sym_BSLASHcitet] = ACTIONS(2535), - [anon_sym_BSLASHcitep] = ACTIONS(2535), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2538), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2538), - [anon_sym_BSLASHciteauthor] = ACTIONS(2535), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2538), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2535), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2538), - [anon_sym_BSLASHcitetitle] = ACTIONS(2535), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2538), - [anon_sym_BSLASHciteyear] = ACTIONS(2535), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2538), - [anon_sym_BSLASHcitedate] = ACTIONS(2535), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2538), - [anon_sym_BSLASHciteurl] = ACTIONS(2535), - [anon_sym_BSLASHfullcite] = ACTIONS(2535), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2535), - [anon_sym_BSLASHcitealt] = ACTIONS(2535), - [anon_sym_BSLASHcitealp] = ACTIONS(2535), - [anon_sym_BSLASHcitetext] = ACTIONS(2535), - [anon_sym_BSLASHparencite] = ACTIONS(2535), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2538), - [anon_sym_BSLASHParencite] = ACTIONS(2535), - [anon_sym_BSLASHfootcite] = ACTIONS(2535), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2535), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2535), - [anon_sym_BSLASHtextcite] = ACTIONS(2535), - [anon_sym_BSLASHTextcite] = ACTIONS(2535), - [anon_sym_BSLASHsmartcite] = ACTIONS(2535), - [anon_sym_BSLASHSmartcite] = ACTIONS(2535), - [anon_sym_BSLASHsupercite] = ACTIONS(2535), - [anon_sym_BSLASHautocite] = ACTIONS(2535), - [anon_sym_BSLASHAutocite] = ACTIONS(2535), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2538), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2538), - [anon_sym_BSLASHvolcite] = ACTIONS(2535), - [anon_sym_BSLASHVolcite] = ACTIONS(2535), - [anon_sym_BSLASHpvolcite] = ACTIONS(2535), - [anon_sym_BSLASHPvolcite] = ACTIONS(2535), - [anon_sym_BSLASHfvolcite] = ACTIONS(2535), - [anon_sym_BSLASHftvolcite] = ACTIONS(2535), - [anon_sym_BSLASHsvolcite] = ACTIONS(2535), - [anon_sym_BSLASHSvolcite] = ACTIONS(2535), - [anon_sym_BSLASHtvolcite] = ACTIONS(2535), - [anon_sym_BSLASHTvolcite] = ACTIONS(2535), - [anon_sym_BSLASHavolcite] = ACTIONS(2535), - [anon_sym_BSLASHAvolcite] = ACTIONS(2535), - [anon_sym_BSLASHnotecite] = ACTIONS(2535), - [anon_sym_BSLASHNotecite] = ACTIONS(2535), - [anon_sym_BSLASHpnotecite] = ACTIONS(2535), - [anon_sym_BSLASHPnotecite] = ACTIONS(2535), - [anon_sym_BSLASHfnotecite] = ACTIONS(2535), - [anon_sym_BSLASHlabel] = ACTIONS(2541), - [anon_sym_BSLASHref] = ACTIONS(2544), - [anon_sym_BSLASHeqref] = ACTIONS(2544), - [anon_sym_BSLASHvref] = ACTIONS(2544), - [anon_sym_BSLASHVref] = ACTIONS(2544), - [anon_sym_BSLASHautoref] = ACTIONS(2544), - [anon_sym_BSLASHpageref] = ACTIONS(2544), - [anon_sym_BSLASHcref] = ACTIONS(2544), - [anon_sym_BSLASHCref] = ACTIONS(2544), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2547), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2547), - [anon_sym_BSLASHnamecref] = ACTIONS(2544), - [anon_sym_BSLASHnameCref] = ACTIONS(2544), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2544), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2544), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2544), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2544), - [anon_sym_BSLASHlabelcref] = ACTIONS(2544), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2544), - [anon_sym_BSLASHcrefrange] = ACTIONS(2550), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2553), - [anon_sym_BSLASHCrefrange] = ACTIONS(2550), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2553), - [anon_sym_BSLASHnewlabel] = ACTIONS(2556), - [anon_sym_BSLASHnewcommand] = ACTIONS(2559), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2562), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2559), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2562), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2559), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2562), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2559), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2562), - [anon_sym_BSLASHdef] = ACTIONS(2565), - [anon_sym_BSLASHlet] = ACTIONS(2568), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2571), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2571), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2574), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2577), - [anon_sym_BSLASHgls] = ACTIONS(2580), - [anon_sym_BSLASHGls] = ACTIONS(2580), - [anon_sym_BSLASHGLS] = ACTIONS(2580), - [anon_sym_BSLASHglspl] = ACTIONS(2580), - [anon_sym_BSLASHGlspl] = ACTIONS(2580), - [anon_sym_BSLASHGLSpl] = ACTIONS(2580), - [anon_sym_BSLASHglsdisp] = ACTIONS(2580), - [anon_sym_BSLASHglslink] = ACTIONS(2580), - [anon_sym_BSLASHglstext] = ACTIONS(2580), - [anon_sym_BSLASHGlstext] = ACTIONS(2580), - [anon_sym_BSLASHGLStext] = ACTIONS(2580), - [anon_sym_BSLASHglsfirst] = ACTIONS(2580), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2580), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2580), - [anon_sym_BSLASHglsplural] = ACTIONS(2580), - [anon_sym_BSLASHGlsplural] = ACTIONS(2580), - [anon_sym_BSLASHGLSplural] = ACTIONS(2580), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2580), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2580), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2580), - [anon_sym_BSLASHglsname] = ACTIONS(2580), - [anon_sym_BSLASHGlsname] = ACTIONS(2580), - [anon_sym_BSLASHGLSname] = ACTIONS(2580), - [anon_sym_BSLASHglssymbol] = ACTIONS(2580), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2580), - [anon_sym_BSLASHglsdesc] = ACTIONS(2580), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2580), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2580), - [anon_sym_BSLASHglsuseri] = ACTIONS(2580), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2580), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2580), - [anon_sym_BSLASHglsuserii] = ACTIONS(2580), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2580), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2580), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2580), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2580), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2580), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2580), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2580), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2580), - [anon_sym_BSLASHglsuserv] = ACTIONS(2580), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2580), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2580), - [anon_sym_BSLASHglsuservi] = ACTIONS(2580), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2580), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2580), - [anon_sym_BSLASHnewacronym] = ACTIONS(2583), - [anon_sym_BSLASHacrshort] = ACTIONS(2586), - [anon_sym_BSLASHAcrshort] = ACTIONS(2586), - [anon_sym_BSLASHACRshort] = ACTIONS(2586), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2586), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2586), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2586), - [anon_sym_BSLASHacrlong] = ACTIONS(2586), - [anon_sym_BSLASHAcrlong] = ACTIONS(2586), - [anon_sym_BSLASHACRlong] = ACTIONS(2586), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2586), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2586), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2586), - [anon_sym_BSLASHacrfull] = ACTIONS(2586), - [anon_sym_BSLASHAcrfull] = ACTIONS(2586), - [anon_sym_BSLASHACRfull] = ACTIONS(2586), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2586), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2586), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2586), - [anon_sym_BSLASHacs] = ACTIONS(2586), - [anon_sym_BSLASHAcs] = ACTIONS(2586), - [anon_sym_BSLASHacsp] = ACTIONS(2586), - [anon_sym_BSLASHAcsp] = ACTIONS(2586), - [anon_sym_BSLASHacl] = ACTIONS(2586), - [anon_sym_BSLASHAcl] = ACTIONS(2586), - [anon_sym_BSLASHaclp] = ACTIONS(2586), - [anon_sym_BSLASHAclp] = ACTIONS(2586), - [anon_sym_BSLASHacf] = ACTIONS(2586), - [anon_sym_BSLASHAcf] = ACTIONS(2586), - [anon_sym_BSLASHacfp] = ACTIONS(2586), - [anon_sym_BSLASHAcfp] = ACTIONS(2586), - [anon_sym_BSLASHac] = ACTIONS(2586), - [anon_sym_BSLASHAc] = ACTIONS(2586), - [anon_sym_BSLASHacp] = ACTIONS(2586), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2586), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2586), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2586), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2586), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2586), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2586), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2586), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2586), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2586), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2586), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2589), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2592), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2589), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2592), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2595), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2598), - [anon_sym_BSLASHcolor] = ACTIONS(2601), - [anon_sym_BSLASHcolorbox] = ACTIONS(2601), - [anon_sym_BSLASHtextcolor] = ACTIONS(2601), - [anon_sym_BSLASHpagecolor] = ACTIONS(2601), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2604), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2604), - [anon_sym_BSLASHtext] = ACTIONS(2607), - [anon_sym_BSLASHintertext] = ACTIONS(2607), - [anon_sym_shortintertext] = ACTIONS(2607), + [215] = { + [sym_block_comment] = STATE(215), + [sym__flat_content] = STATE(215), + [sym__text_with_env_content] = STATE(215), + [sym__text_content] = STATE(215), + [sym_curly_group] = STATE(215), + [sym_text] = STATE(215), + [sym_operator] = STATE(1131), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_math_set] = STATE(215), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(215), + [sym_comment_environment] = STATE(215), + [sym__trivia_begin_comment] = STATE(2730), + [sym_verbatim_environment] = STATE(215), + [sym__trivia_begin_verbatim] = STATE(2729), + [sym_listing_environment] = STATE(215), + [sym__trivia_begin_listing] = STATE(2728), + [sym_minted_environment] = STATE(215), + [sym__trivia_begin_minted] = STATE(2727), + [sym_pycode_environment] = STATE(215), + [sym__trivia_begin_pycode] = STATE(2726), + [sym__command] = STATE(215), + [sym_generic_command] = STATE(215), + [sym_title_declaration] = STATE(215), + [sym_author_declaration] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import_include] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_new_command_definition] = STATE(215), + [sym_old_command_definition] = STATE(215), + [sym_let_command_definition] = STATE(215), + [sym_paired_delimiter_definition] = STATE(215), + [sym_environment_definition] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_text_mode] = STATE(215), + [aux_sym_part_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(227), + [sym_command_name] = ACTIONS(2424), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_RBRACK] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(2430), + [anon_sym_BSLASHpart] = ACTIONS(2118), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddpart] = ACTIONS(2118), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHchapter] = ACTIONS(2118), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddchap] = ACTIONS(2118), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsection] = ACTIONS(2118), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddsec] = ACTIONS(2118), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHparagraph] = ACTIONS(2118), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2118), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHitem] = ACTIONS(2118), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2433), + [sym_word] = ACTIONS(2436), + [sym_placeholder] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym__] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2451), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2454), + [anon_sym_BSLASHbegin] = ACTIONS(2144), + [anon_sym_BSLASHtitle] = ACTIONS(2457), + [anon_sym_BSLASHauthor] = ACTIONS(2460), + [anon_sym_BSLASHusepackage] = ACTIONS(2463), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2463), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2466), + [anon_sym_BSLASHinclude] = ACTIONS(2469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2469), + [anon_sym_BSLASHinput] = ACTIONS(2469), + [anon_sym_BSLASHsubfile] = ACTIONS(2469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2472), + [anon_sym_BSLASHbibliography] = ACTIONS(2475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2478), + [anon_sym_BSLASHincludesvg] = ACTIONS(2481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2484), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2487), + [anon_sym_BSLASHimport] = ACTIONS(2490), + [anon_sym_BSLASHsubimport] = ACTIONS(2490), + [anon_sym_BSLASHinputfrom] = ACTIONS(2490), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2490), + [anon_sym_BSLASHincludefrom] = ACTIONS(2490), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2490), + [anon_sym_BSLASHcaption] = ACTIONS(2493), + [anon_sym_BSLASHcite] = ACTIONS(2496), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2499), + [anon_sym_BSLASHCite] = ACTIONS(2496), + [anon_sym_BSLASHnocite] = ACTIONS(2496), + [anon_sym_BSLASHcitet] = ACTIONS(2496), + [anon_sym_BSLASHcitep] = ACTIONS(2496), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2499), + [anon_sym_BSLASHciteauthor] = ACTIONS(2496), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2496), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2499), + [anon_sym_BSLASHcitetitle] = ACTIONS(2496), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2499), + [anon_sym_BSLASHciteyear] = ACTIONS(2496), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2499), + [anon_sym_BSLASHcitedate] = ACTIONS(2496), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2499), + [anon_sym_BSLASHciteurl] = ACTIONS(2496), + [anon_sym_BSLASHfullcite] = ACTIONS(2496), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2496), + [anon_sym_BSLASHcitealt] = ACTIONS(2496), + [anon_sym_BSLASHcitealp] = ACTIONS(2496), + [anon_sym_BSLASHcitetext] = ACTIONS(2496), + [anon_sym_BSLASHparencite] = ACTIONS(2496), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2499), + [anon_sym_BSLASHParencite] = ACTIONS(2496), + [anon_sym_BSLASHfootcite] = ACTIONS(2496), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2496), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2496), + [anon_sym_BSLASHtextcite] = ACTIONS(2496), + [anon_sym_BSLASHTextcite] = ACTIONS(2496), + [anon_sym_BSLASHsmartcite] = ACTIONS(2496), + [anon_sym_BSLASHSmartcite] = ACTIONS(2496), + [anon_sym_BSLASHsupercite] = ACTIONS(2496), + [anon_sym_BSLASHautocite] = ACTIONS(2496), + [anon_sym_BSLASHAutocite] = ACTIONS(2496), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2499), + [anon_sym_BSLASHvolcite] = ACTIONS(2496), + [anon_sym_BSLASHVolcite] = ACTIONS(2496), + [anon_sym_BSLASHpvolcite] = ACTIONS(2496), + [anon_sym_BSLASHPvolcite] = ACTIONS(2496), + [anon_sym_BSLASHfvolcite] = ACTIONS(2496), + [anon_sym_BSLASHftvolcite] = ACTIONS(2496), + [anon_sym_BSLASHsvolcite] = ACTIONS(2496), + [anon_sym_BSLASHSvolcite] = ACTIONS(2496), + [anon_sym_BSLASHtvolcite] = ACTIONS(2496), + [anon_sym_BSLASHTvolcite] = ACTIONS(2496), + [anon_sym_BSLASHavolcite] = ACTIONS(2496), + [anon_sym_BSLASHAvolcite] = ACTIONS(2496), + [anon_sym_BSLASHnotecite] = ACTIONS(2496), + [anon_sym_BSLASHNotecite] = ACTIONS(2496), + [anon_sym_BSLASHpnotecite] = ACTIONS(2496), + [anon_sym_BSLASHPnotecite] = ACTIONS(2496), + [anon_sym_BSLASHfnotecite] = ACTIONS(2496), + [anon_sym_BSLASHlabel] = ACTIONS(2502), + [anon_sym_BSLASHref] = ACTIONS(2505), + [anon_sym_BSLASHeqref] = ACTIONS(2505), + [anon_sym_BSLASHvref] = ACTIONS(2505), + [anon_sym_BSLASHVref] = ACTIONS(2505), + [anon_sym_BSLASHautoref] = ACTIONS(2505), + [anon_sym_BSLASHpageref] = ACTIONS(2505), + [anon_sym_BSLASHcref] = ACTIONS(2505), + [anon_sym_BSLASHCref] = ACTIONS(2505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2508), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2508), + [anon_sym_BSLASHnamecref] = ACTIONS(2505), + [anon_sym_BSLASHnameCref] = ACTIONS(2505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2505), + [anon_sym_BSLASHlabelcref] = ACTIONS(2505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2505), + [anon_sym_BSLASHcrefrange] = ACTIONS(2511), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2514), + [anon_sym_BSLASHCrefrange] = ACTIONS(2511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2514), + [anon_sym_BSLASHnewlabel] = ACTIONS(2517), + [anon_sym_BSLASHnewcommand] = ACTIONS(2520), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2520), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2520), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2520), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2523), + [anon_sym_BSLASHdef] = ACTIONS(2526), + [anon_sym_BSLASHlet] = ACTIONS(2529), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2532), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2532), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2538), + [anon_sym_BSLASHgls] = ACTIONS(2541), + [anon_sym_BSLASHGls] = ACTIONS(2541), + [anon_sym_BSLASHGLS] = ACTIONS(2541), + [anon_sym_BSLASHglspl] = ACTIONS(2541), + [anon_sym_BSLASHGlspl] = ACTIONS(2541), + [anon_sym_BSLASHGLSpl] = ACTIONS(2541), + [anon_sym_BSLASHglsdisp] = ACTIONS(2541), + [anon_sym_BSLASHglslink] = ACTIONS(2541), + [anon_sym_BSLASHglstext] = ACTIONS(2541), + [anon_sym_BSLASHGlstext] = ACTIONS(2541), + [anon_sym_BSLASHGLStext] = ACTIONS(2541), + [anon_sym_BSLASHglsfirst] = ACTIONS(2541), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2541), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2541), + [anon_sym_BSLASHglsplural] = ACTIONS(2541), + [anon_sym_BSLASHGlsplural] = ACTIONS(2541), + [anon_sym_BSLASHGLSplural] = ACTIONS(2541), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2541), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2541), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2541), + [anon_sym_BSLASHglsname] = ACTIONS(2541), + [anon_sym_BSLASHGlsname] = ACTIONS(2541), + [anon_sym_BSLASHGLSname] = ACTIONS(2541), + [anon_sym_BSLASHglssymbol] = ACTIONS(2541), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2541), + [anon_sym_BSLASHglsdesc] = ACTIONS(2541), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2541), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2541), + [anon_sym_BSLASHglsuseri] = ACTIONS(2541), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2541), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2541), + [anon_sym_BSLASHglsuserii] = ACTIONS(2541), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2541), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2541), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2541), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2541), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2541), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2541), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2541), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2541), + [anon_sym_BSLASHglsuserv] = ACTIONS(2541), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2541), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2541), + [anon_sym_BSLASHglsuservi] = ACTIONS(2541), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2541), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2541), + [anon_sym_BSLASHnewacronym] = ACTIONS(2544), + [anon_sym_BSLASHacrshort] = ACTIONS(2547), + [anon_sym_BSLASHAcrshort] = ACTIONS(2547), + [anon_sym_BSLASHACRshort] = ACTIONS(2547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2547), + [anon_sym_BSLASHacrlong] = ACTIONS(2547), + [anon_sym_BSLASHAcrlong] = ACTIONS(2547), + [anon_sym_BSLASHACRlong] = ACTIONS(2547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2547), + [anon_sym_BSLASHacrfull] = ACTIONS(2547), + [anon_sym_BSLASHAcrfull] = ACTIONS(2547), + [anon_sym_BSLASHACRfull] = ACTIONS(2547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2547), + [anon_sym_BSLASHacs] = ACTIONS(2547), + [anon_sym_BSLASHAcs] = ACTIONS(2547), + [anon_sym_BSLASHacsp] = ACTIONS(2547), + [anon_sym_BSLASHAcsp] = ACTIONS(2547), + [anon_sym_BSLASHacl] = ACTIONS(2547), + [anon_sym_BSLASHAcl] = ACTIONS(2547), + [anon_sym_BSLASHaclp] = ACTIONS(2547), + [anon_sym_BSLASHAclp] = ACTIONS(2547), + [anon_sym_BSLASHacf] = ACTIONS(2547), + [anon_sym_BSLASHAcf] = ACTIONS(2547), + [anon_sym_BSLASHacfp] = ACTIONS(2547), + [anon_sym_BSLASHAcfp] = ACTIONS(2547), + [anon_sym_BSLASHac] = ACTIONS(2547), + [anon_sym_BSLASHAc] = ACTIONS(2547), + [anon_sym_BSLASHacp] = ACTIONS(2547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2550), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2553), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2550), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2553), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2556), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2559), + [anon_sym_BSLASHcolor] = ACTIONS(2562), + [anon_sym_BSLASHcolorbox] = ACTIONS(2562), + [anon_sym_BSLASHtextcolor] = ACTIONS(2562), + [anon_sym_BSLASHpagecolor] = ACTIONS(2562), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2565), + [anon_sym_BSLASHtext] = ACTIONS(2568), + [anon_sym_BSLASHintertext] = ACTIONS(2568), + [anon_sym_shortintertext] = ACTIONS(2568), }, - [203] = { - [sym_block_comment] = STATE(200), - [sym__flat_content] = STATE(200), - [sym__text_with_env_content] = STATE(200), - [sym__text_content] = STATE(200), - [sym_curly_group] = STATE(200), - [sym_text] = STATE(200), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(200), - [sym_inline_formula] = STATE(200), - [sym_math_set] = STATE(200), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(200), - [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(200), - [sym_generic_command] = STATE(200), - [sym_package_include] = STATE(200), - [sym_class_include] = STATE(200), - [sym_latex_include] = STATE(200), - [sym_biblatex_include] = STATE(200), - [sym_bibtex_include] = STATE(200), - [sym_graphics_include] = STATE(200), - [sym_svg_include] = STATE(200), - [sym_inkscape_include] = STATE(200), - [sym_verbatim_include] = STATE(200), - [sym_import_include] = STATE(200), - [sym_caption] = STATE(200), - [sym_citation] = STATE(200), - [sym_label_definition] = STATE(200), - [sym_label_reference] = STATE(200), - [sym_label_reference_range] = STATE(200), - [sym_label_number] = STATE(200), - [sym_new_command_definition] = STATE(200), - [sym_old_command_definition] = STATE(200), - [sym_let_command_definition] = STATE(200), - [sym_paired_delimiter_definition] = STATE(200), - [sym_environment_definition] = STATE(200), - [sym_glossary_entry_definition] = STATE(200), - [sym_glossary_entry_reference] = STATE(200), - [sym_acronym_definition] = STATE(200), - [sym_acronym_reference] = STATE(200), - [sym_theorem_definition] = STATE(200), - [sym_color_definition] = STATE(200), - [sym_color_set_definition] = STATE(200), - [sym_color_reference] = STATE(200), - [sym_tikz_library_import] = STATE(200), - [sym_text_mode] = STATE(200), - [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_RBRACK] = ACTIONS(2610), - [anon_sym_COMMA] = ACTIONS(2610), - [anon_sym_EQ] = ACTIONS(2610), - [anon_sym_BSLASHpart] = ACTIONS(2177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddpart] = ACTIONS(2177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHchapter] = ACTIONS(2177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddchap] = ACTIONS(2177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsection] = ACTIONS(2177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddsec] = ACTIONS(2177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHparagraph] = ACTIONS(2177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHitem] = ACTIONS(2177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), - [anon_sym_BSLASH_LBRACK] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_BSLASH_LPAREN] = ACTIONS(585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(589), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(661), - [anon_sym_BSLASHintertext] = ACTIONS(661), - [anon_sym_shortintertext] = ACTIONS(661), + [216] = { + [sym_block_comment] = STATE(216), + [sym__flat_content] = STATE(216), + [sym__text_with_env_content] = STATE(216), + [sym__text_content] = STATE(216), + [sym_curly_group] = STATE(216), + [sym_text] = STATE(216), + [sym_operator] = STATE(1134), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_math_set] = STATE(216), + [sym_begin] = STATE(15), + [sym_generic_environment] = STATE(216), + [sym_comment_environment] = STATE(216), + [sym__trivia_begin_comment] = STATE(2711), + [sym_verbatim_environment] = STATE(216), + [sym__trivia_begin_verbatim] = STATE(2710), + [sym_listing_environment] = STATE(216), + [sym__trivia_begin_listing] = STATE(2709), + [sym_minted_environment] = STATE(216), + [sym__trivia_begin_minted] = STATE(2708), + [sym_pycode_environment] = STATE(216), + [sym__trivia_begin_pycode] = STATE(2707), + [sym__command] = STATE(216), + [sym_generic_command] = STATE(216), + [sym_title_declaration] = STATE(216), + [sym_author_declaration] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_latex_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_bibtex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_svg_include] = STATE(216), + [sym_inkscape_include] = STATE(216), + [sym_verbatim_include] = STATE(216), + [sym_import_include] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_new_command_definition] = STATE(216), + [sym_old_command_definition] = STATE(216), + [sym_let_command_definition] = STATE(216), + [sym_paired_delimiter_definition] = STATE(216), + [sym_environment_definition] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_acronym_reference] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_color_definition] = STATE(216), + [sym_color_set_definition] = STATE(216), + [sym_color_reference] = STATE(216), + [sym_tikz_library_import] = STATE(216), + [sym_text_mode] = STATE(216), + [aux_sym_part_repeat1] = STATE(216), + [aux_sym_text_repeat1] = STATE(222), + [sym_command_name] = ACTIONS(2571), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2577), + [anon_sym_RPAREN] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_COMMA] = ACTIONS(2577), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_BSLASHpart] = ACTIONS(2118), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddpart] = ACTIONS(2118), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHchapter] = ACTIONS(2118), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddchap] = ACTIONS(2118), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsection] = ACTIONS(2118), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddsec] = ACTIONS(2118), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHparagraph] = ACTIONS(2118), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2118), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHitem] = ACTIONS(2118), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2580), + [sym_word] = ACTIONS(2583), + [sym_placeholder] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym__] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_COLON] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2592), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2595), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2598), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2601), + [anon_sym_BSLASHbegin] = ACTIONS(2144), + [anon_sym_BSLASHend] = ACTIONS(2118), + [anon_sym_BSLASHtitle] = ACTIONS(2604), + [anon_sym_BSLASHauthor] = ACTIONS(2607), + [anon_sym_BSLASHusepackage] = ACTIONS(2610), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2610), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2613), + [anon_sym_BSLASHinclude] = ACTIONS(2616), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2616), + [anon_sym_BSLASHinput] = ACTIONS(2616), + [anon_sym_BSLASHsubfile] = ACTIONS(2616), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2619), + [anon_sym_BSLASHbibliography] = ACTIONS(2622), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2625), + [anon_sym_BSLASHincludesvg] = ACTIONS(2628), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2631), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2634), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2634), + [anon_sym_BSLASHimport] = ACTIONS(2637), + [anon_sym_BSLASHsubimport] = ACTIONS(2637), + [anon_sym_BSLASHinputfrom] = ACTIONS(2637), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2637), + [anon_sym_BSLASHincludefrom] = ACTIONS(2637), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2637), + [anon_sym_BSLASHcaption] = ACTIONS(2640), + [anon_sym_BSLASHcite] = ACTIONS(2643), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2646), + [anon_sym_BSLASHCite] = ACTIONS(2643), + [anon_sym_BSLASHnocite] = ACTIONS(2643), + [anon_sym_BSLASHcitet] = ACTIONS(2643), + [anon_sym_BSLASHcitep] = ACTIONS(2643), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2646), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2646), + [anon_sym_BSLASHciteauthor] = ACTIONS(2643), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2646), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2643), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2646), + [anon_sym_BSLASHcitetitle] = ACTIONS(2643), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2646), + [anon_sym_BSLASHciteyear] = ACTIONS(2643), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2646), + [anon_sym_BSLASHcitedate] = ACTIONS(2643), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2646), + [anon_sym_BSLASHciteurl] = ACTIONS(2643), + [anon_sym_BSLASHfullcite] = ACTIONS(2643), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2643), + [anon_sym_BSLASHcitealt] = ACTIONS(2643), + [anon_sym_BSLASHcitealp] = ACTIONS(2643), + [anon_sym_BSLASHcitetext] = ACTIONS(2643), + [anon_sym_BSLASHparencite] = ACTIONS(2643), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2646), + [anon_sym_BSLASHParencite] = ACTIONS(2643), + [anon_sym_BSLASHfootcite] = ACTIONS(2643), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2643), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2643), + [anon_sym_BSLASHtextcite] = ACTIONS(2643), + [anon_sym_BSLASHTextcite] = ACTIONS(2643), + [anon_sym_BSLASHsmartcite] = ACTIONS(2643), + [anon_sym_BSLASHSmartcite] = ACTIONS(2643), + [anon_sym_BSLASHsupercite] = ACTIONS(2643), + [anon_sym_BSLASHautocite] = ACTIONS(2643), + [anon_sym_BSLASHAutocite] = ACTIONS(2643), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2646), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2646), + [anon_sym_BSLASHvolcite] = ACTIONS(2643), + [anon_sym_BSLASHVolcite] = ACTIONS(2643), + [anon_sym_BSLASHpvolcite] = ACTIONS(2643), + [anon_sym_BSLASHPvolcite] = ACTIONS(2643), + [anon_sym_BSLASHfvolcite] = ACTIONS(2643), + [anon_sym_BSLASHftvolcite] = ACTIONS(2643), + [anon_sym_BSLASHsvolcite] = ACTIONS(2643), + [anon_sym_BSLASHSvolcite] = ACTIONS(2643), + [anon_sym_BSLASHtvolcite] = ACTIONS(2643), + [anon_sym_BSLASHTvolcite] = ACTIONS(2643), + [anon_sym_BSLASHavolcite] = ACTIONS(2643), + [anon_sym_BSLASHAvolcite] = ACTIONS(2643), + [anon_sym_BSLASHnotecite] = ACTIONS(2643), + [anon_sym_BSLASHNotecite] = ACTIONS(2643), + [anon_sym_BSLASHpnotecite] = ACTIONS(2643), + [anon_sym_BSLASHPnotecite] = ACTIONS(2643), + [anon_sym_BSLASHfnotecite] = ACTIONS(2643), + [anon_sym_BSLASHlabel] = ACTIONS(2649), + [anon_sym_BSLASHref] = ACTIONS(2652), + [anon_sym_BSLASHeqref] = ACTIONS(2652), + [anon_sym_BSLASHvref] = ACTIONS(2652), + [anon_sym_BSLASHVref] = ACTIONS(2652), + [anon_sym_BSLASHautoref] = ACTIONS(2652), + [anon_sym_BSLASHpageref] = ACTIONS(2652), + [anon_sym_BSLASHcref] = ACTIONS(2652), + [anon_sym_BSLASHCref] = ACTIONS(2652), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2655), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2655), + [anon_sym_BSLASHnamecref] = ACTIONS(2652), + [anon_sym_BSLASHnameCref] = ACTIONS(2652), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2652), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2652), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2652), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2652), + [anon_sym_BSLASHlabelcref] = ACTIONS(2652), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2652), + [anon_sym_BSLASHcrefrange] = ACTIONS(2658), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2661), + [anon_sym_BSLASHCrefrange] = ACTIONS(2658), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2661), + [anon_sym_BSLASHnewlabel] = ACTIONS(2664), + [anon_sym_BSLASHnewcommand] = ACTIONS(2667), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2670), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2667), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2670), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2667), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2670), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2667), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2670), + [anon_sym_BSLASHdef] = ACTIONS(2673), + [anon_sym_BSLASHlet] = ACTIONS(2676), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2679), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2679), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2682), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2685), + [anon_sym_BSLASHgls] = ACTIONS(2688), + [anon_sym_BSLASHGls] = ACTIONS(2688), + [anon_sym_BSLASHGLS] = ACTIONS(2688), + [anon_sym_BSLASHglspl] = ACTIONS(2688), + [anon_sym_BSLASHGlspl] = ACTIONS(2688), + [anon_sym_BSLASHGLSpl] = ACTIONS(2688), + [anon_sym_BSLASHglsdisp] = ACTIONS(2688), + [anon_sym_BSLASHglslink] = ACTIONS(2688), + [anon_sym_BSLASHglstext] = ACTIONS(2688), + [anon_sym_BSLASHGlstext] = ACTIONS(2688), + [anon_sym_BSLASHGLStext] = ACTIONS(2688), + [anon_sym_BSLASHglsfirst] = ACTIONS(2688), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2688), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2688), + [anon_sym_BSLASHglsplural] = ACTIONS(2688), + [anon_sym_BSLASHGlsplural] = ACTIONS(2688), + [anon_sym_BSLASHGLSplural] = ACTIONS(2688), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2688), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2688), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2688), + [anon_sym_BSLASHglsname] = ACTIONS(2688), + [anon_sym_BSLASHGlsname] = ACTIONS(2688), + [anon_sym_BSLASHGLSname] = ACTIONS(2688), + [anon_sym_BSLASHglssymbol] = ACTIONS(2688), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2688), + [anon_sym_BSLASHglsdesc] = ACTIONS(2688), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2688), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2688), + [anon_sym_BSLASHglsuseri] = ACTIONS(2688), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2688), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2688), + [anon_sym_BSLASHglsuserii] = ACTIONS(2688), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2688), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2688), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2688), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2688), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2688), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2688), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2688), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2688), + [anon_sym_BSLASHglsuserv] = ACTIONS(2688), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2688), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2688), + [anon_sym_BSLASHglsuservi] = ACTIONS(2688), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2688), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2688), + [anon_sym_BSLASHnewacronym] = ACTIONS(2691), + [anon_sym_BSLASHacrshort] = ACTIONS(2694), + [anon_sym_BSLASHAcrshort] = ACTIONS(2694), + [anon_sym_BSLASHACRshort] = ACTIONS(2694), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2694), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2694), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2694), + [anon_sym_BSLASHacrlong] = ACTIONS(2694), + [anon_sym_BSLASHAcrlong] = ACTIONS(2694), + [anon_sym_BSLASHACRlong] = ACTIONS(2694), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2694), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2694), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2694), + [anon_sym_BSLASHacrfull] = ACTIONS(2694), + [anon_sym_BSLASHAcrfull] = ACTIONS(2694), + [anon_sym_BSLASHACRfull] = ACTIONS(2694), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2694), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2694), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2694), + [anon_sym_BSLASHacs] = ACTIONS(2694), + [anon_sym_BSLASHAcs] = ACTIONS(2694), + [anon_sym_BSLASHacsp] = ACTIONS(2694), + [anon_sym_BSLASHAcsp] = ACTIONS(2694), + [anon_sym_BSLASHacl] = ACTIONS(2694), + [anon_sym_BSLASHAcl] = ACTIONS(2694), + [anon_sym_BSLASHaclp] = ACTIONS(2694), + [anon_sym_BSLASHAclp] = ACTIONS(2694), + [anon_sym_BSLASHacf] = ACTIONS(2694), + [anon_sym_BSLASHAcf] = ACTIONS(2694), + [anon_sym_BSLASHacfp] = ACTIONS(2694), + [anon_sym_BSLASHAcfp] = ACTIONS(2694), + [anon_sym_BSLASHac] = ACTIONS(2694), + [anon_sym_BSLASHAc] = ACTIONS(2694), + [anon_sym_BSLASHacp] = ACTIONS(2694), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2694), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2694), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2694), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2694), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2694), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2694), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2694), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2694), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2694), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2694), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2697), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2700), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2697), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2700), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2706), + [anon_sym_BSLASHcolor] = ACTIONS(2709), + [anon_sym_BSLASHcolorbox] = ACTIONS(2709), + [anon_sym_BSLASHtextcolor] = ACTIONS(2709), + [anon_sym_BSLASHpagecolor] = ACTIONS(2709), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2712), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2712), + [anon_sym_BSLASHtext] = ACTIONS(2715), + [anon_sym_BSLASHintertext] = ACTIONS(2715), + [anon_sym_shortintertext] = ACTIONS(2715), }, - [204] = { - [sym_block_comment] = STATE(199), - [sym__flat_content] = STATE(199), - [sym__text_with_env_content] = STATE(199), - [sym__text_content] = STATE(199), - [sym_curly_group] = STATE(199), - [sym_text] = STATE(199), - [sym_operator] = STATE(879), - [sym_displayed_equation] = STATE(199), - [sym_inline_formula] = STATE(199), - [sym_math_set] = STATE(199), - [sym_begin] = STATE(13), - [sym_generic_environment] = STATE(199), - [sym_comment_environment] = STATE(199), - [sym__trivia_begin_comment] = STATE(2426), - [sym_verbatim_environment] = STATE(199), - [sym__trivia_begin_verbatim] = STATE(2423), - [sym_listing_environment] = STATE(199), - [sym__trivia_begin_listing] = STATE(2417), - [sym_minted_environment] = STATE(199), - [sym__trivia_begin_minted] = STATE(2415), - [sym_pycode_environment] = STATE(199), - [sym__trivia_begin_pycode] = STATE(2414), - [sym__command] = STATE(199), - [sym_generic_command] = STATE(199), - [sym_package_include] = STATE(199), - [sym_class_include] = STATE(199), - [sym_latex_include] = STATE(199), - [sym_biblatex_include] = STATE(199), - [sym_bibtex_include] = STATE(199), - [sym_graphics_include] = STATE(199), - [sym_svg_include] = STATE(199), - [sym_inkscape_include] = STATE(199), - [sym_verbatim_include] = STATE(199), - [sym_import_include] = STATE(199), - [sym_caption] = STATE(199), - [sym_citation] = STATE(199), - [sym_label_definition] = STATE(199), - [sym_label_reference] = STATE(199), - [sym_label_reference_range] = STATE(199), - [sym_label_number] = STATE(199), - [sym_new_command_definition] = STATE(199), - [sym_old_command_definition] = STATE(199), - [sym_let_command_definition] = STATE(199), - [sym_paired_delimiter_definition] = STATE(199), - [sym_environment_definition] = STATE(199), - [sym_glossary_entry_definition] = STATE(199), - [sym_glossary_entry_reference] = STATE(199), - [sym_acronym_definition] = STATE(199), - [sym_acronym_reference] = STATE(199), - [sym_theorem_definition] = STATE(199), - [sym_color_definition] = STATE(199), - [sym_color_set_definition] = STATE(199), - [sym_color_reference] = STATE(199), - [sym_tikz_library_import] = STATE(199), - [sym_text_mode] = STATE(199), - [aux_sym_part_repeat1] = STATE(199), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_RPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_COMMA] = ACTIONS(2612), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_BSLASHpart] = ACTIONS(2177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddpart] = ACTIONS(2177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2173), - [anon_sym_BSLASHchapter] = ACTIONS(2177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddchap] = ACTIONS(2177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsection] = ACTIONS(2177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHaddsec] = ACTIONS(2177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2173), - [anon_sym_BSLASHparagraph] = ACTIONS(2177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2173), - [anon_sym_BSLASHitem] = ACTIONS(2177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(847), - [anon_sym_BSLASH_LBRACE] = ACTIONS(849), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2173), + [217] = { + [sym_block_comment] = STATE(212), + [sym__flat_content] = STATE(212), + [sym__text_with_env_content] = STATE(212), + [sym__text_content] = STATE(212), + [sym_curly_group] = STATE(212), + [sym_text] = STATE(212), + [sym_operator] = STATE(1314), + [sym_displayed_equation] = STATE(212), + [sym_inline_formula] = STATE(212), + [sym_math_set] = STATE(212), + [sym_begin] = STATE(28), + [sym_generic_environment] = STATE(212), + [sym_comment_environment] = STATE(212), + [sym__trivia_begin_comment] = STATE(2740), + [sym_verbatim_environment] = STATE(212), + [sym__trivia_begin_verbatim] = STATE(2738), + [sym_listing_environment] = STATE(212), + [sym__trivia_begin_listing] = STATE(2737), + [sym_minted_environment] = STATE(212), + [sym__trivia_begin_minted] = STATE(2736), + [sym_pycode_environment] = STATE(212), + [sym__trivia_begin_pycode] = STATE(2735), + [sym__command] = STATE(212), + [sym_generic_command] = STATE(212), + [sym_title_declaration] = STATE(212), + [sym_author_declaration] = STATE(212), + [sym_package_include] = STATE(212), + [sym_class_include] = STATE(212), + [sym_latex_include] = STATE(212), + [sym_biblatex_include] = STATE(212), + [sym_bibtex_include] = STATE(212), + [sym_graphics_include] = STATE(212), + [sym_svg_include] = STATE(212), + [sym_inkscape_include] = STATE(212), + [sym_verbatim_include] = STATE(212), + [sym_import_include] = STATE(212), + [sym_caption] = STATE(212), + [sym_citation] = STATE(212), + [sym_label_definition] = STATE(212), + [sym_label_reference] = STATE(212), + [sym_label_reference_range] = STATE(212), + [sym_label_number] = STATE(212), + [sym_new_command_definition] = STATE(212), + [sym_old_command_definition] = STATE(212), + [sym_let_command_definition] = STATE(212), + [sym_paired_delimiter_definition] = STATE(212), + [sym_environment_definition] = STATE(212), + [sym_glossary_entry_definition] = STATE(212), + [sym_glossary_entry_reference] = STATE(212), + [sym_acronym_definition] = STATE(212), + [sym_acronym_reference] = STATE(212), + [sym_theorem_definition] = STATE(212), + [sym_color_definition] = STATE(212), + [sym_color_set_definition] = STATE(212), + [sym_color_reference] = STATE(212), + [sym_tikz_library_import] = STATE(212), + [sym_text_mode] = STATE(212), + [aux_sym_part_repeat1] = STATE(212), + [aux_sym_text_repeat1] = STATE(221), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2718), + [anon_sym_BSLASHpart] = ACTIONS(2265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddpart] = ACTIONS(2265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2261), + [anon_sym_BSLASHchapter] = ACTIONS(2265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddchap] = ACTIONS(2265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsection] = ACTIONS(2265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHaddsec] = ACTIONS(2265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2261), + [anon_sym_BSLASHparagraph] = ACTIONS(2265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2261), + [anon_sym_BSLASHitem] = ACTIONS(2265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(733), + [anon_sym_BSLASH_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(737), + [anon_sym_BSLASH_LPAREN] = ACTIONS(739), + [anon_sym_BSLASH_LBRACE] = ACTIONS(741), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(923), - [anon_sym_BSLASHintertext] = ACTIONS(923), - [anon_sym_shortintertext] = ACTIONS(923), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(817), + [anon_sym_BSLASHintertext] = ACTIONS(817), + [anon_sym_shortintertext] = ACTIONS(817), }, - [205] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(986), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(21), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2434), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2433), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2432), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2431), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2430), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_paired_delimiter_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [sym_text_mode] = STATE(205), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(2614), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_BSLASHpart] = ACTIONS(2036), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddpart] = ACTIONS(2036), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2025), - [anon_sym_BSLASHchapter] = ACTIONS(2036), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddchap] = ACTIONS(2036), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsection] = ACTIONS(2036), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHaddsec] = ACTIONS(2036), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2036), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2025), - [anon_sym_BSLASHparagraph] = ACTIONS(2036), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2036), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2025), - [anon_sym_BSLASHitem] = ACTIONS(2036), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2623), - [sym_word] = ACTIONS(2626), - [sym_placeholder] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2632), - [anon_sym__] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_GT] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2638), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2641), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2644), - [anon_sym_BSLASHbegin] = ACTIONS(2062), - [anon_sym_BSLASHusepackage] = ACTIONS(2647), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2647), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2650), - [anon_sym_BSLASHinclude] = ACTIONS(2653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2653), - [anon_sym_BSLASHinput] = ACTIONS(2653), - [anon_sym_BSLASHsubfile] = ACTIONS(2653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2656), - [anon_sym_BSLASHbibliography] = ACTIONS(2659), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2662), - [anon_sym_BSLASHincludesvg] = ACTIONS(2665), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2668), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2671), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2671), - [anon_sym_BSLASHimport] = ACTIONS(2674), - [anon_sym_BSLASHsubimport] = ACTIONS(2674), - [anon_sym_BSLASHinputfrom] = ACTIONS(2674), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2674), - [anon_sym_BSLASHincludefrom] = ACTIONS(2674), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2674), - [anon_sym_BSLASHcaption] = ACTIONS(2677), - [anon_sym_BSLASHcite] = ACTIONS(2680), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2683), - [anon_sym_BSLASHCite] = ACTIONS(2680), - [anon_sym_BSLASHnocite] = ACTIONS(2680), - [anon_sym_BSLASHcitet] = ACTIONS(2680), - [anon_sym_BSLASHcitep] = ACTIONS(2680), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2683), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2683), - [anon_sym_BSLASHciteauthor] = ACTIONS(2680), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2683), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2680), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2683), - [anon_sym_BSLASHcitetitle] = ACTIONS(2680), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2683), - [anon_sym_BSLASHciteyear] = ACTIONS(2680), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2683), - [anon_sym_BSLASHcitedate] = ACTIONS(2680), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2683), - [anon_sym_BSLASHciteurl] = ACTIONS(2680), - [anon_sym_BSLASHfullcite] = ACTIONS(2680), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2680), - [anon_sym_BSLASHcitealt] = ACTIONS(2680), - [anon_sym_BSLASHcitealp] = ACTIONS(2680), - [anon_sym_BSLASHcitetext] = ACTIONS(2680), - [anon_sym_BSLASHparencite] = ACTIONS(2680), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2683), - [anon_sym_BSLASHParencite] = ACTIONS(2680), - [anon_sym_BSLASHfootcite] = ACTIONS(2680), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2680), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2680), - [anon_sym_BSLASHtextcite] = ACTIONS(2680), - [anon_sym_BSLASHTextcite] = ACTIONS(2680), - [anon_sym_BSLASHsmartcite] = ACTIONS(2680), - [anon_sym_BSLASHSmartcite] = ACTIONS(2680), - [anon_sym_BSLASHsupercite] = ACTIONS(2680), - [anon_sym_BSLASHautocite] = ACTIONS(2680), - [anon_sym_BSLASHAutocite] = ACTIONS(2680), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2683), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2683), - [anon_sym_BSLASHvolcite] = ACTIONS(2680), - [anon_sym_BSLASHVolcite] = ACTIONS(2680), - [anon_sym_BSLASHpvolcite] = ACTIONS(2680), - [anon_sym_BSLASHPvolcite] = ACTIONS(2680), - [anon_sym_BSLASHfvolcite] = ACTIONS(2680), - [anon_sym_BSLASHftvolcite] = ACTIONS(2680), - [anon_sym_BSLASHsvolcite] = ACTIONS(2680), - [anon_sym_BSLASHSvolcite] = ACTIONS(2680), - [anon_sym_BSLASHtvolcite] = ACTIONS(2680), - [anon_sym_BSLASHTvolcite] = ACTIONS(2680), - [anon_sym_BSLASHavolcite] = ACTIONS(2680), - [anon_sym_BSLASHAvolcite] = ACTIONS(2680), - [anon_sym_BSLASHnotecite] = ACTIONS(2680), - [anon_sym_BSLASHNotecite] = ACTIONS(2680), - [anon_sym_BSLASHpnotecite] = ACTIONS(2680), - [anon_sym_BSLASHPnotecite] = ACTIONS(2680), - [anon_sym_BSLASHfnotecite] = ACTIONS(2680), - [anon_sym_BSLASHlabel] = ACTIONS(2686), - [anon_sym_BSLASHref] = ACTIONS(2689), - [anon_sym_BSLASHeqref] = ACTIONS(2689), - [anon_sym_BSLASHvref] = ACTIONS(2689), - [anon_sym_BSLASHVref] = ACTIONS(2689), - [anon_sym_BSLASHautoref] = ACTIONS(2689), - [anon_sym_BSLASHpageref] = ACTIONS(2689), - [anon_sym_BSLASHcref] = ACTIONS(2689), - [anon_sym_BSLASHCref] = ACTIONS(2689), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2692), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2692), - [anon_sym_BSLASHnamecref] = ACTIONS(2689), - [anon_sym_BSLASHnameCref] = ACTIONS(2689), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2689), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2689), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2689), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2689), - [anon_sym_BSLASHlabelcref] = ACTIONS(2689), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2689), - [anon_sym_BSLASHcrefrange] = ACTIONS(2695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2698), - [anon_sym_BSLASHCrefrange] = ACTIONS(2695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2698), - [anon_sym_BSLASHnewlabel] = ACTIONS(2701), - [anon_sym_BSLASHnewcommand] = ACTIONS(2704), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2707), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2704), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2707), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2704), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2707), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2704), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2707), - [anon_sym_BSLASHdef] = ACTIONS(2710), - [anon_sym_BSLASHlet] = ACTIONS(2713), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2716), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2716), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2719), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2722), - [anon_sym_BSLASHgls] = ACTIONS(2725), - [anon_sym_BSLASHGls] = ACTIONS(2725), - [anon_sym_BSLASHGLS] = ACTIONS(2725), - [anon_sym_BSLASHglspl] = ACTIONS(2725), - [anon_sym_BSLASHGlspl] = ACTIONS(2725), - [anon_sym_BSLASHGLSpl] = ACTIONS(2725), - [anon_sym_BSLASHglsdisp] = ACTIONS(2725), - [anon_sym_BSLASHglslink] = ACTIONS(2725), - [anon_sym_BSLASHglstext] = ACTIONS(2725), - [anon_sym_BSLASHGlstext] = ACTIONS(2725), - [anon_sym_BSLASHGLStext] = ACTIONS(2725), - [anon_sym_BSLASHglsfirst] = ACTIONS(2725), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2725), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2725), - [anon_sym_BSLASHglsplural] = ACTIONS(2725), - [anon_sym_BSLASHGlsplural] = ACTIONS(2725), - [anon_sym_BSLASHGLSplural] = ACTIONS(2725), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2725), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2725), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2725), - [anon_sym_BSLASHglsname] = ACTIONS(2725), - [anon_sym_BSLASHGlsname] = ACTIONS(2725), - [anon_sym_BSLASHGLSname] = ACTIONS(2725), - [anon_sym_BSLASHglssymbol] = ACTIONS(2725), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2725), - [anon_sym_BSLASHglsdesc] = ACTIONS(2725), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2725), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2725), - [anon_sym_BSLASHglsuseri] = ACTIONS(2725), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2725), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2725), - [anon_sym_BSLASHglsuserii] = ACTIONS(2725), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2725), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2725), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2725), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2725), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2725), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2725), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2725), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2725), - [anon_sym_BSLASHglsuserv] = ACTIONS(2725), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2725), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2725), - [anon_sym_BSLASHglsuservi] = ACTIONS(2725), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2725), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2725), - [anon_sym_BSLASHnewacronym] = ACTIONS(2728), - [anon_sym_BSLASHacrshort] = ACTIONS(2731), - [anon_sym_BSLASHAcrshort] = ACTIONS(2731), - [anon_sym_BSLASHACRshort] = ACTIONS(2731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2731), - [anon_sym_BSLASHacrlong] = ACTIONS(2731), - [anon_sym_BSLASHAcrlong] = ACTIONS(2731), - [anon_sym_BSLASHACRlong] = ACTIONS(2731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2731), - [anon_sym_BSLASHacrfull] = ACTIONS(2731), - [anon_sym_BSLASHAcrfull] = ACTIONS(2731), - [anon_sym_BSLASHACRfull] = ACTIONS(2731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2731), - [anon_sym_BSLASHacs] = ACTIONS(2731), - [anon_sym_BSLASHAcs] = ACTIONS(2731), - [anon_sym_BSLASHacsp] = ACTIONS(2731), - [anon_sym_BSLASHAcsp] = ACTIONS(2731), - [anon_sym_BSLASHacl] = ACTIONS(2731), - [anon_sym_BSLASHAcl] = ACTIONS(2731), - [anon_sym_BSLASHaclp] = ACTIONS(2731), - [anon_sym_BSLASHAclp] = ACTIONS(2731), - [anon_sym_BSLASHacf] = ACTIONS(2731), - [anon_sym_BSLASHAcf] = ACTIONS(2731), - [anon_sym_BSLASHacfp] = ACTIONS(2731), - [anon_sym_BSLASHAcfp] = ACTIONS(2731), - [anon_sym_BSLASHac] = ACTIONS(2731), - [anon_sym_BSLASHAc] = ACTIONS(2731), - [anon_sym_BSLASHacp] = ACTIONS(2731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2734), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2737), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2734), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2737), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2740), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2743), - [anon_sym_BSLASHcolor] = ACTIONS(2746), - [anon_sym_BSLASHcolorbox] = ACTIONS(2746), - [anon_sym_BSLASHtextcolor] = ACTIONS(2746), - [anon_sym_BSLASHpagecolor] = ACTIONS(2746), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2749), - [anon_sym_BSLASHtext] = ACTIONS(2752), - [anon_sym_BSLASHintertext] = ACTIONS(2752), - [anon_sym_shortintertext] = ACTIONS(2752), + [218] = { + [sym_block_comment] = STATE(218), + [sym__flat_content] = STATE(218), + [sym__text_with_env_content] = STATE(218), + [sym__text_content] = STATE(218), + [sym_curly_group] = STATE(218), + [sym_text] = STATE(218), + [sym_operator] = STATE(905), + [sym_displayed_equation] = STATE(218), + [sym_inline_formula] = STATE(218), + [sym_math_set] = STATE(218), + [sym_begin] = STATE(12), + [sym_generic_environment] = STATE(218), + [sym_comment_environment] = STATE(218), + [sym__trivia_begin_comment] = STATE(2718), + [sym_verbatim_environment] = STATE(218), + [sym__trivia_begin_verbatim] = STATE(2717), + [sym_listing_environment] = STATE(218), + [sym__trivia_begin_listing] = STATE(2716), + [sym_minted_environment] = STATE(218), + [sym__trivia_begin_minted] = STATE(2715), + [sym_pycode_environment] = STATE(218), + [sym__trivia_begin_pycode] = STATE(2714), + [sym__command] = STATE(218), + [sym_generic_command] = STATE(218), + [sym_title_declaration] = STATE(218), + [sym_author_declaration] = STATE(218), + [sym_package_include] = STATE(218), + [sym_class_include] = STATE(218), + [sym_latex_include] = STATE(218), + [sym_biblatex_include] = STATE(218), + [sym_bibtex_include] = STATE(218), + [sym_graphics_include] = STATE(218), + [sym_svg_include] = STATE(218), + [sym_inkscape_include] = STATE(218), + [sym_verbatim_include] = STATE(218), + [sym_import_include] = STATE(218), + [sym_caption] = STATE(218), + [sym_citation] = STATE(218), + [sym_label_definition] = STATE(218), + [sym_label_reference] = STATE(218), + [sym_label_reference_range] = STATE(218), + [sym_label_number] = STATE(218), + [sym_new_command_definition] = STATE(218), + [sym_old_command_definition] = STATE(218), + [sym_let_command_definition] = STATE(218), + [sym_paired_delimiter_definition] = STATE(218), + [sym_environment_definition] = STATE(218), + [sym_glossary_entry_definition] = STATE(218), + [sym_glossary_entry_reference] = STATE(218), + [sym_acronym_definition] = STATE(218), + [sym_acronym_reference] = STATE(218), + [sym_theorem_definition] = STATE(218), + [sym_color_definition] = STATE(218), + [sym_color_set_definition] = STATE(218), + [sym_color_reference] = STATE(218), + [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), + [aux_sym_part_repeat1] = STATE(218), + [aux_sym_text_repeat1] = STATE(225), + [sym_command_name] = ACTIONS(2720), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_RBRACK] = ACTIONS(2726), + [anon_sym_COMMA] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_BSLASHpart] = ACTIONS(2118), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddpart] = ACTIONS(2118), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2107), + [anon_sym_BSLASHchapter] = ACTIONS(2118), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddchap] = ACTIONS(2118), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsection] = ACTIONS(2118), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHaddsec] = ACTIONS(2118), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2118), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2107), + [anon_sym_BSLASHparagraph] = ACTIONS(2118), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2118), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2107), + [anon_sym_BSLASHitem] = ACTIONS(2118), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2729), + [sym_word] = ACTIONS(2732), + [sym_placeholder] = ACTIONS(2735), + [anon_sym_PLUS] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym__] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_GT] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_COLON] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2741), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2747), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2750), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2107), + [anon_sym_BSLASHbegin] = ACTIONS(2144), + [anon_sym_BSLASHtitle] = ACTIONS(2753), + [anon_sym_BSLASHauthor] = ACTIONS(2756), + [anon_sym_BSLASHusepackage] = ACTIONS(2759), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2759), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2762), + [anon_sym_BSLASHinclude] = ACTIONS(2765), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2765), + [anon_sym_BSLASHinput] = ACTIONS(2765), + [anon_sym_BSLASHsubfile] = ACTIONS(2765), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2768), + [anon_sym_BSLASHbibliography] = ACTIONS(2771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2774), + [anon_sym_BSLASHincludesvg] = ACTIONS(2777), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2780), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2783), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2783), + [anon_sym_BSLASHimport] = ACTIONS(2786), + [anon_sym_BSLASHsubimport] = ACTIONS(2786), + [anon_sym_BSLASHinputfrom] = ACTIONS(2786), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2786), + [anon_sym_BSLASHincludefrom] = ACTIONS(2786), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2786), + [anon_sym_BSLASHcaption] = ACTIONS(2789), + [anon_sym_BSLASHcite] = ACTIONS(2792), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2795), + [anon_sym_BSLASHCite] = ACTIONS(2792), + [anon_sym_BSLASHnocite] = ACTIONS(2792), + [anon_sym_BSLASHcitet] = ACTIONS(2792), + [anon_sym_BSLASHcitep] = ACTIONS(2792), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2795), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2795), + [anon_sym_BSLASHciteauthor] = ACTIONS(2792), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2795), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2792), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2795), + [anon_sym_BSLASHcitetitle] = ACTIONS(2792), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2795), + [anon_sym_BSLASHciteyear] = ACTIONS(2792), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2795), + [anon_sym_BSLASHcitedate] = ACTIONS(2792), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2795), + [anon_sym_BSLASHciteurl] = ACTIONS(2792), + [anon_sym_BSLASHfullcite] = ACTIONS(2792), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2792), + [anon_sym_BSLASHcitealt] = ACTIONS(2792), + [anon_sym_BSLASHcitealp] = ACTIONS(2792), + [anon_sym_BSLASHcitetext] = ACTIONS(2792), + [anon_sym_BSLASHparencite] = ACTIONS(2792), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2795), + [anon_sym_BSLASHParencite] = ACTIONS(2792), + [anon_sym_BSLASHfootcite] = ACTIONS(2792), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2792), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2792), + [anon_sym_BSLASHtextcite] = ACTIONS(2792), + [anon_sym_BSLASHTextcite] = ACTIONS(2792), + [anon_sym_BSLASHsmartcite] = ACTIONS(2792), + [anon_sym_BSLASHSmartcite] = ACTIONS(2792), + [anon_sym_BSLASHsupercite] = ACTIONS(2792), + [anon_sym_BSLASHautocite] = ACTIONS(2792), + [anon_sym_BSLASHAutocite] = ACTIONS(2792), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2795), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2795), + [anon_sym_BSLASHvolcite] = ACTIONS(2792), + [anon_sym_BSLASHVolcite] = ACTIONS(2792), + [anon_sym_BSLASHpvolcite] = ACTIONS(2792), + [anon_sym_BSLASHPvolcite] = ACTIONS(2792), + [anon_sym_BSLASHfvolcite] = ACTIONS(2792), + [anon_sym_BSLASHftvolcite] = ACTIONS(2792), + [anon_sym_BSLASHsvolcite] = ACTIONS(2792), + [anon_sym_BSLASHSvolcite] = ACTIONS(2792), + [anon_sym_BSLASHtvolcite] = ACTIONS(2792), + [anon_sym_BSLASHTvolcite] = ACTIONS(2792), + [anon_sym_BSLASHavolcite] = ACTIONS(2792), + [anon_sym_BSLASHAvolcite] = ACTIONS(2792), + [anon_sym_BSLASHnotecite] = ACTIONS(2792), + [anon_sym_BSLASHNotecite] = ACTIONS(2792), + [anon_sym_BSLASHpnotecite] = ACTIONS(2792), + [anon_sym_BSLASHPnotecite] = ACTIONS(2792), + [anon_sym_BSLASHfnotecite] = ACTIONS(2792), + [anon_sym_BSLASHlabel] = ACTIONS(2798), + [anon_sym_BSLASHref] = ACTIONS(2801), + [anon_sym_BSLASHeqref] = ACTIONS(2801), + [anon_sym_BSLASHvref] = ACTIONS(2801), + [anon_sym_BSLASHVref] = ACTIONS(2801), + [anon_sym_BSLASHautoref] = ACTIONS(2801), + [anon_sym_BSLASHpageref] = ACTIONS(2801), + [anon_sym_BSLASHcref] = ACTIONS(2801), + [anon_sym_BSLASHCref] = ACTIONS(2801), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2804), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2804), + [anon_sym_BSLASHnamecref] = ACTIONS(2801), + [anon_sym_BSLASHnameCref] = ACTIONS(2801), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2801), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2801), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2801), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2801), + [anon_sym_BSLASHlabelcref] = ACTIONS(2801), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2801), + [anon_sym_BSLASHcrefrange] = ACTIONS(2807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2810), + [anon_sym_BSLASHCrefrange] = ACTIONS(2807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2810), + [anon_sym_BSLASHnewlabel] = ACTIONS(2813), + [anon_sym_BSLASHnewcommand] = ACTIONS(2816), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2819), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2816), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2819), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2816), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2819), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2816), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2819), + [anon_sym_BSLASHdef] = ACTIONS(2822), + [anon_sym_BSLASHlet] = ACTIONS(2825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2828), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2828), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2831), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2834), + [anon_sym_BSLASHgls] = ACTIONS(2837), + [anon_sym_BSLASHGls] = ACTIONS(2837), + [anon_sym_BSLASHGLS] = ACTIONS(2837), + [anon_sym_BSLASHglspl] = ACTIONS(2837), + [anon_sym_BSLASHGlspl] = ACTIONS(2837), + [anon_sym_BSLASHGLSpl] = ACTIONS(2837), + [anon_sym_BSLASHglsdisp] = ACTIONS(2837), + [anon_sym_BSLASHglslink] = ACTIONS(2837), + [anon_sym_BSLASHglstext] = ACTIONS(2837), + [anon_sym_BSLASHGlstext] = ACTIONS(2837), + [anon_sym_BSLASHGLStext] = ACTIONS(2837), + [anon_sym_BSLASHglsfirst] = ACTIONS(2837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2837), + [anon_sym_BSLASHglsplural] = ACTIONS(2837), + [anon_sym_BSLASHGlsplural] = ACTIONS(2837), + [anon_sym_BSLASHGLSplural] = ACTIONS(2837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2837), + [anon_sym_BSLASHglsname] = ACTIONS(2837), + [anon_sym_BSLASHGlsname] = ACTIONS(2837), + [anon_sym_BSLASHGLSname] = ACTIONS(2837), + [anon_sym_BSLASHglssymbol] = ACTIONS(2837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2837), + [anon_sym_BSLASHglsdesc] = ACTIONS(2837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2837), + [anon_sym_BSLASHglsuseri] = ACTIONS(2837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2837), + [anon_sym_BSLASHglsuserii] = ACTIONS(2837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2837), + [anon_sym_BSLASHglsuserv] = ACTIONS(2837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2837), + [anon_sym_BSLASHglsuservi] = ACTIONS(2837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2837), + [anon_sym_BSLASHnewacronym] = ACTIONS(2840), + [anon_sym_BSLASHacrshort] = ACTIONS(2843), + [anon_sym_BSLASHAcrshort] = ACTIONS(2843), + [anon_sym_BSLASHACRshort] = ACTIONS(2843), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2843), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2843), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2843), + [anon_sym_BSLASHacrlong] = ACTIONS(2843), + [anon_sym_BSLASHAcrlong] = ACTIONS(2843), + [anon_sym_BSLASHACRlong] = ACTIONS(2843), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2843), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2843), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2843), + [anon_sym_BSLASHacrfull] = ACTIONS(2843), + [anon_sym_BSLASHAcrfull] = ACTIONS(2843), + [anon_sym_BSLASHACRfull] = ACTIONS(2843), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2843), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2843), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2843), + [anon_sym_BSLASHacs] = ACTIONS(2843), + [anon_sym_BSLASHAcs] = ACTIONS(2843), + [anon_sym_BSLASHacsp] = ACTIONS(2843), + [anon_sym_BSLASHAcsp] = ACTIONS(2843), + [anon_sym_BSLASHacl] = ACTIONS(2843), + [anon_sym_BSLASHAcl] = ACTIONS(2843), + [anon_sym_BSLASHaclp] = ACTIONS(2843), + [anon_sym_BSLASHAclp] = ACTIONS(2843), + [anon_sym_BSLASHacf] = ACTIONS(2843), + [anon_sym_BSLASHAcf] = ACTIONS(2843), + [anon_sym_BSLASHacfp] = ACTIONS(2843), + [anon_sym_BSLASHAcfp] = ACTIONS(2843), + [anon_sym_BSLASHac] = ACTIONS(2843), + [anon_sym_BSLASHAc] = ACTIONS(2843), + [anon_sym_BSLASHacp] = ACTIONS(2843), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2843), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2843), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2843), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2843), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2843), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2843), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2843), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2843), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2843), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2843), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2846), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2846), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2852), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2855), + [anon_sym_BSLASHcolor] = ACTIONS(2858), + [anon_sym_BSLASHcolorbox] = ACTIONS(2858), + [anon_sym_BSLASHtextcolor] = ACTIONS(2858), + [anon_sym_BSLASHpagecolor] = ACTIONS(2858), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2861), + [anon_sym_BSLASHtext] = ACTIONS(2864), + [anon_sym_BSLASHintertext] = ACTIONS(2864), + [anon_sym_shortintertext] = ACTIONS(2864), }, - [206] = { - [sym_block_comment] = STATE(201), - [sym__flat_content] = STATE(201), - [sym__text_with_env_content] = STATE(201), - [sym__text_content] = STATE(201), - [sym_curly_group] = STATE(201), - [sym_text] = STATE(201), - [sym_operator] = STATE(1196), - [sym_displayed_equation] = STATE(201), - [sym_inline_formula] = STATE(201), - [sym_math_set] = STATE(201), - [sym_begin] = STATE(27), - [sym_generic_environment] = STATE(201), - [sym_comment_environment] = STATE(201), - [sym__trivia_begin_comment] = STATE(2443), - [sym_verbatim_environment] = STATE(201), - [sym__trivia_begin_verbatim] = STATE(2442), - [sym_listing_environment] = STATE(201), - [sym__trivia_begin_listing] = STATE(2441), - [sym_minted_environment] = STATE(201), - [sym__trivia_begin_minted] = STATE(2440), - [sym_pycode_environment] = STATE(201), - [sym__trivia_begin_pycode] = STATE(2439), - [sym__command] = STATE(201), - [sym_generic_command] = STATE(201), - [sym_package_include] = STATE(201), - [sym_class_include] = STATE(201), - [sym_latex_include] = STATE(201), - [sym_biblatex_include] = STATE(201), - [sym_bibtex_include] = STATE(201), - [sym_graphics_include] = STATE(201), - [sym_svg_include] = STATE(201), - [sym_inkscape_include] = STATE(201), - [sym_verbatim_include] = STATE(201), - [sym_import_include] = STATE(201), - [sym_caption] = STATE(201), - [sym_citation] = STATE(201), - [sym_label_definition] = STATE(201), - [sym_label_reference] = STATE(201), - [sym_label_reference_range] = STATE(201), - [sym_label_number] = STATE(201), - [sym_new_command_definition] = STATE(201), - [sym_old_command_definition] = STATE(201), - [sym_let_command_definition] = STATE(201), - [sym_paired_delimiter_definition] = STATE(201), - [sym_environment_definition] = STATE(201), - [sym_glossary_entry_definition] = STATE(201), - [sym_glossary_entry_reference] = STATE(201), - [sym_acronym_definition] = STATE(201), - [sym_acronym_reference] = STATE(201), - [sym_theorem_definition] = STATE(201), - [sym_color_definition] = STATE(201), - [sym_color_set_definition] = STATE(201), - [sym_color_reference] = STATE(201), - [sym_tikz_library_import] = STATE(201), - [sym_text_mode] = STATE(201), - [aux_sym_part_repeat1] = STATE(201), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1901), - [anon_sym_BSLASHpart] = ACTIONS(2181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddpart] = ACTIONS(2181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2179), - [anon_sym_BSLASHchapter] = ACTIONS(2181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddchap] = ACTIONS(2181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsection] = ACTIONS(2181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHaddsec] = ACTIONS(2181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2179), - [anon_sym_BSLASHparagraph] = ACTIONS(2181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2179), - [anon_sym_BSLASHitem] = ACTIONS(2181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(703), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(775), - [anon_sym_BSLASHintertext] = ACTIONS(775), - [anon_sym_shortintertext] = ACTIONS(775), + [219] = { + [sym_block_comment] = STATE(793), + [sym_operator] = STATE(793), + [sym__command] = STATE(793), + [sym_generic_command] = STATE(793), + [sym_title_declaration] = STATE(793), + [sym_author_declaration] = STATE(793), + [sym_package_include] = STATE(793), + [sym_class_include] = STATE(793), + [sym_latex_include] = STATE(793), + [sym_biblatex_include] = STATE(793), + [sym_bibtex_include] = STATE(793), + [sym_graphics_include] = STATE(793), + [sym_svg_include] = STATE(793), + [sym_inkscape_include] = STATE(793), + [sym_verbatim_include] = STATE(793), + [sym_import_include] = STATE(793), + [sym_caption] = STATE(793), + [sym_citation] = STATE(793), + [sym_label_definition] = STATE(793), + [sym_label_reference] = STATE(793), + [sym_label_reference_range] = STATE(793), + [sym_label_number] = STATE(793), + [sym_new_command_definition] = STATE(793), + [sym_old_command_definition] = STATE(793), + [sym_let_command_definition] = STATE(793), + [sym_paired_delimiter_definition] = STATE(793), + [sym_environment_definition] = STATE(793), + [sym_glossary_entry_definition] = STATE(793), + [sym_glossary_entry_reference] = STATE(793), + [sym_acronym_definition] = STATE(793), + [sym_acronym_reference] = STATE(793), + [sym_theorem_definition] = STATE(793), + [sym_color_definition] = STATE(793), + [sym_color_set_definition] = STATE(793), + [sym_color_reference] = STATE(793), + [sym_tikz_library_import] = STATE(793), + [aux_sym_text_repeat1] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_command_name] = ACTIONS(2869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_BSLASHpart] = ACTIONS(2875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddpart] = ACTIONS(2875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHchapter] = ACTIONS(2875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddchap] = ACTIONS(2875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsection] = ACTIONS(2875), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddsec] = ACTIONS(2875), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHparagraph] = ACTIONS(2875), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2875), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHitem] = ACTIONS(2875), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(2877), + [sym_placeholder] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym__] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_COLON] = ACTIONS(2883), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(2886), + [anon_sym_BSLASHauthor] = ACTIONS(2889), + [anon_sym_BSLASHusepackage] = ACTIONS(2892), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2892), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2895), + [anon_sym_BSLASHinclude] = ACTIONS(2898), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2898), + [anon_sym_BSLASHinput] = ACTIONS(2898), + [anon_sym_BSLASHsubfile] = ACTIONS(2898), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2901), + [anon_sym_BSLASHbibliography] = ACTIONS(2904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2907), + [anon_sym_BSLASHincludesvg] = ACTIONS(2910), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2916), + [anon_sym_BSLASHimport] = ACTIONS(2919), + [anon_sym_BSLASHsubimport] = ACTIONS(2919), + [anon_sym_BSLASHinputfrom] = ACTIONS(2919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2919), + [anon_sym_BSLASHincludefrom] = ACTIONS(2919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2919), + [anon_sym_BSLASHcaption] = ACTIONS(2922), + [anon_sym_BSLASHcite] = ACTIONS(2925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2928), + [anon_sym_BSLASHCite] = ACTIONS(2925), + [anon_sym_BSLASHnocite] = ACTIONS(2925), + [anon_sym_BSLASHcitet] = ACTIONS(2925), + [anon_sym_BSLASHcitep] = ACTIONS(2925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2928), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2928), + [anon_sym_BSLASHciteauthor] = ACTIONS(2925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2928), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2928), + [anon_sym_BSLASHcitetitle] = ACTIONS(2925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2928), + [anon_sym_BSLASHciteyear] = ACTIONS(2925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2928), + [anon_sym_BSLASHcitedate] = ACTIONS(2925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2928), + [anon_sym_BSLASHciteurl] = ACTIONS(2925), + [anon_sym_BSLASHfullcite] = ACTIONS(2925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2925), + [anon_sym_BSLASHcitealt] = ACTIONS(2925), + [anon_sym_BSLASHcitealp] = ACTIONS(2925), + [anon_sym_BSLASHcitetext] = ACTIONS(2925), + [anon_sym_BSLASHparencite] = ACTIONS(2925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2928), + [anon_sym_BSLASHParencite] = ACTIONS(2925), + [anon_sym_BSLASHfootcite] = ACTIONS(2925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2925), + [anon_sym_BSLASHtextcite] = ACTIONS(2925), + [anon_sym_BSLASHTextcite] = ACTIONS(2925), + [anon_sym_BSLASHsmartcite] = ACTIONS(2925), + [anon_sym_BSLASHSmartcite] = ACTIONS(2925), + [anon_sym_BSLASHsupercite] = ACTIONS(2925), + [anon_sym_BSLASHautocite] = ACTIONS(2925), + [anon_sym_BSLASHAutocite] = ACTIONS(2925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2928), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2928), + [anon_sym_BSLASHvolcite] = ACTIONS(2925), + [anon_sym_BSLASHVolcite] = ACTIONS(2925), + [anon_sym_BSLASHpvolcite] = ACTIONS(2925), + [anon_sym_BSLASHPvolcite] = ACTIONS(2925), + [anon_sym_BSLASHfvolcite] = ACTIONS(2925), + [anon_sym_BSLASHftvolcite] = ACTIONS(2925), + [anon_sym_BSLASHsvolcite] = ACTIONS(2925), + [anon_sym_BSLASHSvolcite] = ACTIONS(2925), + [anon_sym_BSLASHtvolcite] = ACTIONS(2925), + [anon_sym_BSLASHTvolcite] = ACTIONS(2925), + [anon_sym_BSLASHavolcite] = ACTIONS(2925), + [anon_sym_BSLASHAvolcite] = ACTIONS(2925), + [anon_sym_BSLASHnotecite] = ACTIONS(2925), + [anon_sym_BSLASHNotecite] = ACTIONS(2925), + [anon_sym_BSLASHpnotecite] = ACTIONS(2925), + [anon_sym_BSLASHPnotecite] = ACTIONS(2925), + [anon_sym_BSLASHfnotecite] = ACTIONS(2925), + [anon_sym_BSLASHlabel] = ACTIONS(2931), + [anon_sym_BSLASHref] = ACTIONS(2934), + [anon_sym_BSLASHeqref] = ACTIONS(2934), + [anon_sym_BSLASHvref] = ACTIONS(2934), + [anon_sym_BSLASHVref] = ACTIONS(2934), + [anon_sym_BSLASHautoref] = ACTIONS(2934), + [anon_sym_BSLASHpageref] = ACTIONS(2934), + [anon_sym_BSLASHcref] = ACTIONS(2934), + [anon_sym_BSLASHCref] = ACTIONS(2934), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2937), + [anon_sym_BSLASHnamecref] = ACTIONS(2934), + [anon_sym_BSLASHnameCref] = ACTIONS(2934), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2934), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2934), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2934), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2934), + [anon_sym_BSLASHlabelcref] = ACTIONS(2934), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2934), + [anon_sym_BSLASHcrefrange] = ACTIONS(2940), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2943), + [anon_sym_BSLASHCrefrange] = ACTIONS(2940), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2943), + [anon_sym_BSLASHnewlabel] = ACTIONS(2946), + [anon_sym_BSLASHnewcommand] = ACTIONS(2949), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2952), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2949), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2952), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2949), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2952), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2949), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2952), + [anon_sym_BSLASHdef] = ACTIONS(2955), + [anon_sym_BSLASHlet] = ACTIONS(2958), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2964), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2967), + [anon_sym_BSLASHgls] = ACTIONS(2970), + [anon_sym_BSLASHGls] = ACTIONS(2970), + [anon_sym_BSLASHGLS] = ACTIONS(2970), + [anon_sym_BSLASHglspl] = ACTIONS(2970), + [anon_sym_BSLASHGlspl] = ACTIONS(2970), + [anon_sym_BSLASHGLSpl] = ACTIONS(2970), + [anon_sym_BSLASHglsdisp] = ACTIONS(2970), + [anon_sym_BSLASHglslink] = ACTIONS(2970), + [anon_sym_BSLASHglstext] = ACTIONS(2970), + [anon_sym_BSLASHGlstext] = ACTIONS(2970), + [anon_sym_BSLASHGLStext] = ACTIONS(2970), + [anon_sym_BSLASHglsfirst] = ACTIONS(2970), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2970), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2970), + [anon_sym_BSLASHglsplural] = ACTIONS(2970), + [anon_sym_BSLASHGlsplural] = ACTIONS(2970), + [anon_sym_BSLASHGLSplural] = ACTIONS(2970), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2970), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2970), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2970), + [anon_sym_BSLASHglsname] = ACTIONS(2970), + [anon_sym_BSLASHGlsname] = ACTIONS(2970), + [anon_sym_BSLASHGLSname] = ACTIONS(2970), + [anon_sym_BSLASHglssymbol] = ACTIONS(2970), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2970), + [anon_sym_BSLASHglsdesc] = ACTIONS(2970), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2970), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2970), + [anon_sym_BSLASHglsuseri] = ACTIONS(2970), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2970), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2970), + [anon_sym_BSLASHglsuserii] = ACTIONS(2970), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2970), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2970), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2970), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2970), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2970), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2970), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2970), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2970), + [anon_sym_BSLASHglsuserv] = ACTIONS(2970), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2970), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2970), + [anon_sym_BSLASHglsuservi] = ACTIONS(2970), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2970), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2970), + [anon_sym_BSLASHnewacronym] = ACTIONS(2973), + [anon_sym_BSLASHacrshort] = ACTIONS(2976), + [anon_sym_BSLASHAcrshort] = ACTIONS(2976), + [anon_sym_BSLASHACRshort] = ACTIONS(2976), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2976), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2976), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2976), + [anon_sym_BSLASHacrlong] = ACTIONS(2976), + [anon_sym_BSLASHAcrlong] = ACTIONS(2976), + [anon_sym_BSLASHACRlong] = ACTIONS(2976), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2976), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2976), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2976), + [anon_sym_BSLASHacrfull] = ACTIONS(2976), + [anon_sym_BSLASHAcrfull] = ACTIONS(2976), + [anon_sym_BSLASHACRfull] = ACTIONS(2976), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2976), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2976), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2976), + [anon_sym_BSLASHacs] = ACTIONS(2976), + [anon_sym_BSLASHAcs] = ACTIONS(2976), + [anon_sym_BSLASHacsp] = ACTIONS(2976), + [anon_sym_BSLASHAcsp] = ACTIONS(2976), + [anon_sym_BSLASHacl] = ACTIONS(2976), + [anon_sym_BSLASHAcl] = ACTIONS(2976), + [anon_sym_BSLASHaclp] = ACTIONS(2976), + [anon_sym_BSLASHAclp] = ACTIONS(2976), + [anon_sym_BSLASHacf] = ACTIONS(2976), + [anon_sym_BSLASHAcf] = ACTIONS(2976), + [anon_sym_BSLASHacfp] = ACTIONS(2976), + [anon_sym_BSLASHAcfp] = ACTIONS(2976), + [anon_sym_BSLASHac] = ACTIONS(2976), + [anon_sym_BSLASHAc] = ACTIONS(2976), + [anon_sym_BSLASHacp] = ACTIONS(2976), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2976), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2976), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2976), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2976), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2976), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2976), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2976), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2976), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2976), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2976), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2985), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2988), + [anon_sym_BSLASHcolor] = ACTIONS(2991), + [anon_sym_BSLASHcolorbox] = ACTIONS(2991), + [anon_sym_BSLASHtextcolor] = ACTIONS(2991), + [anon_sym_BSLASHpagecolor] = ACTIONS(2991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2994), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2994), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), }, - [207] = { - [sym_block_comment] = STATE(776), - [sym_operator] = STATE(776), - [sym__command] = STATE(776), - [sym_generic_command] = STATE(776), - [sym_package_include] = STATE(776), - [sym_class_include] = STATE(776), - [sym_latex_include] = STATE(776), - [sym_biblatex_include] = STATE(776), - [sym_bibtex_include] = STATE(776), - [sym_graphics_include] = STATE(776), - [sym_svg_include] = STATE(776), - [sym_inkscape_include] = STATE(776), - [sym_verbatim_include] = STATE(776), - [sym_import_include] = STATE(776), - [sym_caption] = STATE(776), - [sym_citation] = STATE(776), - [sym_label_definition] = STATE(776), - [sym_label_reference] = STATE(776), - [sym_label_reference_range] = STATE(776), - [sym_label_number] = STATE(776), - [sym_new_command_definition] = STATE(776), - [sym_old_command_definition] = STATE(776), - [sym_let_command_definition] = STATE(776), - [sym_paired_delimiter_definition] = STATE(776), - [sym_environment_definition] = STATE(776), - [sym_glossary_entry_definition] = STATE(776), - [sym_glossary_entry_reference] = STATE(776), - [sym_acronym_definition] = STATE(776), - [sym_acronym_reference] = STATE(776), - [sym_theorem_definition] = STATE(776), - [sym_color_definition] = STATE(776), - [sym_color_set_definition] = STATE(776), - [sym_color_reference] = STATE(776), - [sym_tikz_library_import] = STATE(776), - [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2755), + [220] = { + [sym_block_comment] = STATE(793), + [sym_operator] = STATE(793), + [sym__command] = STATE(793), + [sym_generic_command] = STATE(793), + [sym_title_declaration] = STATE(793), + [sym_author_declaration] = STATE(793), + [sym_package_include] = STATE(793), + [sym_class_include] = STATE(793), + [sym_latex_include] = STATE(793), + [sym_biblatex_include] = STATE(793), + [sym_bibtex_include] = STATE(793), + [sym_graphics_include] = STATE(793), + [sym_svg_include] = STATE(793), + [sym_inkscape_include] = STATE(793), + [sym_verbatim_include] = STATE(793), + [sym_import_include] = STATE(793), + [sym_caption] = STATE(793), + [sym_citation] = STATE(793), + [sym_label_definition] = STATE(793), + [sym_label_reference] = STATE(793), + [sym_label_reference_range] = STATE(793), + [sym_label_number] = STATE(793), + [sym_new_command_definition] = STATE(793), + [sym_old_command_definition] = STATE(793), + [sym_let_command_definition] = STATE(793), + [sym_paired_delimiter_definition] = STATE(793), + [sym_environment_definition] = STATE(793), + [sym_glossary_entry_definition] = STATE(793), + [sym_glossary_entry_reference] = STATE(793), + [sym_acronym_definition] = STATE(793), + [sym_acronym_reference] = STATE(793), + [sym_theorem_definition] = STATE(793), + [sym_color_definition] = STATE(793), + [sym_color_set_definition] = STATE(793), + [sym_color_reference] = STATE(793), + [sym_tikz_library_import] = STATE(793), + [aux_sym_text_repeat1] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(2997), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_BSLASHpart] = ACTIONS(2757), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddpart] = ACTIONS(2757), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHchapter] = ACTIONS(2757), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddchap] = ACTIONS(2757), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsection] = ACTIONS(2757), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddsec] = ACTIONS(2757), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHparagraph] = ACTIONS(2757), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2757), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHitem] = ACTIONS(2757), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_BSLASHpart] = ACTIONS(2999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddpart] = ACTIONS(2999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHchapter] = ACTIONS(2999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddchap] = ACTIONS(2999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsection] = ACTIONS(2999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddsec] = ACTIONS(2999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHparagraph] = ACTIONS(2999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHitem] = ACTIONS(2999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -90927,6778 +97212,4666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(51), [anon_sym_COLON] = ACTIONS(51), [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), - [anon_sym_BSLASHbibliography] = ACTIONS(71), - [anon_sym_BSLASHincludegraphics] = ACTIONS(73), - [anon_sym_BSLASHincludesvg] = ACTIONS(75), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(77), - [anon_sym_BSLASHverbatiminput] = ACTIONS(79), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(79), - [anon_sym_BSLASHimport] = ACTIONS(81), - [anon_sym_BSLASHsubimport] = ACTIONS(81), - [anon_sym_BSLASHinputfrom] = ACTIONS(81), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(81), - [anon_sym_BSLASHincludefrom] = ACTIONS(81), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(81), - [anon_sym_BSLASHcaption] = ACTIONS(83), - [anon_sym_BSLASHcite] = ACTIONS(85), - [anon_sym_BSLASHcite_STAR] = ACTIONS(87), - [anon_sym_BSLASHCite] = ACTIONS(85), - [anon_sym_BSLASHnocite] = ACTIONS(85), - [anon_sym_BSLASHcitet] = ACTIONS(85), - [anon_sym_BSLASHcitep] = ACTIONS(85), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteauthor] = ACTIONS(85), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHCiteauthor] = ACTIONS(85), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitetitle] = ACTIONS(85), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteyear] = ACTIONS(85), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(87), - [anon_sym_BSLASHcitedate] = ACTIONS(85), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(87), - [anon_sym_BSLASHciteurl] = ACTIONS(85), - [anon_sym_BSLASHfullcite] = ACTIONS(85), - [anon_sym_BSLASHciteyearpar] = ACTIONS(85), - [anon_sym_BSLASHcitealt] = ACTIONS(85), - [anon_sym_BSLASHcitealp] = ACTIONS(85), - [anon_sym_BSLASHcitetext] = ACTIONS(85), - [anon_sym_BSLASHparencite] = ACTIONS(85), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(87), - [anon_sym_BSLASHParencite] = ACTIONS(85), - [anon_sym_BSLASHfootcite] = ACTIONS(85), - [anon_sym_BSLASHfootfullcite] = ACTIONS(85), - [anon_sym_BSLASHfootcitetext] = ACTIONS(85), - [anon_sym_BSLASHtextcite] = ACTIONS(85), - [anon_sym_BSLASHTextcite] = ACTIONS(85), - [anon_sym_BSLASHsmartcite] = ACTIONS(85), - [anon_sym_BSLASHSmartcite] = ACTIONS(85), - [anon_sym_BSLASHsupercite] = ACTIONS(85), - [anon_sym_BSLASHautocite] = ACTIONS(85), - [anon_sym_BSLASHAutocite] = ACTIONS(85), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(87), - [anon_sym_BSLASHvolcite] = ACTIONS(85), - [anon_sym_BSLASHVolcite] = ACTIONS(85), - [anon_sym_BSLASHpvolcite] = ACTIONS(85), - [anon_sym_BSLASHPvolcite] = ACTIONS(85), - [anon_sym_BSLASHfvolcite] = ACTIONS(85), - [anon_sym_BSLASHftvolcite] = ACTIONS(85), - [anon_sym_BSLASHsvolcite] = ACTIONS(85), - [anon_sym_BSLASHSvolcite] = ACTIONS(85), - [anon_sym_BSLASHtvolcite] = ACTIONS(85), - [anon_sym_BSLASHTvolcite] = ACTIONS(85), - [anon_sym_BSLASHavolcite] = ACTIONS(85), - [anon_sym_BSLASHAvolcite] = ACTIONS(85), - [anon_sym_BSLASHnotecite] = ACTIONS(85), - [anon_sym_BSLASHNotecite] = ACTIONS(85), - [anon_sym_BSLASHpnotecite] = ACTIONS(85), - [anon_sym_BSLASHPnotecite] = ACTIONS(85), - [anon_sym_BSLASHfnotecite] = ACTIONS(85), - [anon_sym_BSLASHlabel] = ACTIONS(89), - [anon_sym_BSLASHref] = ACTIONS(91), - [anon_sym_BSLASHeqref] = ACTIONS(91), - [anon_sym_BSLASHvref] = ACTIONS(91), - [anon_sym_BSLASHVref] = ACTIONS(91), - [anon_sym_BSLASHautoref] = ACTIONS(91), - [anon_sym_BSLASHpageref] = ACTIONS(91), - [anon_sym_BSLASHcref] = ACTIONS(91), - [anon_sym_BSLASHCref] = ACTIONS(91), - [anon_sym_BSLASHcref_STAR] = ACTIONS(93), - [anon_sym_BSLASHCref_STAR] = ACTIONS(93), - [anon_sym_BSLASHnamecref] = ACTIONS(91), - [anon_sym_BSLASHnameCref] = ACTIONS(91), - [anon_sym_BSLASHlcnamecref] = ACTIONS(91), - [anon_sym_BSLASHnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHnameCrefs] = ACTIONS(91), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(91), - [anon_sym_BSLASHlabelcref] = ACTIONS(91), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(91), - [anon_sym_BSLASHcrefrange] = ACTIONS(95), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHCrefrange] = ACTIONS(95), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(97), - [anon_sym_BSLASHnewlabel] = ACTIONS(99), - [anon_sym_BSLASHnewcommand] = ACTIONS(101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(103), - [anon_sym_BSLASHdef] = ACTIONS(105), - [anon_sym_BSLASHlet] = ACTIONS(107), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(113), - [anon_sym_BSLASHgls] = ACTIONS(115), - [anon_sym_BSLASHGls] = ACTIONS(115), - [anon_sym_BSLASHGLS] = ACTIONS(115), - [anon_sym_BSLASHglspl] = ACTIONS(115), - [anon_sym_BSLASHGlspl] = ACTIONS(115), - [anon_sym_BSLASHGLSpl] = ACTIONS(115), - [anon_sym_BSLASHglsdisp] = ACTIONS(115), - [anon_sym_BSLASHglslink] = ACTIONS(115), - [anon_sym_BSLASHglstext] = ACTIONS(115), - [anon_sym_BSLASHGlstext] = ACTIONS(115), - [anon_sym_BSLASHGLStext] = ACTIONS(115), - [anon_sym_BSLASHglsfirst] = ACTIONS(115), - [anon_sym_BSLASHGlsfirst] = ACTIONS(115), - [anon_sym_BSLASHGLSfirst] = ACTIONS(115), - [anon_sym_BSLASHglsplural] = ACTIONS(115), - [anon_sym_BSLASHGlsplural] = ACTIONS(115), - [anon_sym_BSLASHGLSplural] = ACTIONS(115), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(115), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(115), - [anon_sym_BSLASHglsname] = ACTIONS(115), - [anon_sym_BSLASHGlsname] = ACTIONS(115), - [anon_sym_BSLASHGLSname] = ACTIONS(115), - [anon_sym_BSLASHglssymbol] = ACTIONS(115), - [anon_sym_BSLASHGlssymbol] = ACTIONS(115), - [anon_sym_BSLASHglsdesc] = ACTIONS(115), - [anon_sym_BSLASHGlsdesc] = ACTIONS(115), - [anon_sym_BSLASHGLSdesc] = ACTIONS(115), - [anon_sym_BSLASHglsuseri] = ACTIONS(115), - [anon_sym_BSLASHGlsuseri] = ACTIONS(115), - [anon_sym_BSLASHGLSuseri] = ACTIONS(115), - [anon_sym_BSLASHglsuserii] = ACTIONS(115), - [anon_sym_BSLASHGlsuserii] = ACTIONS(115), - [anon_sym_BSLASHGLSuserii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(115), - [anon_sym_BSLASHglsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(115), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(115), - [anon_sym_BSLASHglsuserv] = ACTIONS(115), - [anon_sym_BSLASHGlsuserv] = ACTIONS(115), - [anon_sym_BSLASHGLSuserv] = ACTIONS(115), - [anon_sym_BSLASHglsuservi] = ACTIONS(115), - [anon_sym_BSLASHGlsuservi] = ACTIONS(115), - [anon_sym_BSLASHGLSuservi] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(117), - [anon_sym_BSLASHacrshort] = ACTIONS(119), - [anon_sym_BSLASHAcrshort] = ACTIONS(119), - [anon_sym_BSLASHACRshort] = ACTIONS(119), - [anon_sym_BSLASHacrshortpl] = ACTIONS(119), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(119), - [anon_sym_BSLASHACRshortpl] = ACTIONS(119), - [anon_sym_BSLASHacrlong] = ACTIONS(119), - [anon_sym_BSLASHAcrlong] = ACTIONS(119), - [anon_sym_BSLASHACRlong] = ACTIONS(119), - [anon_sym_BSLASHacrlongpl] = ACTIONS(119), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(119), - [anon_sym_BSLASHACRlongpl] = ACTIONS(119), - [anon_sym_BSLASHacrfull] = ACTIONS(119), - [anon_sym_BSLASHAcrfull] = ACTIONS(119), - [anon_sym_BSLASHACRfull] = ACTIONS(119), - [anon_sym_BSLASHacrfullpl] = ACTIONS(119), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(119), - [anon_sym_BSLASHACRfullpl] = ACTIONS(119), - [anon_sym_BSLASHacs] = ACTIONS(119), - [anon_sym_BSLASHAcs] = ACTIONS(119), - [anon_sym_BSLASHacsp] = ACTIONS(119), - [anon_sym_BSLASHAcsp] = ACTIONS(119), - [anon_sym_BSLASHacl] = ACTIONS(119), - [anon_sym_BSLASHAcl] = ACTIONS(119), - [anon_sym_BSLASHaclp] = ACTIONS(119), - [anon_sym_BSLASHAclp] = ACTIONS(119), - [anon_sym_BSLASHacf] = ACTIONS(119), - [anon_sym_BSLASHAcf] = ACTIONS(119), - [anon_sym_BSLASHacfp] = ACTIONS(119), - [anon_sym_BSLASHAcfp] = ACTIONS(119), - [anon_sym_BSLASHac] = ACTIONS(119), - [anon_sym_BSLASHAc] = ACTIONS(119), - [anon_sym_BSLASHacp] = ACTIONS(119), - [anon_sym_BSLASHglsentrylong] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(119), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryshort] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(119), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(119), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(119), - [anon_sym_BSLASHnewtheorem] = ACTIONS(121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), - [anon_sym_BSLASHcolor] = ACTIONS(129), - [anon_sym_BSLASHcolorbox] = ACTIONS(129), - [anon_sym_BSLASHtextcolor] = ACTIONS(129), - [anon_sym_BSLASHpagecolor] = ACTIONS(129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(63), + [anon_sym_BSLASHauthor] = ACTIONS(65), + [anon_sym_BSLASHusepackage] = ACTIONS(67), + [anon_sym_BSLASHRequirePackage] = ACTIONS(67), + [anon_sym_BSLASHdocumentclass] = ACTIONS(69), + [anon_sym_BSLASHinclude] = ACTIONS(71), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(71), + [anon_sym_BSLASHinput] = ACTIONS(71), + [anon_sym_BSLASHsubfile] = ACTIONS(71), + [anon_sym_BSLASHaddbibresource] = ACTIONS(73), + [anon_sym_BSLASHbibliography] = ACTIONS(75), + [anon_sym_BSLASHincludegraphics] = ACTIONS(77), + [anon_sym_BSLASHincludesvg] = ACTIONS(79), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(81), + [anon_sym_BSLASHverbatiminput] = ACTIONS(83), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(83), + [anon_sym_BSLASHimport] = ACTIONS(85), + [anon_sym_BSLASHsubimport] = ACTIONS(85), + [anon_sym_BSLASHinputfrom] = ACTIONS(85), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(85), + [anon_sym_BSLASHincludefrom] = ACTIONS(85), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(85), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [anon_sym_BSLASHcite] = ACTIONS(89), + [anon_sym_BSLASHcite_STAR] = ACTIONS(91), + [anon_sym_BSLASHCite] = ACTIONS(89), + [anon_sym_BSLASHnocite] = ACTIONS(89), + [anon_sym_BSLASHcitet] = ACTIONS(89), + [anon_sym_BSLASHcitep] = ACTIONS(89), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteauthor] = ACTIONS(89), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHCiteauthor] = ACTIONS(89), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitetitle] = ACTIONS(89), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteyear] = ACTIONS(89), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(91), + [anon_sym_BSLASHcitedate] = ACTIONS(89), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(91), + [anon_sym_BSLASHciteurl] = ACTIONS(89), + [anon_sym_BSLASHfullcite] = ACTIONS(89), + [anon_sym_BSLASHciteyearpar] = ACTIONS(89), + [anon_sym_BSLASHcitealt] = ACTIONS(89), + [anon_sym_BSLASHcitealp] = ACTIONS(89), + [anon_sym_BSLASHcitetext] = ACTIONS(89), + [anon_sym_BSLASHparencite] = ACTIONS(89), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(91), + [anon_sym_BSLASHParencite] = ACTIONS(89), + [anon_sym_BSLASHfootcite] = ACTIONS(89), + [anon_sym_BSLASHfootfullcite] = ACTIONS(89), + [anon_sym_BSLASHfootcitetext] = ACTIONS(89), + [anon_sym_BSLASHtextcite] = ACTIONS(89), + [anon_sym_BSLASHTextcite] = ACTIONS(89), + [anon_sym_BSLASHsmartcite] = ACTIONS(89), + [anon_sym_BSLASHSmartcite] = ACTIONS(89), + [anon_sym_BSLASHsupercite] = ACTIONS(89), + [anon_sym_BSLASHautocite] = ACTIONS(89), + [anon_sym_BSLASHAutocite] = ACTIONS(89), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(91), + [anon_sym_BSLASHvolcite] = ACTIONS(89), + [anon_sym_BSLASHVolcite] = ACTIONS(89), + [anon_sym_BSLASHpvolcite] = ACTIONS(89), + [anon_sym_BSLASHPvolcite] = ACTIONS(89), + [anon_sym_BSLASHfvolcite] = ACTIONS(89), + [anon_sym_BSLASHftvolcite] = ACTIONS(89), + [anon_sym_BSLASHsvolcite] = ACTIONS(89), + [anon_sym_BSLASHSvolcite] = ACTIONS(89), + [anon_sym_BSLASHtvolcite] = ACTIONS(89), + [anon_sym_BSLASHTvolcite] = ACTIONS(89), + [anon_sym_BSLASHavolcite] = ACTIONS(89), + [anon_sym_BSLASHAvolcite] = ACTIONS(89), + [anon_sym_BSLASHnotecite] = ACTIONS(89), + [anon_sym_BSLASHNotecite] = ACTIONS(89), + [anon_sym_BSLASHpnotecite] = ACTIONS(89), + [anon_sym_BSLASHPnotecite] = ACTIONS(89), + [anon_sym_BSLASHfnotecite] = ACTIONS(89), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [anon_sym_BSLASHref] = ACTIONS(95), + [anon_sym_BSLASHeqref] = ACTIONS(95), + [anon_sym_BSLASHvref] = ACTIONS(95), + [anon_sym_BSLASHVref] = ACTIONS(95), + [anon_sym_BSLASHautoref] = ACTIONS(95), + [anon_sym_BSLASHpageref] = ACTIONS(95), + [anon_sym_BSLASHcref] = ACTIONS(95), + [anon_sym_BSLASHCref] = ACTIONS(95), + [anon_sym_BSLASHcref_STAR] = ACTIONS(97), + [anon_sym_BSLASHCref_STAR] = ACTIONS(97), + [anon_sym_BSLASHnamecref] = ACTIONS(95), + [anon_sym_BSLASHnameCref] = ACTIONS(95), + [anon_sym_BSLASHlcnamecref] = ACTIONS(95), + [anon_sym_BSLASHnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHnameCrefs] = ACTIONS(95), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(95), + [anon_sym_BSLASHlabelcref] = ACTIONS(95), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(95), + [anon_sym_BSLASHcrefrange] = ACTIONS(99), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHCrefrange] = ACTIONS(99), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(101), + [anon_sym_BSLASHnewlabel] = ACTIONS(103), + [anon_sym_BSLASHnewcommand] = ACTIONS(105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(107), + [anon_sym_BSLASHdef] = ACTIONS(109), + [anon_sym_BSLASHlet] = ACTIONS(111), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(119), + [anon_sym_BSLASHGls] = ACTIONS(119), + [anon_sym_BSLASHGLS] = ACTIONS(119), + [anon_sym_BSLASHglspl] = ACTIONS(119), + [anon_sym_BSLASHGlspl] = ACTIONS(119), + [anon_sym_BSLASHGLSpl] = ACTIONS(119), + [anon_sym_BSLASHglsdisp] = ACTIONS(119), + [anon_sym_BSLASHglslink] = ACTIONS(119), + [anon_sym_BSLASHglstext] = ACTIONS(119), + [anon_sym_BSLASHGlstext] = ACTIONS(119), + [anon_sym_BSLASHGLStext] = ACTIONS(119), + [anon_sym_BSLASHglsfirst] = ACTIONS(119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(119), + [anon_sym_BSLASHglsplural] = ACTIONS(119), + [anon_sym_BSLASHGlsplural] = ACTIONS(119), + [anon_sym_BSLASHGLSplural] = ACTIONS(119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(119), + [anon_sym_BSLASHglsname] = ACTIONS(119), + [anon_sym_BSLASHGlsname] = ACTIONS(119), + [anon_sym_BSLASHGLSname] = ACTIONS(119), + [anon_sym_BSLASHglssymbol] = ACTIONS(119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(119), + [anon_sym_BSLASHglsdesc] = ACTIONS(119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(119), + [anon_sym_BSLASHglsuseri] = ACTIONS(119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(119), + [anon_sym_BSLASHglsuserii] = ACTIONS(119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(119), + [anon_sym_BSLASHglsuserv] = ACTIONS(119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(119), + [anon_sym_BSLASHglsuservi] = ACTIONS(119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(119), + [anon_sym_BSLASHnewacronym] = ACTIONS(121), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(125), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(125), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(129), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(135), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), }, - [208] = { - [sym_block_comment] = STATE(776), - [sym_operator] = STATE(776), - [sym__command] = STATE(776), - [sym_generic_command] = STATE(776), - [sym_package_include] = STATE(776), - [sym_class_include] = STATE(776), - [sym_latex_include] = STATE(776), - [sym_biblatex_include] = STATE(776), - [sym_bibtex_include] = STATE(776), - [sym_graphics_include] = STATE(776), - [sym_svg_include] = STATE(776), - [sym_inkscape_include] = STATE(776), - [sym_verbatim_include] = STATE(776), - [sym_import_include] = STATE(776), - [sym_caption] = STATE(776), - [sym_citation] = STATE(776), - [sym_label_definition] = STATE(776), - [sym_label_reference] = STATE(776), - [sym_label_reference_range] = STATE(776), - [sym_label_number] = STATE(776), - [sym_new_command_definition] = STATE(776), - [sym_old_command_definition] = STATE(776), - [sym_let_command_definition] = STATE(776), - [sym_paired_delimiter_definition] = STATE(776), - [sym_environment_definition] = STATE(776), - [sym_glossary_entry_definition] = STATE(776), - [sym_glossary_entry_reference] = STATE(776), - [sym_acronym_definition] = STATE(776), - [sym_acronym_reference] = STATE(776), - [sym_theorem_definition] = STATE(776), - [sym_color_definition] = STATE(776), - [sym_color_set_definition] = STATE(776), - [sym_color_reference] = STATE(776), - [sym_tikz_library_import] = STATE(776), - [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_command_name] = ACTIONS(2761), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_BSLASHpart] = ACTIONS(2767), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddpart] = ACTIONS(2767), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHchapter] = ACTIONS(2767), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddchap] = ACTIONS(2767), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsection] = ACTIONS(2767), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddsec] = ACTIONS(2767), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHparagraph] = ACTIONS(2767), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2767), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHitem] = ACTIONS(2767), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(2769), - [sym_placeholder] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_SLASH] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2775), - [anon_sym__] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2775), - [anon_sym_GT] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(2778), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2778), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2781), - [anon_sym_BSLASHinclude] = ACTIONS(2784), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2784), - [anon_sym_BSLASHinput] = ACTIONS(2784), - [anon_sym_BSLASHsubfile] = ACTIONS(2784), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2787), - [anon_sym_BSLASHbibliography] = ACTIONS(2790), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2793), - [anon_sym_BSLASHincludesvg] = ACTIONS(2796), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2799), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2802), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2802), - [anon_sym_BSLASHimport] = ACTIONS(2805), - [anon_sym_BSLASHsubimport] = ACTIONS(2805), - [anon_sym_BSLASHinputfrom] = ACTIONS(2805), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2805), - [anon_sym_BSLASHincludefrom] = ACTIONS(2805), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2805), - [anon_sym_BSLASHcaption] = ACTIONS(2808), - [anon_sym_BSLASHcite] = ACTIONS(2811), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2814), - [anon_sym_BSLASHCite] = ACTIONS(2811), - [anon_sym_BSLASHnocite] = ACTIONS(2811), - [anon_sym_BSLASHcitet] = ACTIONS(2811), - [anon_sym_BSLASHcitep] = ACTIONS(2811), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2814), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2814), - [anon_sym_BSLASHciteauthor] = ACTIONS(2811), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2814), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2811), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2814), - [anon_sym_BSLASHcitetitle] = ACTIONS(2811), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2814), - [anon_sym_BSLASHciteyear] = ACTIONS(2811), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2814), - [anon_sym_BSLASHcitedate] = ACTIONS(2811), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2814), - [anon_sym_BSLASHciteurl] = ACTIONS(2811), - [anon_sym_BSLASHfullcite] = ACTIONS(2811), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2811), - [anon_sym_BSLASHcitealt] = ACTIONS(2811), - [anon_sym_BSLASHcitealp] = ACTIONS(2811), - [anon_sym_BSLASHcitetext] = ACTIONS(2811), - [anon_sym_BSLASHparencite] = ACTIONS(2811), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2814), - [anon_sym_BSLASHParencite] = ACTIONS(2811), - [anon_sym_BSLASHfootcite] = ACTIONS(2811), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2811), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2811), - [anon_sym_BSLASHtextcite] = ACTIONS(2811), - [anon_sym_BSLASHTextcite] = ACTIONS(2811), - [anon_sym_BSLASHsmartcite] = ACTIONS(2811), - [anon_sym_BSLASHSmartcite] = ACTIONS(2811), - [anon_sym_BSLASHsupercite] = ACTIONS(2811), - [anon_sym_BSLASHautocite] = ACTIONS(2811), - [anon_sym_BSLASHAutocite] = ACTIONS(2811), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2814), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2814), - [anon_sym_BSLASHvolcite] = ACTIONS(2811), - [anon_sym_BSLASHVolcite] = ACTIONS(2811), - [anon_sym_BSLASHpvolcite] = ACTIONS(2811), - [anon_sym_BSLASHPvolcite] = ACTIONS(2811), - [anon_sym_BSLASHfvolcite] = ACTIONS(2811), - [anon_sym_BSLASHftvolcite] = ACTIONS(2811), - [anon_sym_BSLASHsvolcite] = ACTIONS(2811), - [anon_sym_BSLASHSvolcite] = ACTIONS(2811), - [anon_sym_BSLASHtvolcite] = ACTIONS(2811), - [anon_sym_BSLASHTvolcite] = ACTIONS(2811), - [anon_sym_BSLASHavolcite] = ACTIONS(2811), - [anon_sym_BSLASHAvolcite] = ACTIONS(2811), - [anon_sym_BSLASHnotecite] = ACTIONS(2811), - [anon_sym_BSLASHNotecite] = ACTIONS(2811), - [anon_sym_BSLASHpnotecite] = ACTIONS(2811), - [anon_sym_BSLASHPnotecite] = ACTIONS(2811), - [anon_sym_BSLASHfnotecite] = ACTIONS(2811), - [anon_sym_BSLASHlabel] = ACTIONS(2817), - [anon_sym_BSLASHref] = ACTIONS(2820), - [anon_sym_BSLASHeqref] = ACTIONS(2820), - [anon_sym_BSLASHvref] = ACTIONS(2820), - [anon_sym_BSLASHVref] = ACTIONS(2820), - [anon_sym_BSLASHautoref] = ACTIONS(2820), - [anon_sym_BSLASHpageref] = ACTIONS(2820), - [anon_sym_BSLASHcref] = ACTIONS(2820), - [anon_sym_BSLASHCref] = ACTIONS(2820), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2823), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2823), - [anon_sym_BSLASHnamecref] = ACTIONS(2820), - [anon_sym_BSLASHnameCref] = ACTIONS(2820), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2820), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2820), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2820), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2820), - [anon_sym_BSLASHlabelcref] = ACTIONS(2820), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2820), - [anon_sym_BSLASHcrefrange] = ACTIONS(2826), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2829), - [anon_sym_BSLASHCrefrange] = ACTIONS(2826), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2829), - [anon_sym_BSLASHnewlabel] = ACTIONS(2832), - [anon_sym_BSLASHnewcommand] = ACTIONS(2835), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2835), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2835), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2835), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2838), - [anon_sym_BSLASHdef] = ACTIONS(2841), - [anon_sym_BSLASHlet] = ACTIONS(2844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2847), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2847), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2850), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2853), - [anon_sym_BSLASHgls] = ACTIONS(2856), - [anon_sym_BSLASHGls] = ACTIONS(2856), - [anon_sym_BSLASHGLS] = ACTIONS(2856), - [anon_sym_BSLASHglspl] = ACTIONS(2856), - [anon_sym_BSLASHGlspl] = ACTIONS(2856), - [anon_sym_BSLASHGLSpl] = ACTIONS(2856), - [anon_sym_BSLASHglsdisp] = ACTIONS(2856), - [anon_sym_BSLASHglslink] = ACTIONS(2856), - [anon_sym_BSLASHglstext] = ACTIONS(2856), - [anon_sym_BSLASHGlstext] = ACTIONS(2856), - [anon_sym_BSLASHGLStext] = ACTIONS(2856), - [anon_sym_BSLASHglsfirst] = ACTIONS(2856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2856), - [anon_sym_BSLASHglsplural] = ACTIONS(2856), - [anon_sym_BSLASHGlsplural] = ACTIONS(2856), - [anon_sym_BSLASHGLSplural] = ACTIONS(2856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2856), - [anon_sym_BSLASHglsname] = ACTIONS(2856), - [anon_sym_BSLASHGlsname] = ACTIONS(2856), - [anon_sym_BSLASHGLSname] = ACTIONS(2856), - [anon_sym_BSLASHglssymbol] = ACTIONS(2856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2856), - [anon_sym_BSLASHglsdesc] = ACTIONS(2856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2856), - [anon_sym_BSLASHglsuseri] = ACTIONS(2856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2856), - [anon_sym_BSLASHglsuserii] = ACTIONS(2856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2856), - [anon_sym_BSLASHglsuserv] = ACTIONS(2856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2856), - [anon_sym_BSLASHglsuservi] = ACTIONS(2856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2856), - [anon_sym_BSLASHnewacronym] = ACTIONS(2859), - [anon_sym_BSLASHacrshort] = ACTIONS(2862), - [anon_sym_BSLASHAcrshort] = ACTIONS(2862), - [anon_sym_BSLASHACRshort] = ACTIONS(2862), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2862), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2862), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2862), - [anon_sym_BSLASHacrlong] = ACTIONS(2862), - [anon_sym_BSLASHAcrlong] = ACTIONS(2862), - [anon_sym_BSLASHACRlong] = ACTIONS(2862), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2862), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2862), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2862), - [anon_sym_BSLASHacrfull] = ACTIONS(2862), - [anon_sym_BSLASHAcrfull] = ACTIONS(2862), - [anon_sym_BSLASHACRfull] = ACTIONS(2862), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2862), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2862), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2862), - [anon_sym_BSLASHacs] = ACTIONS(2862), - [anon_sym_BSLASHAcs] = ACTIONS(2862), - [anon_sym_BSLASHacsp] = ACTIONS(2862), - [anon_sym_BSLASHAcsp] = ACTIONS(2862), - [anon_sym_BSLASHacl] = ACTIONS(2862), - [anon_sym_BSLASHAcl] = ACTIONS(2862), - [anon_sym_BSLASHaclp] = ACTIONS(2862), - [anon_sym_BSLASHAclp] = ACTIONS(2862), - [anon_sym_BSLASHacf] = ACTIONS(2862), - [anon_sym_BSLASHAcf] = ACTIONS(2862), - [anon_sym_BSLASHacfp] = ACTIONS(2862), - [anon_sym_BSLASHAcfp] = ACTIONS(2862), - [anon_sym_BSLASHac] = ACTIONS(2862), - [anon_sym_BSLASHAc] = ACTIONS(2862), - [anon_sym_BSLASHacp] = ACTIONS(2862), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2862), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2862), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2862), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2862), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2862), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2862), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2862), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2862), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2862), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2862), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2865), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2865), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2871), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2874), - [anon_sym_BSLASHcolor] = ACTIONS(2877), - [anon_sym_BSLASHcolorbox] = ACTIONS(2877), - [anon_sym_BSLASHtextcolor] = ACTIONS(2877), - [anon_sym_BSLASHpagecolor] = ACTIONS(2877), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2880), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2880), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), - }, - [209] = { - [sym_block_comment] = STATE(879), - [sym_operator] = STATE(879), - [sym__command] = STATE(879), - [sym_generic_command] = STATE(879), - [sym_package_include] = STATE(879), - [sym_class_include] = STATE(879), - [sym_latex_include] = STATE(879), - [sym_biblatex_include] = STATE(879), - [sym_bibtex_include] = STATE(879), - [sym_graphics_include] = STATE(879), - [sym_svg_include] = STATE(879), - [sym_inkscape_include] = STATE(879), - [sym_verbatim_include] = STATE(879), - [sym_import_include] = STATE(879), - [sym_caption] = STATE(879), - [sym_citation] = STATE(879), - [sym_label_definition] = STATE(879), - [sym_label_reference] = STATE(879), - [sym_label_reference_range] = STATE(879), - [sym_label_number] = STATE(879), - [sym_new_command_definition] = STATE(879), - [sym_old_command_definition] = STATE(879), - [sym_let_command_definition] = STATE(879), - [sym_paired_delimiter_definition] = STATE(879), - [sym_environment_definition] = STATE(879), - [sym_glossary_entry_definition] = STATE(879), - [sym_glossary_entry_reference] = STATE(879), - [sym_acronym_definition] = STATE(879), - [sym_acronym_reference] = STATE(879), - [sym_theorem_definition] = STATE(879), - [sym_color_definition] = STATE(879), - [sym_color_set_definition] = STATE(879), - [sym_color_reference] = STATE(879), - [sym_tikz_library_import] = STATE(879), - [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_BSLASHpart] = ACTIONS(2757), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddpart] = ACTIONS(2757), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHchapter] = ACTIONS(2757), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddchap] = ACTIONS(2757), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsection] = ACTIONS(2757), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddsec] = ACTIONS(2757), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHparagraph] = ACTIONS(2757), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2757), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHitem] = ACTIONS(2757), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(837), - [sym_placeholder] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym__] = ACTIONS(841), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(855), - [anon_sym_BSLASHinclude] = ACTIONS(857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(857), - [anon_sym_BSLASHinput] = ACTIONS(857), - [anon_sym_BSLASHsubfile] = ACTIONS(857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(859), - [anon_sym_BSLASHbibliography] = ACTIONS(861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(863), - [anon_sym_BSLASHincludesvg] = ACTIONS(865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(869), - [anon_sym_BSLASHimport] = ACTIONS(871), - [anon_sym_BSLASHsubimport] = ACTIONS(871), - [anon_sym_BSLASHinputfrom] = ACTIONS(871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(871), - [anon_sym_BSLASHincludefrom] = ACTIONS(871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(871), - [anon_sym_BSLASHcaption] = ACTIONS(873), - [anon_sym_BSLASHcite] = ACTIONS(875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(877), - [anon_sym_BSLASHCite] = ACTIONS(875), - [anon_sym_BSLASHnocite] = ACTIONS(875), - [anon_sym_BSLASHcitet] = ACTIONS(875), - [anon_sym_BSLASHcitep] = ACTIONS(875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteauthor] = ACTIONS(875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitetitle] = ACTIONS(875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteyear] = ACTIONS(875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(877), - [anon_sym_BSLASHcitedate] = ACTIONS(875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(877), - [anon_sym_BSLASHciteurl] = ACTIONS(875), - [anon_sym_BSLASHfullcite] = ACTIONS(875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(875), - [anon_sym_BSLASHcitealt] = ACTIONS(875), - [anon_sym_BSLASHcitealp] = ACTIONS(875), - [anon_sym_BSLASHcitetext] = ACTIONS(875), - [anon_sym_BSLASHparencite] = ACTIONS(875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(877), - [anon_sym_BSLASHParencite] = ACTIONS(875), - [anon_sym_BSLASHfootcite] = ACTIONS(875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(875), - [anon_sym_BSLASHtextcite] = ACTIONS(875), - [anon_sym_BSLASHTextcite] = ACTIONS(875), - [anon_sym_BSLASHsmartcite] = ACTIONS(875), - [anon_sym_BSLASHSmartcite] = ACTIONS(875), - [anon_sym_BSLASHsupercite] = ACTIONS(875), - [anon_sym_BSLASHautocite] = ACTIONS(875), - [anon_sym_BSLASHAutocite] = ACTIONS(875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(877), - [anon_sym_BSLASHvolcite] = ACTIONS(875), - [anon_sym_BSLASHVolcite] = ACTIONS(875), - [anon_sym_BSLASHpvolcite] = ACTIONS(875), - [anon_sym_BSLASHPvolcite] = ACTIONS(875), - [anon_sym_BSLASHfvolcite] = ACTIONS(875), - [anon_sym_BSLASHftvolcite] = ACTIONS(875), - [anon_sym_BSLASHsvolcite] = ACTIONS(875), - [anon_sym_BSLASHSvolcite] = ACTIONS(875), - [anon_sym_BSLASHtvolcite] = ACTIONS(875), - [anon_sym_BSLASHTvolcite] = ACTIONS(875), - [anon_sym_BSLASHavolcite] = ACTIONS(875), - [anon_sym_BSLASHAvolcite] = ACTIONS(875), - [anon_sym_BSLASHnotecite] = ACTIONS(875), - [anon_sym_BSLASHNotecite] = ACTIONS(875), - [anon_sym_BSLASHpnotecite] = ACTIONS(875), - [anon_sym_BSLASHPnotecite] = ACTIONS(875), - [anon_sym_BSLASHfnotecite] = ACTIONS(875), - [anon_sym_BSLASHlabel] = ACTIONS(879), - [anon_sym_BSLASHref] = ACTIONS(881), - [anon_sym_BSLASHeqref] = ACTIONS(881), - [anon_sym_BSLASHvref] = ACTIONS(881), - [anon_sym_BSLASHVref] = ACTIONS(881), - [anon_sym_BSLASHautoref] = ACTIONS(881), - [anon_sym_BSLASHpageref] = ACTIONS(881), - [anon_sym_BSLASHcref] = ACTIONS(881), - [anon_sym_BSLASHCref] = ACTIONS(881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(883), - [anon_sym_BSLASHnamecref] = ACTIONS(881), - [anon_sym_BSLASHnameCref] = ACTIONS(881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(881), - [anon_sym_BSLASHlabelcref] = ACTIONS(881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(881), - [anon_sym_BSLASHcrefrange] = ACTIONS(885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHCrefrange] = ACTIONS(885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(887), - [anon_sym_BSLASHnewlabel] = ACTIONS(889), - [anon_sym_BSLASHnewcommand] = ACTIONS(891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(893), - [anon_sym_BSLASHdef] = ACTIONS(895), - [anon_sym_BSLASHlet] = ACTIONS(897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(903), - [anon_sym_BSLASHgls] = ACTIONS(905), - [anon_sym_BSLASHGls] = ACTIONS(905), - [anon_sym_BSLASHGLS] = ACTIONS(905), - [anon_sym_BSLASHglspl] = ACTIONS(905), - [anon_sym_BSLASHGlspl] = ACTIONS(905), - [anon_sym_BSLASHGLSpl] = ACTIONS(905), - [anon_sym_BSLASHglsdisp] = ACTIONS(905), - [anon_sym_BSLASHglslink] = ACTIONS(905), - [anon_sym_BSLASHglstext] = ACTIONS(905), - [anon_sym_BSLASHGlstext] = ACTIONS(905), - [anon_sym_BSLASHGLStext] = ACTIONS(905), - [anon_sym_BSLASHglsfirst] = ACTIONS(905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(905), - [anon_sym_BSLASHglsplural] = ACTIONS(905), - [anon_sym_BSLASHGlsplural] = ACTIONS(905), - [anon_sym_BSLASHGLSplural] = ACTIONS(905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(905), - [anon_sym_BSLASHglsname] = ACTIONS(905), - [anon_sym_BSLASHGlsname] = ACTIONS(905), - [anon_sym_BSLASHGLSname] = ACTIONS(905), - [anon_sym_BSLASHglssymbol] = ACTIONS(905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(905), - [anon_sym_BSLASHglsdesc] = ACTIONS(905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(905), - [anon_sym_BSLASHglsuseri] = ACTIONS(905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(905), - [anon_sym_BSLASHglsuserii] = ACTIONS(905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(905), - [anon_sym_BSLASHglsuserv] = ACTIONS(905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(905), - [anon_sym_BSLASHglsuservi] = ACTIONS(905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(905), - [anon_sym_BSLASHnewacronym] = ACTIONS(907), - [anon_sym_BSLASHacrshort] = ACTIONS(909), - [anon_sym_BSLASHAcrshort] = ACTIONS(909), - [anon_sym_BSLASHACRshort] = ACTIONS(909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(909), - [anon_sym_BSLASHacrlong] = ACTIONS(909), - [anon_sym_BSLASHAcrlong] = ACTIONS(909), - [anon_sym_BSLASHACRlong] = ACTIONS(909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(909), - [anon_sym_BSLASHacrfull] = ACTIONS(909), - [anon_sym_BSLASHAcrfull] = ACTIONS(909), - [anon_sym_BSLASHACRfull] = ACTIONS(909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(909), - [anon_sym_BSLASHacs] = ACTIONS(909), - [anon_sym_BSLASHAcs] = ACTIONS(909), - [anon_sym_BSLASHacsp] = ACTIONS(909), - [anon_sym_BSLASHAcsp] = ACTIONS(909), - [anon_sym_BSLASHacl] = ACTIONS(909), - [anon_sym_BSLASHAcl] = ACTIONS(909), - [anon_sym_BSLASHaclp] = ACTIONS(909), - [anon_sym_BSLASHAclp] = ACTIONS(909), - [anon_sym_BSLASHacf] = ACTIONS(909), - [anon_sym_BSLASHAcf] = ACTIONS(909), - [anon_sym_BSLASHacfp] = ACTIONS(909), - [anon_sym_BSLASHAcfp] = ACTIONS(909), - [anon_sym_BSLASHac] = ACTIONS(909), - [anon_sym_BSLASHAc] = ACTIONS(909), - [anon_sym_BSLASHacp] = ACTIONS(909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(917), - [anon_sym_BSLASHcolor] = ACTIONS(919), - [anon_sym_BSLASHcolorbox] = ACTIONS(919), - [anon_sym_BSLASHtextcolor] = ACTIONS(919), - [anon_sym_BSLASHpagecolor] = ACTIONS(919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(921), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), - }, - [210] = { - [sym_block_comment] = STATE(879), - [sym_operator] = STATE(879), - [sym__command] = STATE(879), - [sym_generic_command] = STATE(879), - [sym_package_include] = STATE(879), - [sym_class_include] = STATE(879), - [sym_latex_include] = STATE(879), - [sym_biblatex_include] = STATE(879), - [sym_bibtex_include] = STATE(879), - [sym_graphics_include] = STATE(879), - [sym_svg_include] = STATE(879), - [sym_inkscape_include] = STATE(879), - [sym_verbatim_include] = STATE(879), - [sym_import_include] = STATE(879), - [sym_caption] = STATE(879), - [sym_citation] = STATE(879), - [sym_label_definition] = STATE(879), - [sym_label_reference] = STATE(879), - [sym_label_reference_range] = STATE(879), - [sym_label_number] = STATE(879), - [sym_new_command_definition] = STATE(879), - [sym_old_command_definition] = STATE(879), - [sym_let_command_definition] = STATE(879), - [sym_paired_delimiter_definition] = STATE(879), - [sym_environment_definition] = STATE(879), - [sym_glossary_entry_definition] = STATE(879), - [sym_glossary_entry_reference] = STATE(879), - [sym_acronym_definition] = STATE(879), - [sym_acronym_reference] = STATE(879), - [sym_theorem_definition] = STATE(879), - [sym_color_definition] = STATE(879), - [sym_color_set_definition] = STATE(879), - [sym_color_reference] = STATE(879), - [sym_tikz_library_import] = STATE(879), - [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(2883), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_BSLASHpart] = ACTIONS(2767), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddpart] = ACTIONS(2767), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHchapter] = ACTIONS(2767), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddchap] = ACTIONS(2767), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsection] = ACTIONS(2767), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddsec] = ACTIONS(2767), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHparagraph] = ACTIONS(2767), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2767), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHitem] = ACTIONS(2767), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(2889), - [sym_placeholder] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym__] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_COLON] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(2898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2901), - [anon_sym_BSLASHinclude] = ACTIONS(2904), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2904), - [anon_sym_BSLASHinput] = ACTIONS(2904), - [anon_sym_BSLASHsubfile] = ACTIONS(2904), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2907), - [anon_sym_BSLASHbibliography] = ACTIONS(2910), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2913), - [anon_sym_BSLASHincludesvg] = ACTIONS(2916), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2922), - [anon_sym_BSLASHimport] = ACTIONS(2925), - [anon_sym_BSLASHsubimport] = ACTIONS(2925), - [anon_sym_BSLASHinputfrom] = ACTIONS(2925), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2925), - [anon_sym_BSLASHincludefrom] = ACTIONS(2925), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2925), - [anon_sym_BSLASHcaption] = ACTIONS(2928), - [anon_sym_BSLASHcite] = ACTIONS(2931), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2934), - [anon_sym_BSLASHCite] = ACTIONS(2931), - [anon_sym_BSLASHnocite] = ACTIONS(2931), - [anon_sym_BSLASHcitet] = ACTIONS(2931), - [anon_sym_BSLASHcitep] = ACTIONS(2931), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2934), - [anon_sym_BSLASHciteauthor] = ACTIONS(2931), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2931), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2934), - [anon_sym_BSLASHcitetitle] = ACTIONS(2931), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2934), - [anon_sym_BSLASHciteyear] = ACTIONS(2931), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2934), - [anon_sym_BSLASHcitedate] = ACTIONS(2931), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2934), - [anon_sym_BSLASHciteurl] = ACTIONS(2931), - [anon_sym_BSLASHfullcite] = ACTIONS(2931), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2931), - [anon_sym_BSLASHcitealt] = ACTIONS(2931), - [anon_sym_BSLASHcitealp] = ACTIONS(2931), - [anon_sym_BSLASHcitetext] = ACTIONS(2931), - [anon_sym_BSLASHparencite] = ACTIONS(2931), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2934), - [anon_sym_BSLASHParencite] = ACTIONS(2931), - [anon_sym_BSLASHfootcite] = ACTIONS(2931), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2931), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2931), - [anon_sym_BSLASHtextcite] = ACTIONS(2931), - [anon_sym_BSLASHTextcite] = ACTIONS(2931), - [anon_sym_BSLASHsmartcite] = ACTIONS(2931), - [anon_sym_BSLASHSmartcite] = ACTIONS(2931), - [anon_sym_BSLASHsupercite] = ACTIONS(2931), - [anon_sym_BSLASHautocite] = ACTIONS(2931), - [anon_sym_BSLASHAutocite] = ACTIONS(2931), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2934), - [anon_sym_BSLASHvolcite] = ACTIONS(2931), - [anon_sym_BSLASHVolcite] = ACTIONS(2931), - [anon_sym_BSLASHpvolcite] = ACTIONS(2931), - [anon_sym_BSLASHPvolcite] = ACTIONS(2931), - [anon_sym_BSLASHfvolcite] = ACTIONS(2931), - [anon_sym_BSLASHftvolcite] = ACTIONS(2931), - [anon_sym_BSLASHsvolcite] = ACTIONS(2931), - [anon_sym_BSLASHSvolcite] = ACTIONS(2931), - [anon_sym_BSLASHtvolcite] = ACTIONS(2931), - [anon_sym_BSLASHTvolcite] = ACTIONS(2931), - [anon_sym_BSLASHavolcite] = ACTIONS(2931), - [anon_sym_BSLASHAvolcite] = ACTIONS(2931), - [anon_sym_BSLASHnotecite] = ACTIONS(2931), - [anon_sym_BSLASHNotecite] = ACTIONS(2931), - [anon_sym_BSLASHpnotecite] = ACTIONS(2931), - [anon_sym_BSLASHPnotecite] = ACTIONS(2931), - [anon_sym_BSLASHfnotecite] = ACTIONS(2931), - [anon_sym_BSLASHlabel] = ACTIONS(2937), - [anon_sym_BSLASHref] = ACTIONS(2940), - [anon_sym_BSLASHeqref] = ACTIONS(2940), - [anon_sym_BSLASHvref] = ACTIONS(2940), - [anon_sym_BSLASHVref] = ACTIONS(2940), - [anon_sym_BSLASHautoref] = ACTIONS(2940), - [anon_sym_BSLASHpageref] = ACTIONS(2940), - [anon_sym_BSLASHcref] = ACTIONS(2940), - [anon_sym_BSLASHCref] = ACTIONS(2940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2943), - [anon_sym_BSLASHnamecref] = ACTIONS(2940), - [anon_sym_BSLASHnameCref] = ACTIONS(2940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2940), - [anon_sym_BSLASHlabelcref] = ACTIONS(2940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2940), - [anon_sym_BSLASHcrefrange] = ACTIONS(2946), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2949), - [anon_sym_BSLASHCrefrange] = ACTIONS(2946), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2949), - [anon_sym_BSLASHnewlabel] = ACTIONS(2952), - [anon_sym_BSLASHnewcommand] = ACTIONS(2955), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2955), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2955), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2955), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2958), - [anon_sym_BSLASHdef] = ACTIONS(2961), - [anon_sym_BSLASHlet] = ACTIONS(2964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2967), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2970), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2973), - [anon_sym_BSLASHgls] = ACTIONS(2976), - [anon_sym_BSLASHGls] = ACTIONS(2976), - [anon_sym_BSLASHGLS] = ACTIONS(2976), - [anon_sym_BSLASHglspl] = ACTIONS(2976), - [anon_sym_BSLASHGlspl] = ACTIONS(2976), - [anon_sym_BSLASHGLSpl] = ACTIONS(2976), - [anon_sym_BSLASHglsdisp] = ACTIONS(2976), - [anon_sym_BSLASHglslink] = ACTIONS(2976), - [anon_sym_BSLASHglstext] = ACTIONS(2976), - [anon_sym_BSLASHGlstext] = ACTIONS(2976), - [anon_sym_BSLASHGLStext] = ACTIONS(2976), - [anon_sym_BSLASHglsfirst] = ACTIONS(2976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2976), - [anon_sym_BSLASHglsplural] = ACTIONS(2976), - [anon_sym_BSLASHGlsplural] = ACTIONS(2976), - [anon_sym_BSLASHGLSplural] = ACTIONS(2976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2976), - [anon_sym_BSLASHglsname] = ACTIONS(2976), - [anon_sym_BSLASHGlsname] = ACTIONS(2976), - [anon_sym_BSLASHGLSname] = ACTIONS(2976), - [anon_sym_BSLASHglssymbol] = ACTIONS(2976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2976), - [anon_sym_BSLASHglsdesc] = ACTIONS(2976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2976), - [anon_sym_BSLASHglsuseri] = ACTIONS(2976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2976), - [anon_sym_BSLASHglsuserii] = ACTIONS(2976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2976), - [anon_sym_BSLASHglsuserv] = ACTIONS(2976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2976), - [anon_sym_BSLASHglsuservi] = ACTIONS(2976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2976), - [anon_sym_BSLASHnewacronym] = ACTIONS(2979), - [anon_sym_BSLASHacrshort] = ACTIONS(2982), - [anon_sym_BSLASHAcrshort] = ACTIONS(2982), - [anon_sym_BSLASHACRshort] = ACTIONS(2982), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2982), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2982), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2982), - [anon_sym_BSLASHacrlong] = ACTIONS(2982), - [anon_sym_BSLASHAcrlong] = ACTIONS(2982), - [anon_sym_BSLASHACRlong] = ACTIONS(2982), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2982), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2982), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2982), - [anon_sym_BSLASHacrfull] = ACTIONS(2982), - [anon_sym_BSLASHAcrfull] = ACTIONS(2982), - [anon_sym_BSLASHACRfull] = ACTIONS(2982), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2982), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2982), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2982), - [anon_sym_BSLASHacs] = ACTIONS(2982), - [anon_sym_BSLASHAcs] = ACTIONS(2982), - [anon_sym_BSLASHacsp] = ACTIONS(2982), - [anon_sym_BSLASHAcsp] = ACTIONS(2982), - [anon_sym_BSLASHacl] = ACTIONS(2982), - [anon_sym_BSLASHAcl] = ACTIONS(2982), - [anon_sym_BSLASHaclp] = ACTIONS(2982), - [anon_sym_BSLASHAclp] = ACTIONS(2982), - [anon_sym_BSLASHacf] = ACTIONS(2982), - [anon_sym_BSLASHAcf] = ACTIONS(2982), - [anon_sym_BSLASHacfp] = ACTIONS(2982), - [anon_sym_BSLASHAcfp] = ACTIONS(2982), - [anon_sym_BSLASHac] = ACTIONS(2982), - [anon_sym_BSLASHAc] = ACTIONS(2982), - [anon_sym_BSLASHacp] = ACTIONS(2982), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2982), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2982), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2982), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2982), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2982), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2982), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2982), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2982), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2982), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2982), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2985), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2988), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2985), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2988), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2994), - [anon_sym_BSLASHcolor] = ACTIONS(2997), - [anon_sym_BSLASHcolorbox] = ACTIONS(2997), - [anon_sym_BSLASHtextcolor] = ACTIONS(2997), - [anon_sym_BSLASHpagecolor] = ACTIONS(2997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3000), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3000), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), - }, - [211] = { - [sym_block_comment] = STATE(1196), - [sym_operator] = STATE(1196), - [sym__command] = STATE(1196), - [sym_generic_command] = STATE(1196), - [sym_package_include] = STATE(1196), - [sym_class_include] = STATE(1196), - [sym_latex_include] = STATE(1196), - [sym_biblatex_include] = STATE(1196), - [sym_bibtex_include] = STATE(1196), - [sym_graphics_include] = STATE(1196), - [sym_svg_include] = STATE(1196), - [sym_inkscape_include] = STATE(1196), - [sym_verbatim_include] = STATE(1196), - [sym_import_include] = STATE(1196), - [sym_caption] = STATE(1196), - [sym_citation] = STATE(1196), - [sym_label_definition] = STATE(1196), - [sym_label_reference] = STATE(1196), - [sym_label_reference_range] = STATE(1196), - [sym_label_number] = STATE(1196), - [sym_new_command_definition] = STATE(1196), - [sym_old_command_definition] = STATE(1196), - [sym_let_command_definition] = STATE(1196), - [sym_paired_delimiter_definition] = STATE(1196), - [sym_environment_definition] = STATE(1196), - [sym_glossary_entry_definition] = STATE(1196), - [sym_glossary_entry_reference] = STATE(1196), - [sym_acronym_definition] = STATE(1196), - [sym_acronym_reference] = STATE(1196), - [sym_theorem_definition] = STATE(1196), - [sym_color_definition] = STATE(1196), - [sym_color_set_definition] = STATE(1196), - [sym_color_reference] = STATE(1196), - [sym_tikz_library_import] = STATE(1196), - [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(3003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_BSLASHpart] = ACTIONS(2767), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddpart] = ACTIONS(2767), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHchapter] = ACTIONS(2767), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddchap] = ACTIONS(2767), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsection] = ACTIONS(2767), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddsec] = ACTIONS(2767), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHparagraph] = ACTIONS(2767), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2767), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHitem] = ACTIONS(2767), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(3009), - [sym_placeholder] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym__] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(3018), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3018), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3021), - [anon_sym_BSLASHinclude] = ACTIONS(3024), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3024), - [anon_sym_BSLASHinput] = ACTIONS(3024), - [anon_sym_BSLASHsubfile] = ACTIONS(3024), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3027), - [anon_sym_BSLASHbibliography] = ACTIONS(3030), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3033), - [anon_sym_BSLASHincludesvg] = ACTIONS(3036), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3039), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3042), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3042), - [anon_sym_BSLASHimport] = ACTIONS(3045), - [anon_sym_BSLASHsubimport] = ACTIONS(3045), - [anon_sym_BSLASHinputfrom] = ACTIONS(3045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3045), - [anon_sym_BSLASHincludefrom] = ACTIONS(3045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3045), - [anon_sym_BSLASHcaption] = ACTIONS(3048), - [anon_sym_BSLASHcite] = ACTIONS(3051), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3054), - [anon_sym_BSLASHCite] = ACTIONS(3051), - [anon_sym_BSLASHnocite] = ACTIONS(3051), - [anon_sym_BSLASHcitet] = ACTIONS(3051), - [anon_sym_BSLASHcitep] = ACTIONS(3051), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3054), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3054), - [anon_sym_BSLASHciteauthor] = ACTIONS(3051), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3054), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3051), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3054), - [anon_sym_BSLASHcitetitle] = ACTIONS(3051), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3054), - [anon_sym_BSLASHciteyear] = ACTIONS(3051), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3054), - [anon_sym_BSLASHcitedate] = ACTIONS(3051), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3054), - [anon_sym_BSLASHciteurl] = ACTIONS(3051), - [anon_sym_BSLASHfullcite] = ACTIONS(3051), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3051), - [anon_sym_BSLASHcitealt] = ACTIONS(3051), - [anon_sym_BSLASHcitealp] = ACTIONS(3051), - [anon_sym_BSLASHcitetext] = ACTIONS(3051), - [anon_sym_BSLASHparencite] = ACTIONS(3051), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3054), - [anon_sym_BSLASHParencite] = ACTIONS(3051), - [anon_sym_BSLASHfootcite] = ACTIONS(3051), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3051), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3051), - [anon_sym_BSLASHtextcite] = ACTIONS(3051), - [anon_sym_BSLASHTextcite] = ACTIONS(3051), - [anon_sym_BSLASHsmartcite] = ACTIONS(3051), - [anon_sym_BSLASHSmartcite] = ACTIONS(3051), - [anon_sym_BSLASHsupercite] = ACTIONS(3051), - [anon_sym_BSLASHautocite] = ACTIONS(3051), - [anon_sym_BSLASHAutocite] = ACTIONS(3051), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3054), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3054), - [anon_sym_BSLASHvolcite] = ACTIONS(3051), - [anon_sym_BSLASHVolcite] = ACTIONS(3051), - [anon_sym_BSLASHpvolcite] = ACTIONS(3051), - [anon_sym_BSLASHPvolcite] = ACTIONS(3051), - [anon_sym_BSLASHfvolcite] = ACTIONS(3051), - [anon_sym_BSLASHftvolcite] = ACTIONS(3051), - [anon_sym_BSLASHsvolcite] = ACTIONS(3051), - [anon_sym_BSLASHSvolcite] = ACTIONS(3051), - [anon_sym_BSLASHtvolcite] = ACTIONS(3051), - [anon_sym_BSLASHTvolcite] = ACTIONS(3051), - [anon_sym_BSLASHavolcite] = ACTIONS(3051), - [anon_sym_BSLASHAvolcite] = ACTIONS(3051), - [anon_sym_BSLASHnotecite] = ACTIONS(3051), - [anon_sym_BSLASHNotecite] = ACTIONS(3051), - [anon_sym_BSLASHpnotecite] = ACTIONS(3051), - [anon_sym_BSLASHPnotecite] = ACTIONS(3051), - [anon_sym_BSLASHfnotecite] = ACTIONS(3051), - [anon_sym_BSLASHlabel] = ACTIONS(3057), - [anon_sym_BSLASHref] = ACTIONS(3060), - [anon_sym_BSLASHeqref] = ACTIONS(3060), - [anon_sym_BSLASHvref] = ACTIONS(3060), - [anon_sym_BSLASHVref] = ACTIONS(3060), - [anon_sym_BSLASHautoref] = ACTIONS(3060), - [anon_sym_BSLASHpageref] = ACTIONS(3060), - [anon_sym_BSLASHcref] = ACTIONS(3060), - [anon_sym_BSLASHCref] = ACTIONS(3060), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3063), - [anon_sym_BSLASHnamecref] = ACTIONS(3060), - [anon_sym_BSLASHnameCref] = ACTIONS(3060), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3060), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3060), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3060), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3060), - [anon_sym_BSLASHlabelcref] = ACTIONS(3060), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3060), - [anon_sym_BSLASHcrefrange] = ACTIONS(3066), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3069), - [anon_sym_BSLASHCrefrange] = ACTIONS(3066), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3069), - [anon_sym_BSLASHnewlabel] = ACTIONS(3072), - [anon_sym_BSLASHnewcommand] = ACTIONS(3075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3078), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3078), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3078), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3078), - [anon_sym_BSLASHdef] = ACTIONS(3081), - [anon_sym_BSLASHlet] = ACTIONS(3084), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3087), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3087), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3090), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3093), - [anon_sym_BSLASHgls] = ACTIONS(3096), - [anon_sym_BSLASHGls] = ACTIONS(3096), - [anon_sym_BSLASHGLS] = ACTIONS(3096), - [anon_sym_BSLASHglspl] = ACTIONS(3096), - [anon_sym_BSLASHGlspl] = ACTIONS(3096), - [anon_sym_BSLASHGLSpl] = ACTIONS(3096), - [anon_sym_BSLASHglsdisp] = ACTIONS(3096), - [anon_sym_BSLASHglslink] = ACTIONS(3096), - [anon_sym_BSLASHglstext] = ACTIONS(3096), - [anon_sym_BSLASHGlstext] = ACTIONS(3096), - [anon_sym_BSLASHGLStext] = ACTIONS(3096), - [anon_sym_BSLASHglsfirst] = ACTIONS(3096), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3096), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3096), - [anon_sym_BSLASHglsplural] = ACTIONS(3096), - [anon_sym_BSLASHGlsplural] = ACTIONS(3096), - [anon_sym_BSLASHGLSplural] = ACTIONS(3096), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3096), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3096), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3096), - [anon_sym_BSLASHglsname] = ACTIONS(3096), - [anon_sym_BSLASHGlsname] = ACTIONS(3096), - [anon_sym_BSLASHGLSname] = ACTIONS(3096), - [anon_sym_BSLASHglssymbol] = ACTIONS(3096), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3096), - [anon_sym_BSLASHglsdesc] = ACTIONS(3096), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3096), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3096), - [anon_sym_BSLASHglsuseri] = ACTIONS(3096), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3096), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3096), - [anon_sym_BSLASHglsuserii] = ACTIONS(3096), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3096), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3096), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3096), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3096), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3096), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3096), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3096), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3096), - [anon_sym_BSLASHglsuserv] = ACTIONS(3096), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3096), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3096), - [anon_sym_BSLASHglsuservi] = ACTIONS(3096), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3096), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3096), - [anon_sym_BSLASHnewacronym] = ACTIONS(3099), - [anon_sym_BSLASHacrshort] = ACTIONS(3102), - [anon_sym_BSLASHAcrshort] = ACTIONS(3102), - [anon_sym_BSLASHACRshort] = ACTIONS(3102), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3102), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3102), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3102), - [anon_sym_BSLASHacrlong] = ACTIONS(3102), - [anon_sym_BSLASHAcrlong] = ACTIONS(3102), - [anon_sym_BSLASHACRlong] = ACTIONS(3102), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3102), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3102), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3102), - [anon_sym_BSLASHacrfull] = ACTIONS(3102), - [anon_sym_BSLASHAcrfull] = ACTIONS(3102), - [anon_sym_BSLASHACRfull] = ACTIONS(3102), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3102), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3102), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3102), - [anon_sym_BSLASHacs] = ACTIONS(3102), - [anon_sym_BSLASHAcs] = ACTIONS(3102), - [anon_sym_BSLASHacsp] = ACTIONS(3102), - [anon_sym_BSLASHAcsp] = ACTIONS(3102), - [anon_sym_BSLASHacl] = ACTIONS(3102), - [anon_sym_BSLASHAcl] = ACTIONS(3102), - [anon_sym_BSLASHaclp] = ACTIONS(3102), - [anon_sym_BSLASHAclp] = ACTIONS(3102), - [anon_sym_BSLASHacf] = ACTIONS(3102), - [anon_sym_BSLASHAcf] = ACTIONS(3102), - [anon_sym_BSLASHacfp] = ACTIONS(3102), - [anon_sym_BSLASHAcfp] = ACTIONS(3102), - [anon_sym_BSLASHac] = ACTIONS(3102), - [anon_sym_BSLASHAc] = ACTIONS(3102), - [anon_sym_BSLASHacp] = ACTIONS(3102), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3102), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3102), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3102), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3102), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3102), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3102), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3102), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3102), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3102), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3102), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3108), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3108), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3111), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3114), - [anon_sym_BSLASHcolor] = ACTIONS(3117), - [anon_sym_BSLASHcolorbox] = ACTIONS(3117), - [anon_sym_BSLASHtextcolor] = ACTIONS(3117), - [anon_sym_BSLASHpagecolor] = ACTIONS(3117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3120), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3120), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), - }, - [212] = { - [sym_block_comment] = STATE(1103), - [sym_operator] = STATE(1103), - [sym__command] = STATE(1103), - [sym_generic_command] = STATE(1103), - [sym_package_include] = STATE(1103), - [sym_class_include] = STATE(1103), - [sym_latex_include] = STATE(1103), - [sym_biblatex_include] = STATE(1103), - [sym_bibtex_include] = STATE(1103), - [sym_graphics_include] = STATE(1103), - [sym_svg_include] = STATE(1103), - [sym_inkscape_include] = STATE(1103), - [sym_verbatim_include] = STATE(1103), - [sym_import_include] = STATE(1103), - [sym_caption] = STATE(1103), - [sym_citation] = STATE(1103), - [sym_label_definition] = STATE(1103), - [sym_label_reference] = STATE(1103), - [sym_label_reference_range] = STATE(1103), - [sym_label_number] = STATE(1103), - [sym_new_command_definition] = STATE(1103), - [sym_old_command_definition] = STATE(1103), - [sym_let_command_definition] = STATE(1103), - [sym_paired_delimiter_definition] = STATE(1103), - [sym_environment_definition] = STATE(1103), - [sym_glossary_entry_definition] = STATE(1103), - [sym_glossary_entry_reference] = STATE(1103), - [sym_acronym_definition] = STATE(1103), - [sym_acronym_reference] = STATE(1103), - [sym_theorem_definition] = STATE(1103), - [sym_color_definition] = STATE(1103), - [sym_color_set_definition] = STATE(1103), - [sym_color_reference] = STATE(1103), - [sym_tikz_library_import] = STATE(1103), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(3123), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_BSLASHpart] = ACTIONS(2767), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddpart] = ACTIONS(2767), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHchapter] = ACTIONS(2767), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddchap] = ACTIONS(2767), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsection] = ACTIONS(2767), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddsec] = ACTIONS(2767), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHparagraph] = ACTIONS(2767), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2767), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHitem] = ACTIONS(2767), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(3129), - [sym_placeholder] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym__] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHend] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(3138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3141), - [anon_sym_BSLASHinclude] = ACTIONS(3144), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3144), - [anon_sym_BSLASHinput] = ACTIONS(3144), - [anon_sym_BSLASHsubfile] = ACTIONS(3144), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3147), - [anon_sym_BSLASHbibliography] = ACTIONS(3150), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3153), - [anon_sym_BSLASHincludesvg] = ACTIONS(3156), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3162), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3162), - [anon_sym_BSLASHimport] = ACTIONS(3165), - [anon_sym_BSLASHsubimport] = ACTIONS(3165), - [anon_sym_BSLASHinputfrom] = ACTIONS(3165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3165), - [anon_sym_BSLASHincludefrom] = ACTIONS(3165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3165), - [anon_sym_BSLASHcaption] = ACTIONS(3168), - [anon_sym_BSLASHcite] = ACTIONS(3171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3174), - [anon_sym_BSLASHCite] = ACTIONS(3171), - [anon_sym_BSLASHnocite] = ACTIONS(3171), - [anon_sym_BSLASHcitet] = ACTIONS(3171), - [anon_sym_BSLASHcitep] = ACTIONS(3171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3174), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3174), - [anon_sym_BSLASHciteauthor] = ACTIONS(3171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3174), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3174), - [anon_sym_BSLASHcitetitle] = ACTIONS(3171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3174), - [anon_sym_BSLASHciteyear] = ACTIONS(3171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3174), - [anon_sym_BSLASHcitedate] = ACTIONS(3171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3174), - [anon_sym_BSLASHciteurl] = ACTIONS(3171), - [anon_sym_BSLASHfullcite] = ACTIONS(3171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3171), - [anon_sym_BSLASHcitealt] = ACTIONS(3171), - [anon_sym_BSLASHcitealp] = ACTIONS(3171), - [anon_sym_BSLASHcitetext] = ACTIONS(3171), - [anon_sym_BSLASHparencite] = ACTIONS(3171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3174), - [anon_sym_BSLASHParencite] = ACTIONS(3171), - [anon_sym_BSLASHfootcite] = ACTIONS(3171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3171), - [anon_sym_BSLASHtextcite] = ACTIONS(3171), - [anon_sym_BSLASHTextcite] = ACTIONS(3171), - [anon_sym_BSLASHsmartcite] = ACTIONS(3171), - [anon_sym_BSLASHSmartcite] = ACTIONS(3171), - [anon_sym_BSLASHsupercite] = ACTIONS(3171), - [anon_sym_BSLASHautocite] = ACTIONS(3171), - [anon_sym_BSLASHAutocite] = ACTIONS(3171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3174), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3174), - [anon_sym_BSLASHvolcite] = ACTIONS(3171), - [anon_sym_BSLASHVolcite] = ACTIONS(3171), - [anon_sym_BSLASHpvolcite] = ACTIONS(3171), - [anon_sym_BSLASHPvolcite] = ACTIONS(3171), - [anon_sym_BSLASHfvolcite] = ACTIONS(3171), - [anon_sym_BSLASHftvolcite] = ACTIONS(3171), - [anon_sym_BSLASHsvolcite] = ACTIONS(3171), - [anon_sym_BSLASHSvolcite] = ACTIONS(3171), - [anon_sym_BSLASHtvolcite] = ACTIONS(3171), - [anon_sym_BSLASHTvolcite] = ACTIONS(3171), - [anon_sym_BSLASHavolcite] = ACTIONS(3171), - [anon_sym_BSLASHAvolcite] = ACTIONS(3171), - [anon_sym_BSLASHnotecite] = ACTIONS(3171), - [anon_sym_BSLASHNotecite] = ACTIONS(3171), - [anon_sym_BSLASHpnotecite] = ACTIONS(3171), - [anon_sym_BSLASHPnotecite] = ACTIONS(3171), - [anon_sym_BSLASHfnotecite] = ACTIONS(3171), - [anon_sym_BSLASHlabel] = ACTIONS(3177), - [anon_sym_BSLASHref] = ACTIONS(3180), - [anon_sym_BSLASHeqref] = ACTIONS(3180), - [anon_sym_BSLASHvref] = ACTIONS(3180), - [anon_sym_BSLASHVref] = ACTIONS(3180), - [anon_sym_BSLASHautoref] = ACTIONS(3180), - [anon_sym_BSLASHpageref] = ACTIONS(3180), - [anon_sym_BSLASHcref] = ACTIONS(3180), - [anon_sym_BSLASHCref] = ACTIONS(3180), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3183), - [anon_sym_BSLASHnamecref] = ACTIONS(3180), - [anon_sym_BSLASHnameCref] = ACTIONS(3180), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3180), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3180), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3180), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3180), - [anon_sym_BSLASHlabelcref] = ACTIONS(3180), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3180), - [anon_sym_BSLASHcrefrange] = ACTIONS(3186), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3189), - [anon_sym_BSLASHCrefrange] = ACTIONS(3186), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3189), - [anon_sym_BSLASHnewlabel] = ACTIONS(3192), - [anon_sym_BSLASHnewcommand] = ACTIONS(3195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3198), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3198), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3198), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3198), - [anon_sym_BSLASHdef] = ACTIONS(3201), - [anon_sym_BSLASHlet] = ACTIONS(3204), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3207), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3207), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3210), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3213), - [anon_sym_BSLASHgls] = ACTIONS(3216), - [anon_sym_BSLASHGls] = ACTIONS(3216), - [anon_sym_BSLASHGLS] = ACTIONS(3216), - [anon_sym_BSLASHglspl] = ACTIONS(3216), - [anon_sym_BSLASHGlspl] = ACTIONS(3216), - [anon_sym_BSLASHGLSpl] = ACTIONS(3216), - [anon_sym_BSLASHglsdisp] = ACTIONS(3216), - [anon_sym_BSLASHglslink] = ACTIONS(3216), - [anon_sym_BSLASHglstext] = ACTIONS(3216), - [anon_sym_BSLASHGlstext] = ACTIONS(3216), - [anon_sym_BSLASHGLStext] = ACTIONS(3216), - [anon_sym_BSLASHglsfirst] = ACTIONS(3216), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3216), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3216), - [anon_sym_BSLASHglsplural] = ACTIONS(3216), - [anon_sym_BSLASHGlsplural] = ACTIONS(3216), - [anon_sym_BSLASHGLSplural] = ACTIONS(3216), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3216), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3216), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3216), - [anon_sym_BSLASHglsname] = ACTIONS(3216), - [anon_sym_BSLASHGlsname] = ACTIONS(3216), - [anon_sym_BSLASHGLSname] = ACTIONS(3216), - [anon_sym_BSLASHglssymbol] = ACTIONS(3216), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3216), - [anon_sym_BSLASHglsdesc] = ACTIONS(3216), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3216), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3216), - [anon_sym_BSLASHglsuseri] = ACTIONS(3216), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3216), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3216), - [anon_sym_BSLASHglsuserii] = ACTIONS(3216), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3216), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3216), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3216), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3216), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3216), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3216), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3216), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3216), - [anon_sym_BSLASHglsuserv] = ACTIONS(3216), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3216), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3216), - [anon_sym_BSLASHglsuservi] = ACTIONS(3216), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3216), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3216), - [anon_sym_BSLASHnewacronym] = ACTIONS(3219), - [anon_sym_BSLASHacrshort] = ACTIONS(3222), - [anon_sym_BSLASHAcrshort] = ACTIONS(3222), - [anon_sym_BSLASHACRshort] = ACTIONS(3222), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3222), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3222), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3222), - [anon_sym_BSLASHacrlong] = ACTIONS(3222), - [anon_sym_BSLASHAcrlong] = ACTIONS(3222), - [anon_sym_BSLASHACRlong] = ACTIONS(3222), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3222), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3222), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3222), - [anon_sym_BSLASHacrfull] = ACTIONS(3222), - [anon_sym_BSLASHAcrfull] = ACTIONS(3222), - [anon_sym_BSLASHACRfull] = ACTIONS(3222), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3222), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3222), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3222), - [anon_sym_BSLASHacs] = ACTIONS(3222), - [anon_sym_BSLASHAcs] = ACTIONS(3222), - [anon_sym_BSLASHacsp] = ACTIONS(3222), - [anon_sym_BSLASHAcsp] = ACTIONS(3222), - [anon_sym_BSLASHacl] = ACTIONS(3222), - [anon_sym_BSLASHAcl] = ACTIONS(3222), - [anon_sym_BSLASHaclp] = ACTIONS(3222), - [anon_sym_BSLASHAclp] = ACTIONS(3222), - [anon_sym_BSLASHacf] = ACTIONS(3222), - [anon_sym_BSLASHAcf] = ACTIONS(3222), - [anon_sym_BSLASHacfp] = ACTIONS(3222), - [anon_sym_BSLASHAcfp] = ACTIONS(3222), - [anon_sym_BSLASHac] = ACTIONS(3222), - [anon_sym_BSLASHAc] = ACTIONS(3222), - [anon_sym_BSLASHacp] = ACTIONS(3222), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3222), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3222), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3222), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3222), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3222), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3222), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3222), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3222), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3222), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3222), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3228), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3228), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3234), - [anon_sym_BSLASHcolor] = ACTIONS(3237), - [anon_sym_BSLASHcolorbox] = ACTIONS(3237), - [anon_sym_BSLASHtextcolor] = ACTIONS(3237), - [anon_sym_BSLASHpagecolor] = ACTIONS(3237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3240), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3240), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), + [221] = { + [sym_block_comment] = STATE(1314), + [sym_operator] = STATE(1314), + [sym__command] = STATE(1314), + [sym_generic_command] = STATE(1314), + [sym_title_declaration] = STATE(1314), + [sym_author_declaration] = STATE(1314), + [sym_package_include] = STATE(1314), + [sym_class_include] = STATE(1314), + [sym_latex_include] = STATE(1314), + [sym_biblatex_include] = STATE(1314), + [sym_bibtex_include] = STATE(1314), + [sym_graphics_include] = STATE(1314), + [sym_svg_include] = STATE(1314), + [sym_inkscape_include] = STATE(1314), + [sym_verbatim_include] = STATE(1314), + [sym_import_include] = STATE(1314), + [sym_caption] = STATE(1314), + [sym_citation] = STATE(1314), + [sym_label_definition] = STATE(1314), + [sym_label_reference] = STATE(1314), + [sym_label_reference_range] = STATE(1314), + [sym_label_number] = STATE(1314), + [sym_new_command_definition] = STATE(1314), + [sym_old_command_definition] = STATE(1314), + [sym_let_command_definition] = STATE(1314), + [sym_paired_delimiter_definition] = STATE(1314), + [sym_environment_definition] = STATE(1314), + [sym_glossary_entry_definition] = STATE(1314), + [sym_glossary_entry_reference] = STATE(1314), + [sym_acronym_definition] = STATE(1314), + [sym_acronym_reference] = STATE(1314), + [sym_theorem_definition] = STATE(1314), + [sym_color_definition] = STATE(1314), + [sym_color_set_definition] = STATE(1314), + [sym_color_reference] = STATE(1314), + [sym_tikz_library_import] = STATE(1314), + [aux_sym_text_repeat1] = STATE(224), + [sym_command_name] = ACTIONS(717), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_BSLASHpart] = ACTIONS(2999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddpart] = ACTIONS(2999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHchapter] = ACTIONS(2999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddchap] = ACTIONS(2999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsection] = ACTIONS(2999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddsec] = ACTIONS(2999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHparagraph] = ACTIONS(2999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHitem] = ACTIONS(2999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(725), + [sym_placeholder] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym__] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(743), + [anon_sym_BSLASHauthor] = ACTIONS(745), + [anon_sym_BSLASHusepackage] = ACTIONS(747), + [anon_sym_BSLASHRequirePackage] = ACTIONS(747), + [anon_sym_BSLASHdocumentclass] = ACTIONS(749), + [anon_sym_BSLASHinclude] = ACTIONS(751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(751), + [anon_sym_BSLASHinput] = ACTIONS(751), + [anon_sym_BSLASHsubfile] = ACTIONS(751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(753), + [anon_sym_BSLASHbibliography] = ACTIONS(755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(757), + [anon_sym_BSLASHincludesvg] = ACTIONS(759), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(761), + [anon_sym_BSLASHverbatiminput] = ACTIONS(763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(763), + [anon_sym_BSLASHimport] = ACTIONS(765), + [anon_sym_BSLASHsubimport] = ACTIONS(765), + [anon_sym_BSLASHinputfrom] = ACTIONS(765), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(765), + [anon_sym_BSLASHincludefrom] = ACTIONS(765), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(765), + [anon_sym_BSLASHcaption] = ACTIONS(767), + [anon_sym_BSLASHcite] = ACTIONS(769), + [anon_sym_BSLASHcite_STAR] = ACTIONS(771), + [anon_sym_BSLASHCite] = ACTIONS(769), + [anon_sym_BSLASHnocite] = ACTIONS(769), + [anon_sym_BSLASHcitet] = ACTIONS(769), + [anon_sym_BSLASHcitep] = ACTIONS(769), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteauthor] = ACTIONS(769), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHCiteauthor] = ACTIONS(769), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitetitle] = ACTIONS(769), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteyear] = ACTIONS(769), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(771), + [anon_sym_BSLASHcitedate] = ACTIONS(769), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(771), + [anon_sym_BSLASHciteurl] = ACTIONS(769), + [anon_sym_BSLASHfullcite] = ACTIONS(769), + [anon_sym_BSLASHciteyearpar] = ACTIONS(769), + [anon_sym_BSLASHcitealt] = ACTIONS(769), + [anon_sym_BSLASHcitealp] = ACTIONS(769), + [anon_sym_BSLASHcitetext] = ACTIONS(769), + [anon_sym_BSLASHparencite] = ACTIONS(769), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(771), + [anon_sym_BSLASHParencite] = ACTIONS(769), + [anon_sym_BSLASHfootcite] = ACTIONS(769), + [anon_sym_BSLASHfootfullcite] = ACTIONS(769), + [anon_sym_BSLASHfootcitetext] = ACTIONS(769), + [anon_sym_BSLASHtextcite] = ACTIONS(769), + [anon_sym_BSLASHTextcite] = ACTIONS(769), + [anon_sym_BSLASHsmartcite] = ACTIONS(769), + [anon_sym_BSLASHSmartcite] = ACTIONS(769), + [anon_sym_BSLASHsupercite] = ACTIONS(769), + [anon_sym_BSLASHautocite] = ACTIONS(769), + [anon_sym_BSLASHAutocite] = ACTIONS(769), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(771), + [anon_sym_BSLASHvolcite] = ACTIONS(769), + [anon_sym_BSLASHVolcite] = ACTIONS(769), + [anon_sym_BSLASHpvolcite] = ACTIONS(769), + [anon_sym_BSLASHPvolcite] = ACTIONS(769), + [anon_sym_BSLASHfvolcite] = ACTIONS(769), + [anon_sym_BSLASHftvolcite] = ACTIONS(769), + [anon_sym_BSLASHsvolcite] = ACTIONS(769), + [anon_sym_BSLASHSvolcite] = ACTIONS(769), + [anon_sym_BSLASHtvolcite] = ACTIONS(769), + [anon_sym_BSLASHTvolcite] = ACTIONS(769), + [anon_sym_BSLASHavolcite] = ACTIONS(769), + [anon_sym_BSLASHAvolcite] = ACTIONS(769), + [anon_sym_BSLASHnotecite] = ACTIONS(769), + [anon_sym_BSLASHNotecite] = ACTIONS(769), + [anon_sym_BSLASHpnotecite] = ACTIONS(769), + [anon_sym_BSLASHPnotecite] = ACTIONS(769), + [anon_sym_BSLASHfnotecite] = ACTIONS(769), + [anon_sym_BSLASHlabel] = ACTIONS(773), + [anon_sym_BSLASHref] = ACTIONS(775), + [anon_sym_BSLASHeqref] = ACTIONS(775), + [anon_sym_BSLASHvref] = ACTIONS(775), + [anon_sym_BSLASHVref] = ACTIONS(775), + [anon_sym_BSLASHautoref] = ACTIONS(775), + [anon_sym_BSLASHpageref] = ACTIONS(775), + [anon_sym_BSLASHcref] = ACTIONS(775), + [anon_sym_BSLASHCref] = ACTIONS(775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(777), + [anon_sym_BSLASHnamecref] = ACTIONS(775), + [anon_sym_BSLASHnameCref] = ACTIONS(775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(775), + [anon_sym_BSLASHlabelcref] = ACTIONS(775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(775), + [anon_sym_BSLASHcrefrange] = ACTIONS(779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHCrefrange] = ACTIONS(779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(781), + [anon_sym_BSLASHnewlabel] = ACTIONS(783), + [anon_sym_BSLASHnewcommand] = ACTIONS(785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHrenewcommand] = ACTIONS(785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(787), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(787), + [anon_sym_BSLASHdef] = ACTIONS(789), + [anon_sym_BSLASHlet] = ACTIONS(791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(793), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(793), + [anon_sym_BSLASHnewenvironment] = ACTIONS(795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(797), + [anon_sym_BSLASHgls] = ACTIONS(799), + [anon_sym_BSLASHGls] = ACTIONS(799), + [anon_sym_BSLASHGLS] = ACTIONS(799), + [anon_sym_BSLASHglspl] = ACTIONS(799), + [anon_sym_BSLASHGlspl] = ACTIONS(799), + [anon_sym_BSLASHGLSpl] = ACTIONS(799), + [anon_sym_BSLASHglsdisp] = ACTIONS(799), + [anon_sym_BSLASHglslink] = ACTIONS(799), + [anon_sym_BSLASHglstext] = ACTIONS(799), + [anon_sym_BSLASHGlstext] = ACTIONS(799), + [anon_sym_BSLASHGLStext] = ACTIONS(799), + [anon_sym_BSLASHglsfirst] = ACTIONS(799), + [anon_sym_BSLASHGlsfirst] = ACTIONS(799), + [anon_sym_BSLASHGLSfirst] = ACTIONS(799), + [anon_sym_BSLASHglsplural] = ACTIONS(799), + [anon_sym_BSLASHGlsplural] = ACTIONS(799), + [anon_sym_BSLASHGLSplural] = ACTIONS(799), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(799), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(799), + [anon_sym_BSLASHglsname] = ACTIONS(799), + [anon_sym_BSLASHGlsname] = ACTIONS(799), + [anon_sym_BSLASHGLSname] = ACTIONS(799), + [anon_sym_BSLASHglssymbol] = ACTIONS(799), + [anon_sym_BSLASHGlssymbol] = ACTIONS(799), + [anon_sym_BSLASHglsdesc] = ACTIONS(799), + [anon_sym_BSLASHGlsdesc] = ACTIONS(799), + [anon_sym_BSLASHGLSdesc] = ACTIONS(799), + [anon_sym_BSLASHglsuseri] = ACTIONS(799), + [anon_sym_BSLASHGlsuseri] = ACTIONS(799), + [anon_sym_BSLASHGLSuseri] = ACTIONS(799), + [anon_sym_BSLASHglsuserii] = ACTIONS(799), + [anon_sym_BSLASHGlsuserii] = ACTIONS(799), + [anon_sym_BSLASHGLSuserii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(799), + [anon_sym_BSLASHglsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(799), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(799), + [anon_sym_BSLASHglsuserv] = ACTIONS(799), + [anon_sym_BSLASHGlsuserv] = ACTIONS(799), + [anon_sym_BSLASHGLSuserv] = ACTIONS(799), + [anon_sym_BSLASHglsuservi] = ACTIONS(799), + [anon_sym_BSLASHGlsuservi] = ACTIONS(799), + [anon_sym_BSLASHGLSuservi] = ACTIONS(799), + [anon_sym_BSLASHnewacronym] = ACTIONS(801), + [anon_sym_BSLASHacrshort] = ACTIONS(803), + [anon_sym_BSLASHAcrshort] = ACTIONS(803), + [anon_sym_BSLASHACRshort] = ACTIONS(803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(803), + [anon_sym_BSLASHacrlong] = ACTIONS(803), + [anon_sym_BSLASHAcrlong] = ACTIONS(803), + [anon_sym_BSLASHACRlong] = ACTIONS(803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(803), + [anon_sym_BSLASHacrfull] = ACTIONS(803), + [anon_sym_BSLASHAcrfull] = ACTIONS(803), + [anon_sym_BSLASHACRfull] = ACTIONS(803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(803), + [anon_sym_BSLASHacs] = ACTIONS(803), + [anon_sym_BSLASHAcs] = ACTIONS(803), + [anon_sym_BSLASHacsp] = ACTIONS(803), + [anon_sym_BSLASHAcsp] = ACTIONS(803), + [anon_sym_BSLASHacl] = ACTIONS(803), + [anon_sym_BSLASHAcl] = ACTIONS(803), + [anon_sym_BSLASHaclp] = ACTIONS(803), + [anon_sym_BSLASHAclp] = ACTIONS(803), + [anon_sym_BSLASHacf] = ACTIONS(803), + [anon_sym_BSLASHAcf] = ACTIONS(803), + [anon_sym_BSLASHacfp] = ACTIONS(803), + [anon_sym_BSLASHAcfp] = ACTIONS(803), + [anon_sym_BSLASHac] = ACTIONS(803), + [anon_sym_BSLASHAc] = ACTIONS(803), + [anon_sym_BSLASHacp] = ACTIONS(803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(805), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(805), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(807), + [anon_sym_BSLASHdefinecolor] = ACTIONS(809), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(811), + [anon_sym_BSLASHcolor] = ACTIONS(813), + [anon_sym_BSLASHcolorbox] = ACTIONS(813), + [anon_sym_BSLASHtextcolor] = ACTIONS(813), + [anon_sym_BSLASHpagecolor] = ACTIONS(813), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(815), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), }, - [213] = { - [sym_block_comment] = STATE(1196), - [sym_operator] = STATE(1196), - [sym__command] = STATE(1196), - [sym_generic_command] = STATE(1196), - [sym_package_include] = STATE(1196), - [sym_class_include] = STATE(1196), - [sym_latex_include] = STATE(1196), - [sym_biblatex_include] = STATE(1196), - [sym_bibtex_include] = STATE(1196), - [sym_graphics_include] = STATE(1196), - [sym_svg_include] = STATE(1196), - [sym_inkscape_include] = STATE(1196), - [sym_verbatim_include] = STATE(1196), - [sym_import_include] = STATE(1196), - [sym_caption] = STATE(1196), - [sym_citation] = STATE(1196), - [sym_label_definition] = STATE(1196), - [sym_label_reference] = STATE(1196), - [sym_label_reference_range] = STATE(1196), - [sym_label_number] = STATE(1196), - [sym_new_command_definition] = STATE(1196), - [sym_old_command_definition] = STATE(1196), - [sym_let_command_definition] = STATE(1196), - [sym_paired_delimiter_definition] = STATE(1196), - [sym_environment_definition] = STATE(1196), - [sym_glossary_entry_definition] = STATE(1196), - [sym_glossary_entry_reference] = STATE(1196), - [sym_acronym_definition] = STATE(1196), - [sym_acronym_reference] = STATE(1196), - [sym_theorem_definition] = STATE(1196), - [sym_color_definition] = STATE(1196), - [sym_color_set_definition] = STATE(1196), - [sym_color_reference] = STATE(1196), - [sym_tikz_library_import] = STATE(1196), - [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(679), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_BSLASHpart] = ACTIONS(2757), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddpart] = ACTIONS(2757), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHchapter] = ACTIONS(2757), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddchap] = ACTIONS(2757), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsection] = ACTIONS(2757), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddsec] = ACTIONS(2757), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHparagraph] = ACTIONS(2757), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2757), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHitem] = ACTIONS(2757), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(687), - [sym_placeholder] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(705), - [anon_sym_BSLASHRequirePackage] = ACTIONS(705), - [anon_sym_BSLASHdocumentclass] = ACTIONS(707), - [anon_sym_BSLASHinclude] = ACTIONS(709), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(709), - [anon_sym_BSLASHinput] = ACTIONS(709), - [anon_sym_BSLASHsubfile] = ACTIONS(709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(711), - [anon_sym_BSLASHbibliography] = ACTIONS(713), - [anon_sym_BSLASHincludegraphics] = ACTIONS(715), - [anon_sym_BSLASHincludesvg] = ACTIONS(717), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(721), - [anon_sym_BSLASHimport] = ACTIONS(723), - [anon_sym_BSLASHsubimport] = ACTIONS(723), - [anon_sym_BSLASHinputfrom] = ACTIONS(723), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(723), - [anon_sym_BSLASHincludefrom] = ACTIONS(723), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(723), - [anon_sym_BSLASHcaption] = ACTIONS(725), - [anon_sym_BSLASHcite] = ACTIONS(727), - [anon_sym_BSLASHcite_STAR] = ACTIONS(729), - [anon_sym_BSLASHCite] = ACTIONS(727), - [anon_sym_BSLASHnocite] = ACTIONS(727), - [anon_sym_BSLASHcitet] = ACTIONS(727), - [anon_sym_BSLASHcitep] = ACTIONS(727), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteauthor] = ACTIONS(727), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(727), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitetitle] = ACTIONS(727), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteyear] = ACTIONS(727), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(729), - [anon_sym_BSLASHcitedate] = ACTIONS(727), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(729), - [anon_sym_BSLASHciteurl] = ACTIONS(727), - [anon_sym_BSLASHfullcite] = ACTIONS(727), - [anon_sym_BSLASHciteyearpar] = ACTIONS(727), - [anon_sym_BSLASHcitealt] = ACTIONS(727), - [anon_sym_BSLASHcitealp] = ACTIONS(727), - [anon_sym_BSLASHcitetext] = ACTIONS(727), - [anon_sym_BSLASHparencite] = ACTIONS(727), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(729), - [anon_sym_BSLASHParencite] = ACTIONS(727), - [anon_sym_BSLASHfootcite] = ACTIONS(727), - [anon_sym_BSLASHfootfullcite] = ACTIONS(727), - [anon_sym_BSLASHfootcitetext] = ACTIONS(727), - [anon_sym_BSLASHtextcite] = ACTIONS(727), - [anon_sym_BSLASHTextcite] = ACTIONS(727), - [anon_sym_BSLASHsmartcite] = ACTIONS(727), - [anon_sym_BSLASHSmartcite] = ACTIONS(727), - [anon_sym_BSLASHsupercite] = ACTIONS(727), - [anon_sym_BSLASHautocite] = ACTIONS(727), - [anon_sym_BSLASHAutocite] = ACTIONS(727), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(729), - [anon_sym_BSLASHvolcite] = ACTIONS(727), - [anon_sym_BSLASHVolcite] = ACTIONS(727), - [anon_sym_BSLASHpvolcite] = ACTIONS(727), - [anon_sym_BSLASHPvolcite] = ACTIONS(727), - [anon_sym_BSLASHfvolcite] = ACTIONS(727), - [anon_sym_BSLASHftvolcite] = ACTIONS(727), - [anon_sym_BSLASHsvolcite] = ACTIONS(727), - [anon_sym_BSLASHSvolcite] = ACTIONS(727), - [anon_sym_BSLASHtvolcite] = ACTIONS(727), - [anon_sym_BSLASHTvolcite] = ACTIONS(727), - [anon_sym_BSLASHavolcite] = ACTIONS(727), - [anon_sym_BSLASHAvolcite] = ACTIONS(727), - [anon_sym_BSLASHnotecite] = ACTIONS(727), - [anon_sym_BSLASHNotecite] = ACTIONS(727), - [anon_sym_BSLASHpnotecite] = ACTIONS(727), - [anon_sym_BSLASHPnotecite] = ACTIONS(727), - [anon_sym_BSLASHfnotecite] = ACTIONS(727), - [anon_sym_BSLASHlabel] = ACTIONS(731), - [anon_sym_BSLASHref] = ACTIONS(733), - [anon_sym_BSLASHeqref] = ACTIONS(733), - [anon_sym_BSLASHvref] = ACTIONS(733), - [anon_sym_BSLASHVref] = ACTIONS(733), - [anon_sym_BSLASHautoref] = ACTIONS(733), - [anon_sym_BSLASHpageref] = ACTIONS(733), - [anon_sym_BSLASHcref] = ACTIONS(733), - [anon_sym_BSLASHCref] = ACTIONS(733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(735), - [anon_sym_BSLASHnamecref] = ACTIONS(733), - [anon_sym_BSLASHnameCref] = ACTIONS(733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(733), - [anon_sym_BSLASHlabelcref] = ACTIONS(733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(733), - [anon_sym_BSLASHcrefrange] = ACTIONS(737), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHCrefrange] = ACTIONS(737), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(739), - [anon_sym_BSLASHnewlabel] = ACTIONS(741), - [anon_sym_BSLASHnewcommand] = ACTIONS(743), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHrenewcommand] = ACTIONS(743), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(743), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(745), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(743), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(745), - [anon_sym_BSLASHdef] = ACTIONS(747), - [anon_sym_BSLASHlet] = ACTIONS(749), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(751), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(751), - [anon_sym_BSLASHnewenvironment] = ACTIONS(753), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(755), - [anon_sym_BSLASHgls] = ACTIONS(757), - [anon_sym_BSLASHGls] = ACTIONS(757), - [anon_sym_BSLASHGLS] = ACTIONS(757), - [anon_sym_BSLASHglspl] = ACTIONS(757), - [anon_sym_BSLASHGlspl] = ACTIONS(757), - [anon_sym_BSLASHGLSpl] = ACTIONS(757), - [anon_sym_BSLASHglsdisp] = ACTIONS(757), - [anon_sym_BSLASHglslink] = ACTIONS(757), - [anon_sym_BSLASHglstext] = ACTIONS(757), - [anon_sym_BSLASHGlstext] = ACTIONS(757), - [anon_sym_BSLASHGLStext] = ACTIONS(757), - [anon_sym_BSLASHglsfirst] = ACTIONS(757), - [anon_sym_BSLASHGlsfirst] = ACTIONS(757), - [anon_sym_BSLASHGLSfirst] = ACTIONS(757), - [anon_sym_BSLASHglsplural] = ACTIONS(757), - [anon_sym_BSLASHGlsplural] = ACTIONS(757), - [anon_sym_BSLASHGLSplural] = ACTIONS(757), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(757), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(757), - [anon_sym_BSLASHglsname] = ACTIONS(757), - [anon_sym_BSLASHGlsname] = ACTIONS(757), - [anon_sym_BSLASHGLSname] = ACTIONS(757), - [anon_sym_BSLASHglssymbol] = ACTIONS(757), - [anon_sym_BSLASHGlssymbol] = ACTIONS(757), - [anon_sym_BSLASHglsdesc] = ACTIONS(757), - [anon_sym_BSLASHGlsdesc] = ACTIONS(757), - [anon_sym_BSLASHGLSdesc] = ACTIONS(757), - [anon_sym_BSLASHglsuseri] = ACTIONS(757), - [anon_sym_BSLASHGlsuseri] = ACTIONS(757), - [anon_sym_BSLASHGLSuseri] = ACTIONS(757), - [anon_sym_BSLASHglsuserii] = ACTIONS(757), - [anon_sym_BSLASHGlsuserii] = ACTIONS(757), - [anon_sym_BSLASHGLSuserii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(757), - [anon_sym_BSLASHglsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(757), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(757), - [anon_sym_BSLASHglsuserv] = ACTIONS(757), - [anon_sym_BSLASHGlsuserv] = ACTIONS(757), - [anon_sym_BSLASHGLSuserv] = ACTIONS(757), - [anon_sym_BSLASHglsuservi] = ACTIONS(757), - [anon_sym_BSLASHGlsuservi] = ACTIONS(757), - [anon_sym_BSLASHGLSuservi] = ACTIONS(757), - [anon_sym_BSLASHnewacronym] = ACTIONS(759), - [anon_sym_BSLASHacrshort] = ACTIONS(761), - [anon_sym_BSLASHAcrshort] = ACTIONS(761), - [anon_sym_BSLASHACRshort] = ACTIONS(761), - [anon_sym_BSLASHacrshortpl] = ACTIONS(761), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(761), - [anon_sym_BSLASHACRshortpl] = ACTIONS(761), - [anon_sym_BSLASHacrlong] = ACTIONS(761), - [anon_sym_BSLASHAcrlong] = ACTIONS(761), - [anon_sym_BSLASHACRlong] = ACTIONS(761), - [anon_sym_BSLASHacrlongpl] = ACTIONS(761), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(761), - [anon_sym_BSLASHACRlongpl] = ACTIONS(761), - [anon_sym_BSLASHacrfull] = ACTIONS(761), - [anon_sym_BSLASHAcrfull] = ACTIONS(761), - [anon_sym_BSLASHACRfull] = ACTIONS(761), - [anon_sym_BSLASHacrfullpl] = ACTIONS(761), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(761), - [anon_sym_BSLASHACRfullpl] = ACTIONS(761), - [anon_sym_BSLASHacs] = ACTIONS(761), - [anon_sym_BSLASHAcs] = ACTIONS(761), - [anon_sym_BSLASHacsp] = ACTIONS(761), - [anon_sym_BSLASHAcsp] = ACTIONS(761), - [anon_sym_BSLASHacl] = ACTIONS(761), - [anon_sym_BSLASHAcl] = ACTIONS(761), - [anon_sym_BSLASHaclp] = ACTIONS(761), - [anon_sym_BSLASHAclp] = ACTIONS(761), - [anon_sym_BSLASHacf] = ACTIONS(761), - [anon_sym_BSLASHAcf] = ACTIONS(761), - [anon_sym_BSLASHacfp] = ACTIONS(761), - [anon_sym_BSLASHAcfp] = ACTIONS(761), - [anon_sym_BSLASHac] = ACTIONS(761), - [anon_sym_BSLASHAc] = ACTIONS(761), - [anon_sym_BSLASHacp] = ACTIONS(761), - [anon_sym_BSLASHglsentrylong] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(761), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryshort] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(761), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(761), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(761), - [anon_sym_BSLASHnewtheorem] = ACTIONS(763), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(763), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(769), - [anon_sym_BSLASHcolor] = ACTIONS(771), - [anon_sym_BSLASHcolorbox] = ACTIONS(771), - [anon_sym_BSLASHtextcolor] = ACTIONS(771), - [anon_sym_BSLASHpagecolor] = ACTIONS(771), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(773), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [222] = { + [sym_block_comment] = STATE(1134), + [sym_operator] = STATE(1134), + [sym__command] = STATE(1134), + [sym_generic_command] = STATE(1134), + [sym_title_declaration] = STATE(1134), + [sym_author_declaration] = STATE(1134), + [sym_package_include] = STATE(1134), + [sym_class_include] = STATE(1134), + [sym_latex_include] = STATE(1134), + [sym_biblatex_include] = STATE(1134), + [sym_bibtex_include] = STATE(1134), + [sym_graphics_include] = STATE(1134), + [sym_svg_include] = STATE(1134), + [sym_inkscape_include] = STATE(1134), + [sym_verbatim_include] = STATE(1134), + [sym_import_include] = STATE(1134), + [sym_caption] = STATE(1134), + [sym_citation] = STATE(1134), + [sym_label_definition] = STATE(1134), + [sym_label_reference] = STATE(1134), + [sym_label_reference_range] = STATE(1134), + [sym_label_number] = STATE(1134), + [sym_new_command_definition] = STATE(1134), + [sym_old_command_definition] = STATE(1134), + [sym_let_command_definition] = STATE(1134), + [sym_paired_delimiter_definition] = STATE(1134), + [sym_environment_definition] = STATE(1134), + [sym_glossary_entry_definition] = STATE(1134), + [sym_glossary_entry_reference] = STATE(1134), + [sym_acronym_definition] = STATE(1134), + [sym_acronym_reference] = STATE(1134), + [sym_theorem_definition] = STATE(1134), + [sym_color_definition] = STATE(1134), + [sym_color_set_definition] = STATE(1134), + [sym_color_reference] = STATE(1134), + [sym_tikz_library_import] = STATE(1134), + [aux_sym_text_repeat1] = STATE(228), + [sym_command_name] = ACTIONS(227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_BSLASHpart] = ACTIONS(2999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddpart] = ACTIONS(2999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHchapter] = ACTIONS(2999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddchap] = ACTIONS(2999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsection] = ACTIONS(2999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddsec] = ACTIONS(2999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHparagraph] = ACTIONS(2999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHitem] = ACTIONS(2999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(267), + [sym_placeholder] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHend] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(283), + [anon_sym_BSLASHauthor] = ACTIONS(285), + [anon_sym_BSLASHusepackage] = ACTIONS(287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(289), + [anon_sym_BSLASHinclude] = ACTIONS(291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(291), + [anon_sym_BSLASHinput] = ACTIONS(291), + [anon_sym_BSLASHsubfile] = ACTIONS(291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(293), + [anon_sym_BSLASHbibliography] = ACTIONS(295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(297), + [anon_sym_BSLASHincludesvg] = ACTIONS(299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(303), + [anon_sym_BSLASHimport] = ACTIONS(305), + [anon_sym_BSLASHsubimport] = ACTIONS(305), + [anon_sym_BSLASHinputfrom] = ACTIONS(305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(305), + [anon_sym_BSLASHincludefrom] = ACTIONS(305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(305), + [anon_sym_BSLASHcaption] = ACTIONS(307), + [anon_sym_BSLASHcite] = ACTIONS(309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(311), + [anon_sym_BSLASHCite] = ACTIONS(309), + [anon_sym_BSLASHnocite] = ACTIONS(309), + [anon_sym_BSLASHcitet] = ACTIONS(309), + [anon_sym_BSLASHcitep] = ACTIONS(309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteauthor] = ACTIONS(309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitetitle] = ACTIONS(309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteyear] = ACTIONS(309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(311), + [anon_sym_BSLASHcitedate] = ACTIONS(309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(311), + [anon_sym_BSLASHciteurl] = ACTIONS(309), + [anon_sym_BSLASHfullcite] = ACTIONS(309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(309), + [anon_sym_BSLASHcitealt] = ACTIONS(309), + [anon_sym_BSLASHcitealp] = ACTIONS(309), + [anon_sym_BSLASHcitetext] = ACTIONS(309), + [anon_sym_BSLASHparencite] = ACTIONS(309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(311), + [anon_sym_BSLASHParencite] = ACTIONS(309), + [anon_sym_BSLASHfootcite] = ACTIONS(309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(309), + [anon_sym_BSLASHtextcite] = ACTIONS(309), + [anon_sym_BSLASHTextcite] = ACTIONS(309), + [anon_sym_BSLASHsmartcite] = ACTIONS(309), + [anon_sym_BSLASHSmartcite] = ACTIONS(309), + [anon_sym_BSLASHsupercite] = ACTIONS(309), + [anon_sym_BSLASHautocite] = ACTIONS(309), + [anon_sym_BSLASHAutocite] = ACTIONS(309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(311), + [anon_sym_BSLASHvolcite] = ACTIONS(309), + [anon_sym_BSLASHVolcite] = ACTIONS(309), + [anon_sym_BSLASHpvolcite] = ACTIONS(309), + [anon_sym_BSLASHPvolcite] = ACTIONS(309), + [anon_sym_BSLASHfvolcite] = ACTIONS(309), + [anon_sym_BSLASHftvolcite] = ACTIONS(309), + [anon_sym_BSLASHsvolcite] = ACTIONS(309), + [anon_sym_BSLASHSvolcite] = ACTIONS(309), + [anon_sym_BSLASHtvolcite] = ACTIONS(309), + [anon_sym_BSLASHTvolcite] = ACTIONS(309), + [anon_sym_BSLASHavolcite] = ACTIONS(309), + [anon_sym_BSLASHAvolcite] = ACTIONS(309), + [anon_sym_BSLASHnotecite] = ACTIONS(309), + [anon_sym_BSLASHNotecite] = ACTIONS(309), + [anon_sym_BSLASHpnotecite] = ACTIONS(309), + [anon_sym_BSLASHPnotecite] = ACTIONS(309), + [anon_sym_BSLASHfnotecite] = ACTIONS(309), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [anon_sym_BSLASHref] = ACTIONS(315), + [anon_sym_BSLASHeqref] = ACTIONS(315), + [anon_sym_BSLASHvref] = ACTIONS(315), + [anon_sym_BSLASHVref] = ACTIONS(315), + [anon_sym_BSLASHautoref] = ACTIONS(315), + [anon_sym_BSLASHpageref] = ACTIONS(315), + [anon_sym_BSLASHcref] = ACTIONS(315), + [anon_sym_BSLASHCref] = ACTIONS(315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(317), + [anon_sym_BSLASHnamecref] = ACTIONS(315), + [anon_sym_BSLASHnameCref] = ACTIONS(315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(315), + [anon_sym_BSLASHlabelcref] = ACTIONS(315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(315), + [anon_sym_BSLASHcrefrange] = ACTIONS(319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHCrefrange] = ACTIONS(319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(321), + [anon_sym_BSLASHnewlabel] = ACTIONS(323), + [anon_sym_BSLASHnewcommand] = ACTIONS(325), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(325), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(325), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(325), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(327), + [anon_sym_BSLASHdef] = ACTIONS(329), + [anon_sym_BSLASHlet] = ACTIONS(331), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(333), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(333), + [anon_sym_BSLASHnewenvironment] = ACTIONS(335), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(337), + [anon_sym_BSLASHgls] = ACTIONS(339), + [anon_sym_BSLASHGls] = ACTIONS(339), + [anon_sym_BSLASHGLS] = ACTIONS(339), + [anon_sym_BSLASHglspl] = ACTIONS(339), + [anon_sym_BSLASHGlspl] = ACTIONS(339), + [anon_sym_BSLASHGLSpl] = ACTIONS(339), + [anon_sym_BSLASHglsdisp] = ACTIONS(339), + [anon_sym_BSLASHglslink] = ACTIONS(339), + [anon_sym_BSLASHglstext] = ACTIONS(339), + [anon_sym_BSLASHGlstext] = ACTIONS(339), + [anon_sym_BSLASHGLStext] = ACTIONS(339), + [anon_sym_BSLASHglsfirst] = ACTIONS(339), + [anon_sym_BSLASHGlsfirst] = ACTIONS(339), + [anon_sym_BSLASHGLSfirst] = ACTIONS(339), + [anon_sym_BSLASHglsplural] = ACTIONS(339), + [anon_sym_BSLASHGlsplural] = ACTIONS(339), + [anon_sym_BSLASHGLSplural] = ACTIONS(339), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(339), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(339), + [anon_sym_BSLASHglsname] = ACTIONS(339), + [anon_sym_BSLASHGlsname] = ACTIONS(339), + [anon_sym_BSLASHGLSname] = ACTIONS(339), + [anon_sym_BSLASHglssymbol] = ACTIONS(339), + [anon_sym_BSLASHGlssymbol] = ACTIONS(339), + [anon_sym_BSLASHglsdesc] = ACTIONS(339), + [anon_sym_BSLASHGlsdesc] = ACTIONS(339), + [anon_sym_BSLASHGLSdesc] = ACTIONS(339), + [anon_sym_BSLASHglsuseri] = ACTIONS(339), + [anon_sym_BSLASHGlsuseri] = ACTIONS(339), + [anon_sym_BSLASHGLSuseri] = ACTIONS(339), + [anon_sym_BSLASHglsuserii] = ACTIONS(339), + [anon_sym_BSLASHGlsuserii] = ACTIONS(339), + [anon_sym_BSLASHGLSuserii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(339), + [anon_sym_BSLASHglsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(339), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(339), + [anon_sym_BSLASHglsuserv] = ACTIONS(339), + [anon_sym_BSLASHGlsuserv] = ACTIONS(339), + [anon_sym_BSLASHGLSuserv] = ACTIONS(339), + [anon_sym_BSLASHglsuservi] = ACTIONS(339), + [anon_sym_BSLASHGlsuservi] = ACTIONS(339), + [anon_sym_BSLASHGLSuservi] = ACTIONS(339), + [anon_sym_BSLASHnewacronym] = ACTIONS(341), + [anon_sym_BSLASHacrshort] = ACTIONS(343), + [anon_sym_BSLASHAcrshort] = ACTIONS(343), + [anon_sym_BSLASHACRshort] = ACTIONS(343), + [anon_sym_BSLASHacrshortpl] = ACTIONS(343), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(343), + [anon_sym_BSLASHACRshortpl] = ACTIONS(343), + [anon_sym_BSLASHacrlong] = ACTIONS(343), + [anon_sym_BSLASHAcrlong] = ACTIONS(343), + [anon_sym_BSLASHACRlong] = ACTIONS(343), + [anon_sym_BSLASHacrlongpl] = ACTIONS(343), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(343), + [anon_sym_BSLASHACRlongpl] = ACTIONS(343), + [anon_sym_BSLASHacrfull] = ACTIONS(343), + [anon_sym_BSLASHAcrfull] = ACTIONS(343), + [anon_sym_BSLASHACRfull] = ACTIONS(343), + [anon_sym_BSLASHacrfullpl] = ACTIONS(343), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(343), + [anon_sym_BSLASHACRfullpl] = ACTIONS(343), + [anon_sym_BSLASHacs] = ACTIONS(343), + [anon_sym_BSLASHAcs] = ACTIONS(343), + [anon_sym_BSLASHacsp] = ACTIONS(343), + [anon_sym_BSLASHAcsp] = ACTIONS(343), + [anon_sym_BSLASHacl] = ACTIONS(343), + [anon_sym_BSLASHAcl] = ACTIONS(343), + [anon_sym_BSLASHaclp] = ACTIONS(343), + [anon_sym_BSLASHAclp] = ACTIONS(343), + [anon_sym_BSLASHacf] = ACTIONS(343), + [anon_sym_BSLASHAcf] = ACTIONS(343), + [anon_sym_BSLASHacfp] = ACTIONS(343), + [anon_sym_BSLASHAcfp] = ACTIONS(343), + [anon_sym_BSLASHac] = ACTIONS(343), + [anon_sym_BSLASHAc] = ACTIONS(343), + [anon_sym_BSLASHacp] = ACTIONS(343), + [anon_sym_BSLASHglsentrylong] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(343), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryshort] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(343), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(343), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(343), + [anon_sym_BSLASHnewtheorem] = ACTIONS(345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(351), + [anon_sym_BSLASHcolor] = ACTIONS(353), + [anon_sym_BSLASHcolorbox] = ACTIONS(353), + [anon_sym_BSLASHtextcolor] = ACTIONS(353), + [anon_sym_BSLASHpagecolor] = ACTIONS(353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(355), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(355), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), }, - [214] = { - [sym_block_comment] = STATE(1103), - [sym_operator] = STATE(1103), - [sym__command] = STATE(1103), - [sym_generic_command] = STATE(1103), - [sym_package_include] = STATE(1103), - [sym_class_include] = STATE(1103), - [sym_latex_include] = STATE(1103), - [sym_biblatex_include] = STATE(1103), - [sym_bibtex_include] = STATE(1103), - [sym_graphics_include] = STATE(1103), - [sym_svg_include] = STATE(1103), - [sym_inkscape_include] = STATE(1103), - [sym_verbatim_include] = STATE(1103), - [sym_import_include] = STATE(1103), - [sym_caption] = STATE(1103), - [sym_citation] = STATE(1103), - [sym_label_definition] = STATE(1103), - [sym_label_reference] = STATE(1103), - [sym_label_reference_range] = STATE(1103), - [sym_label_number] = STATE(1103), - [sym_new_command_definition] = STATE(1103), - [sym_old_command_definition] = STATE(1103), - [sym_let_command_definition] = STATE(1103), - [sym_paired_delimiter_definition] = STATE(1103), - [sym_environment_definition] = STATE(1103), - [sym_glossary_entry_definition] = STATE(1103), - [sym_glossary_entry_reference] = STATE(1103), - [sym_acronym_definition] = STATE(1103), - [sym_acronym_reference] = STATE(1103), - [sym_theorem_definition] = STATE(1103), - [sym_color_definition] = STATE(1103), - [sym_color_set_definition] = STATE(1103), - [sym_color_reference] = STATE(1103), - [sym_tikz_library_import] = STATE(1103), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_BSLASHpart] = ACTIONS(2757), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddpart] = ACTIONS(2757), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHchapter] = ACTIONS(2757), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddchap] = ACTIONS(2757), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsection] = ACTIONS(2757), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddsec] = ACTIONS(2757), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHparagraph] = ACTIONS(2757), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2757), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHitem] = ACTIONS(2757), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_CARET] = ACTIONS(199), - [anon_sym__] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHend] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(211), - [anon_sym_BSLASHRequirePackage] = ACTIONS(211), - [anon_sym_BSLASHdocumentclass] = ACTIONS(213), - [anon_sym_BSLASHinclude] = ACTIONS(215), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(215), - [anon_sym_BSLASHinput] = ACTIONS(215), - [anon_sym_BSLASHsubfile] = ACTIONS(215), - [anon_sym_BSLASHaddbibresource] = ACTIONS(217), - [anon_sym_BSLASHbibliography] = ACTIONS(219), - [anon_sym_BSLASHincludegraphics] = ACTIONS(221), - [anon_sym_BSLASHincludesvg] = ACTIONS(223), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(227), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(227), - [anon_sym_BSLASHimport] = ACTIONS(229), - [anon_sym_BSLASHsubimport] = ACTIONS(229), - [anon_sym_BSLASHinputfrom] = ACTIONS(229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(229), - [anon_sym_BSLASHincludefrom] = ACTIONS(229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(229), - [anon_sym_BSLASHcaption] = ACTIONS(231), - [anon_sym_BSLASHcite] = ACTIONS(233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(235), - [anon_sym_BSLASHCite] = ACTIONS(233), - [anon_sym_BSLASHnocite] = ACTIONS(233), - [anon_sym_BSLASHcitet] = ACTIONS(233), - [anon_sym_BSLASHcitep] = ACTIONS(233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteauthor] = ACTIONS(233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitetitle] = ACTIONS(233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteyear] = ACTIONS(233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(235), - [anon_sym_BSLASHcitedate] = ACTIONS(233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(235), - [anon_sym_BSLASHciteurl] = ACTIONS(233), - [anon_sym_BSLASHfullcite] = ACTIONS(233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(233), - [anon_sym_BSLASHcitealt] = ACTIONS(233), - [anon_sym_BSLASHcitealp] = ACTIONS(233), - [anon_sym_BSLASHcitetext] = ACTIONS(233), - [anon_sym_BSLASHparencite] = ACTIONS(233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(235), - [anon_sym_BSLASHParencite] = ACTIONS(233), - [anon_sym_BSLASHfootcite] = ACTIONS(233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(233), - [anon_sym_BSLASHtextcite] = ACTIONS(233), - [anon_sym_BSLASHTextcite] = ACTIONS(233), - [anon_sym_BSLASHsmartcite] = ACTIONS(233), - [anon_sym_BSLASHSmartcite] = ACTIONS(233), - [anon_sym_BSLASHsupercite] = ACTIONS(233), - [anon_sym_BSLASHautocite] = ACTIONS(233), - [anon_sym_BSLASHAutocite] = ACTIONS(233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(235), - [anon_sym_BSLASHvolcite] = ACTIONS(233), - [anon_sym_BSLASHVolcite] = ACTIONS(233), - [anon_sym_BSLASHpvolcite] = ACTIONS(233), - [anon_sym_BSLASHPvolcite] = ACTIONS(233), - [anon_sym_BSLASHfvolcite] = ACTIONS(233), - [anon_sym_BSLASHftvolcite] = ACTIONS(233), - [anon_sym_BSLASHsvolcite] = ACTIONS(233), - [anon_sym_BSLASHSvolcite] = ACTIONS(233), - [anon_sym_BSLASHtvolcite] = ACTIONS(233), - [anon_sym_BSLASHTvolcite] = ACTIONS(233), - [anon_sym_BSLASHavolcite] = ACTIONS(233), - [anon_sym_BSLASHAvolcite] = ACTIONS(233), - [anon_sym_BSLASHnotecite] = ACTIONS(233), - [anon_sym_BSLASHNotecite] = ACTIONS(233), - [anon_sym_BSLASHpnotecite] = ACTIONS(233), - [anon_sym_BSLASHPnotecite] = ACTIONS(233), - [anon_sym_BSLASHfnotecite] = ACTIONS(233), - [anon_sym_BSLASHlabel] = ACTIONS(237), - [anon_sym_BSLASHref] = ACTIONS(239), - [anon_sym_BSLASHeqref] = ACTIONS(239), - [anon_sym_BSLASHvref] = ACTIONS(239), - [anon_sym_BSLASHVref] = ACTIONS(239), - [anon_sym_BSLASHautoref] = ACTIONS(239), - [anon_sym_BSLASHpageref] = ACTIONS(239), - [anon_sym_BSLASHcref] = ACTIONS(239), - [anon_sym_BSLASHCref] = ACTIONS(239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(241), - [anon_sym_BSLASHnamecref] = ACTIONS(239), - [anon_sym_BSLASHnameCref] = ACTIONS(239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(239), - [anon_sym_BSLASHlabelcref] = ACTIONS(239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(239), - [anon_sym_BSLASHcrefrange] = ACTIONS(243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHCrefrange] = ACTIONS(243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(245), - [anon_sym_BSLASHnewlabel] = ACTIONS(247), - [anon_sym_BSLASHnewcommand] = ACTIONS(249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), - [anon_sym_BSLASHdef] = ACTIONS(253), - [anon_sym_BSLASHlet] = ACTIONS(255), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(261), - [anon_sym_BSLASHgls] = ACTIONS(263), - [anon_sym_BSLASHGls] = ACTIONS(263), - [anon_sym_BSLASHGLS] = ACTIONS(263), - [anon_sym_BSLASHglspl] = ACTIONS(263), - [anon_sym_BSLASHGlspl] = ACTIONS(263), - [anon_sym_BSLASHGLSpl] = ACTIONS(263), - [anon_sym_BSLASHglsdisp] = ACTIONS(263), - [anon_sym_BSLASHglslink] = ACTIONS(263), - [anon_sym_BSLASHglstext] = ACTIONS(263), - [anon_sym_BSLASHGlstext] = ACTIONS(263), - [anon_sym_BSLASHGLStext] = ACTIONS(263), - [anon_sym_BSLASHglsfirst] = ACTIONS(263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(263), - [anon_sym_BSLASHglsplural] = ACTIONS(263), - [anon_sym_BSLASHGlsplural] = ACTIONS(263), - [anon_sym_BSLASHGLSplural] = ACTIONS(263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(263), - [anon_sym_BSLASHglsname] = ACTIONS(263), - [anon_sym_BSLASHGlsname] = ACTIONS(263), - [anon_sym_BSLASHGLSname] = ACTIONS(263), - [anon_sym_BSLASHglssymbol] = ACTIONS(263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(263), - [anon_sym_BSLASHglsdesc] = ACTIONS(263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(263), - [anon_sym_BSLASHglsuseri] = ACTIONS(263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(263), - [anon_sym_BSLASHglsuserii] = ACTIONS(263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(263), - [anon_sym_BSLASHglsuserv] = ACTIONS(263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(263), - [anon_sym_BSLASHglsuservi] = ACTIONS(263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(263), - [anon_sym_BSLASHnewacronym] = ACTIONS(265), - [anon_sym_BSLASHacrshort] = ACTIONS(267), - [anon_sym_BSLASHAcrshort] = ACTIONS(267), - [anon_sym_BSLASHACRshort] = ACTIONS(267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(267), - [anon_sym_BSLASHacrlong] = ACTIONS(267), - [anon_sym_BSLASHAcrlong] = ACTIONS(267), - [anon_sym_BSLASHACRlong] = ACTIONS(267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(267), - [anon_sym_BSLASHacrfull] = ACTIONS(267), - [anon_sym_BSLASHAcrfull] = ACTIONS(267), - [anon_sym_BSLASHACRfull] = ACTIONS(267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(267), - [anon_sym_BSLASHacs] = ACTIONS(267), - [anon_sym_BSLASHAcs] = ACTIONS(267), - [anon_sym_BSLASHacsp] = ACTIONS(267), - [anon_sym_BSLASHAcsp] = ACTIONS(267), - [anon_sym_BSLASHacl] = ACTIONS(267), - [anon_sym_BSLASHAcl] = ACTIONS(267), - [anon_sym_BSLASHaclp] = ACTIONS(267), - [anon_sym_BSLASHAclp] = ACTIONS(267), - [anon_sym_BSLASHacf] = ACTIONS(267), - [anon_sym_BSLASHAcf] = ACTIONS(267), - [anon_sym_BSLASHacfp] = ACTIONS(267), - [anon_sym_BSLASHAcfp] = ACTIONS(267), - [anon_sym_BSLASHac] = ACTIONS(267), - [anon_sym_BSLASHAc] = ACTIONS(267), - [anon_sym_BSLASHacp] = ACTIONS(267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), - [anon_sym_BSLASHcolor] = ACTIONS(277), - [anon_sym_BSLASHcolorbox] = ACTIONS(277), - [anon_sym_BSLASHtextcolor] = ACTIONS(277), - [anon_sym_BSLASHpagecolor] = ACTIONS(277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(279), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [223] = { + [sym_block_comment] = STATE(905), + [sym_operator] = STATE(905), + [sym__command] = STATE(905), + [sym_generic_command] = STATE(905), + [sym_title_declaration] = STATE(905), + [sym_author_declaration] = STATE(905), + [sym_package_include] = STATE(905), + [sym_class_include] = STATE(905), + [sym_latex_include] = STATE(905), + [sym_biblatex_include] = STATE(905), + [sym_bibtex_include] = STATE(905), + [sym_graphics_include] = STATE(905), + [sym_svg_include] = STATE(905), + [sym_inkscape_include] = STATE(905), + [sym_verbatim_include] = STATE(905), + [sym_import_include] = STATE(905), + [sym_caption] = STATE(905), + [sym_citation] = STATE(905), + [sym_label_definition] = STATE(905), + [sym_label_reference] = STATE(905), + [sym_label_reference_range] = STATE(905), + [sym_label_number] = STATE(905), + [sym_new_command_definition] = STATE(905), + [sym_old_command_definition] = STATE(905), + [sym_let_command_definition] = STATE(905), + [sym_paired_delimiter_definition] = STATE(905), + [sym_environment_definition] = STATE(905), + [sym_glossary_entry_definition] = STATE(905), + [sym_glossary_entry_reference] = STATE(905), + [sym_acronym_definition] = STATE(905), + [sym_acronym_reference] = STATE(905), + [sym_theorem_definition] = STATE(905), + [sym_color_definition] = STATE(905), + [sym_color_set_definition] = STATE(905), + [sym_color_reference] = STATE(905), + [sym_tikz_library_import] = STATE(905), + [aux_sym_text_repeat1] = STATE(223), + [sym_command_name] = ACTIONS(3001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_BSLASHpart] = ACTIONS(2875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddpart] = ACTIONS(2875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHchapter] = ACTIONS(2875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddchap] = ACTIONS(2875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsection] = ACTIONS(2875), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddsec] = ACTIONS(2875), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHparagraph] = ACTIONS(2875), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2875), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHitem] = ACTIONS(2875), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(3007), + [sym_placeholder] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym__] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(3016), + [anon_sym_BSLASHauthor] = ACTIONS(3019), + [anon_sym_BSLASHusepackage] = ACTIONS(3022), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3022), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3025), + [anon_sym_BSLASHinclude] = ACTIONS(3028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3028), + [anon_sym_BSLASHinput] = ACTIONS(3028), + [anon_sym_BSLASHsubfile] = ACTIONS(3028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3031), + [anon_sym_BSLASHbibliography] = ACTIONS(3034), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3037), + [anon_sym_BSLASHincludesvg] = ACTIONS(3040), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3046), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3046), + [anon_sym_BSLASHimport] = ACTIONS(3049), + [anon_sym_BSLASHsubimport] = ACTIONS(3049), + [anon_sym_BSLASHinputfrom] = ACTIONS(3049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3049), + [anon_sym_BSLASHincludefrom] = ACTIONS(3049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3049), + [anon_sym_BSLASHcaption] = ACTIONS(3052), + [anon_sym_BSLASHcite] = ACTIONS(3055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3058), + [anon_sym_BSLASHCite] = ACTIONS(3055), + [anon_sym_BSLASHnocite] = ACTIONS(3055), + [anon_sym_BSLASHcitet] = ACTIONS(3055), + [anon_sym_BSLASHcitep] = ACTIONS(3055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3058), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3058), + [anon_sym_BSLASHciteauthor] = ACTIONS(3055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3058), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3058), + [anon_sym_BSLASHcitetitle] = ACTIONS(3055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3058), + [anon_sym_BSLASHciteyear] = ACTIONS(3055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3058), + [anon_sym_BSLASHcitedate] = ACTIONS(3055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3058), + [anon_sym_BSLASHciteurl] = ACTIONS(3055), + [anon_sym_BSLASHfullcite] = ACTIONS(3055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3055), + [anon_sym_BSLASHcitealt] = ACTIONS(3055), + [anon_sym_BSLASHcitealp] = ACTIONS(3055), + [anon_sym_BSLASHcitetext] = ACTIONS(3055), + [anon_sym_BSLASHparencite] = ACTIONS(3055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3058), + [anon_sym_BSLASHParencite] = ACTIONS(3055), + [anon_sym_BSLASHfootcite] = ACTIONS(3055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3055), + [anon_sym_BSLASHtextcite] = ACTIONS(3055), + [anon_sym_BSLASHTextcite] = ACTIONS(3055), + [anon_sym_BSLASHsmartcite] = ACTIONS(3055), + [anon_sym_BSLASHSmartcite] = ACTIONS(3055), + [anon_sym_BSLASHsupercite] = ACTIONS(3055), + [anon_sym_BSLASHautocite] = ACTIONS(3055), + [anon_sym_BSLASHAutocite] = ACTIONS(3055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3058), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3058), + [anon_sym_BSLASHvolcite] = ACTIONS(3055), + [anon_sym_BSLASHVolcite] = ACTIONS(3055), + [anon_sym_BSLASHpvolcite] = ACTIONS(3055), + [anon_sym_BSLASHPvolcite] = ACTIONS(3055), + [anon_sym_BSLASHfvolcite] = ACTIONS(3055), + [anon_sym_BSLASHftvolcite] = ACTIONS(3055), + [anon_sym_BSLASHsvolcite] = ACTIONS(3055), + [anon_sym_BSLASHSvolcite] = ACTIONS(3055), + [anon_sym_BSLASHtvolcite] = ACTIONS(3055), + [anon_sym_BSLASHTvolcite] = ACTIONS(3055), + [anon_sym_BSLASHavolcite] = ACTIONS(3055), + [anon_sym_BSLASHAvolcite] = ACTIONS(3055), + [anon_sym_BSLASHnotecite] = ACTIONS(3055), + [anon_sym_BSLASHNotecite] = ACTIONS(3055), + [anon_sym_BSLASHpnotecite] = ACTIONS(3055), + [anon_sym_BSLASHPnotecite] = ACTIONS(3055), + [anon_sym_BSLASHfnotecite] = ACTIONS(3055), + [anon_sym_BSLASHlabel] = ACTIONS(3061), + [anon_sym_BSLASHref] = ACTIONS(3064), + [anon_sym_BSLASHeqref] = ACTIONS(3064), + [anon_sym_BSLASHvref] = ACTIONS(3064), + [anon_sym_BSLASHVref] = ACTIONS(3064), + [anon_sym_BSLASHautoref] = ACTIONS(3064), + [anon_sym_BSLASHpageref] = ACTIONS(3064), + [anon_sym_BSLASHcref] = ACTIONS(3064), + [anon_sym_BSLASHCref] = ACTIONS(3064), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3067), + [anon_sym_BSLASHnamecref] = ACTIONS(3064), + [anon_sym_BSLASHnameCref] = ACTIONS(3064), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3064), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3064), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3064), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3064), + [anon_sym_BSLASHlabelcref] = ACTIONS(3064), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3064), + [anon_sym_BSLASHcrefrange] = ACTIONS(3070), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3073), + [anon_sym_BSLASHCrefrange] = ACTIONS(3070), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3073), + [anon_sym_BSLASHnewlabel] = ACTIONS(3076), + [anon_sym_BSLASHnewcommand] = ACTIONS(3079), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3082), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3079), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3082), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3079), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3082), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3079), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3082), + [anon_sym_BSLASHdef] = ACTIONS(3085), + [anon_sym_BSLASHlet] = ACTIONS(3088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3091), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3091), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3094), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3097), + [anon_sym_BSLASHgls] = ACTIONS(3100), + [anon_sym_BSLASHGls] = ACTIONS(3100), + [anon_sym_BSLASHGLS] = ACTIONS(3100), + [anon_sym_BSLASHglspl] = ACTIONS(3100), + [anon_sym_BSLASHGlspl] = ACTIONS(3100), + [anon_sym_BSLASHGLSpl] = ACTIONS(3100), + [anon_sym_BSLASHglsdisp] = ACTIONS(3100), + [anon_sym_BSLASHglslink] = ACTIONS(3100), + [anon_sym_BSLASHglstext] = ACTIONS(3100), + [anon_sym_BSLASHGlstext] = ACTIONS(3100), + [anon_sym_BSLASHGLStext] = ACTIONS(3100), + [anon_sym_BSLASHglsfirst] = ACTIONS(3100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3100), + [anon_sym_BSLASHglsplural] = ACTIONS(3100), + [anon_sym_BSLASHGlsplural] = ACTIONS(3100), + [anon_sym_BSLASHGLSplural] = ACTIONS(3100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3100), + [anon_sym_BSLASHglsname] = ACTIONS(3100), + [anon_sym_BSLASHGlsname] = ACTIONS(3100), + [anon_sym_BSLASHGLSname] = ACTIONS(3100), + [anon_sym_BSLASHglssymbol] = ACTIONS(3100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3100), + [anon_sym_BSLASHglsdesc] = ACTIONS(3100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3100), + [anon_sym_BSLASHglsuseri] = ACTIONS(3100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3100), + [anon_sym_BSLASHglsuserii] = ACTIONS(3100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3100), + [anon_sym_BSLASHglsuserv] = ACTIONS(3100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3100), + [anon_sym_BSLASHglsuservi] = ACTIONS(3100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3100), + [anon_sym_BSLASHnewacronym] = ACTIONS(3103), + [anon_sym_BSLASHacrshort] = ACTIONS(3106), + [anon_sym_BSLASHAcrshort] = ACTIONS(3106), + [anon_sym_BSLASHACRshort] = ACTIONS(3106), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3106), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3106), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3106), + [anon_sym_BSLASHacrlong] = ACTIONS(3106), + [anon_sym_BSLASHAcrlong] = ACTIONS(3106), + [anon_sym_BSLASHACRlong] = ACTIONS(3106), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3106), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3106), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3106), + [anon_sym_BSLASHacrfull] = ACTIONS(3106), + [anon_sym_BSLASHAcrfull] = ACTIONS(3106), + [anon_sym_BSLASHACRfull] = ACTIONS(3106), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3106), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3106), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3106), + [anon_sym_BSLASHacs] = ACTIONS(3106), + [anon_sym_BSLASHAcs] = ACTIONS(3106), + [anon_sym_BSLASHacsp] = ACTIONS(3106), + [anon_sym_BSLASHAcsp] = ACTIONS(3106), + [anon_sym_BSLASHacl] = ACTIONS(3106), + [anon_sym_BSLASHAcl] = ACTIONS(3106), + [anon_sym_BSLASHaclp] = ACTIONS(3106), + [anon_sym_BSLASHAclp] = ACTIONS(3106), + [anon_sym_BSLASHacf] = ACTIONS(3106), + [anon_sym_BSLASHAcf] = ACTIONS(3106), + [anon_sym_BSLASHacfp] = ACTIONS(3106), + [anon_sym_BSLASHAcfp] = ACTIONS(3106), + [anon_sym_BSLASHac] = ACTIONS(3106), + [anon_sym_BSLASHAc] = ACTIONS(3106), + [anon_sym_BSLASHacp] = ACTIONS(3106), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3106), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3106), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3106), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3106), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3106), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3106), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3106), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3106), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3106), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3106), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3112), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3112), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3118), + [anon_sym_BSLASHcolor] = ACTIONS(3121), + [anon_sym_BSLASHcolorbox] = ACTIONS(3121), + [anon_sym_BSLASHtextcolor] = ACTIONS(3121), + [anon_sym_BSLASHpagecolor] = ACTIONS(3121), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3124), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), }, - [215] = { - [sym_block_comment] = STATE(986), - [sym_operator] = STATE(986), - [sym__command] = STATE(986), - [sym_generic_command] = STATE(986), - [sym_package_include] = STATE(986), - [sym_class_include] = STATE(986), - [sym_latex_include] = STATE(986), - [sym_biblatex_include] = STATE(986), - [sym_bibtex_include] = STATE(986), - [sym_graphics_include] = STATE(986), - [sym_svg_include] = STATE(986), - [sym_inkscape_include] = STATE(986), - [sym_verbatim_include] = STATE(986), - [sym_import_include] = STATE(986), - [sym_caption] = STATE(986), - [sym_citation] = STATE(986), - [sym_label_definition] = STATE(986), - [sym_label_reference] = STATE(986), - [sym_label_reference_range] = STATE(986), - [sym_label_number] = STATE(986), - [sym_new_command_definition] = STATE(986), - [sym_old_command_definition] = STATE(986), - [sym_let_command_definition] = STATE(986), - [sym_paired_delimiter_definition] = STATE(986), - [sym_environment_definition] = STATE(986), - [sym_glossary_entry_definition] = STATE(986), - [sym_glossary_entry_reference] = STATE(986), - [sym_acronym_definition] = STATE(986), - [sym_acronym_reference] = STATE(986), - [sym_theorem_definition] = STATE(986), - [sym_color_definition] = STATE(986), - [sym_color_set_definition] = STATE(986), - [sym_color_reference] = STATE(986), - [sym_tikz_library_import] = STATE(986), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(567), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_BSLASHpart] = ACTIONS(2757), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddpart] = ACTIONS(2757), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2755), - [anon_sym_BSLASHchapter] = ACTIONS(2757), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddchap] = ACTIONS(2757), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsection] = ACTIONS(2757), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHaddsec] = ACTIONS(2757), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2757), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2755), - [anon_sym_BSLASHparagraph] = ACTIONS(2757), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2757), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2755), - [anon_sym_BSLASHitem] = ACTIONS(2757), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(575), - [sym_placeholder] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym__] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(591), - [anon_sym_BSLASHRequirePackage] = ACTIONS(591), - [anon_sym_BSLASHdocumentclass] = ACTIONS(593), - [anon_sym_BSLASHinclude] = ACTIONS(595), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(595), - [anon_sym_BSLASHinput] = ACTIONS(595), - [anon_sym_BSLASHsubfile] = ACTIONS(595), - [anon_sym_BSLASHaddbibresource] = ACTIONS(597), - [anon_sym_BSLASHbibliography] = ACTIONS(599), - [anon_sym_BSLASHincludegraphics] = ACTIONS(601), - [anon_sym_BSLASHincludesvg] = ACTIONS(603), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(607), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(607), - [anon_sym_BSLASHimport] = ACTIONS(609), - [anon_sym_BSLASHsubimport] = ACTIONS(609), - [anon_sym_BSLASHinputfrom] = ACTIONS(609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(609), - [anon_sym_BSLASHincludefrom] = ACTIONS(609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(609), - [anon_sym_BSLASHcaption] = ACTIONS(611), - [anon_sym_BSLASHcite] = ACTIONS(613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(615), - [anon_sym_BSLASHCite] = ACTIONS(613), - [anon_sym_BSLASHnocite] = ACTIONS(613), - [anon_sym_BSLASHcitet] = ACTIONS(613), - [anon_sym_BSLASHcitep] = ACTIONS(613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteauthor] = ACTIONS(613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitetitle] = ACTIONS(613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteyear] = ACTIONS(613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(615), - [anon_sym_BSLASHcitedate] = ACTIONS(613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(615), - [anon_sym_BSLASHciteurl] = ACTIONS(613), - [anon_sym_BSLASHfullcite] = ACTIONS(613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(613), - [anon_sym_BSLASHcitealt] = ACTIONS(613), - [anon_sym_BSLASHcitealp] = ACTIONS(613), - [anon_sym_BSLASHcitetext] = ACTIONS(613), - [anon_sym_BSLASHparencite] = ACTIONS(613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(615), - [anon_sym_BSLASHParencite] = ACTIONS(613), - [anon_sym_BSLASHfootcite] = ACTIONS(613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(613), - [anon_sym_BSLASHtextcite] = ACTIONS(613), - [anon_sym_BSLASHTextcite] = ACTIONS(613), - [anon_sym_BSLASHsmartcite] = ACTIONS(613), - [anon_sym_BSLASHSmartcite] = ACTIONS(613), - [anon_sym_BSLASHsupercite] = ACTIONS(613), - [anon_sym_BSLASHautocite] = ACTIONS(613), - [anon_sym_BSLASHAutocite] = ACTIONS(613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(615), - [anon_sym_BSLASHvolcite] = ACTIONS(613), - [anon_sym_BSLASHVolcite] = ACTIONS(613), - [anon_sym_BSLASHpvolcite] = ACTIONS(613), - [anon_sym_BSLASHPvolcite] = ACTIONS(613), - [anon_sym_BSLASHfvolcite] = ACTIONS(613), - [anon_sym_BSLASHftvolcite] = ACTIONS(613), - [anon_sym_BSLASHsvolcite] = ACTIONS(613), - [anon_sym_BSLASHSvolcite] = ACTIONS(613), - [anon_sym_BSLASHtvolcite] = ACTIONS(613), - [anon_sym_BSLASHTvolcite] = ACTIONS(613), - [anon_sym_BSLASHavolcite] = ACTIONS(613), - [anon_sym_BSLASHAvolcite] = ACTIONS(613), - [anon_sym_BSLASHnotecite] = ACTIONS(613), - [anon_sym_BSLASHNotecite] = ACTIONS(613), - [anon_sym_BSLASHpnotecite] = ACTIONS(613), - [anon_sym_BSLASHPnotecite] = ACTIONS(613), - [anon_sym_BSLASHfnotecite] = ACTIONS(613), - [anon_sym_BSLASHlabel] = ACTIONS(617), - [anon_sym_BSLASHref] = ACTIONS(619), - [anon_sym_BSLASHeqref] = ACTIONS(619), - [anon_sym_BSLASHvref] = ACTIONS(619), - [anon_sym_BSLASHVref] = ACTIONS(619), - [anon_sym_BSLASHautoref] = ACTIONS(619), - [anon_sym_BSLASHpageref] = ACTIONS(619), - [anon_sym_BSLASHcref] = ACTIONS(619), - [anon_sym_BSLASHCref] = ACTIONS(619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(621), - [anon_sym_BSLASHCref_STAR] = ACTIONS(621), - [anon_sym_BSLASHnamecref] = ACTIONS(619), - [anon_sym_BSLASHnameCref] = ACTIONS(619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(619), - [anon_sym_BSLASHlabelcref] = ACTIONS(619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(619), - [anon_sym_BSLASHcrefrange] = ACTIONS(623), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHCrefrange] = ACTIONS(623), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(625), - [anon_sym_BSLASHnewlabel] = ACTIONS(627), - [anon_sym_BSLASHnewcommand] = ACTIONS(629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(631), - [anon_sym_BSLASHdef] = ACTIONS(633), - [anon_sym_BSLASHlet] = ACTIONS(635), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(637), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(637), - [anon_sym_BSLASHnewenvironment] = ACTIONS(639), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(641), - [anon_sym_BSLASHgls] = ACTIONS(643), - [anon_sym_BSLASHGls] = ACTIONS(643), - [anon_sym_BSLASHGLS] = ACTIONS(643), - [anon_sym_BSLASHglspl] = ACTIONS(643), - [anon_sym_BSLASHGlspl] = ACTIONS(643), - [anon_sym_BSLASHGLSpl] = ACTIONS(643), - [anon_sym_BSLASHglsdisp] = ACTIONS(643), - [anon_sym_BSLASHglslink] = ACTIONS(643), - [anon_sym_BSLASHglstext] = ACTIONS(643), - [anon_sym_BSLASHGlstext] = ACTIONS(643), - [anon_sym_BSLASHGLStext] = ACTIONS(643), - [anon_sym_BSLASHglsfirst] = ACTIONS(643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(643), - [anon_sym_BSLASHglsplural] = ACTIONS(643), - [anon_sym_BSLASHGlsplural] = ACTIONS(643), - [anon_sym_BSLASHGLSplural] = ACTIONS(643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(643), - [anon_sym_BSLASHglsname] = ACTIONS(643), - [anon_sym_BSLASHGlsname] = ACTIONS(643), - [anon_sym_BSLASHGLSname] = ACTIONS(643), - [anon_sym_BSLASHglssymbol] = ACTIONS(643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(643), - [anon_sym_BSLASHglsdesc] = ACTIONS(643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(643), - [anon_sym_BSLASHglsuseri] = ACTIONS(643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(643), - [anon_sym_BSLASHglsuserii] = ACTIONS(643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(643), - [anon_sym_BSLASHglsuserv] = ACTIONS(643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(643), - [anon_sym_BSLASHglsuservi] = ACTIONS(643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(643), - [anon_sym_BSLASHnewacronym] = ACTIONS(645), - [anon_sym_BSLASHacrshort] = ACTIONS(647), - [anon_sym_BSLASHAcrshort] = ACTIONS(647), - [anon_sym_BSLASHACRshort] = ACTIONS(647), - [anon_sym_BSLASHacrshortpl] = ACTIONS(647), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(647), - [anon_sym_BSLASHACRshortpl] = ACTIONS(647), - [anon_sym_BSLASHacrlong] = ACTIONS(647), - [anon_sym_BSLASHAcrlong] = ACTIONS(647), - [anon_sym_BSLASHACRlong] = ACTIONS(647), - [anon_sym_BSLASHacrlongpl] = ACTIONS(647), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(647), - [anon_sym_BSLASHACRlongpl] = ACTIONS(647), - [anon_sym_BSLASHacrfull] = ACTIONS(647), - [anon_sym_BSLASHAcrfull] = ACTIONS(647), - [anon_sym_BSLASHACRfull] = ACTIONS(647), - [anon_sym_BSLASHacrfullpl] = ACTIONS(647), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(647), - [anon_sym_BSLASHACRfullpl] = ACTIONS(647), - [anon_sym_BSLASHacs] = ACTIONS(647), - [anon_sym_BSLASHAcs] = ACTIONS(647), - [anon_sym_BSLASHacsp] = ACTIONS(647), - [anon_sym_BSLASHAcsp] = ACTIONS(647), - [anon_sym_BSLASHacl] = ACTIONS(647), - [anon_sym_BSLASHAcl] = ACTIONS(647), - [anon_sym_BSLASHaclp] = ACTIONS(647), - [anon_sym_BSLASHAclp] = ACTIONS(647), - [anon_sym_BSLASHacf] = ACTIONS(647), - [anon_sym_BSLASHAcf] = ACTIONS(647), - [anon_sym_BSLASHacfp] = ACTIONS(647), - [anon_sym_BSLASHAcfp] = ACTIONS(647), - [anon_sym_BSLASHac] = ACTIONS(647), - [anon_sym_BSLASHAc] = ACTIONS(647), - [anon_sym_BSLASHacp] = ACTIONS(647), - [anon_sym_BSLASHglsentrylong] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(647), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryshort] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(647), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(647), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(647), - [anon_sym_BSLASHnewtheorem] = ACTIONS(649), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(649), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(655), - [anon_sym_BSLASHcolor] = ACTIONS(657), - [anon_sym_BSLASHcolorbox] = ACTIONS(657), - [anon_sym_BSLASHtextcolor] = ACTIONS(657), - [anon_sym_BSLASHpagecolor] = ACTIONS(657), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(659), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(659), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [224] = { + [sym_block_comment] = STATE(1314), + [sym_operator] = STATE(1314), + [sym__command] = STATE(1314), + [sym_generic_command] = STATE(1314), + [sym_title_declaration] = STATE(1314), + [sym_author_declaration] = STATE(1314), + [sym_package_include] = STATE(1314), + [sym_class_include] = STATE(1314), + [sym_latex_include] = STATE(1314), + [sym_biblatex_include] = STATE(1314), + [sym_bibtex_include] = STATE(1314), + [sym_graphics_include] = STATE(1314), + [sym_svg_include] = STATE(1314), + [sym_inkscape_include] = STATE(1314), + [sym_verbatim_include] = STATE(1314), + [sym_import_include] = STATE(1314), + [sym_caption] = STATE(1314), + [sym_citation] = STATE(1314), + [sym_label_definition] = STATE(1314), + [sym_label_reference] = STATE(1314), + [sym_label_reference_range] = STATE(1314), + [sym_label_number] = STATE(1314), + [sym_new_command_definition] = STATE(1314), + [sym_old_command_definition] = STATE(1314), + [sym_let_command_definition] = STATE(1314), + [sym_paired_delimiter_definition] = STATE(1314), + [sym_environment_definition] = STATE(1314), + [sym_glossary_entry_definition] = STATE(1314), + [sym_glossary_entry_reference] = STATE(1314), + [sym_acronym_definition] = STATE(1314), + [sym_acronym_reference] = STATE(1314), + [sym_theorem_definition] = STATE(1314), + [sym_color_definition] = STATE(1314), + [sym_color_set_definition] = STATE(1314), + [sym_color_reference] = STATE(1314), + [sym_tikz_library_import] = STATE(1314), + [aux_sym_text_repeat1] = STATE(224), + [sym_command_name] = ACTIONS(3127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_BSLASHpart] = ACTIONS(2875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddpart] = ACTIONS(2875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHchapter] = ACTIONS(2875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddchap] = ACTIONS(2875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsection] = ACTIONS(2875), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddsec] = ACTIONS(2875), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHparagraph] = ACTIONS(2875), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2875), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHitem] = ACTIONS(2875), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(3133), + [sym_placeholder] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym__] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(3142), + [anon_sym_BSLASHauthor] = ACTIONS(3145), + [anon_sym_BSLASHusepackage] = ACTIONS(3148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3151), + [anon_sym_BSLASHinclude] = ACTIONS(3154), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3154), + [anon_sym_BSLASHinput] = ACTIONS(3154), + [anon_sym_BSLASHsubfile] = ACTIONS(3154), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3157), + [anon_sym_BSLASHbibliography] = ACTIONS(3160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3163), + [anon_sym_BSLASHincludesvg] = ACTIONS(3166), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3172), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3172), + [anon_sym_BSLASHimport] = ACTIONS(3175), + [anon_sym_BSLASHsubimport] = ACTIONS(3175), + [anon_sym_BSLASHinputfrom] = ACTIONS(3175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3175), + [anon_sym_BSLASHincludefrom] = ACTIONS(3175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3175), + [anon_sym_BSLASHcaption] = ACTIONS(3178), + [anon_sym_BSLASHcite] = ACTIONS(3181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3184), + [anon_sym_BSLASHCite] = ACTIONS(3181), + [anon_sym_BSLASHnocite] = ACTIONS(3181), + [anon_sym_BSLASHcitet] = ACTIONS(3181), + [anon_sym_BSLASHcitep] = ACTIONS(3181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3184), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3184), + [anon_sym_BSLASHciteauthor] = ACTIONS(3181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3184), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3184), + [anon_sym_BSLASHcitetitle] = ACTIONS(3181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3184), + [anon_sym_BSLASHciteyear] = ACTIONS(3181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3184), + [anon_sym_BSLASHcitedate] = ACTIONS(3181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3184), + [anon_sym_BSLASHciteurl] = ACTIONS(3181), + [anon_sym_BSLASHfullcite] = ACTIONS(3181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3181), + [anon_sym_BSLASHcitealt] = ACTIONS(3181), + [anon_sym_BSLASHcitealp] = ACTIONS(3181), + [anon_sym_BSLASHcitetext] = ACTIONS(3181), + [anon_sym_BSLASHparencite] = ACTIONS(3181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3184), + [anon_sym_BSLASHParencite] = ACTIONS(3181), + [anon_sym_BSLASHfootcite] = ACTIONS(3181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3181), + [anon_sym_BSLASHtextcite] = ACTIONS(3181), + [anon_sym_BSLASHTextcite] = ACTIONS(3181), + [anon_sym_BSLASHsmartcite] = ACTIONS(3181), + [anon_sym_BSLASHSmartcite] = ACTIONS(3181), + [anon_sym_BSLASHsupercite] = ACTIONS(3181), + [anon_sym_BSLASHautocite] = ACTIONS(3181), + [anon_sym_BSLASHAutocite] = ACTIONS(3181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3184), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3184), + [anon_sym_BSLASHvolcite] = ACTIONS(3181), + [anon_sym_BSLASHVolcite] = ACTIONS(3181), + [anon_sym_BSLASHpvolcite] = ACTIONS(3181), + [anon_sym_BSLASHPvolcite] = ACTIONS(3181), + [anon_sym_BSLASHfvolcite] = ACTIONS(3181), + [anon_sym_BSLASHftvolcite] = ACTIONS(3181), + [anon_sym_BSLASHsvolcite] = ACTIONS(3181), + [anon_sym_BSLASHSvolcite] = ACTIONS(3181), + [anon_sym_BSLASHtvolcite] = ACTIONS(3181), + [anon_sym_BSLASHTvolcite] = ACTIONS(3181), + [anon_sym_BSLASHavolcite] = ACTIONS(3181), + [anon_sym_BSLASHAvolcite] = ACTIONS(3181), + [anon_sym_BSLASHnotecite] = ACTIONS(3181), + [anon_sym_BSLASHNotecite] = ACTIONS(3181), + [anon_sym_BSLASHpnotecite] = ACTIONS(3181), + [anon_sym_BSLASHPnotecite] = ACTIONS(3181), + [anon_sym_BSLASHfnotecite] = ACTIONS(3181), + [anon_sym_BSLASHlabel] = ACTIONS(3187), + [anon_sym_BSLASHref] = ACTIONS(3190), + [anon_sym_BSLASHeqref] = ACTIONS(3190), + [anon_sym_BSLASHvref] = ACTIONS(3190), + [anon_sym_BSLASHVref] = ACTIONS(3190), + [anon_sym_BSLASHautoref] = ACTIONS(3190), + [anon_sym_BSLASHpageref] = ACTIONS(3190), + [anon_sym_BSLASHcref] = ACTIONS(3190), + [anon_sym_BSLASHCref] = ACTIONS(3190), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3193), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3193), + [anon_sym_BSLASHnamecref] = ACTIONS(3190), + [anon_sym_BSLASHnameCref] = ACTIONS(3190), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3190), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3190), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3190), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3190), + [anon_sym_BSLASHlabelcref] = ACTIONS(3190), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3190), + [anon_sym_BSLASHcrefrange] = ACTIONS(3196), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3199), + [anon_sym_BSLASHCrefrange] = ACTIONS(3196), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3199), + [anon_sym_BSLASHnewlabel] = ACTIONS(3202), + [anon_sym_BSLASHnewcommand] = ACTIONS(3205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3208), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3208), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3208), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3208), + [anon_sym_BSLASHdef] = ACTIONS(3211), + [anon_sym_BSLASHlet] = ACTIONS(3214), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3217), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3220), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3223), + [anon_sym_BSLASHgls] = ACTIONS(3226), + [anon_sym_BSLASHGls] = ACTIONS(3226), + [anon_sym_BSLASHGLS] = ACTIONS(3226), + [anon_sym_BSLASHglspl] = ACTIONS(3226), + [anon_sym_BSLASHGlspl] = ACTIONS(3226), + [anon_sym_BSLASHGLSpl] = ACTIONS(3226), + [anon_sym_BSLASHglsdisp] = ACTIONS(3226), + [anon_sym_BSLASHglslink] = ACTIONS(3226), + [anon_sym_BSLASHglstext] = ACTIONS(3226), + [anon_sym_BSLASHGlstext] = ACTIONS(3226), + [anon_sym_BSLASHGLStext] = ACTIONS(3226), + [anon_sym_BSLASHglsfirst] = ACTIONS(3226), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3226), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3226), + [anon_sym_BSLASHglsplural] = ACTIONS(3226), + [anon_sym_BSLASHGlsplural] = ACTIONS(3226), + [anon_sym_BSLASHGLSplural] = ACTIONS(3226), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3226), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3226), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3226), + [anon_sym_BSLASHglsname] = ACTIONS(3226), + [anon_sym_BSLASHGlsname] = ACTIONS(3226), + [anon_sym_BSLASHGLSname] = ACTIONS(3226), + [anon_sym_BSLASHglssymbol] = ACTIONS(3226), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3226), + [anon_sym_BSLASHglsdesc] = ACTIONS(3226), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3226), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3226), + [anon_sym_BSLASHglsuseri] = ACTIONS(3226), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3226), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3226), + [anon_sym_BSLASHglsuserii] = ACTIONS(3226), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3226), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3226), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3226), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3226), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3226), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3226), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3226), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3226), + [anon_sym_BSLASHglsuserv] = ACTIONS(3226), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3226), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3226), + [anon_sym_BSLASHglsuservi] = ACTIONS(3226), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3226), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3226), + [anon_sym_BSLASHnewacronym] = ACTIONS(3229), + [anon_sym_BSLASHacrshort] = ACTIONS(3232), + [anon_sym_BSLASHAcrshort] = ACTIONS(3232), + [anon_sym_BSLASHACRshort] = ACTIONS(3232), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3232), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3232), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3232), + [anon_sym_BSLASHacrlong] = ACTIONS(3232), + [anon_sym_BSLASHAcrlong] = ACTIONS(3232), + [anon_sym_BSLASHACRlong] = ACTIONS(3232), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3232), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3232), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3232), + [anon_sym_BSLASHacrfull] = ACTIONS(3232), + [anon_sym_BSLASHAcrfull] = ACTIONS(3232), + [anon_sym_BSLASHACRfull] = ACTIONS(3232), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3232), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3232), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3232), + [anon_sym_BSLASHacs] = ACTIONS(3232), + [anon_sym_BSLASHAcs] = ACTIONS(3232), + [anon_sym_BSLASHacsp] = ACTIONS(3232), + [anon_sym_BSLASHAcsp] = ACTIONS(3232), + [anon_sym_BSLASHacl] = ACTIONS(3232), + [anon_sym_BSLASHAcl] = ACTIONS(3232), + [anon_sym_BSLASHaclp] = ACTIONS(3232), + [anon_sym_BSLASHAclp] = ACTIONS(3232), + [anon_sym_BSLASHacf] = ACTIONS(3232), + [anon_sym_BSLASHAcf] = ACTIONS(3232), + [anon_sym_BSLASHacfp] = ACTIONS(3232), + [anon_sym_BSLASHAcfp] = ACTIONS(3232), + [anon_sym_BSLASHac] = ACTIONS(3232), + [anon_sym_BSLASHAc] = ACTIONS(3232), + [anon_sym_BSLASHacp] = ACTIONS(3232), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3232), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3232), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3232), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3232), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3232), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3232), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3232), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3232), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3232), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3232), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3244), + [anon_sym_BSLASHcolor] = ACTIONS(3247), + [anon_sym_BSLASHcolorbox] = ACTIONS(3247), + [anon_sym_BSLASHtextcolor] = ACTIONS(3247), + [anon_sym_BSLASHpagecolor] = ACTIONS(3247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3250), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3250), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), }, - [216] = { - [sym_block_comment] = STATE(986), - [sym_operator] = STATE(986), - [sym__command] = STATE(986), - [sym_generic_command] = STATE(986), - [sym_package_include] = STATE(986), - [sym_class_include] = STATE(986), - [sym_latex_include] = STATE(986), - [sym_biblatex_include] = STATE(986), - [sym_bibtex_include] = STATE(986), - [sym_graphics_include] = STATE(986), - [sym_svg_include] = STATE(986), - [sym_inkscape_include] = STATE(986), - [sym_verbatim_include] = STATE(986), - [sym_import_include] = STATE(986), - [sym_caption] = STATE(986), - [sym_citation] = STATE(986), - [sym_label_definition] = STATE(986), - [sym_label_reference] = STATE(986), - [sym_label_reference_range] = STATE(986), - [sym_label_number] = STATE(986), - [sym_new_command_definition] = STATE(986), - [sym_old_command_definition] = STATE(986), - [sym_let_command_definition] = STATE(986), - [sym_paired_delimiter_definition] = STATE(986), - [sym_environment_definition] = STATE(986), - [sym_glossary_entry_definition] = STATE(986), - [sym_glossary_entry_reference] = STATE(986), - [sym_acronym_definition] = STATE(986), - [sym_acronym_reference] = STATE(986), - [sym_theorem_definition] = STATE(986), - [sym_color_definition] = STATE(986), - [sym_color_set_definition] = STATE(986), - [sym_color_reference] = STATE(986), - [sym_tikz_library_import] = STATE(986), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(3243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_BSLASHpart] = ACTIONS(2767), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddpart] = ACTIONS(2767), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2759), - [anon_sym_BSLASHchapter] = ACTIONS(2767), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddchap] = ACTIONS(2767), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsection] = ACTIONS(2767), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHaddsec] = ACTIONS(2767), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2767), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2759), - [anon_sym_BSLASHparagraph] = ACTIONS(2767), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2767), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2759), - [anon_sym_BSLASHitem] = ACTIONS(2767), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(3249), - [sym_placeholder] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym__] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(3258), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3258), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3261), - [anon_sym_BSLASHinclude] = ACTIONS(3264), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3264), - [anon_sym_BSLASHinput] = ACTIONS(3264), - [anon_sym_BSLASHsubfile] = ACTIONS(3264), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3267), - [anon_sym_BSLASHbibliography] = ACTIONS(3270), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3273), - [anon_sym_BSLASHincludesvg] = ACTIONS(3276), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3282), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3282), - [anon_sym_BSLASHimport] = ACTIONS(3285), - [anon_sym_BSLASHsubimport] = ACTIONS(3285), - [anon_sym_BSLASHinputfrom] = ACTIONS(3285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3285), - [anon_sym_BSLASHincludefrom] = ACTIONS(3285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3285), - [anon_sym_BSLASHcaption] = ACTIONS(3288), - [anon_sym_BSLASHcite] = ACTIONS(3291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3294), - [anon_sym_BSLASHCite] = ACTIONS(3291), - [anon_sym_BSLASHnocite] = ACTIONS(3291), - [anon_sym_BSLASHcitet] = ACTIONS(3291), - [anon_sym_BSLASHcitep] = ACTIONS(3291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3294), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3294), - [anon_sym_BSLASHciteauthor] = ACTIONS(3291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3294), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3294), - [anon_sym_BSLASHcitetitle] = ACTIONS(3291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3294), - [anon_sym_BSLASHciteyear] = ACTIONS(3291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3294), - [anon_sym_BSLASHcitedate] = ACTIONS(3291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3294), - [anon_sym_BSLASHciteurl] = ACTIONS(3291), - [anon_sym_BSLASHfullcite] = ACTIONS(3291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3291), - [anon_sym_BSLASHcitealt] = ACTIONS(3291), - [anon_sym_BSLASHcitealp] = ACTIONS(3291), - [anon_sym_BSLASHcitetext] = ACTIONS(3291), - [anon_sym_BSLASHparencite] = ACTIONS(3291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3294), - [anon_sym_BSLASHParencite] = ACTIONS(3291), - [anon_sym_BSLASHfootcite] = ACTIONS(3291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3291), - [anon_sym_BSLASHtextcite] = ACTIONS(3291), - [anon_sym_BSLASHTextcite] = ACTIONS(3291), - [anon_sym_BSLASHsmartcite] = ACTIONS(3291), - [anon_sym_BSLASHSmartcite] = ACTIONS(3291), - [anon_sym_BSLASHsupercite] = ACTIONS(3291), - [anon_sym_BSLASHautocite] = ACTIONS(3291), - [anon_sym_BSLASHAutocite] = ACTIONS(3291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3294), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3294), - [anon_sym_BSLASHvolcite] = ACTIONS(3291), - [anon_sym_BSLASHVolcite] = ACTIONS(3291), - [anon_sym_BSLASHpvolcite] = ACTIONS(3291), - [anon_sym_BSLASHPvolcite] = ACTIONS(3291), - [anon_sym_BSLASHfvolcite] = ACTIONS(3291), - [anon_sym_BSLASHftvolcite] = ACTIONS(3291), - [anon_sym_BSLASHsvolcite] = ACTIONS(3291), - [anon_sym_BSLASHSvolcite] = ACTIONS(3291), - [anon_sym_BSLASHtvolcite] = ACTIONS(3291), - [anon_sym_BSLASHTvolcite] = ACTIONS(3291), - [anon_sym_BSLASHavolcite] = ACTIONS(3291), - [anon_sym_BSLASHAvolcite] = ACTIONS(3291), - [anon_sym_BSLASHnotecite] = ACTIONS(3291), - [anon_sym_BSLASHNotecite] = ACTIONS(3291), - [anon_sym_BSLASHpnotecite] = ACTIONS(3291), - [anon_sym_BSLASHPnotecite] = ACTIONS(3291), - [anon_sym_BSLASHfnotecite] = ACTIONS(3291), - [anon_sym_BSLASHlabel] = ACTIONS(3297), - [anon_sym_BSLASHref] = ACTIONS(3300), - [anon_sym_BSLASHeqref] = ACTIONS(3300), - [anon_sym_BSLASHvref] = ACTIONS(3300), - [anon_sym_BSLASHVref] = ACTIONS(3300), - [anon_sym_BSLASHautoref] = ACTIONS(3300), - [anon_sym_BSLASHpageref] = ACTIONS(3300), - [anon_sym_BSLASHcref] = ACTIONS(3300), - [anon_sym_BSLASHCref] = ACTIONS(3300), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3303), - [anon_sym_BSLASHnamecref] = ACTIONS(3300), - [anon_sym_BSLASHnameCref] = ACTIONS(3300), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3300), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3300), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3300), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3300), - [anon_sym_BSLASHlabelcref] = ACTIONS(3300), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3300), - [anon_sym_BSLASHcrefrange] = ACTIONS(3306), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3309), - [anon_sym_BSLASHCrefrange] = ACTIONS(3306), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3309), - [anon_sym_BSLASHnewlabel] = ACTIONS(3312), - [anon_sym_BSLASHnewcommand] = ACTIONS(3315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3318), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3318), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3318), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3318), - [anon_sym_BSLASHdef] = ACTIONS(3321), - [anon_sym_BSLASHlet] = ACTIONS(3324), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3330), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3333), - [anon_sym_BSLASHgls] = ACTIONS(3336), - [anon_sym_BSLASHGls] = ACTIONS(3336), - [anon_sym_BSLASHGLS] = ACTIONS(3336), - [anon_sym_BSLASHglspl] = ACTIONS(3336), - [anon_sym_BSLASHGlspl] = ACTIONS(3336), - [anon_sym_BSLASHGLSpl] = ACTIONS(3336), - [anon_sym_BSLASHglsdisp] = ACTIONS(3336), - [anon_sym_BSLASHglslink] = ACTIONS(3336), - [anon_sym_BSLASHglstext] = ACTIONS(3336), - [anon_sym_BSLASHGlstext] = ACTIONS(3336), - [anon_sym_BSLASHGLStext] = ACTIONS(3336), - [anon_sym_BSLASHglsfirst] = ACTIONS(3336), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3336), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3336), - [anon_sym_BSLASHglsplural] = ACTIONS(3336), - [anon_sym_BSLASHGlsplural] = ACTIONS(3336), - [anon_sym_BSLASHGLSplural] = ACTIONS(3336), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3336), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3336), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3336), - [anon_sym_BSLASHglsname] = ACTIONS(3336), - [anon_sym_BSLASHGlsname] = ACTIONS(3336), - [anon_sym_BSLASHGLSname] = ACTIONS(3336), - [anon_sym_BSLASHglssymbol] = ACTIONS(3336), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3336), - [anon_sym_BSLASHglsdesc] = ACTIONS(3336), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3336), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3336), - [anon_sym_BSLASHglsuseri] = ACTIONS(3336), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3336), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3336), - [anon_sym_BSLASHglsuserii] = ACTIONS(3336), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3336), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3336), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3336), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3336), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3336), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3336), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3336), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3336), - [anon_sym_BSLASHglsuserv] = ACTIONS(3336), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3336), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3336), - [anon_sym_BSLASHglsuservi] = ACTIONS(3336), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3336), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3336), - [anon_sym_BSLASHnewacronym] = ACTIONS(3339), - [anon_sym_BSLASHacrshort] = ACTIONS(3342), - [anon_sym_BSLASHAcrshort] = ACTIONS(3342), - [anon_sym_BSLASHACRshort] = ACTIONS(3342), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3342), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3342), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3342), - [anon_sym_BSLASHacrlong] = ACTIONS(3342), - [anon_sym_BSLASHAcrlong] = ACTIONS(3342), - [anon_sym_BSLASHACRlong] = ACTIONS(3342), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3342), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3342), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3342), - [anon_sym_BSLASHacrfull] = ACTIONS(3342), - [anon_sym_BSLASHAcrfull] = ACTIONS(3342), - [anon_sym_BSLASHACRfull] = ACTIONS(3342), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3342), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3342), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3342), - [anon_sym_BSLASHacs] = ACTIONS(3342), - [anon_sym_BSLASHAcs] = ACTIONS(3342), - [anon_sym_BSLASHacsp] = ACTIONS(3342), - [anon_sym_BSLASHAcsp] = ACTIONS(3342), - [anon_sym_BSLASHacl] = ACTIONS(3342), - [anon_sym_BSLASHAcl] = ACTIONS(3342), - [anon_sym_BSLASHaclp] = ACTIONS(3342), - [anon_sym_BSLASHAclp] = ACTIONS(3342), - [anon_sym_BSLASHacf] = ACTIONS(3342), - [anon_sym_BSLASHAcf] = ACTIONS(3342), - [anon_sym_BSLASHacfp] = ACTIONS(3342), - [anon_sym_BSLASHAcfp] = ACTIONS(3342), - [anon_sym_BSLASHac] = ACTIONS(3342), - [anon_sym_BSLASHAc] = ACTIONS(3342), - [anon_sym_BSLASHacp] = ACTIONS(3342), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3342), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3342), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3342), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3342), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3342), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3342), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3342), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3342), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3342), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3342), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3348), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3351), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3354), - [anon_sym_BSLASHcolor] = ACTIONS(3357), - [anon_sym_BSLASHcolorbox] = ACTIONS(3357), - [anon_sym_BSLASHtextcolor] = ACTIONS(3357), - [anon_sym_BSLASHpagecolor] = ACTIONS(3357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3360), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3360), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), + [225] = { + [sym_block_comment] = STATE(905), + [sym_operator] = STATE(905), + [sym__command] = STATE(905), + [sym_generic_command] = STATE(905), + [sym_title_declaration] = STATE(905), + [sym_author_declaration] = STATE(905), + [sym_package_include] = STATE(905), + [sym_class_include] = STATE(905), + [sym_latex_include] = STATE(905), + [sym_biblatex_include] = STATE(905), + [sym_bibtex_include] = STATE(905), + [sym_graphics_include] = STATE(905), + [sym_svg_include] = STATE(905), + [sym_inkscape_include] = STATE(905), + [sym_verbatim_include] = STATE(905), + [sym_import_include] = STATE(905), + [sym_caption] = STATE(905), + [sym_citation] = STATE(905), + [sym_label_definition] = STATE(905), + [sym_label_reference] = STATE(905), + [sym_label_reference_range] = STATE(905), + [sym_label_number] = STATE(905), + [sym_new_command_definition] = STATE(905), + [sym_old_command_definition] = STATE(905), + [sym_let_command_definition] = STATE(905), + [sym_paired_delimiter_definition] = STATE(905), + [sym_environment_definition] = STATE(905), + [sym_glossary_entry_definition] = STATE(905), + [sym_glossary_entry_reference] = STATE(905), + [sym_acronym_definition] = STATE(905), + [sym_acronym_reference] = STATE(905), + [sym_theorem_definition] = STATE(905), + [sym_color_definition] = STATE(905), + [sym_color_set_definition] = STATE(905), + [sym_color_reference] = STATE(905), + [sym_tikz_library_import] = STATE(905), + [aux_sym_text_repeat1] = STATE(223), + [sym_command_name] = ACTIONS(581), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_BSLASHpart] = ACTIONS(2999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddpart] = ACTIONS(2999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHchapter] = ACTIONS(2999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddchap] = ACTIONS(2999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsection] = ACTIONS(2999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddsec] = ACTIONS(2999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHparagraph] = ACTIONS(2999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHitem] = ACTIONS(2999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(621), + [sym_placeholder] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(637), + [anon_sym_BSLASHauthor] = ACTIONS(639), + [anon_sym_BSLASHusepackage] = ACTIONS(641), + [anon_sym_BSLASHRequirePackage] = ACTIONS(641), + [anon_sym_BSLASHdocumentclass] = ACTIONS(643), + [anon_sym_BSLASHinclude] = ACTIONS(645), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(645), + [anon_sym_BSLASHinput] = ACTIONS(645), + [anon_sym_BSLASHsubfile] = ACTIONS(645), + [anon_sym_BSLASHaddbibresource] = ACTIONS(647), + [anon_sym_BSLASHbibliography] = ACTIONS(649), + [anon_sym_BSLASHincludegraphics] = ACTIONS(651), + [anon_sym_BSLASHincludesvg] = ACTIONS(653), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(655), + [anon_sym_BSLASHverbatiminput] = ACTIONS(657), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(657), + [anon_sym_BSLASHimport] = ACTIONS(659), + [anon_sym_BSLASHsubimport] = ACTIONS(659), + [anon_sym_BSLASHinputfrom] = ACTIONS(659), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(659), + [anon_sym_BSLASHincludefrom] = ACTIONS(659), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(659), + [anon_sym_BSLASHcaption] = ACTIONS(661), + [anon_sym_BSLASHcite] = ACTIONS(663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(665), + [anon_sym_BSLASHCite] = ACTIONS(663), + [anon_sym_BSLASHnocite] = ACTIONS(663), + [anon_sym_BSLASHcitet] = ACTIONS(663), + [anon_sym_BSLASHcitep] = ACTIONS(663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteauthor] = ACTIONS(663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHCiteauthor] = ACTIONS(663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitetitle] = ACTIONS(663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteyear] = ACTIONS(663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(665), + [anon_sym_BSLASHcitedate] = ACTIONS(663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(665), + [anon_sym_BSLASHciteurl] = ACTIONS(663), + [anon_sym_BSLASHfullcite] = ACTIONS(663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(663), + [anon_sym_BSLASHcitealt] = ACTIONS(663), + [anon_sym_BSLASHcitealp] = ACTIONS(663), + [anon_sym_BSLASHcitetext] = ACTIONS(663), + [anon_sym_BSLASHparencite] = ACTIONS(663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(665), + [anon_sym_BSLASHParencite] = ACTIONS(663), + [anon_sym_BSLASHfootcite] = ACTIONS(663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(663), + [anon_sym_BSLASHtextcite] = ACTIONS(663), + [anon_sym_BSLASHTextcite] = ACTIONS(663), + [anon_sym_BSLASHsmartcite] = ACTIONS(663), + [anon_sym_BSLASHSmartcite] = ACTIONS(663), + [anon_sym_BSLASHsupercite] = ACTIONS(663), + [anon_sym_BSLASHautocite] = ACTIONS(663), + [anon_sym_BSLASHAutocite] = ACTIONS(663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(665), + [anon_sym_BSLASHvolcite] = ACTIONS(663), + [anon_sym_BSLASHVolcite] = ACTIONS(663), + [anon_sym_BSLASHpvolcite] = ACTIONS(663), + [anon_sym_BSLASHPvolcite] = ACTIONS(663), + [anon_sym_BSLASHfvolcite] = ACTIONS(663), + [anon_sym_BSLASHftvolcite] = ACTIONS(663), + [anon_sym_BSLASHsvolcite] = ACTIONS(663), + [anon_sym_BSLASHSvolcite] = ACTIONS(663), + [anon_sym_BSLASHtvolcite] = ACTIONS(663), + [anon_sym_BSLASHTvolcite] = ACTIONS(663), + [anon_sym_BSLASHavolcite] = ACTIONS(663), + [anon_sym_BSLASHAvolcite] = ACTIONS(663), + [anon_sym_BSLASHnotecite] = ACTIONS(663), + [anon_sym_BSLASHNotecite] = ACTIONS(663), + [anon_sym_BSLASHpnotecite] = ACTIONS(663), + [anon_sym_BSLASHPnotecite] = ACTIONS(663), + [anon_sym_BSLASHfnotecite] = ACTIONS(663), + [anon_sym_BSLASHlabel] = ACTIONS(667), + [anon_sym_BSLASHref] = ACTIONS(669), + [anon_sym_BSLASHeqref] = ACTIONS(669), + [anon_sym_BSLASHvref] = ACTIONS(669), + [anon_sym_BSLASHVref] = ACTIONS(669), + [anon_sym_BSLASHautoref] = ACTIONS(669), + [anon_sym_BSLASHpageref] = ACTIONS(669), + [anon_sym_BSLASHcref] = ACTIONS(669), + [anon_sym_BSLASHCref] = ACTIONS(669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(671), + [anon_sym_BSLASHCref_STAR] = ACTIONS(671), + [anon_sym_BSLASHnamecref] = ACTIONS(669), + [anon_sym_BSLASHnameCref] = ACTIONS(669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(669), + [anon_sym_BSLASHlabelcref] = ACTIONS(669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(669), + [anon_sym_BSLASHcrefrange] = ACTIONS(673), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHCrefrange] = ACTIONS(673), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(675), + [anon_sym_BSLASHnewlabel] = ACTIONS(677), + [anon_sym_BSLASHnewcommand] = ACTIONS(679), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHrenewcommand] = ACTIONS(679), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(679), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(681), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(679), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(681), + [anon_sym_BSLASHdef] = ACTIONS(683), + [anon_sym_BSLASHlet] = ACTIONS(685), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(687), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(687), + [anon_sym_BSLASHnewenvironment] = ACTIONS(689), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(691), + [anon_sym_BSLASHgls] = ACTIONS(693), + [anon_sym_BSLASHGls] = ACTIONS(693), + [anon_sym_BSLASHGLS] = ACTIONS(693), + [anon_sym_BSLASHglspl] = ACTIONS(693), + [anon_sym_BSLASHGlspl] = ACTIONS(693), + [anon_sym_BSLASHGLSpl] = ACTIONS(693), + [anon_sym_BSLASHglsdisp] = ACTIONS(693), + [anon_sym_BSLASHglslink] = ACTIONS(693), + [anon_sym_BSLASHglstext] = ACTIONS(693), + [anon_sym_BSLASHGlstext] = ACTIONS(693), + [anon_sym_BSLASHGLStext] = ACTIONS(693), + [anon_sym_BSLASHglsfirst] = ACTIONS(693), + [anon_sym_BSLASHGlsfirst] = ACTIONS(693), + [anon_sym_BSLASHGLSfirst] = ACTIONS(693), + [anon_sym_BSLASHglsplural] = ACTIONS(693), + [anon_sym_BSLASHGlsplural] = ACTIONS(693), + [anon_sym_BSLASHGLSplural] = ACTIONS(693), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(693), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(693), + [anon_sym_BSLASHglsname] = ACTIONS(693), + [anon_sym_BSLASHGlsname] = ACTIONS(693), + [anon_sym_BSLASHGLSname] = ACTIONS(693), + [anon_sym_BSLASHglssymbol] = ACTIONS(693), + [anon_sym_BSLASHGlssymbol] = ACTIONS(693), + [anon_sym_BSLASHglsdesc] = ACTIONS(693), + [anon_sym_BSLASHGlsdesc] = ACTIONS(693), + [anon_sym_BSLASHGLSdesc] = ACTIONS(693), + [anon_sym_BSLASHglsuseri] = ACTIONS(693), + [anon_sym_BSLASHGlsuseri] = ACTIONS(693), + [anon_sym_BSLASHGLSuseri] = ACTIONS(693), + [anon_sym_BSLASHglsuserii] = ACTIONS(693), + [anon_sym_BSLASHGlsuserii] = ACTIONS(693), + [anon_sym_BSLASHGLSuserii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(693), + [anon_sym_BSLASHglsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(693), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(693), + [anon_sym_BSLASHglsuserv] = ACTIONS(693), + [anon_sym_BSLASHGlsuserv] = ACTIONS(693), + [anon_sym_BSLASHGLSuserv] = ACTIONS(693), + [anon_sym_BSLASHglsuservi] = ACTIONS(693), + [anon_sym_BSLASHGlsuservi] = ACTIONS(693), + [anon_sym_BSLASHGLSuservi] = ACTIONS(693), + [anon_sym_BSLASHnewacronym] = ACTIONS(695), + [anon_sym_BSLASHacrshort] = ACTIONS(697), + [anon_sym_BSLASHAcrshort] = ACTIONS(697), + [anon_sym_BSLASHACRshort] = ACTIONS(697), + [anon_sym_BSLASHacrshortpl] = ACTIONS(697), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(697), + [anon_sym_BSLASHACRshortpl] = ACTIONS(697), + [anon_sym_BSLASHacrlong] = ACTIONS(697), + [anon_sym_BSLASHAcrlong] = ACTIONS(697), + [anon_sym_BSLASHACRlong] = ACTIONS(697), + [anon_sym_BSLASHacrlongpl] = ACTIONS(697), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(697), + [anon_sym_BSLASHACRlongpl] = ACTIONS(697), + [anon_sym_BSLASHacrfull] = ACTIONS(697), + [anon_sym_BSLASHAcrfull] = ACTIONS(697), + [anon_sym_BSLASHACRfull] = ACTIONS(697), + [anon_sym_BSLASHacrfullpl] = ACTIONS(697), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(697), + [anon_sym_BSLASHACRfullpl] = ACTIONS(697), + [anon_sym_BSLASHacs] = ACTIONS(697), + [anon_sym_BSLASHAcs] = ACTIONS(697), + [anon_sym_BSLASHacsp] = ACTIONS(697), + [anon_sym_BSLASHAcsp] = ACTIONS(697), + [anon_sym_BSLASHacl] = ACTIONS(697), + [anon_sym_BSLASHAcl] = ACTIONS(697), + [anon_sym_BSLASHaclp] = ACTIONS(697), + [anon_sym_BSLASHAclp] = ACTIONS(697), + [anon_sym_BSLASHacf] = ACTIONS(697), + [anon_sym_BSLASHAcf] = ACTIONS(697), + [anon_sym_BSLASHacfp] = ACTIONS(697), + [anon_sym_BSLASHAcfp] = ACTIONS(697), + [anon_sym_BSLASHac] = ACTIONS(697), + [anon_sym_BSLASHAc] = ACTIONS(697), + [anon_sym_BSLASHacp] = ACTIONS(697), + [anon_sym_BSLASHglsentrylong] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(697), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryshort] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(697), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(697), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(697), + [anon_sym_BSLASHnewtheorem] = ACTIONS(699), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(699), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(701), + [anon_sym_BSLASHdefinecolor] = ACTIONS(703), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(705), + [anon_sym_BSLASHcolor] = ACTIONS(707), + [anon_sym_BSLASHcolorbox] = ACTIONS(707), + [anon_sym_BSLASHtextcolor] = ACTIONS(707), + [anon_sym_BSLASHpagecolor] = ACTIONS(707), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(709), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(709), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), }, - [217] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [226] = { + [sym_block_comment] = STATE(1131), + [sym_operator] = STATE(1131), + [sym__command] = STATE(1131), + [sym_generic_command] = STATE(1131), + [sym_title_declaration] = STATE(1131), + [sym_author_declaration] = STATE(1131), + [sym_package_include] = STATE(1131), + [sym_class_include] = STATE(1131), + [sym_latex_include] = STATE(1131), + [sym_biblatex_include] = STATE(1131), + [sym_bibtex_include] = STATE(1131), + [sym_graphics_include] = STATE(1131), + [sym_svg_include] = STATE(1131), + [sym_inkscape_include] = STATE(1131), + [sym_verbatim_include] = STATE(1131), + [sym_import_include] = STATE(1131), + [sym_caption] = STATE(1131), + [sym_citation] = STATE(1131), + [sym_label_definition] = STATE(1131), + [sym_label_reference] = STATE(1131), + [sym_label_reference_range] = STATE(1131), + [sym_label_number] = STATE(1131), + [sym_new_command_definition] = STATE(1131), + [sym_old_command_definition] = STATE(1131), + [sym_let_command_definition] = STATE(1131), + [sym_paired_delimiter_definition] = STATE(1131), + [sym_environment_definition] = STATE(1131), + [sym_glossary_entry_definition] = STATE(1131), + [sym_glossary_entry_reference] = STATE(1131), + [sym_acronym_definition] = STATE(1131), + [sym_acronym_reference] = STATE(1131), + [sym_theorem_definition] = STATE(1131), + [sym_color_definition] = STATE(1131), + [sym_color_set_definition] = STATE(1131), + [sym_color_reference] = STATE(1131), + [sym_tikz_library_import] = STATE(1131), + [aux_sym_text_repeat1] = STATE(226), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_BSLASHpart] = ACTIONS(2875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddpart] = ACTIONS(2875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHchapter] = ACTIONS(2875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddchap] = ACTIONS(2875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsection] = ACTIONS(2875), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddsec] = ACTIONS(2875), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHparagraph] = ACTIONS(2875), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2875), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHitem] = ACTIONS(2875), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(3259), + [sym_placeholder] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym__] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_COLON] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(3268), + [anon_sym_BSLASHauthor] = ACTIONS(3271), + [anon_sym_BSLASHusepackage] = ACTIONS(3274), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3274), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3277), + [anon_sym_BSLASHinclude] = ACTIONS(3280), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3280), + [anon_sym_BSLASHinput] = ACTIONS(3280), + [anon_sym_BSLASHsubfile] = ACTIONS(3280), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3283), + [anon_sym_BSLASHbibliography] = ACTIONS(3286), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3292), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3298), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3298), + [anon_sym_BSLASHimport] = ACTIONS(3301), + [anon_sym_BSLASHsubimport] = ACTIONS(3301), + [anon_sym_BSLASHinputfrom] = ACTIONS(3301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3301), + [anon_sym_BSLASHincludefrom] = ACTIONS(3301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3301), + [anon_sym_BSLASHcaption] = ACTIONS(3304), + [anon_sym_BSLASHcite] = ACTIONS(3307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3310), + [anon_sym_BSLASHCite] = ACTIONS(3307), + [anon_sym_BSLASHnocite] = ACTIONS(3307), + [anon_sym_BSLASHcitet] = ACTIONS(3307), + [anon_sym_BSLASHcitep] = ACTIONS(3307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3310), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3310), + [anon_sym_BSLASHciteauthor] = ACTIONS(3307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3310), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3310), + [anon_sym_BSLASHcitetitle] = ACTIONS(3307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3310), + [anon_sym_BSLASHciteyear] = ACTIONS(3307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3310), + [anon_sym_BSLASHcitedate] = ACTIONS(3307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3310), + [anon_sym_BSLASHciteurl] = ACTIONS(3307), + [anon_sym_BSLASHfullcite] = ACTIONS(3307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3307), + [anon_sym_BSLASHcitealt] = ACTIONS(3307), + [anon_sym_BSLASHcitealp] = ACTIONS(3307), + [anon_sym_BSLASHcitetext] = ACTIONS(3307), + [anon_sym_BSLASHparencite] = ACTIONS(3307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3310), + [anon_sym_BSLASHParencite] = ACTIONS(3307), + [anon_sym_BSLASHfootcite] = ACTIONS(3307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3307), + [anon_sym_BSLASHtextcite] = ACTIONS(3307), + [anon_sym_BSLASHTextcite] = ACTIONS(3307), + [anon_sym_BSLASHsmartcite] = ACTIONS(3307), + [anon_sym_BSLASHSmartcite] = ACTIONS(3307), + [anon_sym_BSLASHsupercite] = ACTIONS(3307), + [anon_sym_BSLASHautocite] = ACTIONS(3307), + [anon_sym_BSLASHAutocite] = ACTIONS(3307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3310), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3310), + [anon_sym_BSLASHvolcite] = ACTIONS(3307), + [anon_sym_BSLASHVolcite] = ACTIONS(3307), + [anon_sym_BSLASHpvolcite] = ACTIONS(3307), + [anon_sym_BSLASHPvolcite] = ACTIONS(3307), + [anon_sym_BSLASHfvolcite] = ACTIONS(3307), + [anon_sym_BSLASHftvolcite] = ACTIONS(3307), + [anon_sym_BSLASHsvolcite] = ACTIONS(3307), + [anon_sym_BSLASHSvolcite] = ACTIONS(3307), + [anon_sym_BSLASHtvolcite] = ACTIONS(3307), + [anon_sym_BSLASHTvolcite] = ACTIONS(3307), + [anon_sym_BSLASHavolcite] = ACTIONS(3307), + [anon_sym_BSLASHAvolcite] = ACTIONS(3307), + [anon_sym_BSLASHnotecite] = ACTIONS(3307), + [anon_sym_BSLASHNotecite] = ACTIONS(3307), + [anon_sym_BSLASHpnotecite] = ACTIONS(3307), + [anon_sym_BSLASHPnotecite] = ACTIONS(3307), + [anon_sym_BSLASHfnotecite] = ACTIONS(3307), + [anon_sym_BSLASHlabel] = ACTIONS(3313), + [anon_sym_BSLASHref] = ACTIONS(3316), + [anon_sym_BSLASHeqref] = ACTIONS(3316), + [anon_sym_BSLASHvref] = ACTIONS(3316), + [anon_sym_BSLASHVref] = ACTIONS(3316), + [anon_sym_BSLASHautoref] = ACTIONS(3316), + [anon_sym_BSLASHpageref] = ACTIONS(3316), + [anon_sym_BSLASHcref] = ACTIONS(3316), + [anon_sym_BSLASHCref] = ACTIONS(3316), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3319), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3319), + [anon_sym_BSLASHnamecref] = ACTIONS(3316), + [anon_sym_BSLASHnameCref] = ACTIONS(3316), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3316), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3316), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3316), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3316), + [anon_sym_BSLASHlabelcref] = ACTIONS(3316), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3316), + [anon_sym_BSLASHcrefrange] = ACTIONS(3322), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3325), + [anon_sym_BSLASHCrefrange] = ACTIONS(3322), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3325), + [anon_sym_BSLASHnewlabel] = ACTIONS(3328), + [anon_sym_BSLASHnewcommand] = ACTIONS(3331), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3334), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3331), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3334), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3331), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3334), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3334), + [anon_sym_BSLASHdef] = ACTIONS(3337), + [anon_sym_BSLASHlet] = ACTIONS(3340), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3346), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3349), + [anon_sym_BSLASHgls] = ACTIONS(3352), + [anon_sym_BSLASHGls] = ACTIONS(3352), + [anon_sym_BSLASHGLS] = ACTIONS(3352), + [anon_sym_BSLASHglspl] = ACTIONS(3352), + [anon_sym_BSLASHGlspl] = ACTIONS(3352), + [anon_sym_BSLASHGLSpl] = ACTIONS(3352), + [anon_sym_BSLASHglsdisp] = ACTIONS(3352), + [anon_sym_BSLASHglslink] = ACTIONS(3352), + [anon_sym_BSLASHglstext] = ACTIONS(3352), + [anon_sym_BSLASHGlstext] = ACTIONS(3352), + [anon_sym_BSLASHGLStext] = ACTIONS(3352), + [anon_sym_BSLASHglsfirst] = ACTIONS(3352), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3352), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3352), + [anon_sym_BSLASHglsplural] = ACTIONS(3352), + [anon_sym_BSLASHGlsplural] = ACTIONS(3352), + [anon_sym_BSLASHGLSplural] = ACTIONS(3352), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3352), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3352), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3352), + [anon_sym_BSLASHglsname] = ACTIONS(3352), + [anon_sym_BSLASHGlsname] = ACTIONS(3352), + [anon_sym_BSLASHGLSname] = ACTIONS(3352), + [anon_sym_BSLASHglssymbol] = ACTIONS(3352), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3352), + [anon_sym_BSLASHglsdesc] = ACTIONS(3352), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3352), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3352), + [anon_sym_BSLASHglsuseri] = ACTIONS(3352), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3352), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3352), + [anon_sym_BSLASHglsuserii] = ACTIONS(3352), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3352), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3352), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3352), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3352), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3352), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3352), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3352), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3352), + [anon_sym_BSLASHglsuserv] = ACTIONS(3352), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3352), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3352), + [anon_sym_BSLASHglsuservi] = ACTIONS(3352), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3352), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3352), + [anon_sym_BSLASHnewacronym] = ACTIONS(3355), + [anon_sym_BSLASHacrshort] = ACTIONS(3358), + [anon_sym_BSLASHAcrshort] = ACTIONS(3358), + [anon_sym_BSLASHACRshort] = ACTIONS(3358), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3358), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3358), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3358), + [anon_sym_BSLASHacrlong] = ACTIONS(3358), + [anon_sym_BSLASHAcrlong] = ACTIONS(3358), + [anon_sym_BSLASHACRlong] = ACTIONS(3358), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3358), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3358), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3358), + [anon_sym_BSLASHacrfull] = ACTIONS(3358), + [anon_sym_BSLASHAcrfull] = ACTIONS(3358), + [anon_sym_BSLASHACRfull] = ACTIONS(3358), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3358), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3358), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3358), + [anon_sym_BSLASHacs] = ACTIONS(3358), + [anon_sym_BSLASHAcs] = ACTIONS(3358), + [anon_sym_BSLASHacsp] = ACTIONS(3358), + [anon_sym_BSLASHAcsp] = ACTIONS(3358), + [anon_sym_BSLASHacl] = ACTIONS(3358), + [anon_sym_BSLASHAcl] = ACTIONS(3358), + [anon_sym_BSLASHaclp] = ACTIONS(3358), + [anon_sym_BSLASHAclp] = ACTIONS(3358), + [anon_sym_BSLASHacf] = ACTIONS(3358), + [anon_sym_BSLASHAcf] = ACTIONS(3358), + [anon_sym_BSLASHacfp] = ACTIONS(3358), + [anon_sym_BSLASHAcfp] = ACTIONS(3358), + [anon_sym_BSLASHac] = ACTIONS(3358), + [anon_sym_BSLASHAc] = ACTIONS(3358), + [anon_sym_BSLASHacp] = ACTIONS(3358), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3358), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3358), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3358), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3358), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3358), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3358), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3358), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3358), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3358), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3358), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3361), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3364), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3361), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3364), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3367), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3370), + [anon_sym_BSLASHcolor] = ACTIONS(3373), + [anon_sym_BSLASHcolorbox] = ACTIONS(3373), + [anon_sym_BSLASHtextcolor] = ACTIONS(3373), + [anon_sym_BSLASHpagecolor] = ACTIONS(3373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3376), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3376), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), }, - [218] = { - [sym_block_comment] = STATE(236), - [sym__text_with_env_content] = STATE(236), - [sym__text_content] = STATE(236), - [sym_curly_group] = STATE(236), - [sym_mixed_group] = STATE(236), - [sym_text] = STATE(236), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(236), - [sym_inline_formula] = STATE(236), - [sym_math_set] = STATE(236), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(236), - [sym_comment_environment] = STATE(236), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(236), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(236), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(236), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(236), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(236), - [sym_generic_command] = STATE(236), - [sym_package_include] = STATE(236), - [sym_class_include] = STATE(236), - [sym_latex_include] = STATE(236), - [sym_biblatex_include] = STATE(236), - [sym_bibtex_include] = STATE(236), - [sym_graphics_include] = STATE(236), - [sym_svg_include] = STATE(236), - [sym_inkscape_include] = STATE(236), - [sym_verbatim_include] = STATE(236), - [sym_import_include] = STATE(236), - [sym_caption] = STATE(236), - [sym_citation] = STATE(236), - [sym_label_definition] = STATE(236), - [sym_label_reference] = STATE(236), - [sym_label_reference_range] = STATE(236), - [sym_label_number] = STATE(236), - [sym_new_command_definition] = STATE(236), - [sym_old_command_definition] = STATE(236), - [sym_let_command_definition] = STATE(236), - [sym_paired_delimiter_definition] = STATE(236), - [sym_environment_definition] = STATE(236), - [sym_glossary_entry_definition] = STATE(236), - [sym_glossary_entry_reference] = STATE(236), - [sym_acronym_definition] = STATE(236), - [sym_acronym_reference] = STATE(236), - [sym_theorem_definition] = STATE(236), - [sym_color_definition] = STATE(236), - [sym_color_set_definition] = STATE(236), - [sym_color_reference] = STATE(236), - [sym_tikz_library_import] = STATE(236), - [sym_text_mode] = STATE(236), - [aux_sym_mixed_group_repeat1] = STATE(236), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [227] = { + [sym_block_comment] = STATE(1131), + [sym_operator] = STATE(1131), + [sym__command] = STATE(1131), + [sym_generic_command] = STATE(1131), + [sym_title_declaration] = STATE(1131), + [sym_author_declaration] = STATE(1131), + [sym_package_include] = STATE(1131), + [sym_class_include] = STATE(1131), + [sym_latex_include] = STATE(1131), + [sym_biblatex_include] = STATE(1131), + [sym_bibtex_include] = STATE(1131), + [sym_graphics_include] = STATE(1131), + [sym_svg_include] = STATE(1131), + [sym_inkscape_include] = STATE(1131), + [sym_verbatim_include] = STATE(1131), + [sym_import_include] = STATE(1131), + [sym_caption] = STATE(1131), + [sym_citation] = STATE(1131), + [sym_label_definition] = STATE(1131), + [sym_label_reference] = STATE(1131), + [sym_label_reference_range] = STATE(1131), + [sym_label_number] = STATE(1131), + [sym_new_command_definition] = STATE(1131), + [sym_old_command_definition] = STATE(1131), + [sym_let_command_definition] = STATE(1131), + [sym_paired_delimiter_definition] = STATE(1131), + [sym_environment_definition] = STATE(1131), + [sym_glossary_entry_definition] = STATE(1131), + [sym_glossary_entry_reference] = STATE(1131), + [sym_acronym_definition] = STATE(1131), + [sym_acronym_reference] = STATE(1131), + [sym_theorem_definition] = STATE(1131), + [sym_color_definition] = STATE(1131), + [sym_color_set_definition] = STATE(1131), + [sym_color_reference] = STATE(1131), + [sym_tikz_library_import] = STATE(1131), + [aux_sym_text_repeat1] = STATE(226), + [sym_command_name] = ACTIONS(1020), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_BSLASHpart] = ACTIONS(2999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddpart] = ACTIONS(2999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2997), + [anon_sym_BSLASHchapter] = ACTIONS(2999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddchap] = ACTIONS(2999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsection] = ACTIONS(2999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHaddsec] = ACTIONS(2999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2997), + [anon_sym_BSLASHparagraph] = ACTIONS(2999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2997), + [anon_sym_BSLASHitem] = ACTIONS(2999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(1026), + [sym_placeholder] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(1040), + [anon_sym_BSLASHauthor] = ACTIONS(1042), + [anon_sym_BSLASHusepackage] = ACTIONS(1044), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1044), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1046), + [anon_sym_BSLASHinclude] = ACTIONS(1048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1048), + [anon_sym_BSLASHinput] = ACTIONS(1048), + [anon_sym_BSLASHsubfile] = ACTIONS(1048), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1050), + [anon_sym_BSLASHbibliography] = ACTIONS(1052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1054), + [anon_sym_BSLASHincludesvg] = ACTIONS(1056), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1060), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1060), + [anon_sym_BSLASHimport] = ACTIONS(1062), + [anon_sym_BSLASHsubimport] = ACTIONS(1062), + [anon_sym_BSLASHinputfrom] = ACTIONS(1062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1062), + [anon_sym_BSLASHincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1062), + [anon_sym_BSLASHcaption] = ACTIONS(1064), + [anon_sym_BSLASHcite] = ACTIONS(1066), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCite] = ACTIONS(1066), + [anon_sym_BSLASHnocite] = ACTIONS(1066), + [anon_sym_BSLASHcitet] = ACTIONS(1066), + [anon_sym_BSLASHcitep] = ACTIONS(1066), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteauthor] = ACTIONS(1066), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1066), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitetitle] = ACTIONS(1066), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteyear] = ACTIONS(1066), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1068), + [anon_sym_BSLASHcitedate] = ACTIONS(1066), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1068), + [anon_sym_BSLASHciteurl] = ACTIONS(1066), + [anon_sym_BSLASHfullcite] = ACTIONS(1066), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1066), + [anon_sym_BSLASHcitealt] = ACTIONS(1066), + [anon_sym_BSLASHcitealp] = ACTIONS(1066), + [anon_sym_BSLASHcitetext] = ACTIONS(1066), + [anon_sym_BSLASHparencite] = ACTIONS(1066), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHParencite] = ACTIONS(1066), + [anon_sym_BSLASHfootcite] = ACTIONS(1066), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1066), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1066), + [anon_sym_BSLASHtextcite] = ACTIONS(1066), + [anon_sym_BSLASHTextcite] = ACTIONS(1066), + [anon_sym_BSLASHsmartcite] = ACTIONS(1066), + [anon_sym_BSLASHSmartcite] = ACTIONS(1066), + [anon_sym_BSLASHsupercite] = ACTIONS(1066), + [anon_sym_BSLASHautocite] = ACTIONS(1066), + [anon_sym_BSLASHAutocite] = ACTIONS(1066), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1068), + [anon_sym_BSLASHvolcite] = ACTIONS(1066), + [anon_sym_BSLASHVolcite] = ACTIONS(1066), + [anon_sym_BSLASHpvolcite] = ACTIONS(1066), + [anon_sym_BSLASHPvolcite] = ACTIONS(1066), + [anon_sym_BSLASHfvolcite] = ACTIONS(1066), + [anon_sym_BSLASHftvolcite] = ACTIONS(1066), + [anon_sym_BSLASHsvolcite] = ACTIONS(1066), + [anon_sym_BSLASHSvolcite] = ACTIONS(1066), + [anon_sym_BSLASHtvolcite] = ACTIONS(1066), + [anon_sym_BSLASHTvolcite] = ACTIONS(1066), + [anon_sym_BSLASHavolcite] = ACTIONS(1066), + [anon_sym_BSLASHAvolcite] = ACTIONS(1066), + [anon_sym_BSLASHnotecite] = ACTIONS(1066), + [anon_sym_BSLASHNotecite] = ACTIONS(1066), + [anon_sym_BSLASHpnotecite] = ACTIONS(1066), + [anon_sym_BSLASHPnotecite] = ACTIONS(1066), + [anon_sym_BSLASHfnotecite] = ACTIONS(1066), + [anon_sym_BSLASHlabel] = ACTIONS(1070), + [anon_sym_BSLASHref] = ACTIONS(1072), + [anon_sym_BSLASHeqref] = ACTIONS(1072), + [anon_sym_BSLASHvref] = ACTIONS(1072), + [anon_sym_BSLASHVref] = ACTIONS(1072), + [anon_sym_BSLASHautoref] = ACTIONS(1072), + [anon_sym_BSLASHpageref] = ACTIONS(1072), + [anon_sym_BSLASHcref] = ACTIONS(1072), + [anon_sym_BSLASHCref] = ACTIONS(1072), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1074), + [anon_sym_BSLASHnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnameCref] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1072), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1072), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1072), + [anon_sym_BSLASHlabelcref] = ACTIONS(1072), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1072), + [anon_sym_BSLASHcrefrange] = ACTIONS(1076), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHCrefrange] = ACTIONS(1076), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1078), + [anon_sym_BSLASHnewlabel] = ACTIONS(1080), + [anon_sym_BSLASHnewcommand] = ACTIONS(1082), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1082), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1082), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1084), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1082), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1084), + [anon_sym_BSLASHdef] = ACTIONS(1086), + [anon_sym_BSLASHlet] = ACTIONS(1088), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1090), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1090), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1092), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1094), + [anon_sym_BSLASHgls] = ACTIONS(1096), + [anon_sym_BSLASHGls] = ACTIONS(1096), + [anon_sym_BSLASHGLS] = ACTIONS(1096), + [anon_sym_BSLASHglspl] = ACTIONS(1096), + [anon_sym_BSLASHGlspl] = ACTIONS(1096), + [anon_sym_BSLASHGLSpl] = ACTIONS(1096), + [anon_sym_BSLASHglsdisp] = ACTIONS(1096), + [anon_sym_BSLASHglslink] = ACTIONS(1096), + [anon_sym_BSLASHglstext] = ACTIONS(1096), + [anon_sym_BSLASHGlstext] = ACTIONS(1096), + [anon_sym_BSLASHGLStext] = ACTIONS(1096), + [anon_sym_BSLASHglsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1096), + [anon_sym_BSLASHglsplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSplural] = ACTIONS(1096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1096), + [anon_sym_BSLASHglsname] = ACTIONS(1096), + [anon_sym_BSLASHGlsname] = ACTIONS(1096), + [anon_sym_BSLASHGLSname] = ACTIONS(1096), + [anon_sym_BSLASHglssymbol] = ACTIONS(1096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1096), + [anon_sym_BSLASHglsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1096), + [anon_sym_BSLASHglsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1096), + [anon_sym_BSLASHglsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1096), + [anon_sym_BSLASHglsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1096), + [anon_sym_BSLASHglsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1096), + [anon_sym_BSLASHnewacronym] = ACTIONS(1098), + [anon_sym_BSLASHacrshort] = ACTIONS(1100), + [anon_sym_BSLASHAcrshort] = ACTIONS(1100), + [anon_sym_BSLASHACRshort] = ACTIONS(1100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1100), + [anon_sym_BSLASHacrlong] = ACTIONS(1100), + [anon_sym_BSLASHAcrlong] = ACTIONS(1100), + [anon_sym_BSLASHACRlong] = ACTIONS(1100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1100), + [anon_sym_BSLASHacrfull] = ACTIONS(1100), + [anon_sym_BSLASHAcrfull] = ACTIONS(1100), + [anon_sym_BSLASHACRfull] = ACTIONS(1100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1100), + [anon_sym_BSLASHacs] = ACTIONS(1100), + [anon_sym_BSLASHAcs] = ACTIONS(1100), + [anon_sym_BSLASHacsp] = ACTIONS(1100), + [anon_sym_BSLASHAcsp] = ACTIONS(1100), + [anon_sym_BSLASHacl] = ACTIONS(1100), + [anon_sym_BSLASHAcl] = ACTIONS(1100), + [anon_sym_BSLASHaclp] = ACTIONS(1100), + [anon_sym_BSLASHAclp] = ACTIONS(1100), + [anon_sym_BSLASHacf] = ACTIONS(1100), + [anon_sym_BSLASHAcf] = ACTIONS(1100), + [anon_sym_BSLASHacfp] = ACTIONS(1100), + [anon_sym_BSLASHAcfp] = ACTIONS(1100), + [anon_sym_BSLASHac] = ACTIONS(1100), + [anon_sym_BSLASHAc] = ACTIONS(1100), + [anon_sym_BSLASHacp] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1102), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1102), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1108), + [anon_sym_BSLASHcolor] = ACTIONS(1110), + [anon_sym_BSLASHcolorbox] = ACTIONS(1110), + [anon_sym_BSLASHtextcolor] = ACTIONS(1110), + [anon_sym_BSLASHpagecolor] = ACTIONS(1110), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1112), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1112), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), }, - [219] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [228] = { + [sym_block_comment] = STATE(1134), + [sym_operator] = STATE(1134), + [sym__command] = STATE(1134), + [sym_generic_command] = STATE(1134), + [sym_title_declaration] = STATE(1134), + [sym_author_declaration] = STATE(1134), + [sym_package_include] = STATE(1134), + [sym_class_include] = STATE(1134), + [sym_latex_include] = STATE(1134), + [sym_biblatex_include] = STATE(1134), + [sym_bibtex_include] = STATE(1134), + [sym_graphics_include] = STATE(1134), + [sym_svg_include] = STATE(1134), + [sym_inkscape_include] = STATE(1134), + [sym_verbatim_include] = STATE(1134), + [sym_import_include] = STATE(1134), + [sym_caption] = STATE(1134), + [sym_citation] = STATE(1134), + [sym_label_definition] = STATE(1134), + [sym_label_reference] = STATE(1134), + [sym_label_reference_range] = STATE(1134), + [sym_label_number] = STATE(1134), + [sym_new_command_definition] = STATE(1134), + [sym_old_command_definition] = STATE(1134), + [sym_let_command_definition] = STATE(1134), + [sym_paired_delimiter_definition] = STATE(1134), + [sym_environment_definition] = STATE(1134), + [sym_glossary_entry_definition] = STATE(1134), + [sym_glossary_entry_reference] = STATE(1134), + [sym_acronym_definition] = STATE(1134), + [sym_acronym_reference] = STATE(1134), + [sym_theorem_definition] = STATE(1134), + [sym_color_definition] = STATE(1134), + [sym_color_set_definition] = STATE(1134), + [sym_color_reference] = STATE(1134), + [sym_tikz_library_import] = STATE(1134), + [aux_sym_text_repeat1] = STATE(228), + [sym_command_name] = ACTIONS(3379), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_BSLASHpart] = ACTIONS(2875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddpart] = ACTIONS(2875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2867), + [anon_sym_BSLASHchapter] = ACTIONS(2875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddchap] = ACTIONS(2875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsection] = ACTIONS(2875), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHaddsec] = ACTIONS(2875), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2875), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2867), + [anon_sym_BSLASHparagraph] = ACTIONS(2875), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2875), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2867), + [anon_sym_BSLASHitem] = ACTIONS(2875), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(3385), + [sym_placeholder] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_CARET] = ACTIONS(3391), + [anon_sym__] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_PIPE] = ACTIONS(3391), + [anon_sym_COLON] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHend] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(3394), + [anon_sym_BSLASHauthor] = ACTIONS(3397), + [anon_sym_BSLASHusepackage] = ACTIONS(3400), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3400), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3403), + [anon_sym_BSLASHinclude] = ACTIONS(3406), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3406), + [anon_sym_BSLASHinput] = ACTIONS(3406), + [anon_sym_BSLASHsubfile] = ACTIONS(3406), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3409), + [anon_sym_BSLASHbibliography] = ACTIONS(3412), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3415), + [anon_sym_BSLASHincludesvg] = ACTIONS(3418), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3424), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3424), + [anon_sym_BSLASHimport] = ACTIONS(3427), + [anon_sym_BSLASHsubimport] = ACTIONS(3427), + [anon_sym_BSLASHinputfrom] = ACTIONS(3427), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3427), + [anon_sym_BSLASHincludefrom] = ACTIONS(3427), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3427), + [anon_sym_BSLASHcaption] = ACTIONS(3430), + [anon_sym_BSLASHcite] = ACTIONS(3433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3436), + [anon_sym_BSLASHCite] = ACTIONS(3433), + [anon_sym_BSLASHnocite] = ACTIONS(3433), + [anon_sym_BSLASHcitet] = ACTIONS(3433), + [anon_sym_BSLASHcitep] = ACTIONS(3433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3436), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3436), + [anon_sym_BSLASHciteauthor] = ACTIONS(3433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3436), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3436), + [anon_sym_BSLASHcitetitle] = ACTIONS(3433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3436), + [anon_sym_BSLASHciteyear] = ACTIONS(3433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3436), + [anon_sym_BSLASHcitedate] = ACTIONS(3433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3436), + [anon_sym_BSLASHciteurl] = ACTIONS(3433), + [anon_sym_BSLASHfullcite] = ACTIONS(3433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3433), + [anon_sym_BSLASHcitealt] = ACTIONS(3433), + [anon_sym_BSLASHcitealp] = ACTIONS(3433), + [anon_sym_BSLASHcitetext] = ACTIONS(3433), + [anon_sym_BSLASHparencite] = ACTIONS(3433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3436), + [anon_sym_BSLASHParencite] = ACTIONS(3433), + [anon_sym_BSLASHfootcite] = ACTIONS(3433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3433), + [anon_sym_BSLASHtextcite] = ACTIONS(3433), + [anon_sym_BSLASHTextcite] = ACTIONS(3433), + [anon_sym_BSLASHsmartcite] = ACTIONS(3433), + [anon_sym_BSLASHSmartcite] = ACTIONS(3433), + [anon_sym_BSLASHsupercite] = ACTIONS(3433), + [anon_sym_BSLASHautocite] = ACTIONS(3433), + [anon_sym_BSLASHAutocite] = ACTIONS(3433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3436), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3436), + [anon_sym_BSLASHvolcite] = ACTIONS(3433), + [anon_sym_BSLASHVolcite] = ACTIONS(3433), + [anon_sym_BSLASHpvolcite] = ACTIONS(3433), + [anon_sym_BSLASHPvolcite] = ACTIONS(3433), + [anon_sym_BSLASHfvolcite] = ACTIONS(3433), + [anon_sym_BSLASHftvolcite] = ACTIONS(3433), + [anon_sym_BSLASHsvolcite] = ACTIONS(3433), + [anon_sym_BSLASHSvolcite] = ACTIONS(3433), + [anon_sym_BSLASHtvolcite] = ACTIONS(3433), + [anon_sym_BSLASHTvolcite] = ACTIONS(3433), + [anon_sym_BSLASHavolcite] = ACTIONS(3433), + [anon_sym_BSLASHAvolcite] = ACTIONS(3433), + [anon_sym_BSLASHnotecite] = ACTIONS(3433), + [anon_sym_BSLASHNotecite] = ACTIONS(3433), + [anon_sym_BSLASHpnotecite] = ACTIONS(3433), + [anon_sym_BSLASHPnotecite] = ACTIONS(3433), + [anon_sym_BSLASHfnotecite] = ACTIONS(3433), + [anon_sym_BSLASHlabel] = ACTIONS(3439), + [anon_sym_BSLASHref] = ACTIONS(3442), + [anon_sym_BSLASHeqref] = ACTIONS(3442), + [anon_sym_BSLASHvref] = ACTIONS(3442), + [anon_sym_BSLASHVref] = ACTIONS(3442), + [anon_sym_BSLASHautoref] = ACTIONS(3442), + [anon_sym_BSLASHpageref] = ACTIONS(3442), + [anon_sym_BSLASHcref] = ACTIONS(3442), + [anon_sym_BSLASHCref] = ACTIONS(3442), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3445), + [anon_sym_BSLASHnamecref] = ACTIONS(3442), + [anon_sym_BSLASHnameCref] = ACTIONS(3442), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3442), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3442), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3442), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3442), + [anon_sym_BSLASHlabelcref] = ACTIONS(3442), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3442), + [anon_sym_BSLASHcrefrange] = ACTIONS(3448), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3451), + [anon_sym_BSLASHCrefrange] = ACTIONS(3448), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3451), + [anon_sym_BSLASHnewlabel] = ACTIONS(3454), + [anon_sym_BSLASHnewcommand] = ACTIONS(3457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3460), + [anon_sym_BSLASHdef] = ACTIONS(3463), + [anon_sym_BSLASHlet] = ACTIONS(3466), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3469), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3469), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3472), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3475), + [anon_sym_BSLASHgls] = ACTIONS(3478), + [anon_sym_BSLASHGls] = ACTIONS(3478), + [anon_sym_BSLASHGLS] = ACTIONS(3478), + [anon_sym_BSLASHglspl] = ACTIONS(3478), + [anon_sym_BSLASHGlspl] = ACTIONS(3478), + [anon_sym_BSLASHGLSpl] = ACTIONS(3478), + [anon_sym_BSLASHglsdisp] = ACTIONS(3478), + [anon_sym_BSLASHglslink] = ACTIONS(3478), + [anon_sym_BSLASHglstext] = ACTIONS(3478), + [anon_sym_BSLASHGlstext] = ACTIONS(3478), + [anon_sym_BSLASHGLStext] = ACTIONS(3478), + [anon_sym_BSLASHglsfirst] = ACTIONS(3478), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3478), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3478), + [anon_sym_BSLASHglsplural] = ACTIONS(3478), + [anon_sym_BSLASHGlsplural] = ACTIONS(3478), + [anon_sym_BSLASHGLSplural] = ACTIONS(3478), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3478), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3478), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3478), + [anon_sym_BSLASHglsname] = ACTIONS(3478), + [anon_sym_BSLASHGlsname] = ACTIONS(3478), + [anon_sym_BSLASHGLSname] = ACTIONS(3478), + [anon_sym_BSLASHglssymbol] = ACTIONS(3478), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3478), + [anon_sym_BSLASHglsdesc] = ACTIONS(3478), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3478), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3478), + [anon_sym_BSLASHglsuseri] = ACTIONS(3478), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3478), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3478), + [anon_sym_BSLASHglsuserii] = ACTIONS(3478), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3478), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3478), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3478), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3478), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3478), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3478), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3478), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3478), + [anon_sym_BSLASHglsuserv] = ACTIONS(3478), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3478), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3478), + [anon_sym_BSLASHglsuservi] = ACTIONS(3478), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3478), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3478), + [anon_sym_BSLASHnewacronym] = ACTIONS(3481), + [anon_sym_BSLASHacrshort] = ACTIONS(3484), + [anon_sym_BSLASHAcrshort] = ACTIONS(3484), + [anon_sym_BSLASHACRshort] = ACTIONS(3484), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3484), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3484), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3484), + [anon_sym_BSLASHacrlong] = ACTIONS(3484), + [anon_sym_BSLASHAcrlong] = ACTIONS(3484), + [anon_sym_BSLASHACRlong] = ACTIONS(3484), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3484), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3484), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3484), + [anon_sym_BSLASHacrfull] = ACTIONS(3484), + [anon_sym_BSLASHAcrfull] = ACTIONS(3484), + [anon_sym_BSLASHACRfull] = ACTIONS(3484), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3484), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3484), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3484), + [anon_sym_BSLASHacs] = ACTIONS(3484), + [anon_sym_BSLASHAcs] = ACTIONS(3484), + [anon_sym_BSLASHacsp] = ACTIONS(3484), + [anon_sym_BSLASHAcsp] = ACTIONS(3484), + [anon_sym_BSLASHacl] = ACTIONS(3484), + [anon_sym_BSLASHAcl] = ACTIONS(3484), + [anon_sym_BSLASHaclp] = ACTIONS(3484), + [anon_sym_BSLASHAclp] = ACTIONS(3484), + [anon_sym_BSLASHacf] = ACTIONS(3484), + [anon_sym_BSLASHAcf] = ACTIONS(3484), + [anon_sym_BSLASHacfp] = ACTIONS(3484), + [anon_sym_BSLASHAcfp] = ACTIONS(3484), + [anon_sym_BSLASHac] = ACTIONS(3484), + [anon_sym_BSLASHAc] = ACTIONS(3484), + [anon_sym_BSLASHacp] = ACTIONS(3484), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3484), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3484), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3484), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3484), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3484), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3484), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3484), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3484), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3484), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3484), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3487), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3490), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3487), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3490), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3496), + [anon_sym_BSLASHcolor] = ACTIONS(3499), + [anon_sym_BSLASHcolorbox] = ACTIONS(3499), + [anon_sym_BSLASHtextcolor] = ACTIONS(3499), + [anon_sym_BSLASHpagecolor] = ACTIONS(3499), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3502), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3502), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), }, - [220] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3467), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_RPAREN] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3476), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3481), - [sym_word] = ACTIONS(3484), - [sym_placeholder] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3490), - [anon_sym_DASH] = ACTIONS(3490), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_CARET] = ACTIONS(3490), - [anon_sym__] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_GT] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(3490), - [anon_sym_PIPE] = ACTIONS(3490), - [anon_sym_COLON] = ACTIONS(3490), - [anon_sym_SQUOTE] = ACTIONS(3490), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3493), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3493), - [anon_sym_DOLLAR] = ACTIONS(3496), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3499), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3502), - [anon_sym_BSLASHbegin] = ACTIONS(3505), - [anon_sym_BSLASHusepackage] = ACTIONS(3508), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3508), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3511), - [anon_sym_BSLASHinclude] = ACTIONS(3514), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3514), - [anon_sym_BSLASHinput] = ACTIONS(3514), - [anon_sym_BSLASHsubfile] = ACTIONS(3514), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3517), - [anon_sym_BSLASHbibliography] = ACTIONS(3520), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3523), - [anon_sym_BSLASHincludesvg] = ACTIONS(3526), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3532), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3532), - [anon_sym_BSLASHimport] = ACTIONS(3535), - [anon_sym_BSLASHsubimport] = ACTIONS(3535), - [anon_sym_BSLASHinputfrom] = ACTIONS(3535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3535), - [anon_sym_BSLASHincludefrom] = ACTIONS(3535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3535), - [anon_sym_BSLASHcaption] = ACTIONS(3538), - [anon_sym_BSLASHcite] = ACTIONS(3541), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3544), - [anon_sym_BSLASHCite] = ACTIONS(3541), - [anon_sym_BSLASHnocite] = ACTIONS(3541), - [anon_sym_BSLASHcitet] = ACTIONS(3541), - [anon_sym_BSLASHcitep] = ACTIONS(3541), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3544), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3544), - [anon_sym_BSLASHciteauthor] = ACTIONS(3541), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3544), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3541), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3544), - [anon_sym_BSLASHcitetitle] = ACTIONS(3541), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3544), - [anon_sym_BSLASHciteyear] = ACTIONS(3541), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3544), - [anon_sym_BSLASHcitedate] = ACTIONS(3541), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3544), - [anon_sym_BSLASHciteurl] = ACTIONS(3541), - [anon_sym_BSLASHfullcite] = ACTIONS(3541), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3541), - [anon_sym_BSLASHcitealt] = ACTIONS(3541), - [anon_sym_BSLASHcitealp] = ACTIONS(3541), - [anon_sym_BSLASHcitetext] = ACTIONS(3541), - [anon_sym_BSLASHparencite] = ACTIONS(3541), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3544), - [anon_sym_BSLASHParencite] = ACTIONS(3541), - [anon_sym_BSLASHfootcite] = ACTIONS(3541), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3541), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3541), - [anon_sym_BSLASHtextcite] = ACTIONS(3541), - [anon_sym_BSLASHTextcite] = ACTIONS(3541), - [anon_sym_BSLASHsmartcite] = ACTIONS(3541), - [anon_sym_BSLASHSmartcite] = ACTIONS(3541), - [anon_sym_BSLASHsupercite] = ACTIONS(3541), - [anon_sym_BSLASHautocite] = ACTIONS(3541), - [anon_sym_BSLASHAutocite] = ACTIONS(3541), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3544), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3544), - [anon_sym_BSLASHvolcite] = ACTIONS(3541), - [anon_sym_BSLASHVolcite] = ACTIONS(3541), - [anon_sym_BSLASHpvolcite] = ACTIONS(3541), - [anon_sym_BSLASHPvolcite] = ACTIONS(3541), - [anon_sym_BSLASHfvolcite] = ACTIONS(3541), - [anon_sym_BSLASHftvolcite] = ACTIONS(3541), - [anon_sym_BSLASHsvolcite] = ACTIONS(3541), - [anon_sym_BSLASHSvolcite] = ACTIONS(3541), - [anon_sym_BSLASHtvolcite] = ACTIONS(3541), - [anon_sym_BSLASHTvolcite] = ACTIONS(3541), - [anon_sym_BSLASHavolcite] = ACTIONS(3541), - [anon_sym_BSLASHAvolcite] = ACTIONS(3541), - [anon_sym_BSLASHnotecite] = ACTIONS(3541), - [anon_sym_BSLASHNotecite] = ACTIONS(3541), - [anon_sym_BSLASHpnotecite] = ACTIONS(3541), - [anon_sym_BSLASHPnotecite] = ACTIONS(3541), - [anon_sym_BSLASHfnotecite] = ACTIONS(3541), - [anon_sym_BSLASHlabel] = ACTIONS(3547), - [anon_sym_BSLASHref] = ACTIONS(3550), - [anon_sym_BSLASHeqref] = ACTIONS(3550), - [anon_sym_BSLASHvref] = ACTIONS(3550), - [anon_sym_BSLASHVref] = ACTIONS(3550), - [anon_sym_BSLASHautoref] = ACTIONS(3550), - [anon_sym_BSLASHpageref] = ACTIONS(3550), - [anon_sym_BSLASHcref] = ACTIONS(3550), - [anon_sym_BSLASHCref] = ACTIONS(3550), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3553), - [anon_sym_BSLASHnamecref] = ACTIONS(3550), - [anon_sym_BSLASHnameCref] = ACTIONS(3550), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3550), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3550), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3550), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3550), - [anon_sym_BSLASHlabelcref] = ACTIONS(3550), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3550), - [anon_sym_BSLASHcrefrange] = ACTIONS(3556), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3559), - [anon_sym_BSLASHCrefrange] = ACTIONS(3556), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3559), - [anon_sym_BSLASHnewlabel] = ACTIONS(3562), - [anon_sym_BSLASHnewcommand] = ACTIONS(3565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3568), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3568), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3568), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3568), - [anon_sym_BSLASHdef] = ACTIONS(3571), - [anon_sym_BSLASHlet] = ACTIONS(3574), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3577), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3577), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3580), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3583), - [anon_sym_BSLASHgls] = ACTIONS(3586), - [anon_sym_BSLASHGls] = ACTIONS(3586), - [anon_sym_BSLASHGLS] = ACTIONS(3586), - [anon_sym_BSLASHglspl] = ACTIONS(3586), - [anon_sym_BSLASHGlspl] = ACTIONS(3586), - [anon_sym_BSLASHGLSpl] = ACTIONS(3586), - [anon_sym_BSLASHglsdisp] = ACTIONS(3586), - [anon_sym_BSLASHglslink] = ACTIONS(3586), - [anon_sym_BSLASHglstext] = ACTIONS(3586), - [anon_sym_BSLASHGlstext] = ACTIONS(3586), - [anon_sym_BSLASHGLStext] = ACTIONS(3586), - [anon_sym_BSLASHglsfirst] = ACTIONS(3586), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3586), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3586), - [anon_sym_BSLASHglsplural] = ACTIONS(3586), - [anon_sym_BSLASHGlsplural] = ACTIONS(3586), - [anon_sym_BSLASHGLSplural] = ACTIONS(3586), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3586), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3586), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3586), - [anon_sym_BSLASHglsname] = ACTIONS(3586), - [anon_sym_BSLASHGlsname] = ACTIONS(3586), - [anon_sym_BSLASHGLSname] = ACTIONS(3586), - [anon_sym_BSLASHglssymbol] = ACTIONS(3586), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3586), - [anon_sym_BSLASHglsdesc] = ACTIONS(3586), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3586), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3586), - [anon_sym_BSLASHglsuseri] = ACTIONS(3586), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3586), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3586), - [anon_sym_BSLASHglsuserii] = ACTIONS(3586), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3586), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3586), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3586), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3586), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3586), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3586), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3586), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3586), - [anon_sym_BSLASHglsuserv] = ACTIONS(3586), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3586), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3586), - [anon_sym_BSLASHglsuservi] = ACTIONS(3586), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3586), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3586), - [anon_sym_BSLASHnewacronym] = ACTIONS(3589), - [anon_sym_BSLASHacrshort] = ACTIONS(3592), - [anon_sym_BSLASHAcrshort] = ACTIONS(3592), - [anon_sym_BSLASHACRshort] = ACTIONS(3592), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3592), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3592), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3592), - [anon_sym_BSLASHacrlong] = ACTIONS(3592), - [anon_sym_BSLASHAcrlong] = ACTIONS(3592), - [anon_sym_BSLASHACRlong] = ACTIONS(3592), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3592), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3592), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3592), - [anon_sym_BSLASHacrfull] = ACTIONS(3592), - [anon_sym_BSLASHAcrfull] = ACTIONS(3592), - [anon_sym_BSLASHACRfull] = ACTIONS(3592), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3592), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3592), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3592), - [anon_sym_BSLASHacs] = ACTIONS(3592), - [anon_sym_BSLASHAcs] = ACTIONS(3592), - [anon_sym_BSLASHacsp] = ACTIONS(3592), - [anon_sym_BSLASHAcsp] = ACTIONS(3592), - [anon_sym_BSLASHacl] = ACTIONS(3592), - [anon_sym_BSLASHAcl] = ACTIONS(3592), - [anon_sym_BSLASHaclp] = ACTIONS(3592), - [anon_sym_BSLASHAclp] = ACTIONS(3592), - [anon_sym_BSLASHacf] = ACTIONS(3592), - [anon_sym_BSLASHAcf] = ACTIONS(3592), - [anon_sym_BSLASHacfp] = ACTIONS(3592), - [anon_sym_BSLASHAcfp] = ACTIONS(3592), - [anon_sym_BSLASHac] = ACTIONS(3592), - [anon_sym_BSLASHAc] = ACTIONS(3592), - [anon_sym_BSLASHacp] = ACTIONS(3592), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3592), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3592), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3592), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3592), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3592), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3592), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3592), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3592), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3592), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3592), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3598), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3598), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3601), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3604), - [anon_sym_BSLASHcolor] = ACTIONS(3607), - [anon_sym_BSLASHcolorbox] = ACTIONS(3607), - [anon_sym_BSLASHtextcolor] = ACTIONS(3607), - [anon_sym_BSLASHpagecolor] = ACTIONS(3607), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3610), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3610), - [anon_sym_BSLASHtext] = ACTIONS(3613), - [anon_sym_BSLASHintertext] = ACTIONS(3613), - [anon_sym_shortintertext] = ACTIONS(3613), - }, - [221] = { - [sym_block_comment] = STATE(226), - [sym__text_with_env_content] = STATE(226), - [sym__text_content] = STATE(226), - [sym_curly_group] = STATE(226), - [sym_mixed_group] = STATE(226), - [sym_text] = STATE(226), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(226), - [sym_inline_formula] = STATE(226), - [sym_math_set] = STATE(226), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(226), - [sym_comment_environment] = STATE(226), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(226), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(226), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(226), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(226), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(226), - [sym_generic_command] = STATE(226), - [sym_package_include] = STATE(226), - [sym_class_include] = STATE(226), - [sym_latex_include] = STATE(226), - [sym_biblatex_include] = STATE(226), - [sym_bibtex_include] = STATE(226), - [sym_graphics_include] = STATE(226), - [sym_svg_include] = STATE(226), - [sym_inkscape_include] = STATE(226), - [sym_verbatim_include] = STATE(226), - [sym_import_include] = STATE(226), - [sym_caption] = STATE(226), - [sym_citation] = STATE(226), - [sym_label_definition] = STATE(226), - [sym_label_reference] = STATE(226), - [sym_label_reference_range] = STATE(226), - [sym_label_number] = STATE(226), - [sym_new_command_definition] = STATE(226), - [sym_old_command_definition] = STATE(226), - [sym_let_command_definition] = STATE(226), - [sym_paired_delimiter_definition] = STATE(226), - [sym_environment_definition] = STATE(226), - [sym_glossary_entry_definition] = STATE(226), - [sym_glossary_entry_reference] = STATE(226), - [sym_acronym_definition] = STATE(226), - [sym_acronym_reference] = STATE(226), - [sym_theorem_definition] = STATE(226), - [sym_color_definition] = STATE(226), - [sym_color_set_definition] = STATE(226), - [sym_color_reference] = STATE(226), - [sym_tikz_library_import] = STATE(226), - [sym_text_mode] = STATE(226), - [aux_sym_mixed_group_repeat1] = STATE(226), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_COMMA] = ACTIONS(3618), - [anon_sym_EQ] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [222] = { - [sym_block_comment] = STATE(235), - [sym__text_with_env_content] = STATE(235), - [sym__text_content] = STATE(235), - [sym_curly_group] = STATE(235), - [sym_mixed_group] = STATE(235), - [sym_text] = STATE(235), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(235), - [sym_inline_formula] = STATE(235), - [sym_math_set] = STATE(235), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(235), - [sym_comment_environment] = STATE(235), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(235), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(235), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(235), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(235), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(235), - [sym_generic_command] = STATE(235), - [sym_package_include] = STATE(235), - [sym_class_include] = STATE(235), - [sym_latex_include] = STATE(235), - [sym_biblatex_include] = STATE(235), - [sym_bibtex_include] = STATE(235), - [sym_graphics_include] = STATE(235), - [sym_svg_include] = STATE(235), - [sym_inkscape_include] = STATE(235), - [sym_verbatim_include] = STATE(235), - [sym_import_include] = STATE(235), - [sym_caption] = STATE(235), - [sym_citation] = STATE(235), - [sym_label_definition] = STATE(235), - [sym_label_reference] = STATE(235), - [sym_label_reference_range] = STATE(235), - [sym_label_number] = STATE(235), - [sym_new_command_definition] = STATE(235), - [sym_old_command_definition] = STATE(235), - [sym_let_command_definition] = STATE(235), - [sym_paired_delimiter_definition] = STATE(235), - [sym_environment_definition] = STATE(235), - [sym_glossary_entry_definition] = STATE(235), - [sym_glossary_entry_reference] = STATE(235), - [sym_acronym_definition] = STATE(235), - [sym_acronym_reference] = STATE(235), - [sym_theorem_definition] = STATE(235), - [sym_color_definition] = STATE(235), - [sym_color_set_definition] = STATE(235), - [sym_color_reference] = STATE(235), - [sym_tikz_library_import] = STATE(235), - [sym_text_mode] = STATE(235), - [aux_sym_mixed_group_repeat1] = STATE(235), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3620), - [anon_sym_COMMA] = ACTIONS(3622), - [anon_sym_EQ] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [229] = { + [sym_block_comment] = STATE(248), + [sym__text_with_env_content] = STATE(248), + [sym__text_content] = STATE(248), + [sym_curly_group] = STATE(248), + [sym_mixed_group] = STATE(248), + [sym_text] = STATE(248), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(248), + [sym_inline_formula] = STATE(248), + [sym_math_set] = STATE(248), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(248), + [sym_comment_environment] = STATE(248), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(248), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(248), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(248), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(248), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(248), + [sym_generic_command] = STATE(248), + [sym_title_declaration] = STATE(248), + [sym_author_declaration] = STATE(248), + [sym_package_include] = STATE(248), + [sym_class_include] = STATE(248), + [sym_latex_include] = STATE(248), + [sym_biblatex_include] = STATE(248), + [sym_bibtex_include] = STATE(248), + [sym_graphics_include] = STATE(248), + [sym_svg_include] = STATE(248), + [sym_inkscape_include] = STATE(248), + [sym_verbatim_include] = STATE(248), + [sym_import_include] = STATE(248), + [sym_caption] = STATE(248), + [sym_citation] = STATE(248), + [sym_label_definition] = STATE(248), + [sym_label_reference] = STATE(248), + [sym_label_reference_range] = STATE(248), + [sym_label_number] = STATE(248), + [sym_new_command_definition] = STATE(248), + [sym_old_command_definition] = STATE(248), + [sym_let_command_definition] = STATE(248), + [sym_paired_delimiter_definition] = STATE(248), + [sym_environment_definition] = STATE(248), + [sym_glossary_entry_definition] = STATE(248), + [sym_glossary_entry_reference] = STATE(248), + [sym_acronym_definition] = STATE(248), + [sym_acronym_reference] = STATE(248), + [sym_theorem_definition] = STATE(248), + [sym_color_definition] = STATE(248), + [sym_color_set_definition] = STATE(248), + [sym_color_reference] = STATE(248), + [sym_tikz_library_import] = STATE(248), + [sym_text_mode] = STATE(248), + [aux_sym_mixed_group_repeat1] = STATE(248), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [223] = { - [sym_block_comment] = STATE(234), - [sym__text_with_env_content] = STATE(234), - [sym__text_content] = STATE(234), - [sym_curly_group] = STATE(234), - [sym_brack_group] = STATE(234), - [sym_text] = STATE(234), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(234), - [sym_inline_formula] = STATE(234), - [sym_math_set] = STATE(234), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(234), - [sym_comment_environment] = STATE(234), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(234), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(234), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(234), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(234), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(234), - [sym_generic_command] = STATE(234), - [sym_package_include] = STATE(234), - [sym_class_include] = STATE(234), - [sym_latex_include] = STATE(234), - [sym_biblatex_include] = STATE(234), - [sym_bibtex_include] = STATE(234), - [sym_graphics_include] = STATE(234), - [sym_svg_include] = STATE(234), - [sym_inkscape_include] = STATE(234), - [sym_verbatim_include] = STATE(234), - [sym_import_include] = STATE(234), - [sym_caption] = STATE(234), - [sym_citation] = STATE(234), - [sym_label_definition] = STATE(234), - [sym_label_reference] = STATE(234), - [sym_label_reference_range] = STATE(234), - [sym_label_number] = STATE(234), - [sym_new_command_definition] = STATE(234), - [sym_old_command_definition] = STATE(234), - [sym_let_command_definition] = STATE(234), - [sym_paired_delimiter_definition] = STATE(234), - [sym_environment_definition] = STATE(234), - [sym_glossary_entry_definition] = STATE(234), - [sym_glossary_entry_reference] = STATE(234), - [sym_acronym_definition] = STATE(234), - [sym_acronym_reference] = STATE(234), - [sym_theorem_definition] = STATE(234), - [sym_color_definition] = STATE(234), - [sym_color_set_definition] = STATE(234), - [sym_color_reference] = STATE(234), - [sym_tikz_library_import] = STATE(234), - [sym_text_mode] = STATE(234), - [aux_sym_brack_group_repeat1] = STATE(234), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_COMMA] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [230] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3607), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3607), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [224] = { - [sym_block_comment] = STATE(225), - [sym__text_with_env_content] = STATE(225), - [sym__text_content] = STATE(225), - [sym_curly_group] = STATE(225), - [sym_brack_group] = STATE(225), - [sym_text] = STATE(225), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(225), - [sym_inline_formula] = STATE(225), - [sym_math_set] = STATE(225), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(225), - [sym_comment_environment] = STATE(225), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(225), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(225), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(225), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(225), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(225), - [sym_generic_command] = STATE(225), - [sym_package_include] = STATE(225), - [sym_class_include] = STATE(225), - [sym_latex_include] = STATE(225), - [sym_biblatex_include] = STATE(225), - [sym_bibtex_include] = STATE(225), - [sym_graphics_include] = STATE(225), - [sym_svg_include] = STATE(225), - [sym_inkscape_include] = STATE(225), - [sym_verbatim_include] = STATE(225), - [sym_import_include] = STATE(225), - [sym_caption] = STATE(225), - [sym_citation] = STATE(225), - [sym_label_definition] = STATE(225), - [sym_label_reference] = STATE(225), - [sym_label_reference_range] = STATE(225), - [sym_label_number] = STATE(225), - [sym_new_command_definition] = STATE(225), - [sym_old_command_definition] = STATE(225), - [sym_let_command_definition] = STATE(225), - [sym_paired_delimiter_definition] = STATE(225), - [sym_environment_definition] = STATE(225), - [sym_glossary_entry_definition] = STATE(225), - [sym_glossary_entry_reference] = STATE(225), - [sym_acronym_definition] = STATE(225), - [sym_acronym_reference] = STATE(225), - [sym_theorem_definition] = STATE(225), - [sym_color_definition] = STATE(225), - [sym_color_set_definition] = STATE(225), - [sym_color_reference] = STATE(225), - [sym_tikz_library_import] = STATE(225), - [sym_text_mode] = STATE(225), - [aux_sym_brack_group_repeat1] = STATE(225), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_RPAREN] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3632), - [anon_sym_COMMA] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [231] = { + [sym_block_comment] = STATE(242), + [sym__text_with_env_content] = STATE(242), + [sym__text_content] = STATE(242), + [sym_curly_group] = STATE(242), + [sym_brack_group] = STATE(242), + [sym_text] = STATE(242), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(242), + [sym_inline_formula] = STATE(242), + [sym_math_set] = STATE(242), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(242), + [sym_comment_environment] = STATE(242), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(242), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(242), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(242), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(242), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(242), + [sym_generic_command] = STATE(242), + [sym_title_declaration] = STATE(242), + [sym_author_declaration] = STATE(242), + [sym_package_include] = STATE(242), + [sym_class_include] = STATE(242), + [sym_latex_include] = STATE(242), + [sym_biblatex_include] = STATE(242), + [sym_bibtex_include] = STATE(242), + [sym_graphics_include] = STATE(242), + [sym_svg_include] = STATE(242), + [sym_inkscape_include] = STATE(242), + [sym_verbatim_include] = STATE(242), + [sym_import_include] = STATE(242), + [sym_caption] = STATE(242), + [sym_citation] = STATE(242), + [sym_label_definition] = STATE(242), + [sym_label_reference] = STATE(242), + [sym_label_reference_range] = STATE(242), + [sym_label_number] = STATE(242), + [sym_new_command_definition] = STATE(242), + [sym_old_command_definition] = STATE(242), + [sym_let_command_definition] = STATE(242), + [sym_paired_delimiter_definition] = STATE(242), + [sym_environment_definition] = STATE(242), + [sym_glossary_entry_definition] = STATE(242), + [sym_glossary_entry_reference] = STATE(242), + [sym_acronym_definition] = STATE(242), + [sym_acronym_reference] = STATE(242), + [sym_theorem_definition] = STATE(242), + [sym_color_definition] = STATE(242), + [sym_color_set_definition] = STATE(242), + [sym_color_reference] = STATE(242), + [sym_tikz_library_import] = STATE(242), + [sym_text_mode] = STATE(242), + [aux_sym_brack_group_repeat1] = STATE(242), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3611), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3615), + [anon_sym_COMMA] = ACTIONS(3611), + [anon_sym_EQ] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [225] = { - [sym_block_comment] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_brack_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_math_set] = STATE(240), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(240), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(240), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(240), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(240), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym_brack_group_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3634), + [232] = { + [sym_block_comment] = STATE(232), + [sym__text_with_env_content] = STATE(232), + [sym__text_content] = STATE(232), + [sym_curly_group] = STATE(232), + [sym_brack_group] = STATE(232), + [sym_text] = STATE(232), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_math_set] = STATE(232), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(232), + [sym_comment_environment] = STATE(232), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(232), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(232), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(232), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(232), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(232), + [sym_generic_command] = STATE(232), + [sym_title_declaration] = STATE(232), + [sym_author_declaration] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_latex_include] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_bibtex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_svg_include] = STATE(232), + [sym_inkscape_include] = STATE(232), + [sym_verbatim_include] = STATE(232), + [sym_import_include] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_label_reference] = STATE(232), + [sym_label_reference_range] = STATE(232), + [sym_label_number] = STATE(232), + [sym_new_command_definition] = STATE(232), + [sym_old_command_definition] = STATE(232), + [sym_let_command_definition] = STATE(232), + [sym_paired_delimiter_definition] = STATE(232), + [sym_environment_definition] = STATE(232), + [sym_glossary_entry_definition] = STATE(232), + [sym_glossary_entry_reference] = STATE(232), + [sym_acronym_definition] = STATE(232), + [sym_acronym_reference] = STATE(232), + [sym_theorem_definition] = STATE(232), + [sym_color_definition] = STATE(232), + [sym_color_set_definition] = STATE(232), + [sym_color_reference] = STATE(232), + [sym_tikz_library_import] = STATE(232), + [sym_text_mode] = STATE(232), + [aux_sym_brack_group_repeat1] = STATE(232), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3617), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3623), + [anon_sym_RPAREN] = ACTIONS(3623), [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [226] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3638), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3629), + [anon_sym_COMMA] = ACTIONS(3623), + [anon_sym_EQ] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3631), + [sym_word] = ACTIONS(3634), + [sym_placeholder] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym__] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_GT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3643), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3649), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3652), + [anon_sym_BSLASHbegin] = ACTIONS(3655), + [anon_sym_BSLASHtitle] = ACTIONS(3658), + [anon_sym_BSLASHauthor] = ACTIONS(3661), + [anon_sym_BSLASHusepackage] = ACTIONS(3664), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3664), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3667), + [anon_sym_BSLASHinclude] = ACTIONS(3670), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3670), + [anon_sym_BSLASHinput] = ACTIONS(3670), + [anon_sym_BSLASHsubfile] = ACTIONS(3670), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3673), + [anon_sym_BSLASHbibliography] = ACTIONS(3676), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3679), + [anon_sym_BSLASHincludesvg] = ACTIONS(3682), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3685), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3688), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3688), + [anon_sym_BSLASHimport] = ACTIONS(3691), + [anon_sym_BSLASHsubimport] = ACTIONS(3691), + [anon_sym_BSLASHinputfrom] = ACTIONS(3691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3691), + [anon_sym_BSLASHincludefrom] = ACTIONS(3691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3691), + [anon_sym_BSLASHcaption] = ACTIONS(3694), + [anon_sym_BSLASHcite] = ACTIONS(3697), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3700), + [anon_sym_BSLASHCite] = ACTIONS(3697), + [anon_sym_BSLASHnocite] = ACTIONS(3697), + [anon_sym_BSLASHcitet] = ACTIONS(3697), + [anon_sym_BSLASHcitep] = ACTIONS(3697), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3700), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3700), + [anon_sym_BSLASHciteauthor] = ACTIONS(3697), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3700), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3697), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3700), + [anon_sym_BSLASHcitetitle] = ACTIONS(3697), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3700), + [anon_sym_BSLASHciteyear] = ACTIONS(3697), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3700), + [anon_sym_BSLASHcitedate] = ACTIONS(3697), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3700), + [anon_sym_BSLASHciteurl] = ACTIONS(3697), + [anon_sym_BSLASHfullcite] = ACTIONS(3697), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3697), + [anon_sym_BSLASHcitealt] = ACTIONS(3697), + [anon_sym_BSLASHcitealp] = ACTIONS(3697), + [anon_sym_BSLASHcitetext] = ACTIONS(3697), + [anon_sym_BSLASHparencite] = ACTIONS(3697), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3700), + [anon_sym_BSLASHParencite] = ACTIONS(3697), + [anon_sym_BSLASHfootcite] = ACTIONS(3697), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3697), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3697), + [anon_sym_BSLASHtextcite] = ACTIONS(3697), + [anon_sym_BSLASHTextcite] = ACTIONS(3697), + [anon_sym_BSLASHsmartcite] = ACTIONS(3697), + [anon_sym_BSLASHSmartcite] = ACTIONS(3697), + [anon_sym_BSLASHsupercite] = ACTIONS(3697), + [anon_sym_BSLASHautocite] = ACTIONS(3697), + [anon_sym_BSLASHAutocite] = ACTIONS(3697), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3700), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3700), + [anon_sym_BSLASHvolcite] = ACTIONS(3697), + [anon_sym_BSLASHVolcite] = ACTIONS(3697), + [anon_sym_BSLASHpvolcite] = ACTIONS(3697), + [anon_sym_BSLASHPvolcite] = ACTIONS(3697), + [anon_sym_BSLASHfvolcite] = ACTIONS(3697), + [anon_sym_BSLASHftvolcite] = ACTIONS(3697), + [anon_sym_BSLASHsvolcite] = ACTIONS(3697), + [anon_sym_BSLASHSvolcite] = ACTIONS(3697), + [anon_sym_BSLASHtvolcite] = ACTIONS(3697), + [anon_sym_BSLASHTvolcite] = ACTIONS(3697), + [anon_sym_BSLASHavolcite] = ACTIONS(3697), + [anon_sym_BSLASHAvolcite] = ACTIONS(3697), + [anon_sym_BSLASHnotecite] = ACTIONS(3697), + [anon_sym_BSLASHNotecite] = ACTIONS(3697), + [anon_sym_BSLASHpnotecite] = ACTIONS(3697), + [anon_sym_BSLASHPnotecite] = ACTIONS(3697), + [anon_sym_BSLASHfnotecite] = ACTIONS(3697), + [anon_sym_BSLASHlabel] = ACTIONS(3703), + [anon_sym_BSLASHref] = ACTIONS(3706), + [anon_sym_BSLASHeqref] = ACTIONS(3706), + [anon_sym_BSLASHvref] = ACTIONS(3706), + [anon_sym_BSLASHVref] = ACTIONS(3706), + [anon_sym_BSLASHautoref] = ACTIONS(3706), + [anon_sym_BSLASHpageref] = ACTIONS(3706), + [anon_sym_BSLASHcref] = ACTIONS(3706), + [anon_sym_BSLASHCref] = ACTIONS(3706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), + [anon_sym_BSLASHnamecref] = ACTIONS(3706), + [anon_sym_BSLASHnameCref] = ACTIONS(3706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3706), + [anon_sym_BSLASHlabelcref] = ACTIONS(3706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3706), + [anon_sym_BSLASHcrefrange] = ACTIONS(3712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3715), + [anon_sym_BSLASHCrefrange] = ACTIONS(3712), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3715), + [anon_sym_BSLASHnewlabel] = ACTIONS(3718), + [anon_sym_BSLASHnewcommand] = ACTIONS(3721), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3724), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3721), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3724), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3721), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3724), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3721), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3724), + [anon_sym_BSLASHdef] = ACTIONS(3727), + [anon_sym_BSLASHlet] = ACTIONS(3730), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3733), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3733), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3736), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3739), + [anon_sym_BSLASHgls] = ACTIONS(3742), + [anon_sym_BSLASHGls] = ACTIONS(3742), + [anon_sym_BSLASHGLS] = ACTIONS(3742), + [anon_sym_BSLASHglspl] = ACTIONS(3742), + [anon_sym_BSLASHGlspl] = ACTIONS(3742), + [anon_sym_BSLASHGLSpl] = ACTIONS(3742), + [anon_sym_BSLASHglsdisp] = ACTIONS(3742), + [anon_sym_BSLASHglslink] = ACTIONS(3742), + [anon_sym_BSLASHglstext] = ACTIONS(3742), + [anon_sym_BSLASHGlstext] = ACTIONS(3742), + [anon_sym_BSLASHGLStext] = ACTIONS(3742), + [anon_sym_BSLASHglsfirst] = ACTIONS(3742), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3742), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3742), + [anon_sym_BSLASHglsplural] = ACTIONS(3742), + [anon_sym_BSLASHGlsplural] = ACTIONS(3742), + [anon_sym_BSLASHGLSplural] = ACTIONS(3742), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3742), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3742), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3742), + [anon_sym_BSLASHglsname] = ACTIONS(3742), + [anon_sym_BSLASHGlsname] = ACTIONS(3742), + [anon_sym_BSLASHGLSname] = ACTIONS(3742), + [anon_sym_BSLASHglssymbol] = ACTIONS(3742), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3742), + [anon_sym_BSLASHglsdesc] = ACTIONS(3742), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3742), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3742), + [anon_sym_BSLASHglsuseri] = ACTIONS(3742), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3742), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3742), + [anon_sym_BSLASHglsuserii] = ACTIONS(3742), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3742), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3742), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3742), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3742), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3742), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3742), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3742), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3742), + [anon_sym_BSLASHglsuserv] = ACTIONS(3742), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3742), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3742), + [anon_sym_BSLASHglsuservi] = ACTIONS(3742), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3742), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3742), + [anon_sym_BSLASHnewacronym] = ACTIONS(3745), + [anon_sym_BSLASHacrshort] = ACTIONS(3748), + [anon_sym_BSLASHAcrshort] = ACTIONS(3748), + [anon_sym_BSLASHACRshort] = ACTIONS(3748), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3748), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3748), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3748), + [anon_sym_BSLASHacrlong] = ACTIONS(3748), + [anon_sym_BSLASHAcrlong] = ACTIONS(3748), + [anon_sym_BSLASHACRlong] = ACTIONS(3748), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3748), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3748), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3748), + [anon_sym_BSLASHacrfull] = ACTIONS(3748), + [anon_sym_BSLASHAcrfull] = ACTIONS(3748), + [anon_sym_BSLASHACRfull] = ACTIONS(3748), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3748), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3748), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3748), + [anon_sym_BSLASHacs] = ACTIONS(3748), + [anon_sym_BSLASHAcs] = ACTIONS(3748), + [anon_sym_BSLASHacsp] = ACTIONS(3748), + [anon_sym_BSLASHAcsp] = ACTIONS(3748), + [anon_sym_BSLASHacl] = ACTIONS(3748), + [anon_sym_BSLASHAcl] = ACTIONS(3748), + [anon_sym_BSLASHaclp] = ACTIONS(3748), + [anon_sym_BSLASHAclp] = ACTIONS(3748), + [anon_sym_BSLASHacf] = ACTIONS(3748), + [anon_sym_BSLASHAcf] = ACTIONS(3748), + [anon_sym_BSLASHacfp] = ACTIONS(3748), + [anon_sym_BSLASHAcfp] = ACTIONS(3748), + [anon_sym_BSLASHac] = ACTIONS(3748), + [anon_sym_BSLASHAc] = ACTIONS(3748), + [anon_sym_BSLASHacp] = ACTIONS(3748), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3748), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3748), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3748), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3748), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3748), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3748), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3748), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3748), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3748), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3748), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3754), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3754), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3757), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3760), + [anon_sym_BSLASHcolor] = ACTIONS(3763), + [anon_sym_BSLASHcolorbox] = ACTIONS(3763), + [anon_sym_BSLASHtextcolor] = ACTIONS(3763), + [anon_sym_BSLASHpagecolor] = ACTIONS(3763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3766), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3766), + [anon_sym_BSLASHtext] = ACTIONS(3769), + [anon_sym_BSLASHintertext] = ACTIONS(3769), + [anon_sym_shortintertext] = ACTIONS(3769), }, - [227] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3640), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [233] = { + [sym_block_comment] = STATE(250), + [sym__text_with_env_content] = STATE(250), + [sym__text_content] = STATE(250), + [sym_curly_group] = STATE(250), + [sym_mixed_group] = STATE(250), + [sym_text] = STATE(250), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(250), + [sym_inline_formula] = STATE(250), + [sym_math_set] = STATE(250), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(250), + [sym_comment_environment] = STATE(250), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(250), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(250), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(250), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(250), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(250), + [sym_generic_command] = STATE(250), + [sym_title_declaration] = STATE(250), + [sym_author_declaration] = STATE(250), + [sym_package_include] = STATE(250), + [sym_class_include] = STATE(250), + [sym_latex_include] = STATE(250), + [sym_biblatex_include] = STATE(250), + [sym_bibtex_include] = STATE(250), + [sym_graphics_include] = STATE(250), + [sym_svg_include] = STATE(250), + [sym_inkscape_include] = STATE(250), + [sym_verbatim_include] = STATE(250), + [sym_import_include] = STATE(250), + [sym_caption] = STATE(250), + [sym_citation] = STATE(250), + [sym_label_definition] = STATE(250), + [sym_label_reference] = STATE(250), + [sym_label_reference_range] = STATE(250), + [sym_label_number] = STATE(250), + [sym_new_command_definition] = STATE(250), + [sym_old_command_definition] = STATE(250), + [sym_let_command_definition] = STATE(250), + [sym_paired_delimiter_definition] = STATE(250), + [sym_environment_definition] = STATE(250), + [sym_glossary_entry_definition] = STATE(250), + [sym_glossary_entry_reference] = STATE(250), + [sym_acronym_definition] = STATE(250), + [sym_acronym_reference] = STATE(250), + [sym_theorem_definition] = STATE(250), + [sym_color_definition] = STATE(250), + [sym_color_set_definition] = STATE(250), + [sym_color_reference] = STATE(250), + [sym_tikz_library_import] = STATE(250), + [sym_text_mode] = STATE(250), + [aux_sym_mixed_group_repeat1] = STATE(250), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3772), + [anon_sym_COMMA] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [228] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_paired_delimiter_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [sym_text_mode] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3644), - [anon_sym_EQ] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [234] = { + [sym_block_comment] = STATE(254), + [sym__text_with_env_content] = STATE(254), + [sym__text_content] = STATE(254), + [sym_curly_group] = STATE(254), + [sym_mixed_group] = STATE(254), + [sym_text] = STATE(254), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(254), + [sym_inline_formula] = STATE(254), + [sym_math_set] = STATE(254), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(254), + [sym_comment_environment] = STATE(254), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(254), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(254), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(254), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(254), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(254), + [sym_generic_command] = STATE(254), + [sym_title_declaration] = STATE(254), + [sym_author_declaration] = STATE(254), + [sym_package_include] = STATE(254), + [sym_class_include] = STATE(254), + [sym_latex_include] = STATE(254), + [sym_biblatex_include] = STATE(254), + [sym_bibtex_include] = STATE(254), + [sym_graphics_include] = STATE(254), + [sym_svg_include] = STATE(254), + [sym_inkscape_include] = STATE(254), + [sym_verbatim_include] = STATE(254), + [sym_import_include] = STATE(254), + [sym_caption] = STATE(254), + [sym_citation] = STATE(254), + [sym_label_definition] = STATE(254), + [sym_label_reference] = STATE(254), + [sym_label_reference_range] = STATE(254), + [sym_label_number] = STATE(254), + [sym_new_command_definition] = STATE(254), + [sym_old_command_definition] = STATE(254), + [sym_let_command_definition] = STATE(254), + [sym_paired_delimiter_definition] = STATE(254), + [sym_environment_definition] = STATE(254), + [sym_glossary_entry_definition] = STATE(254), + [sym_glossary_entry_reference] = STATE(254), + [sym_acronym_definition] = STATE(254), + [sym_acronym_reference] = STATE(254), + [sym_theorem_definition] = STATE(254), + [sym_color_definition] = STATE(254), + [sym_color_set_definition] = STATE(254), + [sym_color_reference] = STATE(254), + [sym_tikz_library_import] = STATE(254), + [sym_text_mode] = STATE(254), + [aux_sym_mixed_group_repeat1] = STATE(254), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [229] = { + [235] = { [sym_block_comment] = STATE(240), [sym__text_with_env_content] = STATE(240), [sym__text_content] = STATE(240), [sym_curly_group] = STATE(240), - [sym_brack_group] = STATE(240), + [sym_mixed_group] = STATE(240), [sym_text] = STATE(240), - [sym_operator] = STATE(1437), + [sym_operator] = STATE(1478), [sym_displayed_equation] = STATE(240), [sym_inline_formula] = STATE(240), [sym_math_set] = STATE(240), - [sym_begin] = STATE(20), + [sym_begin] = STATE(26), [sym_generic_environment] = STATE(240), [sym_comment_environment] = STATE(240), - [sym__trivia_begin_comment] = STATE(2418), + [sym__trivia_begin_comment] = STATE(2704), [sym_verbatim_environment] = STATE(240), - [sym__trivia_begin_verbatim] = STATE(2419), + [sym__trivia_begin_verbatim] = STATE(2703), [sym_listing_environment] = STATE(240), - [sym__trivia_begin_listing] = STATE(2420), + [sym__trivia_begin_listing] = STATE(2702), [sym_minted_environment] = STATE(240), - [sym__trivia_begin_minted] = STATE(2421), + [sym__trivia_begin_minted] = STATE(2701), [sym_pycode_environment] = STATE(240), - [sym__trivia_begin_pycode] = STATE(2422), + [sym__trivia_begin_pycode] = STATE(2779), [sym__command] = STATE(240), [sym_generic_command] = STATE(240), + [sym_title_declaration] = STATE(240), + [sym_author_declaration] = STATE(240), [sym_package_include] = STATE(240), [sym_class_include] = STATE(240), [sym_latex_include] = STATE(240), @@ -97730,1215 +101903,1231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(240), [sym_tikz_library_import] = STATE(240), [sym_text_mode] = STATE(240), - [aux_sym_brack_group_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3646), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [aux_sym_mixed_group_repeat1] = STATE(240), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [230] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3648), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [236] = { + [sym_block_comment] = STATE(245), + [sym__text_with_env_content] = STATE(245), + [sym__text_content] = STATE(245), + [sym_curly_group] = STATE(245), + [sym_mixed_group] = STATE(245), + [sym_text] = STATE(245), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(245), + [sym_inline_formula] = STATE(245), + [sym_math_set] = STATE(245), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(245), + [sym_comment_environment] = STATE(245), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(245), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(245), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(245), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(245), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(245), + [sym_generic_command] = STATE(245), + [sym_title_declaration] = STATE(245), + [sym_author_declaration] = STATE(245), + [sym_package_include] = STATE(245), + [sym_class_include] = STATE(245), + [sym_latex_include] = STATE(245), + [sym_biblatex_include] = STATE(245), + [sym_bibtex_include] = STATE(245), + [sym_graphics_include] = STATE(245), + [sym_svg_include] = STATE(245), + [sym_inkscape_include] = STATE(245), + [sym_verbatim_include] = STATE(245), + [sym_import_include] = STATE(245), + [sym_caption] = STATE(245), + [sym_citation] = STATE(245), + [sym_label_definition] = STATE(245), + [sym_label_reference] = STATE(245), + [sym_label_reference_range] = STATE(245), + [sym_label_number] = STATE(245), + [sym_new_command_definition] = STATE(245), + [sym_old_command_definition] = STATE(245), + [sym_let_command_definition] = STATE(245), + [sym_paired_delimiter_definition] = STATE(245), + [sym_environment_definition] = STATE(245), + [sym_glossary_entry_definition] = STATE(245), + [sym_glossary_entry_reference] = STATE(245), + [sym_acronym_definition] = STATE(245), + [sym_acronym_reference] = STATE(245), + [sym_theorem_definition] = STATE(245), + [sym_color_definition] = STATE(245), + [sym_color_set_definition] = STATE(245), + [sym_color_reference] = STATE(245), + [sym_tikz_library_import] = STATE(245), + [sym_text_mode] = STATE(245), + [aux_sym_mixed_group_repeat1] = STATE(245), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3784), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3784), + [anon_sym_COMMA] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3786), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [231] = { - [sym_block_comment] = STATE(237), - [sym__text_with_env_content] = STATE(237), - [sym__text_content] = STATE(237), - [sym_curly_group] = STATE(237), - [sym_mixed_group] = STATE(237), - [sym_text] = STATE(237), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(237), - [sym_inline_formula] = STATE(237), - [sym_math_set] = STATE(237), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(237), - [sym_comment_environment] = STATE(237), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(237), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(237), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(237), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(237), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(237), - [sym_generic_command] = STATE(237), - [sym_package_include] = STATE(237), - [sym_class_include] = STATE(237), - [sym_latex_include] = STATE(237), - [sym_biblatex_include] = STATE(237), - [sym_bibtex_include] = STATE(237), - [sym_graphics_include] = STATE(237), - [sym_svg_include] = STATE(237), - [sym_inkscape_include] = STATE(237), - [sym_verbatim_include] = STATE(237), - [sym_import_include] = STATE(237), - [sym_caption] = STATE(237), - [sym_citation] = STATE(237), - [sym_label_definition] = STATE(237), - [sym_label_reference] = STATE(237), - [sym_label_reference_range] = STATE(237), - [sym_label_number] = STATE(237), - [sym_new_command_definition] = STATE(237), - [sym_old_command_definition] = STATE(237), - [sym_let_command_definition] = STATE(237), - [sym_paired_delimiter_definition] = STATE(237), - [sym_environment_definition] = STATE(237), - [sym_glossary_entry_definition] = STATE(237), - [sym_glossary_entry_reference] = STATE(237), - [sym_acronym_definition] = STATE(237), - [sym_acronym_reference] = STATE(237), - [sym_theorem_definition] = STATE(237), - [sym_color_definition] = STATE(237), - [sym_color_set_definition] = STATE(237), - [sym_color_reference] = STATE(237), - [sym_tikz_library_import] = STATE(237), - [sym_text_mode] = STATE(237), - [aux_sym_mixed_group_repeat1] = STATE(237), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_EQ] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [237] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3788), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [232] = { - [sym_block_comment] = STATE(229), - [sym__text_with_env_content] = STATE(229), - [sym__text_content] = STATE(229), - [sym_curly_group] = STATE(229), - [sym_brack_group] = STATE(229), - [sym_text] = STATE(229), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(229), - [sym_inline_formula] = STATE(229), - [sym_math_set] = STATE(229), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(229), - [sym_comment_environment] = STATE(229), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(229), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(229), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(229), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(229), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(229), - [sym_generic_command] = STATE(229), - [sym_package_include] = STATE(229), - [sym_class_include] = STATE(229), - [sym_latex_include] = STATE(229), - [sym_biblatex_include] = STATE(229), - [sym_bibtex_include] = STATE(229), - [sym_graphics_include] = STATE(229), - [sym_svg_include] = STATE(229), - [sym_inkscape_include] = STATE(229), - [sym_verbatim_include] = STATE(229), - [sym_import_include] = STATE(229), - [sym_caption] = STATE(229), - [sym_citation] = STATE(229), - [sym_label_definition] = STATE(229), - [sym_label_reference] = STATE(229), - [sym_label_reference_range] = STATE(229), - [sym_label_number] = STATE(229), - [sym_new_command_definition] = STATE(229), - [sym_old_command_definition] = STATE(229), - [sym_let_command_definition] = STATE(229), - [sym_paired_delimiter_definition] = STATE(229), - [sym_environment_definition] = STATE(229), - [sym_glossary_entry_definition] = STATE(229), - [sym_glossary_entry_reference] = STATE(229), - [sym_acronym_definition] = STATE(229), - [sym_acronym_reference] = STATE(229), - [sym_theorem_definition] = STATE(229), - [sym_color_definition] = STATE(229), - [sym_color_set_definition] = STATE(229), - [sym_color_reference] = STATE(229), - [sym_tikz_library_import] = STATE(229), - [sym_text_mode] = STATE(229), - [aux_sym_brack_group_repeat1] = STATE(229), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_RPAREN] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [238] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [233] = { + [239] = { [sym_block_comment] = STATE(230), [sym__text_with_env_content] = STATE(230), [sym__text_content] = STATE(230), [sym_curly_group] = STATE(230), [sym_mixed_group] = STATE(230), [sym_text] = STATE(230), - [sym_operator] = STATE(1437), + [sym_operator] = STATE(1478), [sym_displayed_equation] = STATE(230), [sym_inline_formula] = STATE(230), [sym_math_set] = STATE(230), - [sym_begin] = STATE(20), + [sym_begin] = STATE(26), [sym_generic_environment] = STATE(230), [sym_comment_environment] = STATE(230), - [sym__trivia_begin_comment] = STATE(2418), + [sym__trivia_begin_comment] = STATE(2704), [sym_verbatim_environment] = STATE(230), - [sym__trivia_begin_verbatim] = STATE(2419), + [sym__trivia_begin_verbatim] = STATE(2703), [sym_listing_environment] = STATE(230), - [sym__trivia_begin_listing] = STATE(2420), + [sym__trivia_begin_listing] = STATE(2702), [sym_minted_environment] = STATE(230), - [sym__trivia_begin_minted] = STATE(2421), + [sym__trivia_begin_minted] = STATE(2701), [sym_pycode_environment] = STATE(230), - [sym__trivia_begin_pycode] = STATE(2422), + [sym__trivia_begin_pycode] = STATE(2779), [sym__command] = STATE(230), [sym_generic_command] = STATE(230), + [sym_title_declaration] = STATE(230), + [sym_author_declaration] = STATE(230), [sym_package_include] = STATE(230), [sym_class_include] = STATE(230), [sym_latex_include] = STATE(230), @@ -98971,3326 +103160,3114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tikz_library_import] = STATE(230), [sym_text_mode] = STATE(230), [aux_sym_mixed_group_repeat1] = STATE(230), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3658), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [234] = { - [sym_block_comment] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_brack_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_math_set] = STATE(240), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(240), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(240), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(240), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(240), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym_brack_group_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [235] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3792), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3792), + [anon_sym_COMMA] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [236] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3666), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [240] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3796), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [237] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_mixed_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym_mixed_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [241] = { + [sym_block_comment] = STATE(232), + [sym__text_with_env_content] = STATE(232), + [sym__text_content] = STATE(232), + [sym_curly_group] = STATE(232), + [sym_brack_group] = STATE(232), + [sym_text] = STATE(232), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_math_set] = STATE(232), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(232), + [sym_comment_environment] = STATE(232), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(232), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(232), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(232), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(232), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(232), + [sym_generic_command] = STATE(232), + [sym_title_declaration] = STATE(232), + [sym_author_declaration] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_latex_include] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_bibtex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_svg_include] = STATE(232), + [sym_inkscape_include] = STATE(232), + [sym_verbatim_include] = STATE(232), + [sym_import_include] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_label_reference] = STATE(232), + [sym_label_reference_range] = STATE(232), + [sym_label_number] = STATE(232), + [sym_new_command_definition] = STATE(232), + [sym_old_command_definition] = STATE(232), + [sym_let_command_definition] = STATE(232), + [sym_paired_delimiter_definition] = STATE(232), + [sym_environment_definition] = STATE(232), + [sym_glossary_entry_definition] = STATE(232), + [sym_glossary_entry_reference] = STATE(232), + [sym_acronym_definition] = STATE(232), + [sym_acronym_reference] = STATE(232), + [sym_theorem_definition] = STATE(232), + [sym_color_definition] = STATE(232), + [sym_color_set_definition] = STATE(232), + [sym_color_reference] = STATE(232), + [sym_tikz_library_import] = STATE(232), + [sym_text_mode] = STATE(232), + [aux_sym_brack_group_repeat1] = STATE(232), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_RPAREN] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [238] = { - [sym_block_comment] = STATE(217), - [sym__text_with_env_content] = STATE(217), - [sym__text_content] = STATE(217), - [sym_curly_group] = STATE(217), - [sym_mixed_group] = STATE(217), - [sym_text] = STATE(217), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(217), - [sym_inline_formula] = STATE(217), - [sym_math_set] = STATE(217), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(217), - [sym_comment_environment] = STATE(217), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(217), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(217), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(217), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(217), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(217), - [sym_generic_command] = STATE(217), - [sym_package_include] = STATE(217), - [sym_class_include] = STATE(217), - [sym_latex_include] = STATE(217), - [sym_biblatex_include] = STATE(217), - [sym_bibtex_include] = STATE(217), - [sym_graphics_include] = STATE(217), - [sym_svg_include] = STATE(217), - [sym_inkscape_include] = STATE(217), - [sym_verbatim_include] = STATE(217), - [sym_import_include] = STATE(217), - [sym_caption] = STATE(217), - [sym_citation] = STATE(217), - [sym_label_definition] = STATE(217), - [sym_label_reference] = STATE(217), - [sym_label_reference_range] = STATE(217), - [sym_label_number] = STATE(217), - [sym_new_command_definition] = STATE(217), - [sym_old_command_definition] = STATE(217), - [sym_let_command_definition] = STATE(217), - [sym_paired_delimiter_definition] = STATE(217), - [sym_environment_definition] = STATE(217), - [sym_glossary_entry_definition] = STATE(217), - [sym_glossary_entry_reference] = STATE(217), - [sym_acronym_definition] = STATE(217), - [sym_acronym_reference] = STATE(217), - [sym_theorem_definition] = STATE(217), - [sym_color_definition] = STATE(217), - [sym_color_set_definition] = STATE(217), - [sym_color_reference] = STATE(217), - [sym_tikz_library_import] = STATE(217), - [sym_text_mode] = STATE(217), - [aux_sym_mixed_group_repeat1] = STATE(217), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3670), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_EQ] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), + [242] = { + [sym_block_comment] = STATE(232), + [sym__text_with_env_content] = STATE(232), + [sym__text_content] = STATE(232), + [sym_curly_group] = STATE(232), + [sym_brack_group] = STATE(232), + [sym_text] = STATE(232), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_math_set] = STATE(232), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(232), + [sym_comment_environment] = STATE(232), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(232), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(232), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(232), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(232), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(232), + [sym_generic_command] = STATE(232), + [sym_title_declaration] = STATE(232), + [sym_author_declaration] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_latex_include] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_bibtex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_svg_include] = STATE(232), + [sym_inkscape_include] = STATE(232), + [sym_verbatim_include] = STATE(232), + [sym_import_include] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_label_reference] = STATE(232), + [sym_label_reference_range] = STATE(232), + [sym_label_number] = STATE(232), + [sym_new_command_definition] = STATE(232), + [sym_old_command_definition] = STATE(232), + [sym_let_command_definition] = STATE(232), + [sym_paired_delimiter_definition] = STATE(232), + [sym_environment_definition] = STATE(232), + [sym_glossary_entry_definition] = STATE(232), + [sym_glossary_entry_reference] = STATE(232), + [sym_acronym_definition] = STATE(232), + [sym_acronym_reference] = STATE(232), + [sym_theorem_definition] = STATE(232), + [sym_color_definition] = STATE(232), + [sym_color_set_definition] = STATE(232), + [sym_color_reference] = STATE(232), + [sym_tikz_library_import] = STATE(232), + [sym_text_mode] = STATE(232), + [aux_sym_brack_group_repeat1] = STATE(232), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_RPAREN] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [239] = { - [sym_block_comment] = STATE(219), - [sym__text_with_env_content] = STATE(219), - [sym__text_content] = STATE(219), - [sym_curly_group] = STATE(219), - [sym_mixed_group] = STATE(219), - [sym_text] = STATE(219), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(219), - [sym_inline_formula] = STATE(219), - [sym_math_set] = STATE(219), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(219), - [sym_comment_environment] = STATE(219), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(219), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(219), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(219), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(219), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(219), - [sym_generic_command] = STATE(219), - [sym_package_include] = STATE(219), - [sym_class_include] = STATE(219), - [sym_latex_include] = STATE(219), - [sym_biblatex_include] = STATE(219), - [sym_bibtex_include] = STATE(219), - [sym_graphics_include] = STATE(219), - [sym_svg_include] = STATE(219), - [sym_inkscape_include] = STATE(219), - [sym_verbatim_include] = STATE(219), - [sym_import_include] = STATE(219), - [sym_caption] = STATE(219), - [sym_citation] = STATE(219), - [sym_label_definition] = STATE(219), - [sym_label_reference] = STATE(219), - [sym_label_reference_range] = STATE(219), - [sym_label_number] = STATE(219), - [sym_new_command_definition] = STATE(219), - [sym_old_command_definition] = STATE(219), - [sym_let_command_definition] = STATE(219), - [sym_paired_delimiter_definition] = STATE(219), - [sym_environment_definition] = STATE(219), - [sym_glossary_entry_definition] = STATE(219), - [sym_glossary_entry_reference] = STATE(219), - [sym_acronym_definition] = STATE(219), - [sym_acronym_reference] = STATE(219), - [sym_theorem_definition] = STATE(219), - [sym_color_definition] = STATE(219), - [sym_color_set_definition] = STATE(219), - [sym_color_reference] = STATE(219), - [sym_tikz_library_import] = STATE(219), - [sym_text_mode] = STATE(219), - [aux_sym_mixed_group_repeat1] = STATE(219), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3674), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_EQ] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3387), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(3459), - [anon_sym_BSLASHintertext] = ACTIONS(3459), - [anon_sym_shortintertext] = ACTIONS(3459), - }, - [240] = { - [sym_block_comment] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_brack_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(1437), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_math_set] = STATE(240), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__trivia_begin_comment] = STATE(2418), - [sym_verbatim_environment] = STATE(240), - [sym__trivia_begin_verbatim] = STATE(2419), - [sym_listing_environment] = STATE(240), - [sym__trivia_begin_listing] = STATE(2420), - [sym_minted_environment] = STATE(240), - [sym__trivia_begin_minted] = STATE(2421), - [sym_pycode_environment] = STATE(240), - [sym__trivia_begin_pycode] = STATE(2422), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym_brack_group_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3678), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3684), - [anon_sym_RPAREN] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3684), - [anon_sym_EQ] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3692), - [sym_word] = ACTIONS(3695), - [sym_placeholder] = ACTIONS(3698), - [anon_sym_PLUS] = ACTIONS(3701), - [anon_sym_DASH] = ACTIONS(3701), - [anon_sym_STAR] = ACTIONS(3701), - [anon_sym_SLASH] = ACTIONS(3701), - [anon_sym_CARET] = ACTIONS(3701), - [anon_sym__] = ACTIONS(3701), - [anon_sym_LT] = ACTIONS(3701), - [anon_sym_GT] = ACTIONS(3701), - [anon_sym_BANG] = ACTIONS(3701), - [anon_sym_PIPE] = ACTIONS(3701), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_SQUOTE] = ACTIONS(3701), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3704), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3704), - [anon_sym_DOLLAR] = ACTIONS(3707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3710), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3713), - [anon_sym_BSLASHbegin] = ACTIONS(3716), - [anon_sym_BSLASHusepackage] = ACTIONS(3719), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3719), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3722), - [anon_sym_BSLASHinclude] = ACTIONS(3725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3725), - [anon_sym_BSLASHinput] = ACTIONS(3725), - [anon_sym_BSLASHsubfile] = ACTIONS(3725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3728), - [anon_sym_BSLASHbibliography] = ACTIONS(3731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3734), - [anon_sym_BSLASHincludesvg] = ACTIONS(3737), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3740), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), - [anon_sym_BSLASHimport] = ACTIONS(3746), - [anon_sym_BSLASHsubimport] = ACTIONS(3746), - [anon_sym_BSLASHinputfrom] = ACTIONS(3746), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3746), - [anon_sym_BSLASHincludefrom] = ACTIONS(3746), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3746), - [anon_sym_BSLASHcaption] = ACTIONS(3749), - [anon_sym_BSLASHcite] = ACTIONS(3752), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3755), - [anon_sym_BSLASHCite] = ACTIONS(3752), - [anon_sym_BSLASHnocite] = ACTIONS(3752), - [anon_sym_BSLASHcitet] = ACTIONS(3752), - [anon_sym_BSLASHcitep] = ACTIONS(3752), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3755), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3755), - [anon_sym_BSLASHciteauthor] = ACTIONS(3752), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3755), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3752), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3755), - [anon_sym_BSLASHcitetitle] = ACTIONS(3752), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3755), - [anon_sym_BSLASHciteyear] = ACTIONS(3752), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3755), - [anon_sym_BSLASHcitedate] = ACTIONS(3752), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3755), - [anon_sym_BSLASHciteurl] = ACTIONS(3752), - [anon_sym_BSLASHfullcite] = ACTIONS(3752), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3752), - [anon_sym_BSLASHcitealt] = ACTIONS(3752), - [anon_sym_BSLASHcitealp] = ACTIONS(3752), - [anon_sym_BSLASHcitetext] = ACTIONS(3752), - [anon_sym_BSLASHparencite] = ACTIONS(3752), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3755), - [anon_sym_BSLASHParencite] = ACTIONS(3752), - [anon_sym_BSLASHfootcite] = ACTIONS(3752), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3752), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3752), - [anon_sym_BSLASHtextcite] = ACTIONS(3752), - [anon_sym_BSLASHTextcite] = ACTIONS(3752), - [anon_sym_BSLASHsmartcite] = ACTIONS(3752), - [anon_sym_BSLASHSmartcite] = ACTIONS(3752), - [anon_sym_BSLASHsupercite] = ACTIONS(3752), - [anon_sym_BSLASHautocite] = ACTIONS(3752), - [anon_sym_BSLASHAutocite] = ACTIONS(3752), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3755), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3755), - [anon_sym_BSLASHvolcite] = ACTIONS(3752), - [anon_sym_BSLASHVolcite] = ACTIONS(3752), - [anon_sym_BSLASHpvolcite] = ACTIONS(3752), - [anon_sym_BSLASHPvolcite] = ACTIONS(3752), - [anon_sym_BSLASHfvolcite] = ACTIONS(3752), - [anon_sym_BSLASHftvolcite] = ACTIONS(3752), - [anon_sym_BSLASHsvolcite] = ACTIONS(3752), - [anon_sym_BSLASHSvolcite] = ACTIONS(3752), - [anon_sym_BSLASHtvolcite] = ACTIONS(3752), - [anon_sym_BSLASHTvolcite] = ACTIONS(3752), - [anon_sym_BSLASHavolcite] = ACTIONS(3752), - [anon_sym_BSLASHAvolcite] = ACTIONS(3752), - [anon_sym_BSLASHnotecite] = ACTIONS(3752), - [anon_sym_BSLASHNotecite] = ACTIONS(3752), - [anon_sym_BSLASHpnotecite] = ACTIONS(3752), - [anon_sym_BSLASHPnotecite] = ACTIONS(3752), - [anon_sym_BSLASHfnotecite] = ACTIONS(3752), - [anon_sym_BSLASHlabel] = ACTIONS(3758), - [anon_sym_BSLASHref] = ACTIONS(3761), - [anon_sym_BSLASHeqref] = ACTIONS(3761), - [anon_sym_BSLASHvref] = ACTIONS(3761), - [anon_sym_BSLASHVref] = ACTIONS(3761), - [anon_sym_BSLASHautoref] = ACTIONS(3761), - [anon_sym_BSLASHpageref] = ACTIONS(3761), - [anon_sym_BSLASHcref] = ACTIONS(3761), - [anon_sym_BSLASHCref] = ACTIONS(3761), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3764), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3764), - [anon_sym_BSLASHnamecref] = ACTIONS(3761), - [anon_sym_BSLASHnameCref] = ACTIONS(3761), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3761), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3761), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3761), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3761), - [anon_sym_BSLASHlabelcref] = ACTIONS(3761), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3761), - [anon_sym_BSLASHcrefrange] = ACTIONS(3767), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3770), - [anon_sym_BSLASHCrefrange] = ACTIONS(3767), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3770), - [anon_sym_BSLASHnewlabel] = ACTIONS(3773), - [anon_sym_BSLASHnewcommand] = ACTIONS(3776), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3776), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3776), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3776), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3779), - [anon_sym_BSLASHdef] = ACTIONS(3782), - [anon_sym_BSLASHlet] = ACTIONS(3785), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3788), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3788), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3791), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3794), - [anon_sym_BSLASHgls] = ACTIONS(3797), - [anon_sym_BSLASHGls] = ACTIONS(3797), - [anon_sym_BSLASHGLS] = ACTIONS(3797), - [anon_sym_BSLASHglspl] = ACTIONS(3797), - [anon_sym_BSLASHGlspl] = ACTIONS(3797), - [anon_sym_BSLASHGLSpl] = ACTIONS(3797), - [anon_sym_BSLASHglsdisp] = ACTIONS(3797), - [anon_sym_BSLASHglslink] = ACTIONS(3797), - [anon_sym_BSLASHglstext] = ACTIONS(3797), - [anon_sym_BSLASHGlstext] = ACTIONS(3797), - [anon_sym_BSLASHGLStext] = ACTIONS(3797), - [anon_sym_BSLASHglsfirst] = ACTIONS(3797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3797), - [anon_sym_BSLASHglsplural] = ACTIONS(3797), - [anon_sym_BSLASHGlsplural] = ACTIONS(3797), - [anon_sym_BSLASHGLSplural] = ACTIONS(3797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3797), - [anon_sym_BSLASHglsname] = ACTIONS(3797), - [anon_sym_BSLASHGlsname] = ACTIONS(3797), - [anon_sym_BSLASHGLSname] = ACTIONS(3797), - [anon_sym_BSLASHglssymbol] = ACTIONS(3797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3797), - [anon_sym_BSLASHglsdesc] = ACTIONS(3797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3797), - [anon_sym_BSLASHglsuseri] = ACTIONS(3797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3797), - [anon_sym_BSLASHglsuserii] = ACTIONS(3797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3797), - [anon_sym_BSLASHglsuserv] = ACTIONS(3797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3797), - [anon_sym_BSLASHglsuservi] = ACTIONS(3797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3797), - [anon_sym_BSLASHnewacronym] = ACTIONS(3800), - [anon_sym_BSLASHacrshort] = ACTIONS(3803), - [anon_sym_BSLASHAcrshort] = ACTIONS(3803), - [anon_sym_BSLASHACRshort] = ACTIONS(3803), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3803), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3803), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3803), - [anon_sym_BSLASHacrlong] = ACTIONS(3803), - [anon_sym_BSLASHAcrlong] = ACTIONS(3803), - [anon_sym_BSLASHACRlong] = ACTIONS(3803), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3803), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3803), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3803), - [anon_sym_BSLASHacrfull] = ACTIONS(3803), - [anon_sym_BSLASHAcrfull] = ACTIONS(3803), - [anon_sym_BSLASHACRfull] = ACTIONS(3803), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3803), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3803), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3803), - [anon_sym_BSLASHacs] = ACTIONS(3803), - [anon_sym_BSLASHAcs] = ACTIONS(3803), - [anon_sym_BSLASHacsp] = ACTIONS(3803), - [anon_sym_BSLASHAcsp] = ACTIONS(3803), - [anon_sym_BSLASHacl] = ACTIONS(3803), - [anon_sym_BSLASHAcl] = ACTIONS(3803), - [anon_sym_BSLASHaclp] = ACTIONS(3803), - [anon_sym_BSLASHAclp] = ACTIONS(3803), - [anon_sym_BSLASHacf] = ACTIONS(3803), - [anon_sym_BSLASHAcf] = ACTIONS(3803), - [anon_sym_BSLASHacfp] = ACTIONS(3803), - [anon_sym_BSLASHAcfp] = ACTIONS(3803), - [anon_sym_BSLASHac] = ACTIONS(3803), - [anon_sym_BSLASHAc] = ACTIONS(3803), - [anon_sym_BSLASHacp] = ACTIONS(3803), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3803), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3803), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3803), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3803), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3803), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3803), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3803), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3803), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3803), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3803), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3806), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3809), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3806), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3809), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3812), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3815), - [anon_sym_BSLASHcolor] = ACTIONS(3818), - [anon_sym_BSLASHcolorbox] = ACTIONS(3818), - [anon_sym_BSLASHtextcolor] = ACTIONS(3818), - [anon_sym_BSLASHpagecolor] = ACTIONS(3818), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3821), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3821), - [anon_sym_BSLASHtext] = ACTIONS(3824), - [anon_sym_BSLASHintertext] = ACTIONS(3824), - [anon_sym_shortintertext] = ACTIONS(3824), - }, - [241] = { - [sym_block_comment] = STATE(242), - [sym__text_content] = STATE(242), - [sym_curly_group] = STATE(242), - [sym_brack_group] = STATE(242), - [sym_text] = STATE(242), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(242), - [sym_inline_formula] = STATE(242), - [sym_math_set] = STATE(242), - [sym__command] = STATE(242), - [sym_generic_command] = STATE(242), - [sym_package_include] = STATE(242), - [sym_class_include] = STATE(242), - [sym_latex_include] = STATE(242), - [sym_biblatex_include] = STATE(242), - [sym_bibtex_include] = STATE(242), - [sym_graphics_include] = STATE(242), - [sym_svg_include] = STATE(242), - [sym_inkscape_include] = STATE(242), - [sym_verbatim_include] = STATE(242), - [sym_import_include] = STATE(242), - [sym_caption] = STATE(242), - [sym_citation] = STATE(242), - [sym_label_definition] = STATE(242), - [sym_label_reference] = STATE(242), - [sym_label_reference_range] = STATE(242), - [sym_label_number] = STATE(242), - [sym_new_command_definition] = STATE(242), - [sym_old_command_definition] = STATE(242), - [sym_let_command_definition] = STATE(242), - [sym_paired_delimiter_definition] = STATE(242), - [sym_environment_definition] = STATE(242), - [sym_glossary_entry_definition] = STATE(242), - [sym_glossary_entry_reference] = STATE(242), - [sym_acronym_definition] = STATE(242), - [sym_acronym_reference] = STATE(242), - [sym_theorem_definition] = STATE(242), - [sym_color_definition] = STATE(242), - [sym_color_set_definition] = STATE(242), - [sym_color_reference] = STATE(242), - [sym_tikz_library_import] = STATE(242), - [sym_text_mode] = STATE(242), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(242), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3831), - [anon_sym_RPAREN] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_RBRACK] = ACTIONS(3835), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3837), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3845), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3845), - [anon_sym_DOLLAR] = ACTIONS(3847), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3849), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [242] = { - [sym_block_comment] = STATE(242), - [sym__text_content] = STATE(242), - [sym_curly_group] = STATE(242), - [sym_brack_group] = STATE(242), - [sym_text] = STATE(242), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(242), - [sym_inline_formula] = STATE(242), - [sym_math_set] = STATE(242), - [sym__command] = STATE(242), - [sym_generic_command] = STATE(242), - [sym_package_include] = STATE(242), - [sym_class_include] = STATE(242), - [sym_latex_include] = STATE(242), - [sym_biblatex_include] = STATE(242), - [sym_bibtex_include] = STATE(242), - [sym_graphics_include] = STATE(242), - [sym_svg_include] = STATE(242), - [sym_inkscape_include] = STATE(242), - [sym_verbatim_include] = STATE(242), - [sym_import_include] = STATE(242), - [sym_caption] = STATE(242), - [sym_citation] = STATE(242), - [sym_label_definition] = STATE(242), - [sym_label_reference] = STATE(242), - [sym_label_reference_range] = STATE(242), - [sym_label_number] = STATE(242), - [sym_new_command_definition] = STATE(242), - [sym_old_command_definition] = STATE(242), - [sym_let_command_definition] = STATE(242), - [sym_paired_delimiter_definition] = STATE(242), - [sym_environment_definition] = STATE(242), - [sym_glossary_entry_definition] = STATE(242), - [sym_glossary_entry_reference] = STATE(242), - [sym_acronym_definition] = STATE(242), - [sym_acronym_reference] = STATE(242), - [sym_theorem_definition] = STATE(242), - [sym_color_definition] = STATE(242), - [sym_color_set_definition] = STATE(242), - [sym_color_reference] = STATE(242), - [sym_tikz_library_import] = STATE(242), - [sym_text_mode] = STATE(242), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(242), - [sym_command_name] = ACTIONS(3925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3931), - [anon_sym_RPAREN] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3937), - [anon_sym_COMMA] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [sym_word] = ACTIONS(3942), - [sym_placeholder] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_CARET] = ACTIONS(3948), - [anon_sym__] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3951), - [anon_sym_DOLLAR] = ACTIONS(3954), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3960), - [anon_sym_BSLASHusepackage] = ACTIONS(3963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3966), - [anon_sym_BSLASHinclude] = ACTIONS(3969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3969), - [anon_sym_BSLASHinput] = ACTIONS(3969), - [anon_sym_BSLASHsubfile] = ACTIONS(3969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3972), - [anon_sym_BSLASHbibliography] = ACTIONS(3975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3978), - [anon_sym_BSLASHincludesvg] = ACTIONS(3981), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3984), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3987), - [anon_sym_BSLASHimport] = ACTIONS(3990), - [anon_sym_BSLASHsubimport] = ACTIONS(3990), - [anon_sym_BSLASHinputfrom] = ACTIONS(3990), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3990), - [anon_sym_BSLASHincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHcaption] = ACTIONS(3993), - [anon_sym_BSLASHcite] = ACTIONS(3996), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCite] = ACTIONS(3996), - [anon_sym_BSLASHnocite] = ACTIONS(3996), - [anon_sym_BSLASHcitet] = ACTIONS(3996), - [anon_sym_BSLASHcitep] = ACTIONS(3996), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteauthor] = ACTIONS(3996), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3996), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitetitle] = ACTIONS(3996), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteyear] = ACTIONS(3996), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitedate] = ACTIONS(3996), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteurl] = ACTIONS(3996), - [anon_sym_BSLASHfullcite] = ACTIONS(3996), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3996), - [anon_sym_BSLASHcitealt] = ACTIONS(3996), - [anon_sym_BSLASHcitealp] = ACTIONS(3996), - [anon_sym_BSLASHcitetext] = ACTIONS(3996), - [anon_sym_BSLASHparencite] = ACTIONS(3996), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHParencite] = ACTIONS(3996), - [anon_sym_BSLASHfootcite] = ACTIONS(3996), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3996), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3996), - [anon_sym_BSLASHtextcite] = ACTIONS(3996), - [anon_sym_BSLASHTextcite] = ACTIONS(3996), - [anon_sym_BSLASHsmartcite] = ACTIONS(3996), - [anon_sym_BSLASHSmartcite] = ACTIONS(3996), - [anon_sym_BSLASHsupercite] = ACTIONS(3996), - [anon_sym_BSLASHautocite] = ACTIONS(3996), - [anon_sym_BSLASHAutocite] = ACTIONS(3996), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHvolcite] = ACTIONS(3996), - [anon_sym_BSLASHVolcite] = ACTIONS(3996), - [anon_sym_BSLASHpvolcite] = ACTIONS(3996), - [anon_sym_BSLASHPvolcite] = ACTIONS(3996), - [anon_sym_BSLASHfvolcite] = ACTIONS(3996), - [anon_sym_BSLASHftvolcite] = ACTIONS(3996), - [anon_sym_BSLASHsvolcite] = ACTIONS(3996), - [anon_sym_BSLASHSvolcite] = ACTIONS(3996), - [anon_sym_BSLASHtvolcite] = ACTIONS(3996), - [anon_sym_BSLASHTvolcite] = ACTIONS(3996), - [anon_sym_BSLASHavolcite] = ACTIONS(3996), - [anon_sym_BSLASHAvolcite] = ACTIONS(3996), - [anon_sym_BSLASHnotecite] = ACTIONS(3996), - [anon_sym_BSLASHNotecite] = ACTIONS(3996), - [anon_sym_BSLASHpnotecite] = ACTIONS(3996), - [anon_sym_BSLASHPnotecite] = ACTIONS(3996), - [anon_sym_BSLASHfnotecite] = ACTIONS(3996), - [anon_sym_BSLASHlabel] = ACTIONS(4002), - [anon_sym_BSLASHref] = ACTIONS(4005), - [anon_sym_BSLASHeqref] = ACTIONS(4005), - [anon_sym_BSLASHvref] = ACTIONS(4005), - [anon_sym_BSLASHVref] = ACTIONS(4005), - [anon_sym_BSLASHautoref] = ACTIONS(4005), - [anon_sym_BSLASHpageref] = ACTIONS(4005), - [anon_sym_BSLASHcref] = ACTIONS(4005), - [anon_sym_BSLASHCref] = ACTIONS(4005), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnameCref] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHlabelcref] = ACTIONS(4005), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4005), - [anon_sym_BSLASHcrefrange] = ACTIONS(4011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHCrefrange] = ACTIONS(4011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHnewlabel] = ACTIONS(4017), - [anon_sym_BSLASHnewcommand] = ACTIONS(4020), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4020), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4020), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4020), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4023), - [anon_sym_BSLASHdef] = ACTIONS(4026), - [anon_sym_BSLASHlet] = ACTIONS(4029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4032), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4032), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4035), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4038), - [anon_sym_BSLASHgls] = ACTIONS(4041), - [anon_sym_BSLASHGls] = ACTIONS(4041), - [anon_sym_BSLASHGLS] = ACTIONS(4041), - [anon_sym_BSLASHglspl] = ACTIONS(4041), - [anon_sym_BSLASHGlspl] = ACTIONS(4041), - [anon_sym_BSLASHGLSpl] = ACTIONS(4041), - [anon_sym_BSLASHglsdisp] = ACTIONS(4041), - [anon_sym_BSLASHglslink] = ACTIONS(4041), - [anon_sym_BSLASHglstext] = ACTIONS(4041), - [anon_sym_BSLASHGlstext] = ACTIONS(4041), - [anon_sym_BSLASHGLStext] = ACTIONS(4041), - [anon_sym_BSLASHglsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4041), - [anon_sym_BSLASHglsplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSplural] = ACTIONS(4041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHglsname] = ACTIONS(4041), - [anon_sym_BSLASHGlsname] = ACTIONS(4041), - [anon_sym_BSLASHGLSname] = ACTIONS(4041), - [anon_sym_BSLASHglssymbol] = ACTIONS(4041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4041), - [anon_sym_BSLASHglsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4041), - [anon_sym_BSLASHglsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4041), - [anon_sym_BSLASHglsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4041), - [anon_sym_BSLASHglsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4041), - [anon_sym_BSLASHglsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4041), - [anon_sym_BSLASHnewacronym] = ACTIONS(4044), - [anon_sym_BSLASHacrshort] = ACTIONS(4047), - [anon_sym_BSLASHAcrshort] = ACTIONS(4047), - [anon_sym_BSLASHACRshort] = ACTIONS(4047), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4047), - [anon_sym_BSLASHacrlong] = ACTIONS(4047), - [anon_sym_BSLASHAcrlong] = ACTIONS(4047), - [anon_sym_BSLASHACRlong] = ACTIONS(4047), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4047), - [anon_sym_BSLASHacrfull] = ACTIONS(4047), - [anon_sym_BSLASHAcrfull] = ACTIONS(4047), - [anon_sym_BSLASHACRfull] = ACTIONS(4047), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4047), - [anon_sym_BSLASHacs] = ACTIONS(4047), - [anon_sym_BSLASHAcs] = ACTIONS(4047), - [anon_sym_BSLASHacsp] = ACTIONS(4047), - [anon_sym_BSLASHAcsp] = ACTIONS(4047), - [anon_sym_BSLASHacl] = ACTIONS(4047), - [anon_sym_BSLASHAcl] = ACTIONS(4047), - [anon_sym_BSLASHaclp] = ACTIONS(4047), - [anon_sym_BSLASHAclp] = ACTIONS(4047), - [anon_sym_BSLASHacf] = ACTIONS(4047), - [anon_sym_BSLASHAcf] = ACTIONS(4047), - [anon_sym_BSLASHacfp] = ACTIONS(4047), - [anon_sym_BSLASHAcfp] = ACTIONS(4047), - [anon_sym_BSLASHac] = ACTIONS(4047), - [anon_sym_BSLASHAc] = ACTIONS(4047), - [anon_sym_BSLASHacp] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4050), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4050), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4056), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4059), - [anon_sym_BSLASHcolor] = ACTIONS(4062), - [anon_sym_BSLASHcolorbox] = ACTIONS(4062), - [anon_sym_BSLASHtextcolor] = ACTIONS(4062), - [anon_sym_BSLASHpagecolor] = ACTIONS(4062), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4065), - [anon_sym_BSLASHtext] = ACTIONS(4068), - [anon_sym_BSLASHintertext] = ACTIONS(4068), - [anon_sym_shortintertext] = ACTIONS(4068), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, [243] = { - [sym_block_comment] = STATE(244), - [sym__text_content] = STATE(244), - [sym_curly_group] = STATE(244), - [sym_brack_group] = STATE(244), - [sym_text] = STATE(244), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(244), - [sym_inline_formula] = STATE(244), - [sym_math_set] = STATE(244), - [sym__command] = STATE(244), - [sym_generic_command] = STATE(244), - [sym_package_include] = STATE(244), - [sym_class_include] = STATE(244), - [sym_latex_include] = STATE(244), - [sym_biblatex_include] = STATE(244), - [sym_bibtex_include] = STATE(244), - [sym_graphics_include] = STATE(244), - [sym_svg_include] = STATE(244), - [sym_inkscape_include] = STATE(244), - [sym_verbatim_include] = STATE(244), - [sym_import_include] = STATE(244), - [sym_caption] = STATE(244), - [sym_citation] = STATE(244), - [sym_label_definition] = STATE(244), - [sym_label_reference] = STATE(244), - [sym_label_reference_range] = STATE(244), - [sym_label_number] = STATE(244), - [sym_new_command_definition] = STATE(244), - [sym_old_command_definition] = STATE(244), - [sym_let_command_definition] = STATE(244), - [sym_paired_delimiter_definition] = STATE(244), - [sym_environment_definition] = STATE(244), - [sym_glossary_entry_definition] = STATE(244), - [sym_glossary_entry_reference] = STATE(244), - [sym_acronym_definition] = STATE(244), - [sym_acronym_reference] = STATE(244), - [sym_theorem_definition] = STATE(244), - [sym_color_definition] = STATE(244), - [sym_color_set_definition] = STATE(244), - [sym_color_reference] = STATE(244), - [sym_tikz_library_import] = STATE(244), - [sym_text_mode] = STATE(244), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(4071), - [anon_sym_RPAREN] = ACTIONS(4071), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(3835), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4073), - [anon_sym_DOLLAR] = ACTIONS(4075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4077), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3804), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3807), + [anon_sym_LPAREN] = ACTIONS(3810), + [anon_sym_RPAREN] = ACTIONS(3813), + [anon_sym_LBRACK] = ACTIONS(3810), + [anon_sym_RBRACK] = ACTIONS(3813), + [anon_sym_COMMA] = ACTIONS(3815), + [anon_sym_EQ] = ACTIONS(3815), + [anon_sym_LBRACE] = ACTIONS(3818), + [sym_word] = ACTIONS(3821), + [sym_placeholder] = ACTIONS(3824), + [anon_sym_PLUS] = ACTIONS(3827), + [anon_sym_DASH] = ACTIONS(3827), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_SLASH] = ACTIONS(3827), + [anon_sym_CARET] = ACTIONS(3827), + [anon_sym__] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_GT] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3827), + [anon_sym_SQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3830), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3830), + [anon_sym_DOLLAR] = ACTIONS(3833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3836), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3839), + [anon_sym_BSLASHbegin] = ACTIONS(3842), + [anon_sym_BSLASHtitle] = ACTIONS(3845), + [anon_sym_BSLASHauthor] = ACTIONS(3848), + [anon_sym_BSLASHusepackage] = ACTIONS(3851), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3851), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3854), [anon_sym_BSLASHinclude] = ACTIONS(3857), [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), [anon_sym_BSLASHinput] = ACTIONS(3857), [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3860), + [anon_sym_BSLASHbibliography] = ACTIONS(3863), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3866), + [anon_sym_BSLASHincludesvg] = ACTIONS(3869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3872), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3875), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3875), + [anon_sym_BSLASHimport] = ACTIONS(3878), + [anon_sym_BSLASHsubimport] = ACTIONS(3878), + [anon_sym_BSLASHinputfrom] = ACTIONS(3878), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3878), + [anon_sym_BSLASHincludefrom] = ACTIONS(3878), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3878), + [anon_sym_BSLASHcaption] = ACTIONS(3881), + [anon_sym_BSLASHcite] = ACTIONS(3884), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3887), + [anon_sym_BSLASHCite] = ACTIONS(3884), + [anon_sym_BSLASHnocite] = ACTIONS(3884), + [anon_sym_BSLASHcitet] = ACTIONS(3884), + [anon_sym_BSLASHcitep] = ACTIONS(3884), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3887), + [anon_sym_BSLASHciteauthor] = ACTIONS(3884), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3884), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3887), + [anon_sym_BSLASHcitetitle] = ACTIONS(3884), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3887), + [anon_sym_BSLASHciteyear] = ACTIONS(3884), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3887), + [anon_sym_BSLASHcitedate] = ACTIONS(3884), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3887), + [anon_sym_BSLASHciteurl] = ACTIONS(3884), + [anon_sym_BSLASHfullcite] = ACTIONS(3884), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3884), + [anon_sym_BSLASHcitealt] = ACTIONS(3884), + [anon_sym_BSLASHcitealp] = ACTIONS(3884), + [anon_sym_BSLASHcitetext] = ACTIONS(3884), + [anon_sym_BSLASHparencite] = ACTIONS(3884), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3887), + [anon_sym_BSLASHParencite] = ACTIONS(3884), + [anon_sym_BSLASHfootcite] = ACTIONS(3884), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3884), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3884), + [anon_sym_BSLASHtextcite] = ACTIONS(3884), + [anon_sym_BSLASHTextcite] = ACTIONS(3884), + [anon_sym_BSLASHsmartcite] = ACTIONS(3884), + [anon_sym_BSLASHSmartcite] = ACTIONS(3884), + [anon_sym_BSLASHsupercite] = ACTIONS(3884), + [anon_sym_BSLASHautocite] = ACTIONS(3884), + [anon_sym_BSLASHAutocite] = ACTIONS(3884), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3887), + [anon_sym_BSLASHvolcite] = ACTIONS(3884), + [anon_sym_BSLASHVolcite] = ACTIONS(3884), + [anon_sym_BSLASHpvolcite] = ACTIONS(3884), + [anon_sym_BSLASHPvolcite] = ACTIONS(3884), + [anon_sym_BSLASHfvolcite] = ACTIONS(3884), + [anon_sym_BSLASHftvolcite] = ACTIONS(3884), + [anon_sym_BSLASHsvolcite] = ACTIONS(3884), + [anon_sym_BSLASHSvolcite] = ACTIONS(3884), + [anon_sym_BSLASHtvolcite] = ACTIONS(3884), + [anon_sym_BSLASHTvolcite] = ACTIONS(3884), + [anon_sym_BSLASHavolcite] = ACTIONS(3884), + [anon_sym_BSLASHAvolcite] = ACTIONS(3884), + [anon_sym_BSLASHnotecite] = ACTIONS(3884), + [anon_sym_BSLASHNotecite] = ACTIONS(3884), + [anon_sym_BSLASHpnotecite] = ACTIONS(3884), + [anon_sym_BSLASHPnotecite] = ACTIONS(3884), + [anon_sym_BSLASHfnotecite] = ACTIONS(3884), + [anon_sym_BSLASHlabel] = ACTIONS(3890), + [anon_sym_BSLASHref] = ACTIONS(3893), + [anon_sym_BSLASHeqref] = ACTIONS(3893), + [anon_sym_BSLASHvref] = ACTIONS(3893), + [anon_sym_BSLASHVref] = ACTIONS(3893), + [anon_sym_BSLASHautoref] = ACTIONS(3893), + [anon_sym_BSLASHpageref] = ACTIONS(3893), + [anon_sym_BSLASHcref] = ACTIONS(3893), + [anon_sym_BSLASHCref] = ACTIONS(3893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3896), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3896), + [anon_sym_BSLASHnamecref] = ACTIONS(3893), + [anon_sym_BSLASHnameCref] = ACTIONS(3893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3893), + [anon_sym_BSLASHlabelcref] = ACTIONS(3893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3893), + [anon_sym_BSLASHcrefrange] = ACTIONS(3899), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3902), + [anon_sym_BSLASHCrefrange] = ACTIONS(3899), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3902), + [anon_sym_BSLASHnewlabel] = ACTIONS(3905), + [anon_sym_BSLASHnewcommand] = ACTIONS(3908), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3908), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3908), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3908), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3911), + [anon_sym_BSLASHdef] = ACTIONS(3914), + [anon_sym_BSLASHlet] = ACTIONS(3917), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3920), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3920), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3926), + [anon_sym_BSLASHgls] = ACTIONS(3929), + [anon_sym_BSLASHGls] = ACTIONS(3929), + [anon_sym_BSLASHGLS] = ACTIONS(3929), + [anon_sym_BSLASHglspl] = ACTIONS(3929), + [anon_sym_BSLASHGlspl] = ACTIONS(3929), + [anon_sym_BSLASHGLSpl] = ACTIONS(3929), + [anon_sym_BSLASHglsdisp] = ACTIONS(3929), + [anon_sym_BSLASHglslink] = ACTIONS(3929), + [anon_sym_BSLASHglstext] = ACTIONS(3929), + [anon_sym_BSLASHGlstext] = ACTIONS(3929), + [anon_sym_BSLASHGLStext] = ACTIONS(3929), + [anon_sym_BSLASHglsfirst] = ACTIONS(3929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3929), + [anon_sym_BSLASHglsplural] = ACTIONS(3929), + [anon_sym_BSLASHGlsplural] = ACTIONS(3929), + [anon_sym_BSLASHGLSplural] = ACTIONS(3929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3929), + [anon_sym_BSLASHglsname] = ACTIONS(3929), + [anon_sym_BSLASHGlsname] = ACTIONS(3929), + [anon_sym_BSLASHGLSname] = ACTIONS(3929), + [anon_sym_BSLASHglssymbol] = ACTIONS(3929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3929), + [anon_sym_BSLASHglsdesc] = ACTIONS(3929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3929), + [anon_sym_BSLASHglsuseri] = ACTIONS(3929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3929), + [anon_sym_BSLASHglsuserii] = ACTIONS(3929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3929), + [anon_sym_BSLASHglsuserv] = ACTIONS(3929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3929), + [anon_sym_BSLASHglsuservi] = ACTIONS(3929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3929), + [anon_sym_BSLASHnewacronym] = ACTIONS(3932), + [anon_sym_BSLASHacrshort] = ACTIONS(3935), + [anon_sym_BSLASHAcrshort] = ACTIONS(3935), + [anon_sym_BSLASHACRshort] = ACTIONS(3935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3935), + [anon_sym_BSLASHacrlong] = ACTIONS(3935), + [anon_sym_BSLASHAcrlong] = ACTIONS(3935), + [anon_sym_BSLASHACRlong] = ACTIONS(3935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3935), + [anon_sym_BSLASHacrfull] = ACTIONS(3935), + [anon_sym_BSLASHAcrfull] = ACTIONS(3935), + [anon_sym_BSLASHACRfull] = ACTIONS(3935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3935), + [anon_sym_BSLASHacs] = ACTIONS(3935), + [anon_sym_BSLASHAcs] = ACTIONS(3935), + [anon_sym_BSLASHacsp] = ACTIONS(3935), + [anon_sym_BSLASHAcsp] = ACTIONS(3935), + [anon_sym_BSLASHacl] = ACTIONS(3935), + [anon_sym_BSLASHAcl] = ACTIONS(3935), + [anon_sym_BSLASHaclp] = ACTIONS(3935), + [anon_sym_BSLASHAclp] = ACTIONS(3935), + [anon_sym_BSLASHacf] = ACTIONS(3935), + [anon_sym_BSLASHAcf] = ACTIONS(3935), + [anon_sym_BSLASHacfp] = ACTIONS(3935), + [anon_sym_BSLASHAcfp] = ACTIONS(3935), + [anon_sym_BSLASHac] = ACTIONS(3935), + [anon_sym_BSLASHAc] = ACTIONS(3935), + [anon_sym_BSLASHacp] = ACTIONS(3935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3938), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3941), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3938), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3941), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3944), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3947), + [anon_sym_BSLASHcolor] = ACTIONS(3950), + [anon_sym_BSLASHcolorbox] = ACTIONS(3950), + [anon_sym_BSLASHtextcolor] = ACTIONS(3950), + [anon_sym_BSLASHpagecolor] = ACTIONS(3950), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3953), + [anon_sym_BSLASHtext] = ACTIONS(3956), + [anon_sym_BSLASHintertext] = ACTIONS(3956), + [anon_sym_shortintertext] = ACTIONS(3956), }, [244] = { + [sym_block_comment] = STATE(232), + [sym__text_with_env_content] = STATE(232), + [sym__text_content] = STATE(232), + [sym_curly_group] = STATE(232), + [sym_brack_group] = STATE(232), + [sym_text] = STATE(232), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_math_set] = STATE(232), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(232), + [sym_comment_environment] = STATE(232), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(232), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(232), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(232), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(232), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(232), + [sym_generic_command] = STATE(232), + [sym_title_declaration] = STATE(232), + [sym_author_declaration] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_latex_include] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_bibtex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_svg_include] = STATE(232), + [sym_inkscape_include] = STATE(232), + [sym_verbatim_include] = STATE(232), + [sym_import_include] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_label_reference] = STATE(232), + [sym_label_reference_range] = STATE(232), + [sym_label_number] = STATE(232), + [sym_new_command_definition] = STATE(232), + [sym_old_command_definition] = STATE(232), + [sym_let_command_definition] = STATE(232), + [sym_paired_delimiter_definition] = STATE(232), + [sym_environment_definition] = STATE(232), + [sym_glossary_entry_definition] = STATE(232), + [sym_glossary_entry_reference] = STATE(232), + [sym_acronym_definition] = STATE(232), + [sym_acronym_reference] = STATE(232), + [sym_theorem_definition] = STATE(232), + [sym_color_definition] = STATE(232), + [sym_color_set_definition] = STATE(232), + [sym_color_reference] = STATE(232), + [sym_tikz_library_import] = STATE(232), + [sym_text_mode] = STATE(232), + [aux_sym_brack_group_repeat1] = STATE(232), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_RPAREN] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3959), + [anon_sym_COMMA] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [245] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [246] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [247] = { + [sym_block_comment] = STATE(237), + [sym__text_with_env_content] = STATE(237), + [sym__text_content] = STATE(237), + [sym_curly_group] = STATE(237), + [sym_mixed_group] = STATE(237), + [sym_text] = STATE(237), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(237), + [sym_inline_formula] = STATE(237), + [sym_math_set] = STATE(237), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(237), + [sym_comment_environment] = STATE(237), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(237), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(237), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(237), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(237), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(237), + [sym_generic_command] = STATE(237), + [sym_title_declaration] = STATE(237), + [sym_author_declaration] = STATE(237), + [sym_package_include] = STATE(237), + [sym_class_include] = STATE(237), + [sym_latex_include] = STATE(237), + [sym_biblatex_include] = STATE(237), + [sym_bibtex_include] = STATE(237), + [sym_graphics_include] = STATE(237), + [sym_svg_include] = STATE(237), + [sym_inkscape_include] = STATE(237), + [sym_verbatim_include] = STATE(237), + [sym_import_include] = STATE(237), + [sym_caption] = STATE(237), + [sym_citation] = STATE(237), + [sym_label_definition] = STATE(237), + [sym_label_reference] = STATE(237), + [sym_label_reference_range] = STATE(237), + [sym_label_number] = STATE(237), + [sym_new_command_definition] = STATE(237), + [sym_old_command_definition] = STATE(237), + [sym_let_command_definition] = STATE(237), + [sym_paired_delimiter_definition] = STATE(237), + [sym_environment_definition] = STATE(237), + [sym_glossary_entry_definition] = STATE(237), + [sym_glossary_entry_reference] = STATE(237), + [sym_acronym_definition] = STATE(237), + [sym_acronym_reference] = STATE(237), + [sym_theorem_definition] = STATE(237), + [sym_color_definition] = STATE(237), + [sym_color_set_definition] = STATE(237), + [sym_color_reference] = STATE(237), + [sym_tikz_library_import] = STATE(237), + [sym_text_mode] = STATE(237), + [aux_sym_mixed_group_repeat1] = STATE(237), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [248] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [249] = { [sym_block_comment] = STATE(244), + [sym__text_with_env_content] = STATE(244), [sym__text_content] = STATE(244), [sym_curly_group] = STATE(244), [sym_brack_group] = STATE(244), [sym_text] = STATE(244), - [sym_operator] = STATE(1465), + [sym_operator] = STATE(1478), [sym_displayed_equation] = STATE(244), [sym_inline_formula] = STATE(244), [sym_math_set] = STATE(244), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(244), + [sym_comment_environment] = STATE(244), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(244), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(244), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(244), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(244), + [sym__trivia_begin_pycode] = STATE(2779), [sym__command] = STATE(244), [sym_generic_command] = STATE(244), + [sym_title_declaration] = STATE(244), + [sym_author_declaration] = STATE(244), [sym_package_include] = STATE(244), [sym_class_include] = STATE(244), [sym_latex_include] = STATE(244), @@ -102322,271 +106299,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(244), [sym_tikz_library_import] = STATE(244), [sym_text_mode] = STATE(244), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3925), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(4079), - [anon_sym_RPAREN] = ACTIONS(4079), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_RBRACE] = ACTIONS(3937), - [sym_word] = ACTIONS(3942), - [sym_placeholder] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_CARET] = ACTIONS(3948), - [anon_sym__] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4082), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4082), - [anon_sym_DOLLAR] = ACTIONS(4085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4088), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3960), - [anon_sym_BSLASHusepackage] = ACTIONS(3963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3966), - [anon_sym_BSLASHinclude] = ACTIONS(3969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3969), - [anon_sym_BSLASHinput] = ACTIONS(3969), - [anon_sym_BSLASHsubfile] = ACTIONS(3969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3972), - [anon_sym_BSLASHbibliography] = ACTIONS(3975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3978), - [anon_sym_BSLASHincludesvg] = ACTIONS(3981), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3984), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3987), - [anon_sym_BSLASHimport] = ACTIONS(3990), - [anon_sym_BSLASHsubimport] = ACTIONS(3990), - [anon_sym_BSLASHinputfrom] = ACTIONS(3990), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3990), - [anon_sym_BSLASHincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHcaption] = ACTIONS(3993), - [anon_sym_BSLASHcite] = ACTIONS(3996), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCite] = ACTIONS(3996), - [anon_sym_BSLASHnocite] = ACTIONS(3996), - [anon_sym_BSLASHcitet] = ACTIONS(3996), - [anon_sym_BSLASHcitep] = ACTIONS(3996), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteauthor] = ACTIONS(3996), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3996), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitetitle] = ACTIONS(3996), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteyear] = ACTIONS(3996), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitedate] = ACTIONS(3996), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteurl] = ACTIONS(3996), - [anon_sym_BSLASHfullcite] = ACTIONS(3996), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3996), - [anon_sym_BSLASHcitealt] = ACTIONS(3996), - [anon_sym_BSLASHcitealp] = ACTIONS(3996), - [anon_sym_BSLASHcitetext] = ACTIONS(3996), - [anon_sym_BSLASHparencite] = ACTIONS(3996), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHParencite] = ACTIONS(3996), - [anon_sym_BSLASHfootcite] = ACTIONS(3996), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3996), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3996), - [anon_sym_BSLASHtextcite] = ACTIONS(3996), - [anon_sym_BSLASHTextcite] = ACTIONS(3996), - [anon_sym_BSLASHsmartcite] = ACTIONS(3996), - [anon_sym_BSLASHSmartcite] = ACTIONS(3996), - [anon_sym_BSLASHsupercite] = ACTIONS(3996), - [anon_sym_BSLASHautocite] = ACTIONS(3996), - [anon_sym_BSLASHAutocite] = ACTIONS(3996), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHvolcite] = ACTIONS(3996), - [anon_sym_BSLASHVolcite] = ACTIONS(3996), - [anon_sym_BSLASHpvolcite] = ACTIONS(3996), - [anon_sym_BSLASHPvolcite] = ACTIONS(3996), - [anon_sym_BSLASHfvolcite] = ACTIONS(3996), - [anon_sym_BSLASHftvolcite] = ACTIONS(3996), - [anon_sym_BSLASHsvolcite] = ACTIONS(3996), - [anon_sym_BSLASHSvolcite] = ACTIONS(3996), - [anon_sym_BSLASHtvolcite] = ACTIONS(3996), - [anon_sym_BSLASHTvolcite] = ACTIONS(3996), - [anon_sym_BSLASHavolcite] = ACTIONS(3996), - [anon_sym_BSLASHAvolcite] = ACTIONS(3996), - [anon_sym_BSLASHnotecite] = ACTIONS(3996), - [anon_sym_BSLASHNotecite] = ACTIONS(3996), - [anon_sym_BSLASHpnotecite] = ACTIONS(3996), - [anon_sym_BSLASHPnotecite] = ACTIONS(3996), - [anon_sym_BSLASHfnotecite] = ACTIONS(3996), - [anon_sym_BSLASHlabel] = ACTIONS(4002), - [anon_sym_BSLASHref] = ACTIONS(4005), - [anon_sym_BSLASHeqref] = ACTIONS(4005), - [anon_sym_BSLASHvref] = ACTIONS(4005), - [anon_sym_BSLASHVref] = ACTIONS(4005), - [anon_sym_BSLASHautoref] = ACTIONS(4005), - [anon_sym_BSLASHpageref] = ACTIONS(4005), - [anon_sym_BSLASHcref] = ACTIONS(4005), - [anon_sym_BSLASHCref] = ACTIONS(4005), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnameCref] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHlabelcref] = ACTIONS(4005), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4005), - [anon_sym_BSLASHcrefrange] = ACTIONS(4011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHCrefrange] = ACTIONS(4011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHnewlabel] = ACTIONS(4017), - [anon_sym_BSLASHnewcommand] = ACTIONS(4020), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4020), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4020), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4020), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4023), - [anon_sym_BSLASHdef] = ACTIONS(4026), - [anon_sym_BSLASHlet] = ACTIONS(4029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4032), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4032), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4035), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4038), - [anon_sym_BSLASHgls] = ACTIONS(4041), - [anon_sym_BSLASHGls] = ACTIONS(4041), - [anon_sym_BSLASHGLS] = ACTIONS(4041), - [anon_sym_BSLASHglspl] = ACTIONS(4041), - [anon_sym_BSLASHGlspl] = ACTIONS(4041), - [anon_sym_BSLASHGLSpl] = ACTIONS(4041), - [anon_sym_BSLASHglsdisp] = ACTIONS(4041), - [anon_sym_BSLASHglslink] = ACTIONS(4041), - [anon_sym_BSLASHglstext] = ACTIONS(4041), - [anon_sym_BSLASHGlstext] = ACTIONS(4041), - [anon_sym_BSLASHGLStext] = ACTIONS(4041), - [anon_sym_BSLASHglsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4041), - [anon_sym_BSLASHglsplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSplural] = ACTIONS(4041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHglsname] = ACTIONS(4041), - [anon_sym_BSLASHGlsname] = ACTIONS(4041), - [anon_sym_BSLASHGLSname] = ACTIONS(4041), - [anon_sym_BSLASHglssymbol] = ACTIONS(4041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4041), - [anon_sym_BSLASHglsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4041), - [anon_sym_BSLASHglsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4041), - [anon_sym_BSLASHglsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4041), - [anon_sym_BSLASHglsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4041), - [anon_sym_BSLASHglsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4041), - [anon_sym_BSLASHnewacronym] = ACTIONS(4044), - [anon_sym_BSLASHacrshort] = ACTIONS(4047), - [anon_sym_BSLASHAcrshort] = ACTIONS(4047), - [anon_sym_BSLASHACRshort] = ACTIONS(4047), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4047), - [anon_sym_BSLASHacrlong] = ACTIONS(4047), - [anon_sym_BSLASHAcrlong] = ACTIONS(4047), - [anon_sym_BSLASHACRlong] = ACTIONS(4047), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4047), - [anon_sym_BSLASHacrfull] = ACTIONS(4047), - [anon_sym_BSLASHAcrfull] = ACTIONS(4047), - [anon_sym_BSLASHACRfull] = ACTIONS(4047), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4047), - [anon_sym_BSLASHacs] = ACTIONS(4047), - [anon_sym_BSLASHAcs] = ACTIONS(4047), - [anon_sym_BSLASHacsp] = ACTIONS(4047), - [anon_sym_BSLASHAcsp] = ACTIONS(4047), - [anon_sym_BSLASHacl] = ACTIONS(4047), - [anon_sym_BSLASHAcl] = ACTIONS(4047), - [anon_sym_BSLASHaclp] = ACTIONS(4047), - [anon_sym_BSLASHAclp] = ACTIONS(4047), - [anon_sym_BSLASHacf] = ACTIONS(4047), - [anon_sym_BSLASHAcf] = ACTIONS(4047), - [anon_sym_BSLASHacfp] = ACTIONS(4047), - [anon_sym_BSLASHAcfp] = ACTIONS(4047), - [anon_sym_BSLASHac] = ACTIONS(4047), - [anon_sym_BSLASHAc] = ACTIONS(4047), - [anon_sym_BSLASHacp] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4050), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4050), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4056), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4059), - [anon_sym_BSLASHcolor] = ACTIONS(4062), - [anon_sym_BSLASHcolorbox] = ACTIONS(4062), - [anon_sym_BSLASHtextcolor] = ACTIONS(4062), - [anon_sym_BSLASHpagecolor] = ACTIONS(4062), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4065), - [anon_sym_BSLASHtext] = ACTIONS(4068), - [anon_sym_BSLASHintertext] = ACTIONS(4068), - [anon_sym_shortintertext] = ACTIONS(4068), + [aux_sym_brack_group_repeat1] = STATE(244), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_RPAREN] = ACTIONS(3971), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [245] = { + [250] = { [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), [sym__text_content] = STATE(243), [sym_curly_group] = STATE(243), - [sym_brack_group] = STATE(243), + [sym_mixed_group] = STATE(243), [sym_text] = STATE(243), - [sym_operator] = STATE(1465), - [sym_value] = STATE(1821), + [sym_operator] = STATE(1478), [sym_displayed_equation] = STATE(243), [sym_inline_formula] = STATE(243), [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), [sym__command] = STATE(243), [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), [sym_package_include] = STATE(243), [sym_class_include] = STATE(243), [sym_latex_include] = STATE(243), @@ -102618,269 +106613,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(243), [sym_tikz_library_import] = STATE(243), [sym_text_mode] = STATE(243), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(243), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_LBRACE] = ACTIONS(3837), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4073), - [anon_sym_DOLLAR] = ACTIONS(4075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4077), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3975), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [246] = { + [251] = { + [sym_block_comment] = STATE(238), + [sym__text_with_env_content] = STATE(238), + [sym__text_content] = STATE(238), + [sym_curly_group] = STATE(238), + [sym_mixed_group] = STATE(238), + [sym_text] = STATE(238), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(238), + [sym_inline_formula] = STATE(238), + [sym_math_set] = STATE(238), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(238), + [sym_comment_environment] = STATE(238), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(238), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(238), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(238), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(238), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(238), + [sym_generic_command] = STATE(238), + [sym_title_declaration] = STATE(238), + [sym_author_declaration] = STATE(238), + [sym_package_include] = STATE(238), + [sym_class_include] = STATE(238), + [sym_latex_include] = STATE(238), + [sym_biblatex_include] = STATE(238), + [sym_bibtex_include] = STATE(238), + [sym_graphics_include] = STATE(238), + [sym_svg_include] = STATE(238), + [sym_inkscape_include] = STATE(238), + [sym_verbatim_include] = STATE(238), + [sym_import_include] = STATE(238), + [sym_caption] = STATE(238), + [sym_citation] = STATE(238), + [sym_label_definition] = STATE(238), + [sym_label_reference] = STATE(238), + [sym_label_reference_range] = STATE(238), + [sym_label_number] = STATE(238), + [sym_new_command_definition] = STATE(238), + [sym_old_command_definition] = STATE(238), + [sym_let_command_definition] = STATE(238), + [sym_paired_delimiter_definition] = STATE(238), + [sym_environment_definition] = STATE(238), + [sym_glossary_entry_definition] = STATE(238), + [sym_glossary_entry_reference] = STATE(238), + [sym_acronym_definition] = STATE(238), + [sym_acronym_reference] = STATE(238), + [sym_theorem_definition] = STATE(238), + [sym_color_definition] = STATE(238), + [sym_color_set_definition] = STATE(238), + [sym_color_reference] = STATE(238), + [sym_tikz_library_import] = STATE(238), + [sym_text_mode] = STATE(238), + [aux_sym_mixed_group_repeat1] = STATE(238), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), + }, + [252] = { [sym_block_comment] = STATE(241), + [sym__text_with_env_content] = STATE(241), [sym__text_content] = STATE(241), [sym_curly_group] = STATE(241), [sym_brack_group] = STATE(241), [sym_text] = STATE(241), - [sym_operator] = STATE(1465), - [sym_value] = STATE(1821), + [sym_operator] = STATE(1478), [sym_displayed_equation] = STATE(241), [sym_inline_formula] = STATE(241), [sym_math_set] = STATE(241), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(241), + [sym_comment_environment] = STATE(241), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(241), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(241), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(241), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(241), + [sym__trivia_begin_pycode] = STATE(2779), [sym__command] = STATE(241), [sym_generic_command] = STATE(241), + [sym_title_declaration] = STATE(241), + [sym_author_declaration] = STATE(241), [sym_package_include] = STATE(241), [sym_class_include] = STATE(241), [sym_latex_include] = STATE(241), @@ -102912,857 +107241,1213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(241), [sym_tikz_library_import] = STATE(241), [sym_text_mode] = STATE(241), - [aux_sym_text_repeat1] = STATE(269), - [aux_sym_value_repeat1] = STATE(241), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(4093), - [anon_sym_RPAREN] = ACTIONS(4093), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_LBRACE] = ACTIONS(3837), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3845), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3845), - [anon_sym_DOLLAR] = ACTIONS(3847), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3849), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [aux_sym_brack_group_repeat1] = STATE(241), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3981), + [anon_sym_RPAREN] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_RBRACK] = ACTIONS(3983), + [anon_sym_COMMA] = ACTIONS(3981), + [anon_sym_EQ] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [247] = { - [sym_block_comment] = STATE(264), - [sym__text_content] = STATE(264), - [sym_curly_group] = STATE(264), - [sym_text] = STATE(264), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(264), - [sym_inline_formula] = STATE(264), - [sym_math_set] = STATE(264), - [sym__command] = STATE(264), - [sym_generic_command] = STATE(264), - [sym_package_include] = STATE(264), - [sym_class_include] = STATE(264), - [sym_latex_include] = STATE(264), - [sym_biblatex_include] = STATE(264), - [sym_bibtex_include] = STATE(264), - [sym_graphics_include] = STATE(264), - [sym_svg_include] = STATE(264), - [sym_inkscape_include] = STATE(264), - [sym_verbatim_include] = STATE(264), - [sym_import_include] = STATE(264), - [sym_caption] = STATE(264), - [sym_citation] = STATE(264), - [sym_label_definition] = STATE(264), - [sym_label_reference] = STATE(264), - [sym_label_reference_range] = STATE(264), - [sym_label_number] = STATE(264), - [sym_new_command_definition] = STATE(264), - [sym_old_command_definition] = STATE(264), - [sym_let_command_definition] = STATE(264), - [sym_paired_delimiter_definition] = STATE(264), - [sym_environment_definition] = STATE(264), - [sym_glossary_entry_definition] = STATE(264), - [sym_glossary_entry_reference] = STATE(264), - [sym_acronym_definition] = STATE(264), - [sym_acronym_reference] = STATE(264), - [sym_theorem_definition] = STATE(264), - [sym_color_definition] = STATE(264), - [sym_color_set_definition] = STATE(264), - [sym_color_reference] = STATE(264), - [sym_tikz_library_import] = STATE(264), - [sym_text_mode] = STATE(264), - [aux_sym_curly_group_impl_repeat1] = STATE(264), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4095), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [253] = { + [sym_block_comment] = STATE(246), + [sym__text_with_env_content] = STATE(246), + [sym__text_content] = STATE(246), + [sym_curly_group] = STATE(246), + [sym_mixed_group] = STATE(246), + [sym_text] = STATE(246), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(246), + [sym_inline_formula] = STATE(246), + [sym_math_set] = STATE(246), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(246), + [sym_comment_environment] = STATE(246), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(246), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(246), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(246), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(246), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(246), + [sym_generic_command] = STATE(246), + [sym_title_declaration] = STATE(246), + [sym_author_declaration] = STATE(246), + [sym_package_include] = STATE(246), + [sym_class_include] = STATE(246), + [sym_latex_include] = STATE(246), + [sym_biblatex_include] = STATE(246), + [sym_bibtex_include] = STATE(246), + [sym_graphics_include] = STATE(246), + [sym_svg_include] = STATE(246), + [sym_inkscape_include] = STATE(246), + [sym_verbatim_include] = STATE(246), + [sym_import_include] = STATE(246), + [sym_caption] = STATE(246), + [sym_citation] = STATE(246), + [sym_label_definition] = STATE(246), + [sym_label_reference] = STATE(246), + [sym_label_reference_range] = STATE(246), + [sym_label_number] = STATE(246), + [sym_new_command_definition] = STATE(246), + [sym_old_command_definition] = STATE(246), + [sym_let_command_definition] = STATE(246), + [sym_paired_delimiter_definition] = STATE(246), + [sym_environment_definition] = STATE(246), + [sym_glossary_entry_definition] = STATE(246), + [sym_glossary_entry_reference] = STATE(246), + [sym_acronym_definition] = STATE(246), + [sym_acronym_reference] = STATE(246), + [sym_theorem_definition] = STATE(246), + [sym_color_definition] = STATE(246), + [sym_color_set_definition] = STATE(246), + [sym_color_reference] = STATE(246), + [sym_tikz_library_import] = STATE(246), + [sym_text_mode] = STATE(246), + [aux_sym_mixed_group_repeat1] = STATE(246), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3985), + [anon_sym_COMMA] = ACTIONS(3987), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [248] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4103), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [254] = { + [sym_block_comment] = STATE(243), + [sym__text_with_env_content] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1478), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym_begin] = STATE(26), + [sym_generic_environment] = STATE(243), + [sym_comment_environment] = STATE(243), + [sym__trivia_begin_comment] = STATE(2704), + [sym_verbatim_environment] = STATE(243), + [sym__trivia_begin_verbatim] = STATE(2703), + [sym_listing_environment] = STATE(243), + [sym__trivia_begin_listing] = STATE(2702), + [sym_minted_environment] = STATE(243), + [sym__trivia_begin_minted] = STATE(2701), + [sym_pycode_environment] = STATE(243), + [sym__trivia_begin_pycode] = STATE(2779), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_title_declaration] = STATE(243), + [sym_author_declaration] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_paired_delimiter_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_mixed_group_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(303), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3523), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3527), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3529), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(3605), + [anon_sym_BSLASHintertext] = ACTIONS(3605), + [anon_sym_shortintertext] = ACTIONS(3605), }, - [249] = { - [sym_block_comment] = STATE(256), - [sym__text_content] = STATE(256), - [sym_curly_group] = STATE(256), - [sym_text] = STATE(256), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(256), - [sym_inline_formula] = STATE(256), - [sym_math_set] = STATE(256), - [sym__command] = STATE(256), - [sym_generic_command] = STATE(256), - [sym_package_include] = STATE(256), - [sym_class_include] = STATE(256), - [sym_latex_include] = STATE(256), - [sym_biblatex_include] = STATE(256), - [sym_bibtex_include] = STATE(256), - [sym_graphics_include] = STATE(256), - [sym_svg_include] = STATE(256), - [sym_inkscape_include] = STATE(256), - [sym_verbatim_include] = STATE(256), - [sym_import_include] = STATE(256), + [255] = { + [sym_block_comment] = STATE(255), + [sym__text_content] = STATE(255), + [sym_curly_group] = STATE(255), + [sym_brack_group] = STATE(255), + [sym_text] = STATE(255), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(255), + [sym_inline_formula] = STATE(255), + [sym_math_set] = STATE(255), + [sym__command] = STATE(255), + [sym_generic_command] = STATE(255), + [sym_title_declaration] = STATE(255), + [sym_author_declaration] = STATE(255), + [sym_package_include] = STATE(255), + [sym_class_include] = STATE(255), + [sym_latex_include] = STATE(255), + [sym_biblatex_include] = STATE(255), + [sym_bibtex_include] = STATE(255), + [sym_graphics_include] = STATE(255), + [sym_svg_include] = STATE(255), + [sym_inkscape_include] = STATE(255), + [sym_verbatim_include] = STATE(255), + [sym_import_include] = STATE(255), + [sym_caption] = STATE(255), + [sym_citation] = STATE(255), + [sym_label_definition] = STATE(255), + [sym_label_reference] = STATE(255), + [sym_label_reference_range] = STATE(255), + [sym_label_number] = STATE(255), + [sym_new_command_definition] = STATE(255), + [sym_old_command_definition] = STATE(255), + [sym_let_command_definition] = STATE(255), + [sym_paired_delimiter_definition] = STATE(255), + [sym_environment_definition] = STATE(255), + [sym_glossary_entry_definition] = STATE(255), + [sym_glossary_entry_reference] = STATE(255), + [sym_acronym_definition] = STATE(255), + [sym_acronym_reference] = STATE(255), + [sym_theorem_definition] = STATE(255), + [sym_color_definition] = STATE(255), + [sym_color_set_definition] = STATE(255), + [sym_color_reference] = STATE(255), + [sym_tikz_library_import] = STATE(255), + [sym_text_mode] = STATE(255), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(255), + [sym_command_name] = ACTIONS(3991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4005), + [anon_sym_RBRACE] = ACTIONS(4003), + [sym_word] = ACTIONS(4008), + [sym_placeholder] = ACTIONS(4011), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_SLASH] = ACTIONS(4014), + [anon_sym_CARET] = ACTIONS(4014), + [anon_sym__] = ACTIONS(4014), + [anon_sym_LT] = ACTIONS(4014), + [anon_sym_GT] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_PIPE] = ACTIONS(4014), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4017), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4017), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4026), + [anon_sym_BSLASHtitle] = ACTIONS(4029), + [anon_sym_BSLASHauthor] = ACTIONS(4032), + [anon_sym_BSLASHusepackage] = ACTIONS(4035), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4035), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4038), + [anon_sym_BSLASHinclude] = ACTIONS(4041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4041), + [anon_sym_BSLASHinput] = ACTIONS(4041), + [anon_sym_BSLASHsubfile] = ACTIONS(4041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4044), + [anon_sym_BSLASHbibliography] = ACTIONS(4047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4050), + [anon_sym_BSLASHincludesvg] = ACTIONS(4053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4056), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4059), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4059), + [anon_sym_BSLASHimport] = ACTIONS(4062), + [anon_sym_BSLASHsubimport] = ACTIONS(4062), + [anon_sym_BSLASHinputfrom] = ACTIONS(4062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4062), + [anon_sym_BSLASHincludefrom] = ACTIONS(4062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4062), + [anon_sym_BSLASHcaption] = ACTIONS(4065), + [anon_sym_BSLASHcite] = ACTIONS(4068), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHCite] = ACTIONS(4068), + [anon_sym_BSLASHnocite] = ACTIONS(4068), + [anon_sym_BSLASHcitet] = ACTIONS(4068), + [anon_sym_BSLASHcitep] = ACTIONS(4068), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteauthor] = ACTIONS(4068), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4068), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitetitle] = ACTIONS(4068), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteyear] = ACTIONS(4068), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitedate] = ACTIONS(4068), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteurl] = ACTIONS(4068), + [anon_sym_BSLASHfullcite] = ACTIONS(4068), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4068), + [anon_sym_BSLASHcitealt] = ACTIONS(4068), + [anon_sym_BSLASHcitealp] = ACTIONS(4068), + [anon_sym_BSLASHcitetext] = ACTIONS(4068), + [anon_sym_BSLASHparencite] = ACTIONS(4068), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHParencite] = ACTIONS(4068), + [anon_sym_BSLASHfootcite] = ACTIONS(4068), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4068), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4068), + [anon_sym_BSLASHtextcite] = ACTIONS(4068), + [anon_sym_BSLASHTextcite] = ACTIONS(4068), + [anon_sym_BSLASHsmartcite] = ACTIONS(4068), + [anon_sym_BSLASHSmartcite] = ACTIONS(4068), + [anon_sym_BSLASHsupercite] = ACTIONS(4068), + [anon_sym_BSLASHautocite] = ACTIONS(4068), + [anon_sym_BSLASHAutocite] = ACTIONS(4068), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHvolcite] = ACTIONS(4068), + [anon_sym_BSLASHVolcite] = ACTIONS(4068), + [anon_sym_BSLASHpvolcite] = ACTIONS(4068), + [anon_sym_BSLASHPvolcite] = ACTIONS(4068), + [anon_sym_BSLASHfvolcite] = ACTIONS(4068), + [anon_sym_BSLASHftvolcite] = ACTIONS(4068), + [anon_sym_BSLASHsvolcite] = ACTIONS(4068), + [anon_sym_BSLASHSvolcite] = ACTIONS(4068), + [anon_sym_BSLASHtvolcite] = ACTIONS(4068), + [anon_sym_BSLASHTvolcite] = ACTIONS(4068), + [anon_sym_BSLASHavolcite] = ACTIONS(4068), + [anon_sym_BSLASHAvolcite] = ACTIONS(4068), + [anon_sym_BSLASHnotecite] = ACTIONS(4068), + [anon_sym_BSLASHNotecite] = ACTIONS(4068), + [anon_sym_BSLASHpnotecite] = ACTIONS(4068), + [anon_sym_BSLASHPnotecite] = ACTIONS(4068), + [anon_sym_BSLASHfnotecite] = ACTIONS(4068), + [anon_sym_BSLASHlabel] = ACTIONS(4074), + [anon_sym_BSLASHref] = ACTIONS(4077), + [anon_sym_BSLASHeqref] = ACTIONS(4077), + [anon_sym_BSLASHvref] = ACTIONS(4077), + [anon_sym_BSLASHVref] = ACTIONS(4077), + [anon_sym_BSLASHautoref] = ACTIONS(4077), + [anon_sym_BSLASHpageref] = ACTIONS(4077), + [anon_sym_BSLASHcref] = ACTIONS(4077), + [anon_sym_BSLASHCref] = ACTIONS(4077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4080), + [anon_sym_BSLASHnamecref] = ACTIONS(4077), + [anon_sym_BSLASHnameCref] = ACTIONS(4077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4077), + [anon_sym_BSLASHlabelcref] = ACTIONS(4077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4077), + [anon_sym_BSLASHcrefrange] = ACTIONS(4083), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4086), + [anon_sym_BSLASHCrefrange] = ACTIONS(4083), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4086), + [anon_sym_BSLASHnewlabel] = ACTIONS(4089), + [anon_sym_BSLASHnewcommand] = ACTIONS(4092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4095), + [anon_sym_BSLASHdef] = ACTIONS(4098), + [anon_sym_BSLASHlet] = ACTIONS(4101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4104), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4107), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4110), + [anon_sym_BSLASHgls] = ACTIONS(4113), + [anon_sym_BSLASHGls] = ACTIONS(4113), + [anon_sym_BSLASHGLS] = ACTIONS(4113), + [anon_sym_BSLASHglspl] = ACTIONS(4113), + [anon_sym_BSLASHGlspl] = ACTIONS(4113), + [anon_sym_BSLASHGLSpl] = ACTIONS(4113), + [anon_sym_BSLASHglsdisp] = ACTIONS(4113), + [anon_sym_BSLASHglslink] = ACTIONS(4113), + [anon_sym_BSLASHglstext] = ACTIONS(4113), + [anon_sym_BSLASHGlstext] = ACTIONS(4113), + [anon_sym_BSLASHGLStext] = ACTIONS(4113), + [anon_sym_BSLASHglsfirst] = ACTIONS(4113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4113), + [anon_sym_BSLASHglsplural] = ACTIONS(4113), + [anon_sym_BSLASHGlsplural] = ACTIONS(4113), + [anon_sym_BSLASHGLSplural] = ACTIONS(4113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHglsname] = ACTIONS(4113), + [anon_sym_BSLASHGlsname] = ACTIONS(4113), + [anon_sym_BSLASHGLSname] = ACTIONS(4113), + [anon_sym_BSLASHglssymbol] = ACTIONS(4113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4113), + [anon_sym_BSLASHglsdesc] = ACTIONS(4113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4113), + [anon_sym_BSLASHglsuseri] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4113), + [anon_sym_BSLASHglsuserii] = ACTIONS(4113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4113), + [anon_sym_BSLASHglsuserv] = ACTIONS(4113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4113), + [anon_sym_BSLASHglsuservi] = ACTIONS(4113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4113), + [anon_sym_BSLASHnewacronym] = ACTIONS(4116), + [anon_sym_BSLASHacrshort] = ACTIONS(4119), + [anon_sym_BSLASHAcrshort] = ACTIONS(4119), + [anon_sym_BSLASHACRshort] = ACTIONS(4119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4119), + [anon_sym_BSLASHacrlong] = ACTIONS(4119), + [anon_sym_BSLASHAcrlong] = ACTIONS(4119), + [anon_sym_BSLASHACRlong] = ACTIONS(4119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4119), + [anon_sym_BSLASHacrfull] = ACTIONS(4119), + [anon_sym_BSLASHAcrfull] = ACTIONS(4119), + [anon_sym_BSLASHACRfull] = ACTIONS(4119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4119), + [anon_sym_BSLASHacs] = ACTIONS(4119), + [anon_sym_BSLASHAcs] = ACTIONS(4119), + [anon_sym_BSLASHacsp] = ACTIONS(4119), + [anon_sym_BSLASHAcsp] = ACTIONS(4119), + [anon_sym_BSLASHacl] = ACTIONS(4119), + [anon_sym_BSLASHAcl] = ACTIONS(4119), + [anon_sym_BSLASHaclp] = ACTIONS(4119), + [anon_sym_BSLASHAclp] = ACTIONS(4119), + [anon_sym_BSLASHacf] = ACTIONS(4119), + [anon_sym_BSLASHAcf] = ACTIONS(4119), + [anon_sym_BSLASHacfp] = ACTIONS(4119), + [anon_sym_BSLASHAcfp] = ACTIONS(4119), + [anon_sym_BSLASHac] = ACTIONS(4119), + [anon_sym_BSLASHAc] = ACTIONS(4119), + [anon_sym_BSLASHacp] = ACTIONS(4119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4122), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4122), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4131), + [anon_sym_BSLASHcolor] = ACTIONS(4134), + [anon_sym_BSLASHcolorbox] = ACTIONS(4134), + [anon_sym_BSLASHtextcolor] = ACTIONS(4134), + [anon_sym_BSLASHpagecolor] = ACTIONS(4134), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4137), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4137), + [anon_sym_BSLASHtext] = ACTIONS(4140), + [anon_sym_BSLASHintertext] = ACTIONS(4140), + [anon_sym_shortintertext] = ACTIONS(4140), + }, + [256] = { + [sym_block_comment] = STATE(256), + [sym__text_content] = STATE(256), + [sym_curly_group] = STATE(256), + [sym_brack_group] = STATE(256), + [sym_text] = STATE(256), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(256), + [sym_inline_formula] = STATE(256), + [sym_math_set] = STATE(256), + [sym__command] = STATE(256), + [sym_generic_command] = STATE(256), + [sym_title_declaration] = STATE(256), + [sym_author_declaration] = STATE(256), + [sym_package_include] = STATE(256), + [sym_class_include] = STATE(256), + [sym_latex_include] = STATE(256), + [sym_biblatex_include] = STATE(256), + [sym_bibtex_include] = STATE(256), + [sym_graphics_include] = STATE(256), + [sym_svg_include] = STATE(256), + [sym_inkscape_include] = STATE(256), + [sym_verbatim_include] = STATE(256), + [sym_import_include] = STATE(256), [sym_caption] = STATE(256), [sym_citation] = STATE(256), [sym_label_definition] = STATE(256), @@ -103784,1425 +108469,873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(256), [sym_tikz_library_import] = STATE(256), [sym_text_mode] = STATE(256), - [aux_sym_curly_group_impl_repeat1] = STATE(256), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4105), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [250] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4107), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(256), + [sym_command_name] = ACTIONS(3991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(4143), + [anon_sym_RPAREN] = ACTIONS(4143), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_RBRACK] = ACTIONS(4003), + [anon_sym_COMMA] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4005), + [sym_word] = ACTIONS(4008), + [sym_placeholder] = ACTIONS(4011), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_SLASH] = ACTIONS(4014), + [anon_sym_CARET] = ACTIONS(4014), + [anon_sym__] = ACTIONS(4014), + [anon_sym_LT] = ACTIONS(4014), + [anon_sym_GT] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_PIPE] = ACTIONS(4014), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4146), + [anon_sym_DOLLAR] = ACTIONS(4149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4152), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4026), + [anon_sym_BSLASHtitle] = ACTIONS(4029), + [anon_sym_BSLASHauthor] = ACTIONS(4032), + [anon_sym_BSLASHusepackage] = ACTIONS(4035), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4035), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4038), + [anon_sym_BSLASHinclude] = ACTIONS(4041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4041), + [anon_sym_BSLASHinput] = ACTIONS(4041), + [anon_sym_BSLASHsubfile] = ACTIONS(4041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4044), + [anon_sym_BSLASHbibliography] = ACTIONS(4047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4050), + [anon_sym_BSLASHincludesvg] = ACTIONS(4053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4056), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4059), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4059), + [anon_sym_BSLASHimport] = ACTIONS(4062), + [anon_sym_BSLASHsubimport] = ACTIONS(4062), + [anon_sym_BSLASHinputfrom] = ACTIONS(4062), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4062), + [anon_sym_BSLASHincludefrom] = ACTIONS(4062), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4062), + [anon_sym_BSLASHcaption] = ACTIONS(4065), + [anon_sym_BSLASHcite] = ACTIONS(4068), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHCite] = ACTIONS(4068), + [anon_sym_BSLASHnocite] = ACTIONS(4068), + [anon_sym_BSLASHcitet] = ACTIONS(4068), + [anon_sym_BSLASHcitep] = ACTIONS(4068), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteauthor] = ACTIONS(4068), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4068), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitetitle] = ACTIONS(4068), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteyear] = ACTIONS(4068), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4071), + [anon_sym_BSLASHcitedate] = ACTIONS(4068), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4071), + [anon_sym_BSLASHciteurl] = ACTIONS(4068), + [anon_sym_BSLASHfullcite] = ACTIONS(4068), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4068), + [anon_sym_BSLASHcitealt] = ACTIONS(4068), + [anon_sym_BSLASHcitealp] = ACTIONS(4068), + [anon_sym_BSLASHcitetext] = ACTIONS(4068), + [anon_sym_BSLASHparencite] = ACTIONS(4068), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHParencite] = ACTIONS(4068), + [anon_sym_BSLASHfootcite] = ACTIONS(4068), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4068), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4068), + [anon_sym_BSLASHtextcite] = ACTIONS(4068), + [anon_sym_BSLASHTextcite] = ACTIONS(4068), + [anon_sym_BSLASHsmartcite] = ACTIONS(4068), + [anon_sym_BSLASHSmartcite] = ACTIONS(4068), + [anon_sym_BSLASHsupercite] = ACTIONS(4068), + [anon_sym_BSLASHautocite] = ACTIONS(4068), + [anon_sym_BSLASHAutocite] = ACTIONS(4068), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4071), + [anon_sym_BSLASHvolcite] = ACTIONS(4068), + [anon_sym_BSLASHVolcite] = ACTIONS(4068), + [anon_sym_BSLASHpvolcite] = ACTIONS(4068), + [anon_sym_BSLASHPvolcite] = ACTIONS(4068), + [anon_sym_BSLASHfvolcite] = ACTIONS(4068), + [anon_sym_BSLASHftvolcite] = ACTIONS(4068), + [anon_sym_BSLASHsvolcite] = ACTIONS(4068), + [anon_sym_BSLASHSvolcite] = ACTIONS(4068), + [anon_sym_BSLASHtvolcite] = ACTIONS(4068), + [anon_sym_BSLASHTvolcite] = ACTIONS(4068), + [anon_sym_BSLASHavolcite] = ACTIONS(4068), + [anon_sym_BSLASHAvolcite] = ACTIONS(4068), + [anon_sym_BSLASHnotecite] = ACTIONS(4068), + [anon_sym_BSLASHNotecite] = ACTIONS(4068), + [anon_sym_BSLASHpnotecite] = ACTIONS(4068), + [anon_sym_BSLASHPnotecite] = ACTIONS(4068), + [anon_sym_BSLASHfnotecite] = ACTIONS(4068), + [anon_sym_BSLASHlabel] = ACTIONS(4074), + [anon_sym_BSLASHref] = ACTIONS(4077), + [anon_sym_BSLASHeqref] = ACTIONS(4077), + [anon_sym_BSLASHvref] = ACTIONS(4077), + [anon_sym_BSLASHVref] = ACTIONS(4077), + [anon_sym_BSLASHautoref] = ACTIONS(4077), + [anon_sym_BSLASHpageref] = ACTIONS(4077), + [anon_sym_BSLASHcref] = ACTIONS(4077), + [anon_sym_BSLASHCref] = ACTIONS(4077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4080), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4080), + [anon_sym_BSLASHnamecref] = ACTIONS(4077), + [anon_sym_BSLASHnameCref] = ACTIONS(4077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4077), + [anon_sym_BSLASHlabelcref] = ACTIONS(4077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4077), + [anon_sym_BSLASHcrefrange] = ACTIONS(4083), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4086), + [anon_sym_BSLASHCrefrange] = ACTIONS(4083), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4086), + [anon_sym_BSLASHnewlabel] = ACTIONS(4089), + [anon_sym_BSLASHnewcommand] = ACTIONS(4092), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4092), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4092), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4095), + [anon_sym_BSLASHdef] = ACTIONS(4098), + [anon_sym_BSLASHlet] = ACTIONS(4101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4104), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4104), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4107), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4110), + [anon_sym_BSLASHgls] = ACTIONS(4113), + [anon_sym_BSLASHGls] = ACTIONS(4113), + [anon_sym_BSLASHGLS] = ACTIONS(4113), + [anon_sym_BSLASHglspl] = ACTIONS(4113), + [anon_sym_BSLASHGlspl] = ACTIONS(4113), + [anon_sym_BSLASHGLSpl] = ACTIONS(4113), + [anon_sym_BSLASHglsdisp] = ACTIONS(4113), + [anon_sym_BSLASHglslink] = ACTIONS(4113), + [anon_sym_BSLASHglstext] = ACTIONS(4113), + [anon_sym_BSLASHGlstext] = ACTIONS(4113), + [anon_sym_BSLASHGLStext] = ACTIONS(4113), + [anon_sym_BSLASHglsfirst] = ACTIONS(4113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4113), + [anon_sym_BSLASHglsplural] = ACTIONS(4113), + [anon_sym_BSLASHGlsplural] = ACTIONS(4113), + [anon_sym_BSLASHGLSplural] = ACTIONS(4113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4113), + [anon_sym_BSLASHglsname] = ACTIONS(4113), + [anon_sym_BSLASHGlsname] = ACTIONS(4113), + [anon_sym_BSLASHGLSname] = ACTIONS(4113), + [anon_sym_BSLASHglssymbol] = ACTIONS(4113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4113), + [anon_sym_BSLASHglsdesc] = ACTIONS(4113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4113), + [anon_sym_BSLASHglsuseri] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4113), + [anon_sym_BSLASHglsuserii] = ACTIONS(4113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4113), + [anon_sym_BSLASHglsuserv] = ACTIONS(4113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4113), + [anon_sym_BSLASHglsuservi] = ACTIONS(4113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4113), + [anon_sym_BSLASHnewacronym] = ACTIONS(4116), + [anon_sym_BSLASHacrshort] = ACTIONS(4119), + [anon_sym_BSLASHAcrshort] = ACTIONS(4119), + [anon_sym_BSLASHACRshort] = ACTIONS(4119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4119), + [anon_sym_BSLASHacrlong] = ACTIONS(4119), + [anon_sym_BSLASHAcrlong] = ACTIONS(4119), + [anon_sym_BSLASHACRlong] = ACTIONS(4119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4119), + [anon_sym_BSLASHacrfull] = ACTIONS(4119), + [anon_sym_BSLASHAcrfull] = ACTIONS(4119), + [anon_sym_BSLASHACRfull] = ACTIONS(4119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4119), + [anon_sym_BSLASHacs] = ACTIONS(4119), + [anon_sym_BSLASHAcs] = ACTIONS(4119), + [anon_sym_BSLASHacsp] = ACTIONS(4119), + [anon_sym_BSLASHAcsp] = ACTIONS(4119), + [anon_sym_BSLASHacl] = ACTIONS(4119), + [anon_sym_BSLASHAcl] = ACTIONS(4119), + [anon_sym_BSLASHaclp] = ACTIONS(4119), + [anon_sym_BSLASHAclp] = ACTIONS(4119), + [anon_sym_BSLASHacf] = ACTIONS(4119), + [anon_sym_BSLASHAcf] = ACTIONS(4119), + [anon_sym_BSLASHacfp] = ACTIONS(4119), + [anon_sym_BSLASHAcfp] = ACTIONS(4119), + [anon_sym_BSLASHac] = ACTIONS(4119), + [anon_sym_BSLASHAc] = ACTIONS(4119), + [anon_sym_BSLASHacp] = ACTIONS(4119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4122), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4122), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4131), + [anon_sym_BSLASHcolor] = ACTIONS(4134), + [anon_sym_BSLASHcolorbox] = ACTIONS(4134), + [anon_sym_BSLASHtextcolor] = ACTIONS(4134), + [anon_sym_BSLASHpagecolor] = ACTIONS(4134), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4137), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4137), + [anon_sym_BSLASHtext] = ACTIONS(4140), + [anon_sym_BSLASHintertext] = ACTIONS(4140), + [anon_sym_shortintertext] = ACTIONS(4140), }, - [251] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(4109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_RBRACE] = ACTIONS(4118), - [sym_word] = ACTIONS(4120), - [sym_placeholder] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym__] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4126), - [anon_sym_GT] = ACTIONS(4126), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4126), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4129), - [anon_sym_DOLLAR] = ACTIONS(4132), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4138), - [anon_sym_BSLASHusepackage] = ACTIONS(4141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4144), - [anon_sym_BSLASHinclude] = ACTIONS(4147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4147), - [anon_sym_BSLASHinput] = ACTIONS(4147), - [anon_sym_BSLASHsubfile] = ACTIONS(4147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4150), - [anon_sym_BSLASHbibliography] = ACTIONS(4153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4156), - [anon_sym_BSLASHincludesvg] = ACTIONS(4159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4162), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4165), - [anon_sym_BSLASHimport] = ACTIONS(4168), - [anon_sym_BSLASHsubimport] = ACTIONS(4168), - [anon_sym_BSLASHinputfrom] = ACTIONS(4168), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4168), - [anon_sym_BSLASHincludefrom] = ACTIONS(4168), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4168), - [anon_sym_BSLASHcaption] = ACTIONS(4171), - [anon_sym_BSLASHcite] = ACTIONS(4174), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4177), - [anon_sym_BSLASHCite] = ACTIONS(4174), - [anon_sym_BSLASHnocite] = ACTIONS(4174), - [anon_sym_BSLASHcitet] = ACTIONS(4174), - [anon_sym_BSLASHcitep] = ACTIONS(4174), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4177), - [anon_sym_BSLASHciteauthor] = ACTIONS(4174), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4174), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4177), - [anon_sym_BSLASHcitetitle] = ACTIONS(4174), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4177), - [anon_sym_BSLASHciteyear] = ACTIONS(4174), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4177), - [anon_sym_BSLASHcitedate] = ACTIONS(4174), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4177), - [anon_sym_BSLASHciteurl] = ACTIONS(4174), - [anon_sym_BSLASHfullcite] = ACTIONS(4174), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4174), - [anon_sym_BSLASHcitealt] = ACTIONS(4174), - [anon_sym_BSLASHcitealp] = ACTIONS(4174), - [anon_sym_BSLASHcitetext] = ACTIONS(4174), - [anon_sym_BSLASHparencite] = ACTIONS(4174), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4177), - [anon_sym_BSLASHParencite] = ACTIONS(4174), - [anon_sym_BSLASHfootcite] = ACTIONS(4174), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4174), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4174), - [anon_sym_BSLASHtextcite] = ACTIONS(4174), - [anon_sym_BSLASHTextcite] = ACTIONS(4174), - [anon_sym_BSLASHsmartcite] = ACTIONS(4174), - [anon_sym_BSLASHSmartcite] = ACTIONS(4174), - [anon_sym_BSLASHsupercite] = ACTIONS(4174), - [anon_sym_BSLASHautocite] = ACTIONS(4174), - [anon_sym_BSLASHAutocite] = ACTIONS(4174), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4177), - [anon_sym_BSLASHvolcite] = ACTIONS(4174), - [anon_sym_BSLASHVolcite] = ACTIONS(4174), - [anon_sym_BSLASHpvolcite] = ACTIONS(4174), - [anon_sym_BSLASHPvolcite] = ACTIONS(4174), - [anon_sym_BSLASHfvolcite] = ACTIONS(4174), - [anon_sym_BSLASHftvolcite] = ACTIONS(4174), - [anon_sym_BSLASHsvolcite] = ACTIONS(4174), - [anon_sym_BSLASHSvolcite] = ACTIONS(4174), - [anon_sym_BSLASHtvolcite] = ACTIONS(4174), - [anon_sym_BSLASHTvolcite] = ACTIONS(4174), - [anon_sym_BSLASHavolcite] = ACTIONS(4174), - [anon_sym_BSLASHAvolcite] = ACTIONS(4174), - [anon_sym_BSLASHnotecite] = ACTIONS(4174), - [anon_sym_BSLASHNotecite] = ACTIONS(4174), - [anon_sym_BSLASHpnotecite] = ACTIONS(4174), - [anon_sym_BSLASHPnotecite] = ACTIONS(4174), - [anon_sym_BSLASHfnotecite] = ACTIONS(4174), - [anon_sym_BSLASHlabel] = ACTIONS(4180), - [anon_sym_BSLASHref] = ACTIONS(4183), - [anon_sym_BSLASHeqref] = ACTIONS(4183), - [anon_sym_BSLASHvref] = ACTIONS(4183), - [anon_sym_BSLASHVref] = ACTIONS(4183), - [anon_sym_BSLASHautoref] = ACTIONS(4183), - [anon_sym_BSLASHpageref] = ACTIONS(4183), - [anon_sym_BSLASHcref] = ACTIONS(4183), - [anon_sym_BSLASHCref] = ACTIONS(4183), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4186), - [anon_sym_BSLASHnamecref] = ACTIONS(4183), - [anon_sym_BSLASHnameCref] = ACTIONS(4183), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4183), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4183), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4183), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4183), - [anon_sym_BSLASHlabelcref] = ACTIONS(4183), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4183), - [anon_sym_BSLASHcrefrange] = ACTIONS(4189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4192), - [anon_sym_BSLASHCrefrange] = ACTIONS(4189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4192), - [anon_sym_BSLASHnewlabel] = ACTIONS(4195), - [anon_sym_BSLASHnewcommand] = ACTIONS(4198), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4198), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4198), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4198), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4201), - [anon_sym_BSLASHdef] = ACTIONS(4204), - [anon_sym_BSLASHlet] = ACTIONS(4207), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4210), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4210), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4216), - [anon_sym_BSLASHgls] = ACTIONS(4219), - [anon_sym_BSLASHGls] = ACTIONS(4219), - [anon_sym_BSLASHGLS] = ACTIONS(4219), - [anon_sym_BSLASHglspl] = ACTIONS(4219), - [anon_sym_BSLASHGlspl] = ACTIONS(4219), - [anon_sym_BSLASHGLSpl] = ACTIONS(4219), - [anon_sym_BSLASHglsdisp] = ACTIONS(4219), - [anon_sym_BSLASHglslink] = ACTIONS(4219), - [anon_sym_BSLASHglstext] = ACTIONS(4219), - [anon_sym_BSLASHGlstext] = ACTIONS(4219), - [anon_sym_BSLASHGLStext] = ACTIONS(4219), - [anon_sym_BSLASHglsfirst] = ACTIONS(4219), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4219), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4219), - [anon_sym_BSLASHglsplural] = ACTIONS(4219), - [anon_sym_BSLASHGlsplural] = ACTIONS(4219), - [anon_sym_BSLASHGLSplural] = ACTIONS(4219), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4219), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4219), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4219), - [anon_sym_BSLASHglsname] = ACTIONS(4219), - [anon_sym_BSLASHGlsname] = ACTIONS(4219), - [anon_sym_BSLASHGLSname] = ACTIONS(4219), - [anon_sym_BSLASHglssymbol] = ACTIONS(4219), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4219), - [anon_sym_BSLASHglsdesc] = ACTIONS(4219), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4219), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4219), - [anon_sym_BSLASHglsuseri] = ACTIONS(4219), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4219), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4219), - [anon_sym_BSLASHglsuserii] = ACTIONS(4219), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4219), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4219), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4219), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4219), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4219), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4219), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4219), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4219), - [anon_sym_BSLASHglsuserv] = ACTIONS(4219), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4219), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4219), - [anon_sym_BSLASHglsuservi] = ACTIONS(4219), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4219), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4219), - [anon_sym_BSLASHnewacronym] = ACTIONS(4222), - [anon_sym_BSLASHacrshort] = ACTIONS(4225), - [anon_sym_BSLASHAcrshort] = ACTIONS(4225), - [anon_sym_BSLASHACRshort] = ACTIONS(4225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4225), - [anon_sym_BSLASHacrlong] = ACTIONS(4225), - [anon_sym_BSLASHAcrlong] = ACTIONS(4225), - [anon_sym_BSLASHACRlong] = ACTIONS(4225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4225), - [anon_sym_BSLASHacrfull] = ACTIONS(4225), - [anon_sym_BSLASHAcrfull] = ACTIONS(4225), - [anon_sym_BSLASHACRfull] = ACTIONS(4225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4225), - [anon_sym_BSLASHacs] = ACTIONS(4225), - [anon_sym_BSLASHAcs] = ACTIONS(4225), - [anon_sym_BSLASHacsp] = ACTIONS(4225), - [anon_sym_BSLASHAcsp] = ACTIONS(4225), - [anon_sym_BSLASHacl] = ACTIONS(4225), - [anon_sym_BSLASHAcl] = ACTIONS(4225), - [anon_sym_BSLASHaclp] = ACTIONS(4225), - [anon_sym_BSLASHAclp] = ACTIONS(4225), - [anon_sym_BSLASHacf] = ACTIONS(4225), - [anon_sym_BSLASHAcf] = ACTIONS(4225), - [anon_sym_BSLASHacfp] = ACTIONS(4225), - [anon_sym_BSLASHAcfp] = ACTIONS(4225), - [anon_sym_BSLASHac] = ACTIONS(4225), - [anon_sym_BSLASHAc] = ACTIONS(4225), - [anon_sym_BSLASHacp] = ACTIONS(4225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4228), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4228), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4234), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4237), - [anon_sym_BSLASHcolor] = ACTIONS(4240), - [anon_sym_BSLASHcolorbox] = ACTIONS(4240), - [anon_sym_BSLASHtextcolor] = ACTIONS(4240), - [anon_sym_BSLASHpagecolor] = ACTIONS(4240), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4243), - [anon_sym_BSLASHtext] = ACTIONS(4246), - [anon_sym_BSLASHintertext] = ACTIONS(4246), - [anon_sym_shortintertext] = ACTIONS(4246), - }, - [252] = { - [sym_block_comment] = STATE(253), - [sym__text_content] = STATE(253), - [sym_curly_group] = STATE(253), - [sym_text] = STATE(253), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(253), - [sym_inline_formula] = STATE(253), - [sym_math_set] = STATE(253), - [sym__command] = STATE(253), - [sym_generic_command] = STATE(253), - [sym_package_include] = STATE(253), - [sym_class_include] = STATE(253), - [sym_latex_include] = STATE(253), - [sym_biblatex_include] = STATE(253), - [sym_bibtex_include] = STATE(253), - [sym_graphics_include] = STATE(253), - [sym_svg_include] = STATE(253), - [sym_inkscape_include] = STATE(253), - [sym_verbatim_include] = STATE(253), - [sym_import_include] = STATE(253), - [sym_caption] = STATE(253), - [sym_citation] = STATE(253), - [sym_label_definition] = STATE(253), - [sym_label_reference] = STATE(253), - [sym_label_reference_range] = STATE(253), - [sym_label_number] = STATE(253), - [sym_new_command_definition] = STATE(253), - [sym_old_command_definition] = STATE(253), - [sym_let_command_definition] = STATE(253), - [sym_paired_delimiter_definition] = STATE(253), - [sym_environment_definition] = STATE(253), - [sym_glossary_entry_definition] = STATE(253), - [sym_glossary_entry_reference] = STATE(253), - [sym_acronym_definition] = STATE(253), - [sym_acronym_reference] = STATE(253), - [sym_theorem_definition] = STATE(253), - [sym_color_definition] = STATE(253), - [sym_color_set_definition] = STATE(253), - [sym_color_reference] = STATE(253), - [sym_tikz_library_import] = STATE(253), - [sym_text_mode] = STATE(253), - [aux_sym_curly_group_impl_repeat1] = STATE(253), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4249), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [257] = { + [sym_block_comment] = STATE(256), + [sym__text_content] = STATE(256), + [sym_curly_group] = STATE(256), + [sym_brack_group] = STATE(256), + [sym_text] = STATE(256), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(256), + [sym_inline_formula] = STATE(256), + [sym_math_set] = STATE(256), + [sym__command] = STATE(256), + [sym_generic_command] = STATE(256), + [sym_title_declaration] = STATE(256), + [sym_author_declaration] = STATE(256), + [sym_package_include] = STATE(256), + [sym_class_include] = STATE(256), + [sym_latex_include] = STATE(256), + [sym_biblatex_include] = STATE(256), + [sym_bibtex_include] = STATE(256), + [sym_graphics_include] = STATE(256), + [sym_svg_include] = STATE(256), + [sym_inkscape_include] = STATE(256), + [sym_verbatim_include] = STATE(256), + [sym_import_include] = STATE(256), + [sym_caption] = STATE(256), + [sym_citation] = STATE(256), + [sym_label_definition] = STATE(256), + [sym_label_reference] = STATE(256), + [sym_label_reference_range] = STATE(256), + [sym_label_number] = STATE(256), + [sym_new_command_definition] = STATE(256), + [sym_old_command_definition] = STATE(256), + [sym_let_command_definition] = STATE(256), + [sym_paired_delimiter_definition] = STATE(256), + [sym_environment_definition] = STATE(256), + [sym_glossary_entry_definition] = STATE(256), + [sym_glossary_entry_reference] = STATE(256), + [sym_acronym_definition] = STATE(256), + [sym_acronym_reference] = STATE(256), + [sym_theorem_definition] = STATE(256), + [sym_color_definition] = STATE(256), + [sym_color_set_definition] = STATE(256), + [sym_color_reference] = STATE(256), + [sym_tikz_library_import] = STATE(256), + [sym_text_mode] = STATE(256), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(256), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4159), + [anon_sym_RPAREN] = ACTIONS(4159), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4163), + [anon_sym_LBRACE] = ACTIONS(4165), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(4175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4177), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, - [253] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4251), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [258] = { + [sym_block_comment] = STATE(255), + [sym__text_content] = STATE(255), + [sym_curly_group] = STATE(255), + [sym_brack_group] = STATE(255), + [sym_text] = STATE(255), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(255), + [sym_inline_formula] = STATE(255), + [sym_math_set] = STATE(255), + [sym__command] = STATE(255), + [sym_generic_command] = STATE(255), + [sym_title_declaration] = STATE(255), + [sym_author_declaration] = STATE(255), + [sym_package_include] = STATE(255), + [sym_class_include] = STATE(255), + [sym_latex_include] = STATE(255), + [sym_biblatex_include] = STATE(255), + [sym_bibtex_include] = STATE(255), + [sym_graphics_include] = STATE(255), + [sym_svg_include] = STATE(255), + [sym_inkscape_include] = STATE(255), + [sym_verbatim_include] = STATE(255), + [sym_import_include] = STATE(255), + [sym_caption] = STATE(255), + [sym_citation] = STATE(255), + [sym_label_definition] = STATE(255), + [sym_label_reference] = STATE(255), + [sym_label_reference_range] = STATE(255), + [sym_label_number] = STATE(255), + [sym_new_command_definition] = STATE(255), + [sym_old_command_definition] = STATE(255), + [sym_let_command_definition] = STATE(255), + [sym_paired_delimiter_definition] = STATE(255), + [sym_environment_definition] = STATE(255), + [sym_glossary_entry_definition] = STATE(255), + [sym_glossary_entry_reference] = STATE(255), + [sym_acronym_definition] = STATE(255), + [sym_acronym_reference] = STATE(255), + [sym_theorem_definition] = STATE(255), + [sym_color_definition] = STATE(255), + [sym_color_set_definition] = STATE(255), + [sym_color_reference] = STATE(255), + [sym_tikz_library_import] = STATE(255), + [sym_text_mode] = STATE(255), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(255), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4163), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4163), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, - [254] = { + [259] = { [sym_block_comment] = STATE(258), [sym__text_content] = STATE(258), [sym_curly_group] = STATE(258), + [sym_brack_group] = STATE(258), [sym_text] = STATE(258), - [sym_operator] = STATE(1465), + [sym_operator] = STATE(1586), + [sym_value] = STATE(2043), [sym_displayed_equation] = STATE(258), [sym_inline_formula] = STATE(258), [sym_math_set] = STATE(258), [sym__command] = STATE(258), [sym_generic_command] = STATE(258), + [sym_title_declaration] = STATE(258), + [sym_author_declaration] = STATE(258), [sym_package_include] = STATE(258), [sym_class_include] = STATE(258), [sym_latex_include] = STATE(258), @@ -105234,17418 +109367,11101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_reference] = STATE(258), [sym_tikz_library_import] = STATE(258), [sym_text_mode] = STATE(258), - [aux_sym_curly_group_impl_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4253), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [255] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4255), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [256] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4257), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [257] = { - [sym_block_comment] = STATE(248), - [sym__text_content] = STATE(248), - [sym_curly_group] = STATE(248), - [sym_text] = STATE(248), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(248), - [sym_inline_formula] = STATE(248), - [sym_math_set] = STATE(248), - [sym__command] = STATE(248), - [sym_generic_command] = STATE(248), - [sym_package_include] = STATE(248), - [sym_class_include] = STATE(248), - [sym_latex_include] = STATE(248), - [sym_biblatex_include] = STATE(248), - [sym_bibtex_include] = STATE(248), - [sym_graphics_include] = STATE(248), - [sym_svg_include] = STATE(248), - [sym_inkscape_include] = STATE(248), - [sym_verbatim_include] = STATE(248), - [sym_import_include] = STATE(248), - [sym_caption] = STATE(248), - [sym_citation] = STATE(248), - [sym_label_definition] = STATE(248), - [sym_label_reference] = STATE(248), - [sym_label_reference_range] = STATE(248), - [sym_label_number] = STATE(248), - [sym_new_command_definition] = STATE(248), - [sym_old_command_definition] = STATE(248), - [sym_let_command_definition] = STATE(248), - [sym_paired_delimiter_definition] = STATE(248), - [sym_environment_definition] = STATE(248), - [sym_glossary_entry_definition] = STATE(248), - [sym_glossary_entry_reference] = STATE(248), - [sym_acronym_definition] = STATE(248), - [sym_acronym_reference] = STATE(248), - [sym_theorem_definition] = STATE(248), - [sym_color_definition] = STATE(248), - [sym_color_set_definition] = STATE(248), - [sym_color_reference] = STATE(248), - [sym_tikz_library_import] = STATE(248), - [sym_text_mode] = STATE(248), - [aux_sym_curly_group_impl_repeat1] = STATE(248), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4259), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [258] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4261), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), - }, - [259] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4263), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(258), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4165), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [260] = { - [sym_block_comment] = STATE(261), - [sym__text_content] = STATE(261), - [sym_curly_group] = STATE(261), - [sym_text] = STATE(261), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(261), - [sym_inline_formula] = STATE(261), - [sym_math_set] = STATE(261), - [sym__command] = STATE(261), - [sym_generic_command] = STATE(261), - [sym_package_include] = STATE(261), - [sym_class_include] = STATE(261), - [sym_latex_include] = STATE(261), - [sym_biblatex_include] = STATE(261), - [sym_bibtex_include] = STATE(261), - [sym_graphics_include] = STATE(261), - [sym_svg_include] = STATE(261), - [sym_inkscape_include] = STATE(261), - [sym_verbatim_include] = STATE(261), - [sym_import_include] = STATE(261), - [sym_caption] = STATE(261), - [sym_citation] = STATE(261), - [sym_label_definition] = STATE(261), - [sym_label_reference] = STATE(261), - [sym_label_reference_range] = STATE(261), - [sym_label_number] = STATE(261), - [sym_new_command_definition] = STATE(261), - [sym_old_command_definition] = STATE(261), - [sym_let_command_definition] = STATE(261), - [sym_paired_delimiter_definition] = STATE(261), - [sym_environment_definition] = STATE(261), - [sym_glossary_entry_definition] = STATE(261), - [sym_glossary_entry_reference] = STATE(261), - [sym_acronym_definition] = STATE(261), - [sym_acronym_reference] = STATE(261), - [sym_theorem_definition] = STATE(261), - [sym_color_definition] = STATE(261), - [sym_color_set_definition] = STATE(261), - [sym_color_reference] = STATE(261), - [sym_tikz_library_import] = STATE(261), - [sym_text_mode] = STATE(261), - [aux_sym_curly_group_impl_repeat1] = STATE(261), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(257), + [sym__text_content] = STATE(257), + [sym_curly_group] = STATE(257), + [sym_brack_group] = STATE(257), + [sym_text] = STATE(257), + [sym_operator] = STATE(1586), + [sym_value] = STATE(2043), + [sym_displayed_equation] = STATE(257), + [sym_inline_formula] = STATE(257), + [sym_math_set] = STATE(257), + [sym__command] = STATE(257), + [sym_generic_command] = STATE(257), + [sym_title_declaration] = STATE(257), + [sym_author_declaration] = STATE(257), + [sym_package_include] = STATE(257), + [sym_class_include] = STATE(257), + [sym_latex_include] = STATE(257), + [sym_biblatex_include] = STATE(257), + [sym_bibtex_include] = STATE(257), + [sym_graphics_include] = STATE(257), + [sym_svg_include] = STATE(257), + [sym_inkscape_include] = STATE(257), + [sym_verbatim_include] = STATE(257), + [sym_import_include] = STATE(257), + [sym_caption] = STATE(257), + [sym_citation] = STATE(257), + [sym_label_definition] = STATE(257), + [sym_label_reference] = STATE(257), + [sym_label_reference_range] = STATE(257), + [sym_label_number] = STATE(257), + [sym_new_command_definition] = STATE(257), + [sym_old_command_definition] = STATE(257), + [sym_let_command_definition] = STATE(257), + [sym_paired_delimiter_definition] = STATE(257), + [sym_environment_definition] = STATE(257), + [sym_glossary_entry_definition] = STATE(257), + [sym_glossary_entry_reference] = STATE(257), + [sym_acronym_definition] = STATE(257), + [sym_acronym_reference] = STATE(257), + [sym_theorem_definition] = STATE(257), + [sym_color_definition] = STATE(257), + [sym_color_set_definition] = STATE(257), + [sym_color_reference] = STATE(257), + [sym_tikz_library_import] = STATE(257), + [sym_text_mode] = STATE(257), + [aux_sym_text_repeat1] = STATE(305), + [aux_sym_value_repeat1] = STATE(257), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4165), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(4175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4177), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [261] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(2007), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4275), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [262] = { - [sym_block_comment] = STATE(255), - [sym__text_content] = STATE(255), - [sym_curly_group] = STATE(255), - [sym_text] = STATE(255), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(255), - [sym_inline_formula] = STATE(255), - [sym_math_set] = STATE(255), - [sym__command] = STATE(255), - [sym_generic_command] = STATE(255), - [sym_package_include] = STATE(255), - [sym_class_include] = STATE(255), - [sym_latex_include] = STATE(255), - [sym_biblatex_include] = STATE(255), - [sym_bibtex_include] = STATE(255), - [sym_graphics_include] = STATE(255), - [sym_svg_include] = STATE(255), - [sym_inkscape_include] = STATE(255), - [sym_verbatim_include] = STATE(255), - [sym_import_include] = STATE(255), - [sym_caption] = STATE(255), - [sym_citation] = STATE(255), - [sym_label_definition] = STATE(255), - [sym_label_reference] = STATE(255), - [sym_label_reference_range] = STATE(255), - [sym_label_number] = STATE(255), - [sym_new_command_definition] = STATE(255), - [sym_old_command_definition] = STATE(255), - [sym_let_command_definition] = STATE(255), - [sym_paired_delimiter_definition] = STATE(255), - [sym_environment_definition] = STATE(255), - [sym_glossary_entry_definition] = STATE(255), - [sym_glossary_entry_reference] = STATE(255), - [sym_acronym_definition] = STATE(255), - [sym_acronym_reference] = STATE(255), - [sym_theorem_definition] = STATE(255), - [sym_color_definition] = STATE(255), - [sym_color_set_definition] = STATE(255), - [sym_color_reference] = STATE(255), - [sym_tikz_library_import] = STATE(255), - [sym_text_mode] = STATE(255), - [aux_sym_curly_group_impl_repeat1] = STATE(255), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4269), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(2041), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [263] = { - [sym_block_comment] = STATE(250), - [sym__text_content] = STATE(250), - [sym_curly_group] = STATE(250), - [sym_text] = STATE(250), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(250), - [sym_inline_formula] = STATE(250), - [sym_math_set] = STATE(250), - [sym__command] = STATE(250), - [sym_generic_command] = STATE(250), - [sym_package_include] = STATE(250), - [sym_class_include] = STATE(250), - [sym_latex_include] = STATE(250), - [sym_biblatex_include] = STATE(250), - [sym_bibtex_include] = STATE(250), - [sym_graphics_include] = STATE(250), - [sym_svg_include] = STATE(250), - [sym_inkscape_include] = STATE(250), - [sym_verbatim_include] = STATE(250), - [sym_import_include] = STATE(250), - [sym_caption] = STATE(250), - [sym_citation] = STATE(250), - [sym_label_definition] = STATE(250), - [sym_label_reference] = STATE(250), - [sym_label_reference_range] = STATE(250), - [sym_label_number] = STATE(250), - [sym_new_command_definition] = STATE(250), - [sym_old_command_definition] = STATE(250), - [sym_let_command_definition] = STATE(250), - [sym_paired_delimiter_definition] = STATE(250), - [sym_environment_definition] = STATE(250), - [sym_glossary_entry_definition] = STATE(250), - [sym_glossary_entry_reference] = STATE(250), - [sym_acronym_definition] = STATE(250), - [sym_acronym_reference] = STATE(250), - [sym_theorem_definition] = STATE(250), - [sym_color_definition] = STATE(250), - [sym_color_set_definition] = STATE(250), - [sym_color_reference] = STATE(250), - [sym_tikz_library_import] = STATE(250), - [sym_text_mode] = STATE(250), - [aux_sym_curly_group_impl_repeat1] = STATE(250), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4271), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(2022), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [264] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4273), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(1993), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [265] = { - [sym_block_comment] = STATE(259), - [sym__text_content] = STATE(259), - [sym_curly_group] = STATE(259), - [sym_text] = STATE(259), - [sym_operator] = STATE(1465), - [sym_displayed_equation] = STATE(259), - [sym_inline_formula] = STATE(259), - [sym_math_set] = STATE(259), - [sym__command] = STATE(259), - [sym_generic_command] = STATE(259), - [sym_package_include] = STATE(259), - [sym_class_include] = STATE(259), - [sym_latex_include] = STATE(259), - [sym_biblatex_include] = STATE(259), - [sym_bibtex_include] = STATE(259), - [sym_graphics_include] = STATE(259), - [sym_svg_include] = STATE(259), - [sym_inkscape_include] = STATE(259), - [sym_verbatim_include] = STATE(259), - [sym_import_include] = STATE(259), - [sym_caption] = STATE(259), - [sym_citation] = STATE(259), - [sym_label_definition] = STATE(259), - [sym_label_reference] = STATE(259), - [sym_label_reference_range] = STATE(259), - [sym_label_number] = STATE(259), - [sym_new_command_definition] = STATE(259), - [sym_old_command_definition] = STATE(259), - [sym_let_command_definition] = STATE(259), - [sym_paired_delimiter_definition] = STATE(259), - [sym_environment_definition] = STATE(259), - [sym_glossary_entry_definition] = STATE(259), - [sym_glossary_entry_reference] = STATE(259), - [sym_acronym_definition] = STATE(259), - [sym_acronym_reference] = STATE(259), - [sym_theorem_definition] = STATE(259), - [sym_color_definition] = STATE(259), - [sym_color_set_definition] = STATE(259), - [sym_color_reference] = STATE(259), - [sym_tikz_library_import] = STATE(259), - [sym_text_mode] = STATE(259), - [aux_sym_curly_group_impl_repeat1] = STATE(259), - [aux_sym_text_repeat1] = STATE(269), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4275), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4097), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4097), - [anon_sym_DOLLAR] = ACTIONS(4099), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4101), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3851), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(3923), - [anon_sym_BSLASHintertext] = ACTIONS(3923), - [anon_sym_shortintertext] = ACTIONS(3923), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(2051), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [266] = { - [sym_block_comment] = STATE(1437), - [sym_operator] = STATE(1437), - [sym__command] = STATE(1437), - [sym_generic_command] = STATE(1437), - [sym_package_include] = STATE(1437), - [sym_class_include] = STATE(1437), - [sym_latex_include] = STATE(1437), - [sym_biblatex_include] = STATE(1437), - [sym_bibtex_include] = STATE(1437), - [sym_graphics_include] = STATE(1437), - [sym_svg_include] = STATE(1437), - [sym_inkscape_include] = STATE(1437), - [sym_verbatim_include] = STATE(1437), - [sym_import_include] = STATE(1437), - [sym_caption] = STATE(1437), - [sym_citation] = STATE(1437), - [sym_label_definition] = STATE(1437), - [sym_label_reference] = STATE(1437), - [sym_label_reference_range] = STATE(1437), - [sym_label_number] = STATE(1437), - [sym_new_command_definition] = STATE(1437), - [sym_old_command_definition] = STATE(1437), - [sym_let_command_definition] = STATE(1437), - [sym_paired_delimiter_definition] = STATE(1437), - [sym_environment_definition] = STATE(1437), - [sym_glossary_entry_definition] = STATE(1437), - [sym_glossary_entry_reference] = STATE(1437), - [sym_acronym_definition] = STATE(1437), - [sym_acronym_reference] = STATE(1437), - [sym_theorem_definition] = STATE(1437), - [sym_color_definition] = STATE(1437), - [sym_color_set_definition] = STATE(1437), - [sym_color_reference] = STATE(1437), - [sym_tikz_library_import] = STATE(1437), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3363), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(3375), - [sym_placeholder] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym__] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHbegin] = ACTIONS(2757), - [anon_sym_BSLASHusepackage] = ACTIONS(3389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3391), - [anon_sym_BSLASHinclude] = ACTIONS(3393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3393), - [anon_sym_BSLASHinput] = ACTIONS(3393), - [anon_sym_BSLASHsubfile] = ACTIONS(3393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3395), - [anon_sym_BSLASHbibliography] = ACTIONS(3397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3399), - [anon_sym_BSLASHincludesvg] = ACTIONS(3401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3405), - [anon_sym_BSLASHimport] = ACTIONS(3407), - [anon_sym_BSLASHsubimport] = ACTIONS(3407), - [anon_sym_BSLASHinputfrom] = ACTIONS(3407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3407), - [anon_sym_BSLASHincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3407), - [anon_sym_BSLASHcaption] = ACTIONS(3409), - [anon_sym_BSLASHcite] = ACTIONS(3411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCite] = ACTIONS(3411), - [anon_sym_BSLASHnocite] = ACTIONS(3411), - [anon_sym_BSLASHcitet] = ACTIONS(3411), - [anon_sym_BSLASHcitep] = ACTIONS(3411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteauthor] = ACTIONS(3411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitetitle] = ACTIONS(3411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteyear] = ACTIONS(3411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3413), - [anon_sym_BSLASHcitedate] = ACTIONS(3411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3413), - [anon_sym_BSLASHciteurl] = ACTIONS(3411), - [anon_sym_BSLASHfullcite] = ACTIONS(3411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3411), - [anon_sym_BSLASHcitealt] = ACTIONS(3411), - [anon_sym_BSLASHcitealp] = ACTIONS(3411), - [anon_sym_BSLASHcitetext] = ACTIONS(3411), - [anon_sym_BSLASHparencite] = ACTIONS(3411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHParencite] = ACTIONS(3411), - [anon_sym_BSLASHfootcite] = ACTIONS(3411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3411), - [anon_sym_BSLASHtextcite] = ACTIONS(3411), - [anon_sym_BSLASHTextcite] = ACTIONS(3411), - [anon_sym_BSLASHsmartcite] = ACTIONS(3411), - [anon_sym_BSLASHSmartcite] = ACTIONS(3411), - [anon_sym_BSLASHsupercite] = ACTIONS(3411), - [anon_sym_BSLASHautocite] = ACTIONS(3411), - [anon_sym_BSLASHAutocite] = ACTIONS(3411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3413), - [anon_sym_BSLASHvolcite] = ACTIONS(3411), - [anon_sym_BSLASHVolcite] = ACTIONS(3411), - [anon_sym_BSLASHpvolcite] = ACTIONS(3411), - [anon_sym_BSLASHPvolcite] = ACTIONS(3411), - [anon_sym_BSLASHfvolcite] = ACTIONS(3411), - [anon_sym_BSLASHftvolcite] = ACTIONS(3411), - [anon_sym_BSLASHsvolcite] = ACTIONS(3411), - [anon_sym_BSLASHSvolcite] = ACTIONS(3411), - [anon_sym_BSLASHtvolcite] = ACTIONS(3411), - [anon_sym_BSLASHTvolcite] = ACTIONS(3411), - [anon_sym_BSLASHavolcite] = ACTIONS(3411), - [anon_sym_BSLASHAvolcite] = ACTIONS(3411), - [anon_sym_BSLASHnotecite] = ACTIONS(3411), - [anon_sym_BSLASHNotecite] = ACTIONS(3411), - [anon_sym_BSLASHpnotecite] = ACTIONS(3411), - [anon_sym_BSLASHPnotecite] = ACTIONS(3411), - [anon_sym_BSLASHfnotecite] = ACTIONS(3411), - [anon_sym_BSLASHlabel] = ACTIONS(3415), - [anon_sym_BSLASHref] = ACTIONS(3417), - [anon_sym_BSLASHeqref] = ACTIONS(3417), - [anon_sym_BSLASHvref] = ACTIONS(3417), - [anon_sym_BSLASHVref] = ACTIONS(3417), - [anon_sym_BSLASHautoref] = ACTIONS(3417), - [anon_sym_BSLASHpageref] = ACTIONS(3417), - [anon_sym_BSLASHcref] = ACTIONS(3417), - [anon_sym_BSLASHCref] = ACTIONS(3417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3419), - [anon_sym_BSLASHnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnameCref] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3417), - [anon_sym_BSLASHlabelcref] = ACTIONS(3417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3417), - [anon_sym_BSLASHcrefrange] = ACTIONS(3421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHCrefrange] = ACTIONS(3421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3423), - [anon_sym_BSLASHnewlabel] = ACTIONS(3425), - [anon_sym_BSLASHnewcommand] = ACTIONS(3427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), - [anon_sym_BSLASHdef] = ACTIONS(3431), - [anon_sym_BSLASHlet] = ACTIONS(3433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3439), - [anon_sym_BSLASHgls] = ACTIONS(3441), - [anon_sym_BSLASHGls] = ACTIONS(3441), - [anon_sym_BSLASHGLS] = ACTIONS(3441), - [anon_sym_BSLASHglspl] = ACTIONS(3441), - [anon_sym_BSLASHGlspl] = ACTIONS(3441), - [anon_sym_BSLASHGLSpl] = ACTIONS(3441), - [anon_sym_BSLASHglsdisp] = ACTIONS(3441), - [anon_sym_BSLASHglslink] = ACTIONS(3441), - [anon_sym_BSLASHglstext] = ACTIONS(3441), - [anon_sym_BSLASHGlstext] = ACTIONS(3441), - [anon_sym_BSLASHGLStext] = ACTIONS(3441), - [anon_sym_BSLASHglsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3441), - [anon_sym_BSLASHglsplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSplural] = ACTIONS(3441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3441), - [anon_sym_BSLASHglsname] = ACTIONS(3441), - [anon_sym_BSLASHGlsname] = ACTIONS(3441), - [anon_sym_BSLASHGLSname] = ACTIONS(3441), - [anon_sym_BSLASHglssymbol] = ACTIONS(3441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3441), - [anon_sym_BSLASHglsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3441), - [anon_sym_BSLASHglsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3441), - [anon_sym_BSLASHglsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3441), - [anon_sym_BSLASHglsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3441), - [anon_sym_BSLASHglsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3441), - [anon_sym_BSLASHnewacronym] = ACTIONS(3443), - [anon_sym_BSLASHacrshort] = ACTIONS(3445), - [anon_sym_BSLASHAcrshort] = ACTIONS(3445), - [anon_sym_BSLASHACRshort] = ACTIONS(3445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3445), - [anon_sym_BSLASHacrlong] = ACTIONS(3445), - [anon_sym_BSLASHAcrlong] = ACTIONS(3445), - [anon_sym_BSLASHACRlong] = ACTIONS(3445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3445), - [anon_sym_BSLASHacrfull] = ACTIONS(3445), - [anon_sym_BSLASHAcrfull] = ACTIONS(3445), - [anon_sym_BSLASHACRfull] = ACTIONS(3445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3445), - [anon_sym_BSLASHacs] = ACTIONS(3445), - [anon_sym_BSLASHAcs] = ACTIONS(3445), - [anon_sym_BSLASHacsp] = ACTIONS(3445), - [anon_sym_BSLASHAcsp] = ACTIONS(3445), - [anon_sym_BSLASHacl] = ACTIONS(3445), - [anon_sym_BSLASHAcl] = ACTIONS(3445), - [anon_sym_BSLASHaclp] = ACTIONS(3445), - [anon_sym_BSLASHAclp] = ACTIONS(3445), - [anon_sym_BSLASHacf] = ACTIONS(3445), - [anon_sym_BSLASHAcf] = ACTIONS(3445), - [anon_sym_BSLASHacfp] = ACTIONS(3445), - [anon_sym_BSLASHAcfp] = ACTIONS(3445), - [anon_sym_BSLASHac] = ACTIONS(3445), - [anon_sym_BSLASHAc] = ACTIONS(3445), - [anon_sym_BSLASHacp] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), - [anon_sym_BSLASHcolor] = ACTIONS(3455), - [anon_sym_BSLASHcolorbox] = ACTIONS(3455), - [anon_sym_BSLASHtextcolor] = ACTIONS(3455), - [anon_sym_BSLASHpagecolor] = ACTIONS(3455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3457), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(1989), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [267] = { - [sym_block_comment] = STATE(1437), - [sym_operator] = STATE(1437), - [sym__command] = STATE(1437), - [sym_generic_command] = STATE(1437), - [sym_package_include] = STATE(1437), - [sym_class_include] = STATE(1437), - [sym_latex_include] = STATE(1437), - [sym_biblatex_include] = STATE(1437), - [sym_bibtex_include] = STATE(1437), - [sym_graphics_include] = STATE(1437), - [sym_svg_include] = STATE(1437), - [sym_inkscape_include] = STATE(1437), - [sym_verbatim_include] = STATE(1437), - [sym_import_include] = STATE(1437), - [sym_caption] = STATE(1437), - [sym_citation] = STATE(1437), - [sym_label_definition] = STATE(1437), - [sym_label_reference] = STATE(1437), - [sym_label_reference_range] = STATE(1437), - [sym_label_number] = STATE(1437), - [sym_new_command_definition] = STATE(1437), - [sym_old_command_definition] = STATE(1437), - [sym_let_command_definition] = STATE(1437), - [sym_paired_delimiter_definition] = STATE(1437), - [sym_environment_definition] = STATE(1437), - [sym_glossary_entry_definition] = STATE(1437), - [sym_glossary_entry_reference] = STATE(1437), - [sym_acronym_definition] = STATE(1437), - [sym_acronym_reference] = STATE(1437), - [sym_theorem_definition] = STATE(1437), - [sym_color_definition] = STATE(1437), - [sym_color_set_definition] = STATE(1437), - [sym_color_reference] = STATE(1437), - [sym_tikz_library_import] = STATE(1437), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(4277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(4283), - [sym_placeholder] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_CARET] = ACTIONS(4289), - [anon_sym__] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_PIPE] = ACTIONS(4289), - [anon_sym_COLON] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHbegin] = ACTIONS(2767), - [anon_sym_BSLASHusepackage] = ACTIONS(4292), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4292), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4295), - [anon_sym_BSLASHinclude] = ACTIONS(4298), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4298), - [anon_sym_BSLASHinput] = ACTIONS(4298), - [anon_sym_BSLASHsubfile] = ACTIONS(4298), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4301), - [anon_sym_BSLASHbibliography] = ACTIONS(4304), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(2027), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4379), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), - [anon_sym_BSLASHincludesvg] = ACTIONS(4310), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4316), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4316), - [anon_sym_BSLASHimport] = ACTIONS(4319), - [anon_sym_BSLASHsubimport] = ACTIONS(4319), - [anon_sym_BSLASHinputfrom] = ACTIONS(4319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4319), - [anon_sym_BSLASHincludefrom] = ACTIONS(4319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4319), - [anon_sym_BSLASHcaption] = ACTIONS(4322), - [anon_sym_BSLASHcite] = ACTIONS(4325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4328), - [anon_sym_BSLASHCite] = ACTIONS(4325), - [anon_sym_BSLASHnocite] = ACTIONS(4325), - [anon_sym_BSLASHcitet] = ACTIONS(4325), - [anon_sym_BSLASHcitep] = ACTIONS(4325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4328), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4328), - [anon_sym_BSLASHciteauthor] = ACTIONS(4325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4328), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4328), - [anon_sym_BSLASHcitetitle] = ACTIONS(4325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4328), - [anon_sym_BSLASHciteyear] = ACTIONS(4325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4328), - [anon_sym_BSLASHcitedate] = ACTIONS(4325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4328), - [anon_sym_BSLASHciteurl] = ACTIONS(4325), - [anon_sym_BSLASHfullcite] = ACTIONS(4325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4325), - [anon_sym_BSLASHcitealt] = ACTIONS(4325), - [anon_sym_BSLASHcitealp] = ACTIONS(4325), - [anon_sym_BSLASHcitetext] = ACTIONS(4325), - [anon_sym_BSLASHparencite] = ACTIONS(4325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4328), - [anon_sym_BSLASHParencite] = ACTIONS(4325), - [anon_sym_BSLASHfootcite] = ACTIONS(4325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4325), - [anon_sym_BSLASHtextcite] = ACTIONS(4325), - [anon_sym_BSLASHTextcite] = ACTIONS(4325), - [anon_sym_BSLASHsmartcite] = ACTIONS(4325), - [anon_sym_BSLASHSmartcite] = ACTIONS(4325), - [anon_sym_BSLASHsupercite] = ACTIONS(4325), - [anon_sym_BSLASHautocite] = ACTIONS(4325), - [anon_sym_BSLASHAutocite] = ACTIONS(4325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4328), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4328), - [anon_sym_BSLASHvolcite] = ACTIONS(4325), - [anon_sym_BSLASHVolcite] = ACTIONS(4325), - [anon_sym_BSLASHpvolcite] = ACTIONS(4325), - [anon_sym_BSLASHPvolcite] = ACTIONS(4325), - [anon_sym_BSLASHfvolcite] = ACTIONS(4325), - [anon_sym_BSLASHftvolcite] = ACTIONS(4325), - [anon_sym_BSLASHsvolcite] = ACTIONS(4325), - [anon_sym_BSLASHSvolcite] = ACTIONS(4325), - [anon_sym_BSLASHtvolcite] = ACTIONS(4325), - [anon_sym_BSLASHTvolcite] = ACTIONS(4325), - [anon_sym_BSLASHavolcite] = ACTIONS(4325), - [anon_sym_BSLASHAvolcite] = ACTIONS(4325), - [anon_sym_BSLASHnotecite] = ACTIONS(4325), - [anon_sym_BSLASHNotecite] = ACTIONS(4325), - [anon_sym_BSLASHpnotecite] = ACTIONS(4325), - [anon_sym_BSLASHPnotecite] = ACTIONS(4325), - [anon_sym_BSLASHfnotecite] = ACTIONS(4325), - [anon_sym_BSLASHlabel] = ACTIONS(4331), - [anon_sym_BSLASHref] = ACTIONS(4334), - [anon_sym_BSLASHeqref] = ACTIONS(4334), - [anon_sym_BSLASHvref] = ACTIONS(4334), - [anon_sym_BSLASHVref] = ACTIONS(4334), - [anon_sym_BSLASHautoref] = ACTIONS(4334), - [anon_sym_BSLASHpageref] = ACTIONS(4334), - [anon_sym_BSLASHcref] = ACTIONS(4334), - [anon_sym_BSLASHCref] = ACTIONS(4334), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4337), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4337), - [anon_sym_BSLASHnamecref] = ACTIONS(4334), - [anon_sym_BSLASHnameCref] = ACTIONS(4334), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4334), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4334), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4334), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4334), - [anon_sym_BSLASHlabelcref] = ACTIONS(4334), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4334), - [anon_sym_BSLASHcrefrange] = ACTIONS(4340), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4343), - [anon_sym_BSLASHCrefrange] = ACTIONS(4340), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4343), - [anon_sym_BSLASHnewlabel] = ACTIONS(4346), - [anon_sym_BSLASHnewcommand] = ACTIONS(4349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4352), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4352), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4352), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4352), - [anon_sym_BSLASHdef] = ACTIONS(4355), - [anon_sym_BSLASHlet] = ACTIONS(4358), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4364), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4367), - [anon_sym_BSLASHgls] = ACTIONS(4370), - [anon_sym_BSLASHGls] = ACTIONS(4370), - [anon_sym_BSLASHGLS] = ACTIONS(4370), - [anon_sym_BSLASHglspl] = ACTIONS(4370), - [anon_sym_BSLASHGlspl] = ACTIONS(4370), - [anon_sym_BSLASHGLSpl] = ACTIONS(4370), - [anon_sym_BSLASHglsdisp] = ACTIONS(4370), - [anon_sym_BSLASHglslink] = ACTIONS(4370), - [anon_sym_BSLASHglstext] = ACTIONS(4370), - [anon_sym_BSLASHGlstext] = ACTIONS(4370), - [anon_sym_BSLASHGLStext] = ACTIONS(4370), - [anon_sym_BSLASHglsfirst] = ACTIONS(4370), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4370), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4370), - [anon_sym_BSLASHglsplural] = ACTIONS(4370), - [anon_sym_BSLASHGlsplural] = ACTIONS(4370), - [anon_sym_BSLASHGLSplural] = ACTIONS(4370), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4370), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4370), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4370), - [anon_sym_BSLASHglsname] = ACTIONS(4370), - [anon_sym_BSLASHGlsname] = ACTIONS(4370), - [anon_sym_BSLASHGLSname] = ACTIONS(4370), - [anon_sym_BSLASHglssymbol] = ACTIONS(4370), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4370), - [anon_sym_BSLASHglsdesc] = ACTIONS(4370), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4370), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4370), - [anon_sym_BSLASHglsuseri] = ACTIONS(4370), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4370), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4370), - [anon_sym_BSLASHglsuserii] = ACTIONS(4370), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4370), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4370), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4370), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4370), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4370), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4370), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4370), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4370), - [anon_sym_BSLASHglsuserv] = ACTIONS(4370), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4370), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4370), - [anon_sym_BSLASHglsuservi] = ACTIONS(4370), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4370), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4370), - [anon_sym_BSLASHnewacronym] = ACTIONS(4373), - [anon_sym_BSLASHacrshort] = ACTIONS(4376), - [anon_sym_BSLASHAcrshort] = ACTIONS(4376), - [anon_sym_BSLASHACRshort] = ACTIONS(4376), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4376), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4376), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4376), - [anon_sym_BSLASHacrlong] = ACTIONS(4376), - [anon_sym_BSLASHAcrlong] = ACTIONS(4376), - [anon_sym_BSLASHACRlong] = ACTIONS(4376), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4376), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4376), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4376), - [anon_sym_BSLASHacrfull] = ACTIONS(4376), - [anon_sym_BSLASHAcrfull] = ACTIONS(4376), - [anon_sym_BSLASHACRfull] = ACTIONS(4376), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4376), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4376), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4376), - [anon_sym_BSLASHacs] = ACTIONS(4376), - [anon_sym_BSLASHAcs] = ACTIONS(4376), - [anon_sym_BSLASHacsp] = ACTIONS(4376), - [anon_sym_BSLASHAcsp] = ACTIONS(4376), - [anon_sym_BSLASHacl] = ACTIONS(4376), - [anon_sym_BSLASHAcl] = ACTIONS(4376), - [anon_sym_BSLASHaclp] = ACTIONS(4376), - [anon_sym_BSLASHAclp] = ACTIONS(4376), - [anon_sym_BSLASHacf] = ACTIONS(4376), - [anon_sym_BSLASHAcf] = ACTIONS(4376), - [anon_sym_BSLASHacfp] = ACTIONS(4376), - [anon_sym_BSLASHAcfp] = ACTIONS(4376), - [anon_sym_BSLASHac] = ACTIONS(4376), - [anon_sym_BSLASHAc] = ACTIONS(4376), - [anon_sym_BSLASHacp] = ACTIONS(4376), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4376), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4376), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4376), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4376), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4376), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4376), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4376), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4376), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4376), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4376), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4382), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4382), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4388), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4394), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4394), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [268] = { - [sym_block_comment] = STATE(1465), - [sym_operator] = STATE(1465), - [sym__command] = STATE(1465), - [sym_generic_command] = STATE(1465), - [sym_package_include] = STATE(1465), - [sym_class_include] = STATE(1465), - [sym_latex_include] = STATE(1465), - [sym_biblatex_include] = STATE(1465), - [sym_bibtex_include] = STATE(1465), - [sym_graphics_include] = STATE(1465), - [sym_svg_include] = STATE(1465), - [sym_inkscape_include] = STATE(1465), - [sym_verbatim_include] = STATE(1465), - [sym_import_include] = STATE(1465), - [sym_caption] = STATE(1465), - [sym_citation] = STATE(1465), - [sym_label_definition] = STATE(1465), - [sym_label_reference] = STATE(1465), - [sym_label_reference_range] = STATE(1465), - [sym_label_number] = STATE(1465), - [sym_new_command_definition] = STATE(1465), - [sym_old_command_definition] = STATE(1465), - [sym_let_command_definition] = STATE(1465), - [sym_paired_delimiter_definition] = STATE(1465), - [sym_environment_definition] = STATE(1465), - [sym_glossary_entry_definition] = STATE(1465), - [sym_glossary_entry_reference] = STATE(1465), - [sym_acronym_definition] = STATE(1465), - [sym_acronym_reference] = STATE(1465), - [sym_theorem_definition] = STATE(1465), - [sym_color_definition] = STATE(1465), - [sym_color_set_definition] = STATE(1465), - [sym_color_reference] = STATE(1465), - [sym_tikz_library_import] = STATE(1465), - [aux_sym_text_repeat1] = STATE(268), - [sym_command_name] = ACTIONS(4397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(4403), - [sym_placeholder] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2759), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2759), - [anon_sym_BSLASHusepackage] = ACTIONS(4412), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4412), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4415), - [anon_sym_BSLASHinclude] = ACTIONS(4418), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4418), - [anon_sym_BSLASHinput] = ACTIONS(4418), - [anon_sym_BSLASHsubfile] = ACTIONS(4418), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4421), - [anon_sym_BSLASHbibliography] = ACTIONS(4424), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4427), - [anon_sym_BSLASHincludesvg] = ACTIONS(4430), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4436), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4436), - [anon_sym_BSLASHimport] = ACTIONS(4439), - [anon_sym_BSLASHsubimport] = ACTIONS(4439), - [anon_sym_BSLASHinputfrom] = ACTIONS(4439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4439), - [anon_sym_BSLASHincludefrom] = ACTIONS(4439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4439), - [anon_sym_BSLASHcaption] = ACTIONS(4442), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4448), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4448), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4448), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4448), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4448), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4448), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4448), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4448), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4448), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4448), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4448), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4451), - [anon_sym_BSLASHref] = ACTIONS(4454), - [anon_sym_BSLASHeqref] = ACTIONS(4454), - [anon_sym_BSLASHvref] = ACTIONS(4454), - [anon_sym_BSLASHVref] = ACTIONS(4454), - [anon_sym_BSLASHautoref] = ACTIONS(4454), - [anon_sym_BSLASHpageref] = ACTIONS(4454), - [anon_sym_BSLASHcref] = ACTIONS(4454), - [anon_sym_BSLASHCref] = ACTIONS(4454), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4457), - [anon_sym_BSLASHnamecref] = ACTIONS(4454), - [anon_sym_BSLASHnameCref] = ACTIONS(4454), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4454), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4454), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4454), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4454), - [anon_sym_BSLASHlabelcref] = ACTIONS(4454), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4454), - [anon_sym_BSLASHcrefrange] = ACTIONS(4460), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4460), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4466), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4472), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4472), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4472), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4472), - [anon_sym_BSLASHdef] = ACTIONS(4475), - [anon_sym_BSLASHlet] = ACTIONS(4478), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4484), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), - [anon_sym_BSLASHgls] = ACTIONS(4490), - [anon_sym_BSLASHGls] = ACTIONS(4490), - [anon_sym_BSLASHGLS] = ACTIONS(4490), - [anon_sym_BSLASHglspl] = ACTIONS(4490), - [anon_sym_BSLASHGlspl] = ACTIONS(4490), - [anon_sym_BSLASHGLSpl] = ACTIONS(4490), - [anon_sym_BSLASHglsdisp] = ACTIONS(4490), - [anon_sym_BSLASHglslink] = ACTIONS(4490), - [anon_sym_BSLASHglstext] = ACTIONS(4490), - [anon_sym_BSLASHGlstext] = ACTIONS(4490), - [anon_sym_BSLASHGLStext] = ACTIONS(4490), - [anon_sym_BSLASHglsfirst] = ACTIONS(4490), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4490), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4490), - [anon_sym_BSLASHglsplural] = ACTIONS(4490), - [anon_sym_BSLASHGlsplural] = ACTIONS(4490), - [anon_sym_BSLASHGLSplural] = ACTIONS(4490), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4490), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4490), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4490), - [anon_sym_BSLASHglsname] = ACTIONS(4490), - [anon_sym_BSLASHGlsname] = ACTIONS(4490), - [anon_sym_BSLASHGLSname] = ACTIONS(4490), - [anon_sym_BSLASHglssymbol] = ACTIONS(4490), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4490), - [anon_sym_BSLASHglsdesc] = ACTIONS(4490), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4490), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4490), - [anon_sym_BSLASHglsuseri] = ACTIONS(4490), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4490), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4490), - [anon_sym_BSLASHglsuserii] = ACTIONS(4490), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4490), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4490), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4490), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4490), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4490), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4490), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4490), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4490), - [anon_sym_BSLASHglsuserv] = ACTIONS(4490), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4490), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4490), - [anon_sym_BSLASHglsuservi] = ACTIONS(4490), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4490), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4490), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4496), - [anon_sym_BSLASHAcrshort] = ACTIONS(4496), - [anon_sym_BSLASHACRshort] = ACTIONS(4496), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4496), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4496), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4496), - [anon_sym_BSLASHacrlong] = ACTIONS(4496), - [anon_sym_BSLASHAcrlong] = ACTIONS(4496), - [anon_sym_BSLASHACRlong] = ACTIONS(4496), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4496), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4496), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4496), - [anon_sym_BSLASHacrfull] = ACTIONS(4496), - [anon_sym_BSLASHAcrfull] = ACTIONS(4496), - [anon_sym_BSLASHACRfull] = ACTIONS(4496), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4496), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4496), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4496), - [anon_sym_BSLASHacs] = ACTIONS(4496), - [anon_sym_BSLASHAcs] = ACTIONS(4496), - [anon_sym_BSLASHacsp] = ACTIONS(4496), - [anon_sym_BSLASHAcsp] = ACTIONS(4496), - [anon_sym_BSLASHacl] = ACTIONS(4496), - [anon_sym_BSLASHAcl] = ACTIONS(4496), - [anon_sym_BSLASHaclp] = ACTIONS(4496), - [anon_sym_BSLASHAclp] = ACTIONS(4496), - [anon_sym_BSLASHacf] = ACTIONS(4496), - [anon_sym_BSLASHAcf] = ACTIONS(4496), - [anon_sym_BSLASHacfp] = ACTIONS(4496), - [anon_sym_BSLASHAcfp] = ACTIONS(4496), - [anon_sym_BSLASHac] = ACTIONS(4496), - [anon_sym_BSLASHAc] = ACTIONS(4496), - [anon_sym_BSLASHacp] = ACTIONS(4496), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4496), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4496), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4496), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4496), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4496), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4496), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4496), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4496), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4496), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4496), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4499), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4502), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4499), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4502), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4508), - [anon_sym_BSLASHcolor] = ACTIONS(4511), - [anon_sym_BSLASHcolorbox] = ACTIONS(4511), - [anon_sym_BSLASHtextcolor] = ACTIONS(4511), - [anon_sym_BSLASHpagecolor] = ACTIONS(4511), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4514), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4514), - [anon_sym_BSLASHtext] = ACTIONS(2767), - [anon_sym_BSLASHintertext] = ACTIONS(2767), - [anon_sym_shortintertext] = ACTIONS(2767), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(1982), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [269] = { - [sym_block_comment] = STATE(1465), - [sym_operator] = STATE(1465), - [sym__command] = STATE(1465), - [sym_generic_command] = STATE(1465), - [sym_package_include] = STATE(1465), - [sym_class_include] = STATE(1465), - [sym_latex_include] = STATE(1465), - [sym_biblatex_include] = STATE(1465), - [sym_bibtex_include] = STATE(1465), - [sym_graphics_include] = STATE(1465), - [sym_svg_include] = STATE(1465), - [sym_inkscape_include] = STATE(1465), - [sym_verbatim_include] = STATE(1465), - [sym_import_include] = STATE(1465), - [sym_caption] = STATE(1465), - [sym_citation] = STATE(1465), - [sym_label_definition] = STATE(1465), - [sym_label_reference] = STATE(1465), - [sym_label_reference_range] = STATE(1465), - [sym_label_number] = STATE(1465), - [sym_new_command_definition] = STATE(1465), - [sym_old_command_definition] = STATE(1465), - [sym_let_command_definition] = STATE(1465), - [sym_paired_delimiter_definition] = STATE(1465), - [sym_environment_definition] = STATE(1465), - [sym_glossary_entry_definition] = STATE(1465), - [sym_glossary_entry_reference] = STATE(1465), - [sym_acronym_definition] = STATE(1465), - [sym_acronym_reference] = STATE(1465), - [sym_theorem_definition] = STATE(1465), - [sym_color_definition] = STATE(1465), - [sym_color_set_definition] = STATE(1465), - [sym_color_reference] = STATE(1465), - [sym_tikz_library_import] = STATE(1465), - [aux_sym_text_repeat1] = STATE(268), - [sym_command_name] = ACTIONS(3827), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(3839), - [sym_placeholder] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3843), - [anon_sym_DASH] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_SLASH] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym__] = ACTIONS(3843), - [anon_sym_LT] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_PIPE] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(3843), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2755), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2755), - [anon_sym_BSLASHusepackage] = ACTIONS(3853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3855), - [anon_sym_BSLASHinclude] = ACTIONS(3857), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3857), - [anon_sym_BSLASHinput] = ACTIONS(3857), - [anon_sym_BSLASHsubfile] = ACTIONS(3857), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3859), - [anon_sym_BSLASHbibliography] = ACTIONS(3861), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3863), - [anon_sym_BSLASHincludesvg] = ACTIONS(3865), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3867), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3869), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3869), - [anon_sym_BSLASHimport] = ACTIONS(3871), - [anon_sym_BSLASHsubimport] = ACTIONS(3871), - [anon_sym_BSLASHinputfrom] = ACTIONS(3871), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3871), - [anon_sym_BSLASHincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3871), - [anon_sym_BSLASHcaption] = ACTIONS(3873), - [anon_sym_BSLASHcite] = ACTIONS(3875), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCite] = ACTIONS(3875), - [anon_sym_BSLASHnocite] = ACTIONS(3875), - [anon_sym_BSLASHcitet] = ACTIONS(3875), - [anon_sym_BSLASHcitep] = ACTIONS(3875), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteauthor] = ACTIONS(3875), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3875), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitetitle] = ACTIONS(3875), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteyear] = ACTIONS(3875), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), - [anon_sym_BSLASHcitedate] = ACTIONS(3875), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), - [anon_sym_BSLASHciteurl] = ACTIONS(3875), - [anon_sym_BSLASHfullcite] = ACTIONS(3875), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3875), - [anon_sym_BSLASHcitealt] = ACTIONS(3875), - [anon_sym_BSLASHcitealp] = ACTIONS(3875), - [anon_sym_BSLASHcitetext] = ACTIONS(3875), - [anon_sym_BSLASHparencite] = ACTIONS(3875), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHParencite] = ACTIONS(3875), - [anon_sym_BSLASHfootcite] = ACTIONS(3875), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3875), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3875), - [anon_sym_BSLASHtextcite] = ACTIONS(3875), - [anon_sym_BSLASHTextcite] = ACTIONS(3875), - [anon_sym_BSLASHsmartcite] = ACTIONS(3875), - [anon_sym_BSLASHSmartcite] = ACTIONS(3875), - [anon_sym_BSLASHsupercite] = ACTIONS(3875), - [anon_sym_BSLASHautocite] = ACTIONS(3875), - [anon_sym_BSLASHAutocite] = ACTIONS(3875), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), - [anon_sym_BSLASHvolcite] = ACTIONS(3875), - [anon_sym_BSLASHVolcite] = ACTIONS(3875), - [anon_sym_BSLASHpvolcite] = ACTIONS(3875), - [anon_sym_BSLASHPvolcite] = ACTIONS(3875), - [anon_sym_BSLASHfvolcite] = ACTIONS(3875), - [anon_sym_BSLASHftvolcite] = ACTIONS(3875), - [anon_sym_BSLASHsvolcite] = ACTIONS(3875), - [anon_sym_BSLASHSvolcite] = ACTIONS(3875), - [anon_sym_BSLASHtvolcite] = ACTIONS(3875), - [anon_sym_BSLASHTvolcite] = ACTIONS(3875), - [anon_sym_BSLASHavolcite] = ACTIONS(3875), - [anon_sym_BSLASHAvolcite] = ACTIONS(3875), - [anon_sym_BSLASHnotecite] = ACTIONS(3875), - [anon_sym_BSLASHNotecite] = ACTIONS(3875), - [anon_sym_BSLASHpnotecite] = ACTIONS(3875), - [anon_sym_BSLASHPnotecite] = ACTIONS(3875), - [anon_sym_BSLASHfnotecite] = ACTIONS(3875), - [anon_sym_BSLASHlabel] = ACTIONS(3879), - [anon_sym_BSLASHref] = ACTIONS(3881), - [anon_sym_BSLASHeqref] = ACTIONS(3881), - [anon_sym_BSLASHvref] = ACTIONS(3881), - [anon_sym_BSLASHVref] = ACTIONS(3881), - [anon_sym_BSLASHautoref] = ACTIONS(3881), - [anon_sym_BSLASHpageref] = ACTIONS(3881), - [anon_sym_BSLASHcref] = ACTIONS(3881), - [anon_sym_BSLASHCref] = ACTIONS(3881), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3883), - [anon_sym_BSLASHnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnameCref] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3881), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3881), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3881), - [anon_sym_BSLASHlabelcref] = ACTIONS(3881), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3881), - [anon_sym_BSLASHcrefrange] = ACTIONS(3885), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHCrefrange] = ACTIONS(3885), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3887), - [anon_sym_BSLASHnewlabel] = ACTIONS(3889), - [anon_sym_BSLASHnewcommand] = ACTIONS(3891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3893), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3893), - [anon_sym_BSLASHdef] = ACTIONS(3895), - [anon_sym_BSLASHlet] = ACTIONS(3897), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3899), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3899), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3901), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3903), - [anon_sym_BSLASHgls] = ACTIONS(3905), - [anon_sym_BSLASHGls] = ACTIONS(3905), - [anon_sym_BSLASHGLS] = ACTIONS(3905), - [anon_sym_BSLASHglspl] = ACTIONS(3905), - [anon_sym_BSLASHGlspl] = ACTIONS(3905), - [anon_sym_BSLASHGLSpl] = ACTIONS(3905), - [anon_sym_BSLASHglsdisp] = ACTIONS(3905), - [anon_sym_BSLASHglslink] = ACTIONS(3905), - [anon_sym_BSLASHglstext] = ACTIONS(3905), - [anon_sym_BSLASHGlstext] = ACTIONS(3905), - [anon_sym_BSLASHGLStext] = ACTIONS(3905), - [anon_sym_BSLASHglsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3905), - [anon_sym_BSLASHglsplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSplural] = ACTIONS(3905), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3905), - [anon_sym_BSLASHglsname] = ACTIONS(3905), - [anon_sym_BSLASHGlsname] = ACTIONS(3905), - [anon_sym_BSLASHGLSname] = ACTIONS(3905), - [anon_sym_BSLASHglssymbol] = ACTIONS(3905), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3905), - [anon_sym_BSLASHglsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3905), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3905), - [anon_sym_BSLASHglsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3905), - [anon_sym_BSLASHglsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3905), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3905), - [anon_sym_BSLASHglsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3905), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3905), - [anon_sym_BSLASHglsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3905), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3905), - [anon_sym_BSLASHnewacronym] = ACTIONS(3907), - [anon_sym_BSLASHacrshort] = ACTIONS(3909), - [anon_sym_BSLASHAcrshort] = ACTIONS(3909), - [anon_sym_BSLASHACRshort] = ACTIONS(3909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3909), - [anon_sym_BSLASHacrlong] = ACTIONS(3909), - [anon_sym_BSLASHAcrlong] = ACTIONS(3909), - [anon_sym_BSLASHACRlong] = ACTIONS(3909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3909), - [anon_sym_BSLASHacrfull] = ACTIONS(3909), - [anon_sym_BSLASHAcrfull] = ACTIONS(3909), - [anon_sym_BSLASHACRfull] = ACTIONS(3909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3909), - [anon_sym_BSLASHacs] = ACTIONS(3909), - [anon_sym_BSLASHAcs] = ACTIONS(3909), - [anon_sym_BSLASHacsp] = ACTIONS(3909), - [anon_sym_BSLASHAcsp] = ACTIONS(3909), - [anon_sym_BSLASHacl] = ACTIONS(3909), - [anon_sym_BSLASHAcl] = ACTIONS(3909), - [anon_sym_BSLASHaclp] = ACTIONS(3909), - [anon_sym_BSLASHAclp] = ACTIONS(3909), - [anon_sym_BSLASHacf] = ACTIONS(3909), - [anon_sym_BSLASHAcf] = ACTIONS(3909), - [anon_sym_BSLASHacfp] = ACTIONS(3909), - [anon_sym_BSLASHAcfp] = ACTIONS(3909), - [anon_sym_BSLASHac] = ACTIONS(3909), - [anon_sym_BSLASHAc] = ACTIONS(3909), - [anon_sym_BSLASHacp] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3911), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3911), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3913), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3915), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3917), - [anon_sym_BSLASHcolor] = ACTIONS(3919), - [anon_sym_BSLASHcolorbox] = ACTIONS(3919), - [anon_sym_BSLASHtextcolor] = ACTIONS(3919), - [anon_sym_BSLASHpagecolor] = ACTIONS(3919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3921), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3921), - [anon_sym_BSLASHtext] = ACTIONS(2757), - [anon_sym_BSLASHintertext] = ACTIONS(2757), - [anon_sym_shortintertext] = ACTIONS(2757), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_curly_group_author_list_repeat1] = STATE(1980), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4383), + [anon_sym_BSLASHand] = ACTIONS(4277), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [270] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2483), - [sym_operator] = STATE(1588), - [sym__trivia_text_comment] = STATE(2517), - [sym__trivia_text_verbatim] = STATE(2472), - [sym__trivia_text_listing] = STATE(2469), - [sym__trivia_text_minted] = STATE(2464), - [sym__trivia_text_pycode] = STATE(2461), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_comment] = ACTIONS(4527), - [anon_sym_verbatim] = ACTIONS(4529), - [anon_sym_lstlisting] = ACTIONS(4531), - [anon_sym_minted] = ACTIONS(4533), - [anon_sym_pycode] = ACTIONS(4535), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4385), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_BSLASHand] = ACTIONS(4396), + [sym_word] = ACTIONS(4398), + [sym_placeholder] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_SLASH] = ACTIONS(4404), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym__] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(4404), + [anon_sym_SQUOTE] = ACTIONS(4404), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4410), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4413), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4416), + [anon_sym_BSLASHtitle] = ACTIONS(4419), + [anon_sym_BSLASHauthor] = ACTIONS(4422), + [anon_sym_BSLASHusepackage] = ACTIONS(4425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4428), + [anon_sym_BSLASHinclude] = ACTIONS(4431), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4431), + [anon_sym_BSLASHinput] = ACTIONS(4431), + [anon_sym_BSLASHsubfile] = ACTIONS(4431), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4434), + [anon_sym_BSLASHbibliography] = ACTIONS(4437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4440), + [anon_sym_BSLASHincludesvg] = ACTIONS(4443), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4446), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), + [anon_sym_BSLASHimport] = ACTIONS(4452), + [anon_sym_BSLASHsubimport] = ACTIONS(4452), + [anon_sym_BSLASHinputfrom] = ACTIONS(4452), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4452), + [anon_sym_BSLASHincludefrom] = ACTIONS(4452), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4452), + [anon_sym_BSLASHcaption] = ACTIONS(4455), + [anon_sym_BSLASHcite] = ACTIONS(4458), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4461), + [anon_sym_BSLASHCite] = ACTIONS(4458), + [anon_sym_BSLASHnocite] = ACTIONS(4458), + [anon_sym_BSLASHcitet] = ACTIONS(4458), + [anon_sym_BSLASHcitep] = ACTIONS(4458), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4461), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor] = ACTIONS(4458), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4458), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle] = ACTIONS(4458), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4461), + [anon_sym_BSLASHciteyear] = ACTIONS(4458), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4461), + [anon_sym_BSLASHcitedate] = ACTIONS(4458), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4461), + [anon_sym_BSLASHciteurl] = ACTIONS(4458), + [anon_sym_BSLASHfullcite] = ACTIONS(4458), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4458), + [anon_sym_BSLASHcitealt] = ACTIONS(4458), + [anon_sym_BSLASHcitealp] = ACTIONS(4458), + [anon_sym_BSLASHcitetext] = ACTIONS(4458), + [anon_sym_BSLASHparencite] = ACTIONS(4458), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4461), + [anon_sym_BSLASHParencite] = ACTIONS(4458), + [anon_sym_BSLASHfootcite] = ACTIONS(4458), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4458), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4458), + [anon_sym_BSLASHtextcite] = ACTIONS(4458), + [anon_sym_BSLASHTextcite] = ACTIONS(4458), + [anon_sym_BSLASHsmartcite] = ACTIONS(4458), + [anon_sym_BSLASHSmartcite] = ACTIONS(4458), + [anon_sym_BSLASHsupercite] = ACTIONS(4458), + [anon_sym_BSLASHautocite] = ACTIONS(4458), + [anon_sym_BSLASHAutocite] = ACTIONS(4458), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4461), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4461), + [anon_sym_BSLASHvolcite] = ACTIONS(4458), + [anon_sym_BSLASHVolcite] = ACTIONS(4458), + [anon_sym_BSLASHpvolcite] = ACTIONS(4458), + [anon_sym_BSLASHPvolcite] = ACTIONS(4458), + [anon_sym_BSLASHfvolcite] = ACTIONS(4458), + [anon_sym_BSLASHftvolcite] = ACTIONS(4458), + [anon_sym_BSLASHsvolcite] = ACTIONS(4458), + [anon_sym_BSLASHSvolcite] = ACTIONS(4458), + [anon_sym_BSLASHtvolcite] = ACTIONS(4458), + [anon_sym_BSLASHTvolcite] = ACTIONS(4458), + [anon_sym_BSLASHavolcite] = ACTIONS(4458), + [anon_sym_BSLASHAvolcite] = ACTIONS(4458), + [anon_sym_BSLASHnotecite] = ACTIONS(4458), + [anon_sym_BSLASHNotecite] = ACTIONS(4458), + [anon_sym_BSLASHpnotecite] = ACTIONS(4458), + [anon_sym_BSLASHPnotecite] = ACTIONS(4458), + [anon_sym_BSLASHfnotecite] = ACTIONS(4458), + [anon_sym_BSLASHlabel] = ACTIONS(4464), + [anon_sym_BSLASHref] = ACTIONS(4467), + [anon_sym_BSLASHeqref] = ACTIONS(4467), + [anon_sym_BSLASHvref] = ACTIONS(4467), + [anon_sym_BSLASHVref] = ACTIONS(4467), + [anon_sym_BSLASHautoref] = ACTIONS(4467), + [anon_sym_BSLASHpageref] = ACTIONS(4467), + [anon_sym_BSLASHcref] = ACTIONS(4467), + [anon_sym_BSLASHCref] = ACTIONS(4467), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4470), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4470), + [anon_sym_BSLASHnamecref] = ACTIONS(4467), + [anon_sym_BSLASHnameCref] = ACTIONS(4467), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4467), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4467), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4467), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4467), + [anon_sym_BSLASHlabelcref] = ACTIONS(4467), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4467), + [anon_sym_BSLASHcrefrange] = ACTIONS(4473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4476), + [anon_sym_BSLASHCrefrange] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4476), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4482), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4482), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4482), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4482), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4488), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4494), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4494), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4497), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4500), + [anon_sym_BSLASHgls] = ACTIONS(4503), + [anon_sym_BSLASHGls] = ACTIONS(4503), + [anon_sym_BSLASHGLS] = ACTIONS(4503), + [anon_sym_BSLASHglspl] = ACTIONS(4503), + [anon_sym_BSLASHGlspl] = ACTIONS(4503), + [anon_sym_BSLASHGLSpl] = ACTIONS(4503), + [anon_sym_BSLASHglsdisp] = ACTIONS(4503), + [anon_sym_BSLASHglslink] = ACTIONS(4503), + [anon_sym_BSLASHglstext] = ACTIONS(4503), + [anon_sym_BSLASHGlstext] = ACTIONS(4503), + [anon_sym_BSLASHGLStext] = ACTIONS(4503), + [anon_sym_BSLASHglsfirst] = ACTIONS(4503), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), + [anon_sym_BSLASHglsplural] = ACTIONS(4503), + [anon_sym_BSLASHGlsplural] = ACTIONS(4503), + [anon_sym_BSLASHGLSplural] = ACTIONS(4503), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), + [anon_sym_BSLASHglsname] = ACTIONS(4503), + [anon_sym_BSLASHGlsname] = ACTIONS(4503), + [anon_sym_BSLASHGLSname] = ACTIONS(4503), + [anon_sym_BSLASHglssymbol] = ACTIONS(4503), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), + [anon_sym_BSLASHglsdesc] = ACTIONS(4503), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), + [anon_sym_BSLASHglsuseri] = ACTIONS(4503), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), + [anon_sym_BSLASHglsuserii] = ACTIONS(4503), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), + [anon_sym_BSLASHglsuserv] = ACTIONS(4503), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), + [anon_sym_BSLASHglsuservi] = ACTIONS(4503), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), + [anon_sym_BSLASHnewacronym] = ACTIONS(4506), + [anon_sym_BSLASHacrshort] = ACTIONS(4509), + [anon_sym_BSLASHAcrshort] = ACTIONS(4509), + [anon_sym_BSLASHACRshort] = ACTIONS(4509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4509), + [anon_sym_BSLASHacrlong] = ACTIONS(4509), + [anon_sym_BSLASHAcrlong] = ACTIONS(4509), + [anon_sym_BSLASHACRlong] = ACTIONS(4509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4509), + [anon_sym_BSLASHacrfull] = ACTIONS(4509), + [anon_sym_BSLASHAcrfull] = ACTIONS(4509), + [anon_sym_BSLASHACRfull] = ACTIONS(4509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4509), + [anon_sym_BSLASHacs] = ACTIONS(4509), + [anon_sym_BSLASHAcs] = ACTIONS(4509), + [anon_sym_BSLASHacsp] = ACTIONS(4509), + [anon_sym_BSLASHAcsp] = ACTIONS(4509), + [anon_sym_BSLASHacl] = ACTIONS(4509), + [anon_sym_BSLASHAcl] = ACTIONS(4509), + [anon_sym_BSLASHaclp] = ACTIONS(4509), + [anon_sym_BSLASHAclp] = ACTIONS(4509), + [anon_sym_BSLASHacf] = ACTIONS(4509), + [anon_sym_BSLASHAcf] = ACTIONS(4509), + [anon_sym_BSLASHacfp] = ACTIONS(4509), + [anon_sym_BSLASHAcfp] = ACTIONS(4509), + [anon_sym_BSLASHac] = ACTIONS(4509), + [anon_sym_BSLASHAc] = ACTIONS(4509), + [anon_sym_BSLASHacp] = ACTIONS(4509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4512), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4512), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4518), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4521), + [anon_sym_BSLASHcolor] = ACTIONS(4524), + [anon_sym_BSLASHcolorbox] = ACTIONS(4524), + [anon_sym_BSLASHtextcolor] = ACTIONS(4524), + [anon_sym_BSLASHpagecolor] = ACTIONS(4524), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4527), + [anon_sym_BSLASHtext] = ACTIONS(4530), + [anon_sym_BSLASHintertext] = ACTIONS(4530), + [anon_sym_shortintertext] = ACTIONS(4530), }, [271] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(270), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_BSLASHand] = ACTIONS(4535), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [272] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(316), - [aux_sym__section_repeat2] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4537), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [273] = { - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(317), - [aux_sym__section_repeat1] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(262), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4545), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [274] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(264), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4547), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [275] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4549), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [276] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(301), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4551), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [277] = { - [sym_curly_group] = STATE(705), - [sym_mixed_group] = STATE(705), - [aux_sym_generic_command_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4611), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_BSLASHpart] = ACTIONS(4613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddpart] = ACTIONS(4613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHchapter] = ACTIONS(4613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddchap] = ACTIONS(4613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsection] = ACTIONS(4613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddsec] = ACTIONS(4613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHparagraph] = ACTIONS(4613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHitem] = ACTIONS(4613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4611), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(297), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [278] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(272), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4555), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [279] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4557), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [280] = { - [sym_curly_group] = STATE(705), - [sym_mixed_group] = STATE(705), - [aux_sym_generic_command_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4617), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_BSLASHpart] = ACTIONS(4619), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddpart] = ACTIONS(4619), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHchapter] = ACTIONS(4619), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddchap] = ACTIONS(4619), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsection] = ACTIONS(4619), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddsec] = ACTIONS(4619), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHparagraph] = ACTIONS(4619), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4619), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHitem] = ACTIONS(4619), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4624), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4559), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [281] = { - [sym_curly_group] = STATE(705), - [sym_mixed_group] = STATE(705), - [aux_sym_generic_command_repeat1] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(4627), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_BSLASHpart] = ACTIONS(4629), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddpart] = ACTIONS(4629), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHchapter] = ACTIONS(4629), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddchap] = ACTIONS(4629), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsection] = ACTIONS(4629), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddsec] = ACTIONS(4629), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHparagraph] = ACTIONS(4629), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4629), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHitem] = ACTIONS(4629), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4627), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(279), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4561), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [282] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4631), - [sym_command_name] = ACTIONS(4633), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHchapter] = ACTIONS(4633), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddchap] = ACTIONS(4633), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsection] = ACTIONS(4633), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddsec] = ACTIONS(4633), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHparagraph] = ACTIONS(4633), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4633), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHitem] = ACTIONS(4635), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [sym_word] = ACTIONS(4633), - [sym_placeholder] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym__] = ACTIONS(4633), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4633), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4631), - [anon_sym_BSLASHbegin] = ACTIONS(4633), - [anon_sym_BSLASHusepackage] = ACTIONS(4633), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4633), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4633), - [anon_sym_BSLASHinclude] = ACTIONS(4633), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), - [anon_sym_BSLASHinput] = ACTIONS(4633), - [anon_sym_BSLASHsubfile] = ACTIONS(4633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4633), - [anon_sym_BSLASHbibliography] = ACTIONS(4633), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4633), - [anon_sym_BSLASHincludesvg] = ACTIONS(4633), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4633), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4633), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4633), - [anon_sym_BSLASHimport] = ACTIONS(4633), - [anon_sym_BSLASHsubimport] = ACTIONS(4633), - [anon_sym_BSLASHinputfrom] = ACTIONS(4633), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4633), - [anon_sym_BSLASHincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHcaption] = ACTIONS(4633), - [anon_sym_BSLASHcite] = ACTIONS(4633), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCite] = ACTIONS(4633), - [anon_sym_BSLASHnocite] = ACTIONS(4633), - [anon_sym_BSLASHcitet] = ACTIONS(4633), - [anon_sym_BSLASHcitep] = ACTIONS(4633), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteauthor] = ACTIONS(4633), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4633), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitetitle] = ACTIONS(4633), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteyear] = ACTIONS(4633), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitedate] = ACTIONS(4633), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteurl] = ACTIONS(4633), - [anon_sym_BSLASHfullcite] = ACTIONS(4633), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4633), - [anon_sym_BSLASHcitealt] = ACTIONS(4633), - [anon_sym_BSLASHcitealp] = ACTIONS(4633), - [anon_sym_BSLASHcitetext] = ACTIONS(4633), - [anon_sym_BSLASHparencite] = ACTIONS(4633), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHParencite] = ACTIONS(4633), - [anon_sym_BSLASHfootcite] = ACTIONS(4633), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4633), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4633), - [anon_sym_BSLASHtextcite] = ACTIONS(4633), - [anon_sym_BSLASHTextcite] = ACTIONS(4633), - [anon_sym_BSLASHsmartcite] = ACTIONS(4633), - [anon_sym_BSLASHSmartcite] = ACTIONS(4633), - [anon_sym_BSLASHsupercite] = ACTIONS(4633), - [anon_sym_BSLASHautocite] = ACTIONS(4633), - [anon_sym_BSLASHAutocite] = ACTIONS(4633), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHvolcite] = ACTIONS(4633), - [anon_sym_BSLASHVolcite] = ACTIONS(4633), - [anon_sym_BSLASHpvolcite] = ACTIONS(4633), - [anon_sym_BSLASHPvolcite] = ACTIONS(4633), - [anon_sym_BSLASHfvolcite] = ACTIONS(4633), - [anon_sym_BSLASHftvolcite] = ACTIONS(4633), - [anon_sym_BSLASHsvolcite] = ACTIONS(4633), - [anon_sym_BSLASHSvolcite] = ACTIONS(4633), - [anon_sym_BSLASHtvolcite] = ACTIONS(4633), - [anon_sym_BSLASHTvolcite] = ACTIONS(4633), - [anon_sym_BSLASHavolcite] = ACTIONS(4633), - [anon_sym_BSLASHAvolcite] = ACTIONS(4633), - [anon_sym_BSLASHnotecite] = ACTIONS(4633), - [anon_sym_BSLASHNotecite] = ACTIONS(4633), - [anon_sym_BSLASHpnotecite] = ACTIONS(4633), - [anon_sym_BSLASHPnotecite] = ACTIONS(4633), - [anon_sym_BSLASHfnotecite] = ACTIONS(4633), - [anon_sym_BSLASHlabel] = ACTIONS(4633), - [anon_sym_BSLASHref] = ACTIONS(4633), - [anon_sym_BSLASHeqref] = ACTIONS(4633), - [anon_sym_BSLASHvref] = ACTIONS(4633), - [anon_sym_BSLASHVref] = ACTIONS(4633), - [anon_sym_BSLASHautoref] = ACTIONS(4633), - [anon_sym_BSLASHpageref] = ACTIONS(4633), - [anon_sym_BSLASHcref] = ACTIONS(4633), - [anon_sym_BSLASHCref] = ACTIONS(4633), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnameCref] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHlabelcref] = ACTIONS(4633), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCrefrange] = ACTIONS(4633), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnewlabel] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4633), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4633), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4633), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdef] = ACTIONS(4633), - [anon_sym_BSLASHlet] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4633), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4633), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4633), - [anon_sym_BSLASHgls] = ACTIONS(4633), - [anon_sym_BSLASHGls] = ACTIONS(4633), - [anon_sym_BSLASHGLS] = ACTIONS(4633), - [anon_sym_BSLASHglspl] = ACTIONS(4633), - [anon_sym_BSLASHGlspl] = ACTIONS(4633), - [anon_sym_BSLASHGLSpl] = ACTIONS(4633), - [anon_sym_BSLASHglsdisp] = ACTIONS(4633), - [anon_sym_BSLASHglslink] = ACTIONS(4633), - [anon_sym_BSLASHglstext] = ACTIONS(4633), - [anon_sym_BSLASHGlstext] = ACTIONS(4633), - [anon_sym_BSLASHGLStext] = ACTIONS(4633), - [anon_sym_BSLASHglsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4633), - [anon_sym_BSLASHglsplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSplural] = ACTIONS(4633), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHglsname] = ACTIONS(4633), - [anon_sym_BSLASHGlsname] = ACTIONS(4633), - [anon_sym_BSLASHGLSname] = ACTIONS(4633), - [anon_sym_BSLASHglssymbol] = ACTIONS(4633), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4633), - [anon_sym_BSLASHglsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4633), - [anon_sym_BSLASHglsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4633), - [anon_sym_BSLASHglsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4633), - [anon_sym_BSLASHglsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4633), - [anon_sym_BSLASHglsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4633), - [anon_sym_BSLASHnewacronym] = ACTIONS(4633), - [anon_sym_BSLASHacrshort] = ACTIONS(4633), - [anon_sym_BSLASHAcrshort] = ACTIONS(4633), - [anon_sym_BSLASHACRshort] = ACTIONS(4633), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4633), - [anon_sym_BSLASHacrlong] = ACTIONS(4633), - [anon_sym_BSLASHAcrlong] = ACTIONS(4633), - [anon_sym_BSLASHACRlong] = ACTIONS(4633), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4633), - [anon_sym_BSLASHacrfull] = ACTIONS(4633), - [anon_sym_BSLASHAcrfull] = ACTIONS(4633), - [anon_sym_BSLASHACRfull] = ACTIONS(4633), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4633), - [anon_sym_BSLASHacs] = ACTIONS(4633), - [anon_sym_BSLASHAcs] = ACTIONS(4633), - [anon_sym_BSLASHacsp] = ACTIONS(4633), - [anon_sym_BSLASHAcsp] = ACTIONS(4633), - [anon_sym_BSLASHacl] = ACTIONS(4633), - [anon_sym_BSLASHAcl] = ACTIONS(4633), - [anon_sym_BSLASHaclp] = ACTIONS(4633), - [anon_sym_BSLASHAclp] = ACTIONS(4633), - [anon_sym_BSLASHacf] = ACTIONS(4633), - [anon_sym_BSLASHAcf] = ACTIONS(4633), - [anon_sym_BSLASHacfp] = ACTIONS(4633), - [anon_sym_BSLASHAcfp] = ACTIONS(4633), - [anon_sym_BSLASHac] = ACTIONS(4633), - [anon_sym_BSLASHAc] = ACTIONS(4633), - [anon_sym_BSLASHacp] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4633), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4633), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4633), - [anon_sym_BSLASHcolor] = ACTIONS(4633), - [anon_sym_BSLASHcolorbox] = ACTIONS(4633), - [anon_sym_BSLASHtextcolor] = ACTIONS(4633), - [anon_sym_BSLASHpagecolor] = ACTIONS(4633), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4633), - [anon_sym_BSLASHtext] = ACTIONS(4633), - [anon_sym_BSLASHintertext] = ACTIONS(4633), - [anon_sym_shortintertext] = ACTIONS(4633), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4563), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [283] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4641), - [sym_command_name] = ACTIONS(4643), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_BSLASHpart] = ACTIONS(4643), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddpart] = ACTIONS(4643), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHchapter] = ACTIONS(4643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddchap] = ACTIONS(4643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsection] = ACTIONS(4643), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddsec] = ACTIONS(4643), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHparagraph] = ACTIONS(4643), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4645), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4648), - [anon_sym_BSLASHitem] = ACTIONS(4643), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [anon_sym_RBRACE] = ACTIONS(4641), - [sym_word] = ACTIONS(4643), - [sym_placeholder] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym__] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4641), - [anon_sym_BSLASHbegin] = ACTIONS(4643), - [anon_sym_BSLASHusepackage] = ACTIONS(4643), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4643), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4643), - [anon_sym_BSLASHinclude] = ACTIONS(4643), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4643), - [anon_sym_BSLASHinput] = ACTIONS(4643), - [anon_sym_BSLASHsubfile] = ACTIONS(4643), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4643), - [anon_sym_BSLASHbibliography] = ACTIONS(4643), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4643), - [anon_sym_BSLASHincludesvg] = ACTIONS(4643), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4643), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4643), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4643), - [anon_sym_BSLASHimport] = ACTIONS(4643), - [anon_sym_BSLASHsubimport] = ACTIONS(4643), - [anon_sym_BSLASHinputfrom] = ACTIONS(4643), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4643), - [anon_sym_BSLASHincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHcaption] = ACTIONS(4643), - [anon_sym_BSLASHcite] = ACTIONS(4643), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCite] = ACTIONS(4643), - [anon_sym_BSLASHnocite] = ACTIONS(4643), - [anon_sym_BSLASHcitet] = ACTIONS(4643), - [anon_sym_BSLASHcitep] = ACTIONS(4643), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteauthor] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitetitle] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteyear] = ACTIONS(4643), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitedate] = ACTIONS(4643), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteurl] = ACTIONS(4643), - [anon_sym_BSLASHfullcite] = ACTIONS(4643), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4643), - [anon_sym_BSLASHcitealt] = ACTIONS(4643), - [anon_sym_BSLASHcitealp] = ACTIONS(4643), - [anon_sym_BSLASHcitetext] = ACTIONS(4643), - [anon_sym_BSLASHparencite] = ACTIONS(4643), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHParencite] = ACTIONS(4643), - [anon_sym_BSLASHfootcite] = ACTIONS(4643), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4643), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4643), - [anon_sym_BSLASHtextcite] = ACTIONS(4643), - [anon_sym_BSLASHTextcite] = ACTIONS(4643), - [anon_sym_BSLASHsmartcite] = ACTIONS(4643), - [anon_sym_BSLASHSmartcite] = ACTIONS(4643), - [anon_sym_BSLASHsupercite] = ACTIONS(4643), - [anon_sym_BSLASHautocite] = ACTIONS(4643), - [anon_sym_BSLASHAutocite] = ACTIONS(4643), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHvolcite] = ACTIONS(4643), - [anon_sym_BSLASHVolcite] = ACTIONS(4643), - [anon_sym_BSLASHpvolcite] = ACTIONS(4643), - [anon_sym_BSLASHPvolcite] = ACTIONS(4643), - [anon_sym_BSLASHfvolcite] = ACTIONS(4643), - [anon_sym_BSLASHftvolcite] = ACTIONS(4643), - [anon_sym_BSLASHsvolcite] = ACTIONS(4643), - [anon_sym_BSLASHSvolcite] = ACTIONS(4643), - [anon_sym_BSLASHtvolcite] = ACTIONS(4643), - [anon_sym_BSLASHTvolcite] = ACTIONS(4643), - [anon_sym_BSLASHavolcite] = ACTIONS(4643), - [anon_sym_BSLASHAvolcite] = ACTIONS(4643), - [anon_sym_BSLASHnotecite] = ACTIONS(4643), - [anon_sym_BSLASHNotecite] = ACTIONS(4643), - [anon_sym_BSLASHpnotecite] = ACTIONS(4643), - [anon_sym_BSLASHPnotecite] = ACTIONS(4643), - [anon_sym_BSLASHfnotecite] = ACTIONS(4643), - [anon_sym_BSLASHlabel] = ACTIONS(4643), - [anon_sym_BSLASHref] = ACTIONS(4643), - [anon_sym_BSLASHeqref] = ACTIONS(4643), - [anon_sym_BSLASHvref] = ACTIONS(4643), - [anon_sym_BSLASHVref] = ACTIONS(4643), - [anon_sym_BSLASHautoref] = ACTIONS(4643), - [anon_sym_BSLASHpageref] = ACTIONS(4643), - [anon_sym_BSLASHcref] = ACTIONS(4643), - [anon_sym_BSLASHCref] = ACTIONS(4643), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnameCref] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHlabelcref] = ACTIONS(4643), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCrefrange] = ACTIONS(4643), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnewlabel] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4643), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4643), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4643), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdef] = ACTIONS(4643), - [anon_sym_BSLASHlet] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4643), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4643), - [anon_sym_BSLASHgls] = ACTIONS(4643), - [anon_sym_BSLASHGls] = ACTIONS(4643), - [anon_sym_BSLASHGLS] = ACTIONS(4643), - [anon_sym_BSLASHglspl] = ACTIONS(4643), - [anon_sym_BSLASHGlspl] = ACTIONS(4643), - [anon_sym_BSLASHGLSpl] = ACTIONS(4643), - [anon_sym_BSLASHglsdisp] = ACTIONS(4643), - [anon_sym_BSLASHglslink] = ACTIONS(4643), - [anon_sym_BSLASHglstext] = ACTIONS(4643), - [anon_sym_BSLASHGlstext] = ACTIONS(4643), - [anon_sym_BSLASHGLStext] = ACTIONS(4643), - [anon_sym_BSLASHglsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4643), - [anon_sym_BSLASHglsplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSplural] = ACTIONS(4643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHglsname] = ACTIONS(4643), - [anon_sym_BSLASHGlsname] = ACTIONS(4643), - [anon_sym_BSLASHGLSname] = ACTIONS(4643), - [anon_sym_BSLASHglssymbol] = ACTIONS(4643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4643), - [anon_sym_BSLASHglsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4643), - [anon_sym_BSLASHglsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4643), - [anon_sym_BSLASHglsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4643), - [anon_sym_BSLASHglsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4643), - [anon_sym_BSLASHglsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4643), - [anon_sym_BSLASHnewacronym] = ACTIONS(4643), - [anon_sym_BSLASHacrshort] = ACTIONS(4643), - [anon_sym_BSLASHAcrshort] = ACTIONS(4643), - [anon_sym_BSLASHACRshort] = ACTIONS(4643), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4643), - [anon_sym_BSLASHacrlong] = ACTIONS(4643), - [anon_sym_BSLASHAcrlong] = ACTIONS(4643), - [anon_sym_BSLASHACRlong] = ACTIONS(4643), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4643), - [anon_sym_BSLASHacrfull] = ACTIONS(4643), - [anon_sym_BSLASHAcrfull] = ACTIONS(4643), - [anon_sym_BSLASHACRfull] = ACTIONS(4643), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4643), - [anon_sym_BSLASHacs] = ACTIONS(4643), - [anon_sym_BSLASHAcs] = ACTIONS(4643), - [anon_sym_BSLASHacsp] = ACTIONS(4643), - [anon_sym_BSLASHAcsp] = ACTIONS(4643), - [anon_sym_BSLASHacl] = ACTIONS(4643), - [anon_sym_BSLASHAcl] = ACTIONS(4643), - [anon_sym_BSLASHaclp] = ACTIONS(4643), - [anon_sym_BSLASHAclp] = ACTIONS(4643), - [anon_sym_BSLASHacf] = ACTIONS(4643), - [anon_sym_BSLASHAcf] = ACTIONS(4643), - [anon_sym_BSLASHacfp] = ACTIONS(4643), - [anon_sym_BSLASHAcfp] = ACTIONS(4643), - [anon_sym_BSLASHac] = ACTIONS(4643), - [anon_sym_BSLASHAc] = ACTIONS(4643), - [anon_sym_BSLASHacp] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4643), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4643), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4643), - [anon_sym_BSLASHcolor] = ACTIONS(4643), - [anon_sym_BSLASHcolorbox] = ACTIONS(4643), - [anon_sym_BSLASHtextcolor] = ACTIONS(4643), - [anon_sym_BSLASHpagecolor] = ACTIONS(4643), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4643), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4643), - [anon_sym_BSLASHtext] = ACTIONS(4643), - [anon_sym_BSLASHintertext] = ACTIONS(4643), - [anon_sym_shortintertext] = ACTIONS(4643), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4565), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [284] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4651), - [sym_command_name] = ACTIONS(4653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_BSLASHpart] = ACTIONS(4653), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddpart] = ACTIONS(4653), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHchapter] = ACTIONS(4653), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddchap] = ACTIONS(4653), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsection] = ACTIONS(4653), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddsec] = ACTIONS(4653), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHparagraph] = ACTIONS(4655), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4658), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4653), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4651), - [anon_sym_BSLASHitem] = ACTIONS(4653), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(4651), - [sym_word] = ACTIONS(4653), - [sym_placeholder] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym__] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4651), - [anon_sym_BSLASHbegin] = ACTIONS(4653), - [anon_sym_BSLASHusepackage] = ACTIONS(4653), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4653), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4653), - [anon_sym_BSLASHinclude] = ACTIONS(4653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4653), - [anon_sym_BSLASHinput] = ACTIONS(4653), - [anon_sym_BSLASHsubfile] = ACTIONS(4653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4653), - [anon_sym_BSLASHbibliography] = ACTIONS(4653), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4653), - [anon_sym_BSLASHincludesvg] = ACTIONS(4653), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4653), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4653), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4653), - [anon_sym_BSLASHimport] = ACTIONS(4653), - [anon_sym_BSLASHsubimport] = ACTIONS(4653), - [anon_sym_BSLASHinputfrom] = ACTIONS(4653), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4653), - [anon_sym_BSLASHincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHcaption] = ACTIONS(4653), - [anon_sym_BSLASHcite] = ACTIONS(4653), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCite] = ACTIONS(4653), - [anon_sym_BSLASHnocite] = ACTIONS(4653), - [anon_sym_BSLASHcitet] = ACTIONS(4653), - [anon_sym_BSLASHcitep] = ACTIONS(4653), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteauthor] = ACTIONS(4653), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4653), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitetitle] = ACTIONS(4653), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteyear] = ACTIONS(4653), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitedate] = ACTIONS(4653), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteurl] = ACTIONS(4653), - [anon_sym_BSLASHfullcite] = ACTIONS(4653), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4653), - [anon_sym_BSLASHcitealt] = ACTIONS(4653), - [anon_sym_BSLASHcitealp] = ACTIONS(4653), - [anon_sym_BSLASHcitetext] = ACTIONS(4653), - [anon_sym_BSLASHparencite] = ACTIONS(4653), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHParencite] = ACTIONS(4653), - [anon_sym_BSLASHfootcite] = ACTIONS(4653), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4653), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4653), - [anon_sym_BSLASHtextcite] = ACTIONS(4653), - [anon_sym_BSLASHTextcite] = ACTIONS(4653), - [anon_sym_BSLASHsmartcite] = ACTIONS(4653), - [anon_sym_BSLASHSmartcite] = ACTIONS(4653), - [anon_sym_BSLASHsupercite] = ACTIONS(4653), - [anon_sym_BSLASHautocite] = ACTIONS(4653), - [anon_sym_BSLASHAutocite] = ACTIONS(4653), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHvolcite] = ACTIONS(4653), - [anon_sym_BSLASHVolcite] = ACTIONS(4653), - [anon_sym_BSLASHpvolcite] = ACTIONS(4653), - [anon_sym_BSLASHPvolcite] = ACTIONS(4653), - [anon_sym_BSLASHfvolcite] = ACTIONS(4653), - [anon_sym_BSLASHftvolcite] = ACTIONS(4653), - [anon_sym_BSLASHsvolcite] = ACTIONS(4653), - [anon_sym_BSLASHSvolcite] = ACTIONS(4653), - [anon_sym_BSLASHtvolcite] = ACTIONS(4653), - [anon_sym_BSLASHTvolcite] = ACTIONS(4653), - [anon_sym_BSLASHavolcite] = ACTIONS(4653), - [anon_sym_BSLASHAvolcite] = ACTIONS(4653), - [anon_sym_BSLASHnotecite] = ACTIONS(4653), - [anon_sym_BSLASHNotecite] = ACTIONS(4653), - [anon_sym_BSLASHpnotecite] = ACTIONS(4653), - [anon_sym_BSLASHPnotecite] = ACTIONS(4653), - [anon_sym_BSLASHfnotecite] = ACTIONS(4653), - [anon_sym_BSLASHlabel] = ACTIONS(4653), - [anon_sym_BSLASHref] = ACTIONS(4653), - [anon_sym_BSLASHeqref] = ACTIONS(4653), - [anon_sym_BSLASHvref] = ACTIONS(4653), - [anon_sym_BSLASHVref] = ACTIONS(4653), - [anon_sym_BSLASHautoref] = ACTIONS(4653), - [anon_sym_BSLASHpageref] = ACTIONS(4653), - [anon_sym_BSLASHcref] = ACTIONS(4653), - [anon_sym_BSLASHCref] = ACTIONS(4653), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnameCref] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHlabelcref] = ACTIONS(4653), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCrefrange] = ACTIONS(4653), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnewlabel] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4653), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4653), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4653), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdef] = ACTIONS(4653), - [anon_sym_BSLASHlet] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4653), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4653), - [anon_sym_BSLASHgls] = ACTIONS(4653), - [anon_sym_BSLASHGls] = ACTIONS(4653), - [anon_sym_BSLASHGLS] = ACTIONS(4653), - [anon_sym_BSLASHglspl] = ACTIONS(4653), - [anon_sym_BSLASHGlspl] = ACTIONS(4653), - [anon_sym_BSLASHGLSpl] = ACTIONS(4653), - [anon_sym_BSLASHglsdisp] = ACTIONS(4653), - [anon_sym_BSLASHglslink] = ACTIONS(4653), - [anon_sym_BSLASHglstext] = ACTIONS(4653), - [anon_sym_BSLASHGlstext] = ACTIONS(4653), - [anon_sym_BSLASHGLStext] = ACTIONS(4653), - [anon_sym_BSLASHglsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4653), - [anon_sym_BSLASHglsplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSplural] = ACTIONS(4653), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHglsname] = ACTIONS(4653), - [anon_sym_BSLASHGlsname] = ACTIONS(4653), - [anon_sym_BSLASHGLSname] = ACTIONS(4653), - [anon_sym_BSLASHglssymbol] = ACTIONS(4653), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4653), - [anon_sym_BSLASHglsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4653), - [anon_sym_BSLASHglsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4653), - [anon_sym_BSLASHglsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4653), - [anon_sym_BSLASHglsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4653), - [anon_sym_BSLASHglsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4653), - [anon_sym_BSLASHnewacronym] = ACTIONS(4653), - [anon_sym_BSLASHacrshort] = ACTIONS(4653), - [anon_sym_BSLASHAcrshort] = ACTIONS(4653), - [anon_sym_BSLASHACRshort] = ACTIONS(4653), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4653), - [anon_sym_BSLASHacrlong] = ACTIONS(4653), - [anon_sym_BSLASHAcrlong] = ACTIONS(4653), - [anon_sym_BSLASHACRlong] = ACTIONS(4653), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4653), - [anon_sym_BSLASHacrfull] = ACTIONS(4653), - [anon_sym_BSLASHAcrfull] = ACTIONS(4653), - [anon_sym_BSLASHACRfull] = ACTIONS(4653), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4653), - [anon_sym_BSLASHacs] = ACTIONS(4653), - [anon_sym_BSLASHAcs] = ACTIONS(4653), - [anon_sym_BSLASHacsp] = ACTIONS(4653), - [anon_sym_BSLASHAcsp] = ACTIONS(4653), - [anon_sym_BSLASHacl] = ACTIONS(4653), - [anon_sym_BSLASHAcl] = ACTIONS(4653), - [anon_sym_BSLASHaclp] = ACTIONS(4653), - [anon_sym_BSLASHAclp] = ACTIONS(4653), - [anon_sym_BSLASHacf] = ACTIONS(4653), - [anon_sym_BSLASHAcf] = ACTIONS(4653), - [anon_sym_BSLASHacfp] = ACTIONS(4653), - [anon_sym_BSLASHAcfp] = ACTIONS(4653), - [anon_sym_BSLASHac] = ACTIONS(4653), - [anon_sym_BSLASHAc] = ACTIONS(4653), - [anon_sym_BSLASHacp] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4653), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4653), - [anon_sym_BSLASHcolor] = ACTIONS(4653), - [anon_sym_BSLASHcolorbox] = ACTIONS(4653), - [anon_sym_BSLASHtextcolor] = ACTIONS(4653), - [anon_sym_BSLASHpagecolor] = ACTIONS(4653), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4653), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4653), - [anon_sym_BSLASHtext] = ACTIONS(4653), - [anon_sym_BSLASHintertext] = ACTIONS(4653), - [anon_sym_shortintertext] = ACTIONS(4653), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [285] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4661), - [sym_command_name] = ACTIONS(4663), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_BSLASHpart] = ACTIONS(4663), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddpart] = ACTIONS(4663), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHchapter] = ACTIONS(4663), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddchap] = ACTIONS(4663), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsection] = ACTIONS(4663), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddsec] = ACTIONS(4663), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4665), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4668), - [anon_sym_BSLASHparagraph] = ACTIONS(4663), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4663), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHitem] = ACTIONS(4663), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_RBRACE] = ACTIONS(4661), - [sym_word] = ACTIONS(4663), - [sym_placeholder] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym__] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4661), - [anon_sym_BSLASHbegin] = ACTIONS(4663), - [anon_sym_BSLASHusepackage] = ACTIONS(4663), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4663), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4663), - [anon_sym_BSLASHinclude] = ACTIONS(4663), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4663), - [anon_sym_BSLASHinput] = ACTIONS(4663), - [anon_sym_BSLASHsubfile] = ACTIONS(4663), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4663), - [anon_sym_BSLASHbibliography] = ACTIONS(4663), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4663), - [anon_sym_BSLASHincludesvg] = ACTIONS(4663), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4663), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4663), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4663), - [anon_sym_BSLASHimport] = ACTIONS(4663), - [anon_sym_BSLASHsubimport] = ACTIONS(4663), - [anon_sym_BSLASHinputfrom] = ACTIONS(4663), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4663), - [anon_sym_BSLASHincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHcaption] = ACTIONS(4663), - [anon_sym_BSLASHcite] = ACTIONS(4663), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCite] = ACTIONS(4663), - [anon_sym_BSLASHnocite] = ACTIONS(4663), - [anon_sym_BSLASHcitet] = ACTIONS(4663), - [anon_sym_BSLASHcitep] = ACTIONS(4663), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteauthor] = ACTIONS(4663), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4663), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitetitle] = ACTIONS(4663), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteyear] = ACTIONS(4663), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitedate] = ACTIONS(4663), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteurl] = ACTIONS(4663), - [anon_sym_BSLASHfullcite] = ACTIONS(4663), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4663), - [anon_sym_BSLASHcitealt] = ACTIONS(4663), - [anon_sym_BSLASHcitealp] = ACTIONS(4663), - [anon_sym_BSLASHcitetext] = ACTIONS(4663), - [anon_sym_BSLASHparencite] = ACTIONS(4663), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHParencite] = ACTIONS(4663), - [anon_sym_BSLASHfootcite] = ACTIONS(4663), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4663), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4663), - [anon_sym_BSLASHtextcite] = ACTIONS(4663), - [anon_sym_BSLASHTextcite] = ACTIONS(4663), - [anon_sym_BSLASHsmartcite] = ACTIONS(4663), - [anon_sym_BSLASHSmartcite] = ACTIONS(4663), - [anon_sym_BSLASHsupercite] = ACTIONS(4663), - [anon_sym_BSLASHautocite] = ACTIONS(4663), - [anon_sym_BSLASHAutocite] = ACTIONS(4663), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHvolcite] = ACTIONS(4663), - [anon_sym_BSLASHVolcite] = ACTIONS(4663), - [anon_sym_BSLASHpvolcite] = ACTIONS(4663), - [anon_sym_BSLASHPvolcite] = ACTIONS(4663), - [anon_sym_BSLASHfvolcite] = ACTIONS(4663), - [anon_sym_BSLASHftvolcite] = ACTIONS(4663), - [anon_sym_BSLASHsvolcite] = ACTIONS(4663), - [anon_sym_BSLASHSvolcite] = ACTIONS(4663), - [anon_sym_BSLASHtvolcite] = ACTIONS(4663), - [anon_sym_BSLASHTvolcite] = ACTIONS(4663), - [anon_sym_BSLASHavolcite] = ACTIONS(4663), - [anon_sym_BSLASHAvolcite] = ACTIONS(4663), - [anon_sym_BSLASHnotecite] = ACTIONS(4663), - [anon_sym_BSLASHNotecite] = ACTIONS(4663), - [anon_sym_BSLASHpnotecite] = ACTIONS(4663), - [anon_sym_BSLASHPnotecite] = ACTIONS(4663), - [anon_sym_BSLASHfnotecite] = ACTIONS(4663), - [anon_sym_BSLASHlabel] = ACTIONS(4663), - [anon_sym_BSLASHref] = ACTIONS(4663), - [anon_sym_BSLASHeqref] = ACTIONS(4663), - [anon_sym_BSLASHvref] = ACTIONS(4663), - [anon_sym_BSLASHVref] = ACTIONS(4663), - [anon_sym_BSLASHautoref] = ACTIONS(4663), - [anon_sym_BSLASHpageref] = ACTIONS(4663), - [anon_sym_BSLASHcref] = ACTIONS(4663), - [anon_sym_BSLASHCref] = ACTIONS(4663), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnameCref] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHlabelcref] = ACTIONS(4663), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCrefrange] = ACTIONS(4663), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnewlabel] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4663), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4663), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4663), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdef] = ACTIONS(4663), - [anon_sym_BSLASHlet] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4663), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4663), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4663), - [anon_sym_BSLASHgls] = ACTIONS(4663), - [anon_sym_BSLASHGls] = ACTIONS(4663), - [anon_sym_BSLASHGLS] = ACTIONS(4663), - [anon_sym_BSLASHglspl] = ACTIONS(4663), - [anon_sym_BSLASHGlspl] = ACTIONS(4663), - [anon_sym_BSLASHGLSpl] = ACTIONS(4663), - [anon_sym_BSLASHglsdisp] = ACTIONS(4663), - [anon_sym_BSLASHglslink] = ACTIONS(4663), - [anon_sym_BSLASHglstext] = ACTIONS(4663), - [anon_sym_BSLASHGlstext] = ACTIONS(4663), - [anon_sym_BSLASHGLStext] = ACTIONS(4663), - [anon_sym_BSLASHglsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4663), - [anon_sym_BSLASHglsplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSplural] = ACTIONS(4663), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHglsname] = ACTIONS(4663), - [anon_sym_BSLASHGlsname] = ACTIONS(4663), - [anon_sym_BSLASHGLSname] = ACTIONS(4663), - [anon_sym_BSLASHglssymbol] = ACTIONS(4663), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4663), - [anon_sym_BSLASHglsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4663), - [anon_sym_BSLASHglsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4663), - [anon_sym_BSLASHglsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4663), - [anon_sym_BSLASHglsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4663), - [anon_sym_BSLASHglsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4663), - [anon_sym_BSLASHnewacronym] = ACTIONS(4663), - [anon_sym_BSLASHacrshort] = ACTIONS(4663), - [anon_sym_BSLASHAcrshort] = ACTIONS(4663), - [anon_sym_BSLASHACRshort] = ACTIONS(4663), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4663), - [anon_sym_BSLASHacrlong] = ACTIONS(4663), - [anon_sym_BSLASHAcrlong] = ACTIONS(4663), - [anon_sym_BSLASHACRlong] = ACTIONS(4663), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4663), - [anon_sym_BSLASHacrfull] = ACTIONS(4663), - [anon_sym_BSLASHAcrfull] = ACTIONS(4663), - [anon_sym_BSLASHACRfull] = ACTIONS(4663), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4663), - [anon_sym_BSLASHacs] = ACTIONS(4663), - [anon_sym_BSLASHAcs] = ACTIONS(4663), - [anon_sym_BSLASHacsp] = ACTIONS(4663), - [anon_sym_BSLASHAcsp] = ACTIONS(4663), - [anon_sym_BSLASHacl] = ACTIONS(4663), - [anon_sym_BSLASHAcl] = ACTIONS(4663), - [anon_sym_BSLASHaclp] = ACTIONS(4663), - [anon_sym_BSLASHAclp] = ACTIONS(4663), - [anon_sym_BSLASHacf] = ACTIONS(4663), - [anon_sym_BSLASHAcf] = ACTIONS(4663), - [anon_sym_BSLASHacfp] = ACTIONS(4663), - [anon_sym_BSLASHAcfp] = ACTIONS(4663), - [anon_sym_BSLASHac] = ACTIONS(4663), - [anon_sym_BSLASHAc] = ACTIONS(4663), - [anon_sym_BSLASHacp] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4663), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4663), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4663), - [anon_sym_BSLASHcolor] = ACTIONS(4663), - [anon_sym_BSLASHcolorbox] = ACTIONS(4663), - [anon_sym_BSLASHtextcolor] = ACTIONS(4663), - [anon_sym_BSLASHpagecolor] = ACTIONS(4663), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4663), - [anon_sym_BSLASHtext] = ACTIONS(4663), - [anon_sym_BSLASHintertext] = ACTIONS(4663), - [anon_sym_shortintertext] = ACTIONS(4663), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(284), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4569), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [286] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(316), - [aux_sym__section_repeat2] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(263), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4571), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [287] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(275), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4573), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [288] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4575), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [289] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(265), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4577), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [290] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(283), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4579), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [291] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(288), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4581), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [292] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_RBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(282), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4583), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [293] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(4675), - [sym_command_name] = ACTIONS(4677), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_BSLASHpart] = ACTIONS(4677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddpart] = ACTIONS(4677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsection] = ACTIONS(4677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddsec] = ACTIONS(4677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubsection] = ACTIONS(4679), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4682), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHparagraph] = ACTIONS(4677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHitem] = ACTIONS(4677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_RBRACE] = ACTIONS(4675), - [sym_word] = ACTIONS(4677), - [sym_placeholder] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym__] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4675), - [anon_sym_BSLASHbegin] = ACTIONS(4677), - [anon_sym_BSLASHusepackage] = ACTIONS(4677), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4677), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4677), - [anon_sym_BSLASHinclude] = ACTIONS(4677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4677), - [anon_sym_BSLASHinput] = ACTIONS(4677), - [anon_sym_BSLASHsubfile] = ACTIONS(4677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4677), - [anon_sym_BSLASHbibliography] = ACTIONS(4677), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4677), - [anon_sym_BSLASHincludesvg] = ACTIONS(4677), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4677), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4677), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4677), - [anon_sym_BSLASHimport] = ACTIONS(4677), - [anon_sym_BSLASHsubimport] = ACTIONS(4677), - [anon_sym_BSLASHinputfrom] = ACTIONS(4677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4677), - [anon_sym_BSLASHincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHcaption] = ACTIONS(4677), - [anon_sym_BSLASHcite] = ACTIONS(4677), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCite] = ACTIONS(4677), - [anon_sym_BSLASHnocite] = ACTIONS(4677), - [anon_sym_BSLASHcitet] = ACTIONS(4677), - [anon_sym_BSLASHcitep] = ACTIONS(4677), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteauthor] = ACTIONS(4677), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4677), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitetitle] = ACTIONS(4677), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteyear] = ACTIONS(4677), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitedate] = ACTIONS(4677), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteurl] = ACTIONS(4677), - [anon_sym_BSLASHfullcite] = ACTIONS(4677), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4677), - [anon_sym_BSLASHcitealt] = ACTIONS(4677), - [anon_sym_BSLASHcitealp] = ACTIONS(4677), - [anon_sym_BSLASHcitetext] = ACTIONS(4677), - [anon_sym_BSLASHparencite] = ACTIONS(4677), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHParencite] = ACTIONS(4677), - [anon_sym_BSLASHfootcite] = ACTIONS(4677), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4677), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4677), - [anon_sym_BSLASHtextcite] = ACTIONS(4677), - [anon_sym_BSLASHTextcite] = ACTIONS(4677), - [anon_sym_BSLASHsmartcite] = ACTIONS(4677), - [anon_sym_BSLASHSmartcite] = ACTIONS(4677), - [anon_sym_BSLASHsupercite] = ACTIONS(4677), - [anon_sym_BSLASHautocite] = ACTIONS(4677), - [anon_sym_BSLASHAutocite] = ACTIONS(4677), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHvolcite] = ACTIONS(4677), - [anon_sym_BSLASHVolcite] = ACTIONS(4677), - [anon_sym_BSLASHpvolcite] = ACTIONS(4677), - [anon_sym_BSLASHPvolcite] = ACTIONS(4677), - [anon_sym_BSLASHfvolcite] = ACTIONS(4677), - [anon_sym_BSLASHftvolcite] = ACTIONS(4677), - [anon_sym_BSLASHsvolcite] = ACTIONS(4677), - [anon_sym_BSLASHSvolcite] = ACTIONS(4677), - [anon_sym_BSLASHtvolcite] = ACTIONS(4677), - [anon_sym_BSLASHTvolcite] = ACTIONS(4677), - [anon_sym_BSLASHavolcite] = ACTIONS(4677), - [anon_sym_BSLASHAvolcite] = ACTIONS(4677), - [anon_sym_BSLASHnotecite] = ACTIONS(4677), - [anon_sym_BSLASHNotecite] = ACTIONS(4677), - [anon_sym_BSLASHpnotecite] = ACTIONS(4677), - [anon_sym_BSLASHPnotecite] = ACTIONS(4677), - [anon_sym_BSLASHfnotecite] = ACTIONS(4677), - [anon_sym_BSLASHlabel] = ACTIONS(4677), - [anon_sym_BSLASHref] = ACTIONS(4677), - [anon_sym_BSLASHeqref] = ACTIONS(4677), - [anon_sym_BSLASHvref] = ACTIONS(4677), - [anon_sym_BSLASHVref] = ACTIONS(4677), - [anon_sym_BSLASHautoref] = ACTIONS(4677), - [anon_sym_BSLASHpageref] = ACTIONS(4677), - [anon_sym_BSLASHcref] = ACTIONS(4677), - [anon_sym_BSLASHCref] = ACTIONS(4677), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnameCref] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHlabelcref] = ACTIONS(4677), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCrefrange] = ACTIONS(4677), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnewlabel] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4677), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4677), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4677), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdef] = ACTIONS(4677), - [anon_sym_BSLASHlet] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4677), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4677), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4677), - [anon_sym_BSLASHgls] = ACTIONS(4677), - [anon_sym_BSLASHGls] = ACTIONS(4677), - [anon_sym_BSLASHGLS] = ACTIONS(4677), - [anon_sym_BSLASHglspl] = ACTIONS(4677), - [anon_sym_BSLASHGlspl] = ACTIONS(4677), - [anon_sym_BSLASHGLSpl] = ACTIONS(4677), - [anon_sym_BSLASHglsdisp] = ACTIONS(4677), - [anon_sym_BSLASHglslink] = ACTIONS(4677), - [anon_sym_BSLASHglstext] = ACTIONS(4677), - [anon_sym_BSLASHGlstext] = ACTIONS(4677), - [anon_sym_BSLASHGLStext] = ACTIONS(4677), - [anon_sym_BSLASHglsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4677), - [anon_sym_BSLASHglsplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSplural] = ACTIONS(4677), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHglsname] = ACTIONS(4677), - [anon_sym_BSLASHGlsname] = ACTIONS(4677), - [anon_sym_BSLASHGLSname] = ACTIONS(4677), - [anon_sym_BSLASHglssymbol] = ACTIONS(4677), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4677), - [anon_sym_BSLASHglsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4677), - [anon_sym_BSLASHglsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4677), - [anon_sym_BSLASHglsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4677), - [anon_sym_BSLASHglsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4677), - [anon_sym_BSLASHglsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4677), - [anon_sym_BSLASHnewacronym] = ACTIONS(4677), - [anon_sym_BSLASHacrshort] = ACTIONS(4677), - [anon_sym_BSLASHAcrshort] = ACTIONS(4677), - [anon_sym_BSLASHACRshort] = ACTIONS(4677), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4677), - [anon_sym_BSLASHacrlong] = ACTIONS(4677), - [anon_sym_BSLASHAcrlong] = ACTIONS(4677), - [anon_sym_BSLASHACRlong] = ACTIONS(4677), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4677), - [anon_sym_BSLASHacrfull] = ACTIONS(4677), - [anon_sym_BSLASHAcrfull] = ACTIONS(4677), - [anon_sym_BSLASHACRfull] = ACTIONS(4677), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4677), - [anon_sym_BSLASHacs] = ACTIONS(4677), - [anon_sym_BSLASHAcs] = ACTIONS(4677), - [anon_sym_BSLASHacsp] = ACTIONS(4677), - [anon_sym_BSLASHAcsp] = ACTIONS(4677), - [anon_sym_BSLASHacl] = ACTIONS(4677), - [anon_sym_BSLASHAcl] = ACTIONS(4677), - [anon_sym_BSLASHaclp] = ACTIONS(4677), - [anon_sym_BSLASHAclp] = ACTIONS(4677), - [anon_sym_BSLASHacf] = ACTIONS(4677), - [anon_sym_BSLASHAcf] = ACTIONS(4677), - [anon_sym_BSLASHacfp] = ACTIONS(4677), - [anon_sym_BSLASHAcfp] = ACTIONS(4677), - [anon_sym_BSLASHac] = ACTIONS(4677), - [anon_sym_BSLASHAc] = ACTIONS(4677), - [anon_sym_BSLASHacp] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4677), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4677), - [anon_sym_BSLASHcolor] = ACTIONS(4677), - [anon_sym_BSLASHcolorbox] = ACTIONS(4677), - [anon_sym_BSLASHtextcolor] = ACTIONS(4677), - [anon_sym_BSLASHpagecolor] = ACTIONS(4677), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4677), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4677), - [anon_sym_BSLASHtext] = ACTIONS(4677), - [anon_sym_BSLASHintertext] = ACTIONS(4677), - [anon_sym_shortintertext] = ACTIONS(4677), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(268), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4585), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [294] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(280), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4587), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, [295] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(261), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4589), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, [296] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [297] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [298] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [299] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [300] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(4689), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [301] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4689), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [302] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4689), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [303] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4689), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [304] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4689), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_RBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [305] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(4693), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [306] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4693), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [307] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4693), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [308] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4693), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_RBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [309] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(4697), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [310] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4697), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [311] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4697), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4591), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4394), + [sym_word] = ACTIONS(4600), + [sym_placeholder] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4606), + [anon_sym_STAR] = ACTIONS(4606), + [anon_sym_SLASH] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4606), + [anon_sym__] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4606), + [anon_sym_GT] = ACTIONS(4606), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_PIPE] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_SQUOTE] = ACTIONS(4606), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4609), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4609), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4618), + [anon_sym_BSLASHtitle] = ACTIONS(4621), + [anon_sym_BSLASHauthor] = ACTIONS(4624), + [anon_sym_BSLASHusepackage] = ACTIONS(4627), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4627), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4630), + [anon_sym_BSLASHinclude] = ACTIONS(4633), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), + [anon_sym_BSLASHinput] = ACTIONS(4633), + [anon_sym_BSLASHsubfile] = ACTIONS(4633), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4636), + [anon_sym_BSLASHbibliography] = ACTIONS(4639), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4642), + [anon_sym_BSLASHincludesvg] = ACTIONS(4645), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4648), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4651), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4651), + [anon_sym_BSLASHimport] = ACTIONS(4654), + [anon_sym_BSLASHsubimport] = ACTIONS(4654), + [anon_sym_BSLASHinputfrom] = ACTIONS(4654), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4654), + [anon_sym_BSLASHincludefrom] = ACTIONS(4654), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4654), + [anon_sym_BSLASHcaption] = ACTIONS(4657), + [anon_sym_BSLASHcite] = ACTIONS(4660), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4663), + [anon_sym_BSLASHCite] = ACTIONS(4660), + [anon_sym_BSLASHnocite] = ACTIONS(4660), + [anon_sym_BSLASHcitet] = ACTIONS(4660), + [anon_sym_BSLASHcitep] = ACTIONS(4660), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4663), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4663), + [anon_sym_BSLASHciteauthor] = ACTIONS(4660), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4663), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4660), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4663), + [anon_sym_BSLASHcitetitle] = ACTIONS(4660), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4663), + [anon_sym_BSLASHciteyear] = ACTIONS(4660), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4663), + [anon_sym_BSLASHcitedate] = ACTIONS(4660), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4663), + [anon_sym_BSLASHciteurl] = ACTIONS(4660), + [anon_sym_BSLASHfullcite] = ACTIONS(4660), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4660), + [anon_sym_BSLASHcitealt] = ACTIONS(4660), + [anon_sym_BSLASHcitealp] = ACTIONS(4660), + [anon_sym_BSLASHcitetext] = ACTIONS(4660), + [anon_sym_BSLASHparencite] = ACTIONS(4660), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4663), + [anon_sym_BSLASHParencite] = ACTIONS(4660), + [anon_sym_BSLASHfootcite] = ACTIONS(4660), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4660), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4660), + [anon_sym_BSLASHtextcite] = ACTIONS(4660), + [anon_sym_BSLASHTextcite] = ACTIONS(4660), + [anon_sym_BSLASHsmartcite] = ACTIONS(4660), + [anon_sym_BSLASHSmartcite] = ACTIONS(4660), + [anon_sym_BSLASHsupercite] = ACTIONS(4660), + [anon_sym_BSLASHautocite] = ACTIONS(4660), + [anon_sym_BSLASHAutocite] = ACTIONS(4660), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4663), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4663), + [anon_sym_BSLASHvolcite] = ACTIONS(4660), + [anon_sym_BSLASHVolcite] = ACTIONS(4660), + [anon_sym_BSLASHpvolcite] = ACTIONS(4660), + [anon_sym_BSLASHPvolcite] = ACTIONS(4660), + [anon_sym_BSLASHfvolcite] = ACTIONS(4660), + [anon_sym_BSLASHftvolcite] = ACTIONS(4660), + [anon_sym_BSLASHsvolcite] = ACTIONS(4660), + [anon_sym_BSLASHSvolcite] = ACTIONS(4660), + [anon_sym_BSLASHtvolcite] = ACTIONS(4660), + [anon_sym_BSLASHTvolcite] = ACTIONS(4660), + [anon_sym_BSLASHavolcite] = ACTIONS(4660), + [anon_sym_BSLASHAvolcite] = ACTIONS(4660), + [anon_sym_BSLASHnotecite] = ACTIONS(4660), + [anon_sym_BSLASHNotecite] = ACTIONS(4660), + [anon_sym_BSLASHpnotecite] = ACTIONS(4660), + [anon_sym_BSLASHPnotecite] = ACTIONS(4660), + [anon_sym_BSLASHfnotecite] = ACTIONS(4660), + [anon_sym_BSLASHlabel] = ACTIONS(4666), + [anon_sym_BSLASHref] = ACTIONS(4669), + [anon_sym_BSLASHeqref] = ACTIONS(4669), + [anon_sym_BSLASHvref] = ACTIONS(4669), + [anon_sym_BSLASHVref] = ACTIONS(4669), + [anon_sym_BSLASHautoref] = ACTIONS(4669), + [anon_sym_BSLASHpageref] = ACTIONS(4669), + [anon_sym_BSLASHcref] = ACTIONS(4669), + [anon_sym_BSLASHCref] = ACTIONS(4669), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4672), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4672), + [anon_sym_BSLASHnamecref] = ACTIONS(4669), + [anon_sym_BSLASHnameCref] = ACTIONS(4669), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4669), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4669), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4669), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4669), + [anon_sym_BSLASHlabelcref] = ACTIONS(4669), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4669), + [anon_sym_BSLASHcrefrange] = ACTIONS(4675), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4678), + [anon_sym_BSLASHCrefrange] = ACTIONS(4675), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4678), + [anon_sym_BSLASHnewlabel] = ACTIONS(4681), + [anon_sym_BSLASHnewcommand] = ACTIONS(4684), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4687), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4684), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4687), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4684), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4687), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4684), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4687), + [anon_sym_BSLASHdef] = ACTIONS(4690), + [anon_sym_BSLASHlet] = ACTIONS(4693), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4696), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4696), [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [312] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(4701), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4703), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [313] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4701), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4703), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_RBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [314] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(4705), - [sym_command_name] = ACTIONS(4707), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym_RPAREN] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_RBRACK] = ACTIONS(4705), - [anon_sym_COMMA] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_BSLASHpart] = ACTIONS(4707), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddpart] = ACTIONS(4707), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHchapter] = ACTIONS(4707), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddchap] = ACTIONS(4707), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHparagraph] = ACTIONS(4707), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4707), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_RBRACE] = ACTIONS(4705), - [sym_word] = ACTIONS(4707), - [sym_placeholder] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_CARET] = ACTIONS(4707), - [anon_sym__] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4707), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4705), - [anon_sym_BSLASHbegin] = ACTIONS(4707), - [anon_sym_BSLASHusepackage] = ACTIONS(4707), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4707), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4707), - [anon_sym_BSLASHinclude] = ACTIONS(4707), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4707), - [anon_sym_BSLASHinput] = ACTIONS(4707), - [anon_sym_BSLASHsubfile] = ACTIONS(4707), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4707), - [anon_sym_BSLASHbibliography] = ACTIONS(4707), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4707), - [anon_sym_BSLASHincludesvg] = ACTIONS(4707), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4707), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4707), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4707), - [anon_sym_BSLASHimport] = ACTIONS(4707), - [anon_sym_BSLASHsubimport] = ACTIONS(4707), - [anon_sym_BSLASHinputfrom] = ACTIONS(4707), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4707), - [anon_sym_BSLASHincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHcaption] = ACTIONS(4707), - [anon_sym_BSLASHcite] = ACTIONS(4707), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCite] = ACTIONS(4707), - [anon_sym_BSLASHnocite] = ACTIONS(4707), - [anon_sym_BSLASHcitet] = ACTIONS(4707), - [anon_sym_BSLASHcitep] = ACTIONS(4707), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteauthor] = ACTIONS(4707), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4707), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitetitle] = ACTIONS(4707), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteyear] = ACTIONS(4707), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitedate] = ACTIONS(4707), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteurl] = ACTIONS(4707), - [anon_sym_BSLASHfullcite] = ACTIONS(4707), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4707), - [anon_sym_BSLASHcitealt] = ACTIONS(4707), - [anon_sym_BSLASHcitealp] = ACTIONS(4707), - [anon_sym_BSLASHcitetext] = ACTIONS(4707), - [anon_sym_BSLASHparencite] = ACTIONS(4707), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHParencite] = ACTIONS(4707), - [anon_sym_BSLASHfootcite] = ACTIONS(4707), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4707), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4707), - [anon_sym_BSLASHtextcite] = ACTIONS(4707), - [anon_sym_BSLASHTextcite] = ACTIONS(4707), - [anon_sym_BSLASHsmartcite] = ACTIONS(4707), - [anon_sym_BSLASHSmartcite] = ACTIONS(4707), - [anon_sym_BSLASHsupercite] = ACTIONS(4707), - [anon_sym_BSLASHautocite] = ACTIONS(4707), - [anon_sym_BSLASHAutocite] = ACTIONS(4707), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHvolcite] = ACTIONS(4707), - [anon_sym_BSLASHVolcite] = ACTIONS(4707), - [anon_sym_BSLASHpvolcite] = ACTIONS(4707), - [anon_sym_BSLASHPvolcite] = ACTIONS(4707), - [anon_sym_BSLASHfvolcite] = ACTIONS(4707), - [anon_sym_BSLASHftvolcite] = ACTIONS(4707), - [anon_sym_BSLASHsvolcite] = ACTIONS(4707), - [anon_sym_BSLASHSvolcite] = ACTIONS(4707), - [anon_sym_BSLASHtvolcite] = ACTIONS(4707), - [anon_sym_BSLASHTvolcite] = ACTIONS(4707), - [anon_sym_BSLASHavolcite] = ACTIONS(4707), - [anon_sym_BSLASHAvolcite] = ACTIONS(4707), - [anon_sym_BSLASHnotecite] = ACTIONS(4707), - [anon_sym_BSLASHNotecite] = ACTIONS(4707), - [anon_sym_BSLASHpnotecite] = ACTIONS(4707), - [anon_sym_BSLASHPnotecite] = ACTIONS(4707), - [anon_sym_BSLASHfnotecite] = ACTIONS(4707), - [anon_sym_BSLASHlabel] = ACTIONS(4707), - [anon_sym_BSLASHref] = ACTIONS(4707), - [anon_sym_BSLASHeqref] = ACTIONS(4707), - [anon_sym_BSLASHvref] = ACTIONS(4707), - [anon_sym_BSLASHVref] = ACTIONS(4707), - [anon_sym_BSLASHautoref] = ACTIONS(4707), - [anon_sym_BSLASHpageref] = ACTIONS(4707), - [anon_sym_BSLASHcref] = ACTIONS(4707), - [anon_sym_BSLASHCref] = ACTIONS(4707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnameCref] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHlabelcref] = ACTIONS(4707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCrefrange] = ACTIONS(4707), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnewlabel] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdef] = ACTIONS(4707), - [anon_sym_BSLASHlet] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4707), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4707), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), - [anon_sym_BSLASHgls] = ACTIONS(4707), - [anon_sym_BSLASHGls] = ACTIONS(4707), - [anon_sym_BSLASHGLS] = ACTIONS(4707), - [anon_sym_BSLASHglspl] = ACTIONS(4707), - [anon_sym_BSLASHGlspl] = ACTIONS(4707), - [anon_sym_BSLASHGLSpl] = ACTIONS(4707), - [anon_sym_BSLASHglsdisp] = ACTIONS(4707), - [anon_sym_BSLASHglslink] = ACTIONS(4707), - [anon_sym_BSLASHglstext] = ACTIONS(4707), - [anon_sym_BSLASHGlstext] = ACTIONS(4707), - [anon_sym_BSLASHGLStext] = ACTIONS(4707), - [anon_sym_BSLASHglsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4707), - [anon_sym_BSLASHglsplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSplural] = ACTIONS(4707), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHglsname] = ACTIONS(4707), - [anon_sym_BSLASHGlsname] = ACTIONS(4707), - [anon_sym_BSLASHGLSname] = ACTIONS(4707), - [anon_sym_BSLASHglssymbol] = ACTIONS(4707), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4707), - [anon_sym_BSLASHglsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4707), - [anon_sym_BSLASHglsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4707), - [anon_sym_BSLASHglsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4707), - [anon_sym_BSLASHglsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4707), - [anon_sym_BSLASHglsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4707), - [anon_sym_BSLASHnewacronym] = ACTIONS(4707), - [anon_sym_BSLASHacrshort] = ACTIONS(4707), - [anon_sym_BSLASHAcrshort] = ACTIONS(4707), - [anon_sym_BSLASHACRshort] = ACTIONS(4707), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4707), - [anon_sym_BSLASHacrlong] = ACTIONS(4707), - [anon_sym_BSLASHAcrlong] = ACTIONS(4707), - [anon_sym_BSLASHACRlong] = ACTIONS(4707), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4707), - [anon_sym_BSLASHacrfull] = ACTIONS(4707), - [anon_sym_BSLASHAcrfull] = ACTIONS(4707), - [anon_sym_BSLASHACRfull] = ACTIONS(4707), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4707), - [anon_sym_BSLASHacs] = ACTIONS(4707), - [anon_sym_BSLASHAcs] = ACTIONS(4707), - [anon_sym_BSLASHacsp] = ACTIONS(4707), - [anon_sym_BSLASHAcsp] = ACTIONS(4707), - [anon_sym_BSLASHacl] = ACTIONS(4707), - [anon_sym_BSLASHAcl] = ACTIONS(4707), - [anon_sym_BSLASHaclp] = ACTIONS(4707), - [anon_sym_BSLASHAclp] = ACTIONS(4707), - [anon_sym_BSLASHacf] = ACTIONS(4707), - [anon_sym_BSLASHAcf] = ACTIONS(4707), - [anon_sym_BSLASHacfp] = ACTIONS(4707), - [anon_sym_BSLASHAcfp] = ACTIONS(4707), - [anon_sym_BSLASHac] = ACTIONS(4707), - [anon_sym_BSLASHAc] = ACTIONS(4707), - [anon_sym_BSLASHacp] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4707), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4707), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4707), - [anon_sym_BSLASHcolor] = ACTIONS(4707), - [anon_sym_BSLASHcolorbox] = ACTIONS(4707), - [anon_sym_BSLASHtextcolor] = ACTIONS(4707), - [anon_sym_BSLASHpagecolor] = ACTIONS(4707), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4707), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4707), - [anon_sym_BSLASHtext] = ACTIONS(4707), - [anon_sym_BSLASHintertext] = ACTIONS(4707), - [anon_sym_shortintertext] = ACTIONS(4707), - }, - [315] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(4709), - [sym_command_name] = ACTIONS(4711), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4709), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_BSLASHpart] = ACTIONS(4711), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddpart] = ACTIONS(4711), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHchapter] = ACTIONS(4711), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddchap] = ACTIONS(4711), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsection] = ACTIONS(4713), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4716), - [anon_sym_BSLASHaddsec] = ACTIONS(4713), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4716), - [anon_sym_BSLASHsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHparagraph] = ACTIONS(4711), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4711), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHitem] = ACTIONS(4711), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_RBRACE] = ACTIONS(4709), - [sym_word] = ACTIONS(4711), - [sym_placeholder] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_CARET] = ACTIONS(4711), - [anon_sym__] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4709), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4709), - [anon_sym_BSLASHbegin] = ACTIONS(4711), - [anon_sym_BSLASHusepackage] = ACTIONS(4711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4711), - [anon_sym_BSLASHinclude] = ACTIONS(4711), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4711), - [anon_sym_BSLASHinput] = ACTIONS(4711), - [anon_sym_BSLASHsubfile] = ACTIONS(4711), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4711), - [anon_sym_BSLASHbibliography] = ACTIONS(4711), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4711), - [anon_sym_BSLASHincludesvg] = ACTIONS(4711), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4711), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4711), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4711), - [anon_sym_BSLASHimport] = ACTIONS(4711), - [anon_sym_BSLASHsubimport] = ACTIONS(4711), - [anon_sym_BSLASHinputfrom] = ACTIONS(4711), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4711), - [anon_sym_BSLASHincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHcaption] = ACTIONS(4711), - [anon_sym_BSLASHcite] = ACTIONS(4711), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCite] = ACTIONS(4711), - [anon_sym_BSLASHnocite] = ACTIONS(4711), - [anon_sym_BSLASHcitet] = ACTIONS(4711), - [anon_sym_BSLASHcitep] = ACTIONS(4711), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteauthor] = ACTIONS(4711), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4711), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitetitle] = ACTIONS(4711), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteyear] = ACTIONS(4711), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitedate] = ACTIONS(4711), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteurl] = ACTIONS(4711), - [anon_sym_BSLASHfullcite] = ACTIONS(4711), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4711), - [anon_sym_BSLASHcitealt] = ACTIONS(4711), - [anon_sym_BSLASHcitealp] = ACTIONS(4711), - [anon_sym_BSLASHcitetext] = ACTIONS(4711), - [anon_sym_BSLASHparencite] = ACTIONS(4711), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHParencite] = ACTIONS(4711), - [anon_sym_BSLASHfootcite] = ACTIONS(4711), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4711), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4711), - [anon_sym_BSLASHtextcite] = ACTIONS(4711), - [anon_sym_BSLASHTextcite] = ACTIONS(4711), - [anon_sym_BSLASHsmartcite] = ACTIONS(4711), - [anon_sym_BSLASHSmartcite] = ACTIONS(4711), - [anon_sym_BSLASHsupercite] = ACTIONS(4711), - [anon_sym_BSLASHautocite] = ACTIONS(4711), - [anon_sym_BSLASHAutocite] = ACTIONS(4711), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHvolcite] = ACTIONS(4711), - [anon_sym_BSLASHVolcite] = ACTIONS(4711), - [anon_sym_BSLASHpvolcite] = ACTIONS(4711), - [anon_sym_BSLASHPvolcite] = ACTIONS(4711), - [anon_sym_BSLASHfvolcite] = ACTIONS(4711), - [anon_sym_BSLASHftvolcite] = ACTIONS(4711), - [anon_sym_BSLASHsvolcite] = ACTIONS(4711), - [anon_sym_BSLASHSvolcite] = ACTIONS(4711), - [anon_sym_BSLASHtvolcite] = ACTIONS(4711), - [anon_sym_BSLASHTvolcite] = ACTIONS(4711), - [anon_sym_BSLASHavolcite] = ACTIONS(4711), - [anon_sym_BSLASHAvolcite] = ACTIONS(4711), - [anon_sym_BSLASHnotecite] = ACTIONS(4711), - [anon_sym_BSLASHNotecite] = ACTIONS(4711), - [anon_sym_BSLASHpnotecite] = ACTIONS(4711), - [anon_sym_BSLASHPnotecite] = ACTIONS(4711), - [anon_sym_BSLASHfnotecite] = ACTIONS(4711), - [anon_sym_BSLASHlabel] = ACTIONS(4711), - [anon_sym_BSLASHref] = ACTIONS(4711), - [anon_sym_BSLASHeqref] = ACTIONS(4711), - [anon_sym_BSLASHvref] = ACTIONS(4711), - [anon_sym_BSLASHVref] = ACTIONS(4711), - [anon_sym_BSLASHautoref] = ACTIONS(4711), - [anon_sym_BSLASHpageref] = ACTIONS(4711), - [anon_sym_BSLASHcref] = ACTIONS(4711), - [anon_sym_BSLASHCref] = ACTIONS(4711), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnameCref] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHlabelcref] = ACTIONS(4711), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCrefrange] = ACTIONS(4711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnewlabel] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4711), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4711), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4711), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdef] = ACTIONS(4711), - [anon_sym_BSLASHlet] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4711), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4711), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4711), - [anon_sym_BSLASHgls] = ACTIONS(4711), - [anon_sym_BSLASHGls] = ACTIONS(4711), - [anon_sym_BSLASHGLS] = ACTIONS(4711), - [anon_sym_BSLASHglspl] = ACTIONS(4711), - [anon_sym_BSLASHGlspl] = ACTIONS(4711), - [anon_sym_BSLASHGLSpl] = ACTIONS(4711), - [anon_sym_BSLASHglsdisp] = ACTIONS(4711), - [anon_sym_BSLASHglslink] = ACTIONS(4711), - [anon_sym_BSLASHglstext] = ACTIONS(4711), - [anon_sym_BSLASHGlstext] = ACTIONS(4711), - [anon_sym_BSLASHGLStext] = ACTIONS(4711), - [anon_sym_BSLASHglsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4711), - [anon_sym_BSLASHglsplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSplural] = ACTIONS(4711), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHglsname] = ACTIONS(4711), - [anon_sym_BSLASHGlsname] = ACTIONS(4711), - [anon_sym_BSLASHGLSname] = ACTIONS(4711), - [anon_sym_BSLASHglssymbol] = ACTIONS(4711), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4711), - [anon_sym_BSLASHglsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4711), - [anon_sym_BSLASHglsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4711), - [anon_sym_BSLASHglsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4711), - [anon_sym_BSLASHglsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4711), - [anon_sym_BSLASHglsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4711), - [anon_sym_BSLASHnewacronym] = ACTIONS(4711), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4702), + [anon_sym_BSLASHgls] = ACTIONS(4705), + [anon_sym_BSLASHGls] = ACTIONS(4705), + [anon_sym_BSLASHGLS] = ACTIONS(4705), + [anon_sym_BSLASHglspl] = ACTIONS(4705), + [anon_sym_BSLASHGlspl] = ACTIONS(4705), + [anon_sym_BSLASHGLSpl] = ACTIONS(4705), + [anon_sym_BSLASHglsdisp] = ACTIONS(4705), + [anon_sym_BSLASHglslink] = ACTIONS(4705), + [anon_sym_BSLASHglstext] = ACTIONS(4705), + [anon_sym_BSLASHGlstext] = ACTIONS(4705), + [anon_sym_BSLASHGLStext] = ACTIONS(4705), + [anon_sym_BSLASHglsfirst] = ACTIONS(4705), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4705), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4705), + [anon_sym_BSLASHglsplural] = ACTIONS(4705), + [anon_sym_BSLASHGlsplural] = ACTIONS(4705), + [anon_sym_BSLASHGLSplural] = ACTIONS(4705), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4705), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4705), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4705), + [anon_sym_BSLASHglsname] = ACTIONS(4705), + [anon_sym_BSLASHGlsname] = ACTIONS(4705), + [anon_sym_BSLASHGLSname] = ACTIONS(4705), + [anon_sym_BSLASHglssymbol] = ACTIONS(4705), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4705), + [anon_sym_BSLASHglsdesc] = ACTIONS(4705), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4705), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4705), + [anon_sym_BSLASHglsuseri] = ACTIONS(4705), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4705), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4705), + [anon_sym_BSLASHglsuserii] = ACTIONS(4705), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4705), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4705), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4705), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4705), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4705), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4705), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4705), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4705), + [anon_sym_BSLASHglsuserv] = ACTIONS(4705), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4705), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4705), + [anon_sym_BSLASHglsuservi] = ACTIONS(4705), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4705), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4705), + [anon_sym_BSLASHnewacronym] = ACTIONS(4708), [anon_sym_BSLASHacrshort] = ACTIONS(4711), [anon_sym_BSLASHAcrshort] = ACTIONS(4711), [anon_sym_BSLASHACRshort] = ACTIONS(4711), @@ -122689,38593 +120505,13159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4711), [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4711), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4711), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4711), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4711), - [anon_sym_BSLASHcolor] = ACTIONS(4711), - [anon_sym_BSLASHcolorbox] = ACTIONS(4711), - [anon_sym_BSLASHtextcolor] = ACTIONS(4711), - [anon_sym_BSLASHpagecolor] = ACTIONS(4711), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4711), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4711), - [anon_sym_BSLASHtext] = ACTIONS(4711), - [anon_sym_BSLASHintertext] = ACTIONS(4711), - [anon_sym_shortintertext] = ACTIONS(4711), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4714), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4717), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4714), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4717), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4720), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4723), + [anon_sym_BSLASHcolor] = ACTIONS(4726), + [anon_sym_BSLASHcolorbox] = ACTIONS(4726), + [anon_sym_BSLASHtextcolor] = ACTIONS(4726), + [anon_sym_BSLASHpagecolor] = ACTIONS(4726), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4729), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4729), + [anon_sym_BSLASHtext] = ACTIONS(4732), + [anon_sym_BSLASHintertext] = ACTIONS(4732), + [anon_sym_shortintertext] = ACTIONS(4732), }, - [316] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(316), - [aux_sym__section_repeat2] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4719), - [sym_command_name] = ACTIONS(4721), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_BSLASHpart] = ACTIONS(4721), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddpart] = ACTIONS(4721), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHchapter] = ACTIONS(4723), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4726), - [anon_sym_BSLASHaddchap] = ACTIONS(4723), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4726), - [anon_sym_BSLASHsection] = ACTIONS(4721), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddsec] = ACTIONS(4721), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHparagraph] = ACTIONS(4721), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4721), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHitem] = ACTIONS(4721), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_RBRACE] = ACTIONS(4719), - [sym_word] = ACTIONS(4721), - [sym_placeholder] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym__] = ACTIONS(4721), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4719), - [anon_sym_BSLASHbegin] = ACTIONS(4721), - [anon_sym_BSLASHusepackage] = ACTIONS(4721), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4721), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4721), - [anon_sym_BSLASHinclude] = ACTIONS(4721), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4721), - [anon_sym_BSLASHinput] = ACTIONS(4721), - [anon_sym_BSLASHsubfile] = ACTIONS(4721), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4721), - [anon_sym_BSLASHbibliography] = ACTIONS(4721), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4721), - [anon_sym_BSLASHincludesvg] = ACTIONS(4721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4721), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4721), - [anon_sym_BSLASHimport] = ACTIONS(4721), - [anon_sym_BSLASHsubimport] = ACTIONS(4721), - [anon_sym_BSLASHinputfrom] = ACTIONS(4721), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4721), - [anon_sym_BSLASHincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHcaption] = ACTIONS(4721), - [anon_sym_BSLASHcite] = ACTIONS(4721), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCite] = ACTIONS(4721), - [anon_sym_BSLASHnocite] = ACTIONS(4721), - [anon_sym_BSLASHcitet] = ACTIONS(4721), - [anon_sym_BSLASHcitep] = ACTIONS(4721), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteauthor] = ACTIONS(4721), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4721), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitetitle] = ACTIONS(4721), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteyear] = ACTIONS(4721), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitedate] = ACTIONS(4721), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteurl] = ACTIONS(4721), - [anon_sym_BSLASHfullcite] = ACTIONS(4721), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4721), - [anon_sym_BSLASHcitealt] = ACTIONS(4721), - [anon_sym_BSLASHcitealp] = ACTIONS(4721), - [anon_sym_BSLASHcitetext] = ACTIONS(4721), - [anon_sym_BSLASHparencite] = ACTIONS(4721), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHParencite] = ACTIONS(4721), - [anon_sym_BSLASHfootcite] = ACTIONS(4721), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4721), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4721), - [anon_sym_BSLASHtextcite] = ACTIONS(4721), - [anon_sym_BSLASHTextcite] = ACTIONS(4721), - [anon_sym_BSLASHsmartcite] = ACTIONS(4721), - [anon_sym_BSLASHSmartcite] = ACTIONS(4721), - [anon_sym_BSLASHsupercite] = ACTIONS(4721), - [anon_sym_BSLASHautocite] = ACTIONS(4721), - [anon_sym_BSLASHAutocite] = ACTIONS(4721), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHvolcite] = ACTIONS(4721), - [anon_sym_BSLASHVolcite] = ACTIONS(4721), - [anon_sym_BSLASHpvolcite] = ACTIONS(4721), - [anon_sym_BSLASHPvolcite] = ACTIONS(4721), - [anon_sym_BSLASHfvolcite] = ACTIONS(4721), - [anon_sym_BSLASHftvolcite] = ACTIONS(4721), - [anon_sym_BSLASHsvolcite] = ACTIONS(4721), - [anon_sym_BSLASHSvolcite] = ACTIONS(4721), - [anon_sym_BSLASHtvolcite] = ACTIONS(4721), - [anon_sym_BSLASHTvolcite] = ACTIONS(4721), - [anon_sym_BSLASHavolcite] = ACTIONS(4721), - [anon_sym_BSLASHAvolcite] = ACTIONS(4721), - [anon_sym_BSLASHnotecite] = ACTIONS(4721), - [anon_sym_BSLASHNotecite] = ACTIONS(4721), - [anon_sym_BSLASHpnotecite] = ACTIONS(4721), - [anon_sym_BSLASHPnotecite] = ACTIONS(4721), - [anon_sym_BSLASHfnotecite] = ACTIONS(4721), - [anon_sym_BSLASHlabel] = ACTIONS(4721), - [anon_sym_BSLASHref] = ACTIONS(4721), - [anon_sym_BSLASHeqref] = ACTIONS(4721), - [anon_sym_BSLASHvref] = ACTIONS(4721), - [anon_sym_BSLASHVref] = ACTIONS(4721), - [anon_sym_BSLASHautoref] = ACTIONS(4721), - [anon_sym_BSLASHpageref] = ACTIONS(4721), - [anon_sym_BSLASHcref] = ACTIONS(4721), - [anon_sym_BSLASHCref] = ACTIONS(4721), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnameCref] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHlabelcref] = ACTIONS(4721), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCrefrange] = ACTIONS(4721), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnewlabel] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4721), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4721), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4721), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdef] = ACTIONS(4721), - [anon_sym_BSLASHlet] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4721), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4721), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4721), - [anon_sym_BSLASHgls] = ACTIONS(4721), - [anon_sym_BSLASHGls] = ACTIONS(4721), - [anon_sym_BSLASHGLS] = ACTIONS(4721), - [anon_sym_BSLASHglspl] = ACTIONS(4721), - [anon_sym_BSLASHGlspl] = ACTIONS(4721), - [anon_sym_BSLASHGLSpl] = ACTIONS(4721), - [anon_sym_BSLASHglsdisp] = ACTIONS(4721), - [anon_sym_BSLASHglslink] = ACTIONS(4721), - [anon_sym_BSLASHglstext] = ACTIONS(4721), - [anon_sym_BSLASHGlstext] = ACTIONS(4721), - [anon_sym_BSLASHGLStext] = ACTIONS(4721), - [anon_sym_BSLASHglsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4721), - [anon_sym_BSLASHglsplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSplural] = ACTIONS(4721), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHglsname] = ACTIONS(4721), - [anon_sym_BSLASHGlsname] = ACTIONS(4721), - [anon_sym_BSLASHGLSname] = ACTIONS(4721), - [anon_sym_BSLASHglssymbol] = ACTIONS(4721), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4721), - [anon_sym_BSLASHglsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4721), - [anon_sym_BSLASHglsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4721), - [anon_sym_BSLASHglsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4721), - [anon_sym_BSLASHglsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4721), - [anon_sym_BSLASHglsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4721), - [anon_sym_BSLASHnewacronym] = ACTIONS(4721), - [anon_sym_BSLASHacrshort] = ACTIONS(4721), - [anon_sym_BSLASHAcrshort] = ACTIONS(4721), - [anon_sym_BSLASHACRshort] = ACTIONS(4721), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4721), - [anon_sym_BSLASHacrlong] = ACTIONS(4721), - [anon_sym_BSLASHAcrlong] = ACTIONS(4721), - [anon_sym_BSLASHACRlong] = ACTIONS(4721), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4721), - [anon_sym_BSLASHacrfull] = ACTIONS(4721), - [anon_sym_BSLASHAcrfull] = ACTIONS(4721), - [anon_sym_BSLASHACRfull] = ACTIONS(4721), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4721), - [anon_sym_BSLASHacs] = ACTIONS(4721), - [anon_sym_BSLASHAcs] = ACTIONS(4721), - [anon_sym_BSLASHacsp] = ACTIONS(4721), - [anon_sym_BSLASHAcsp] = ACTIONS(4721), - [anon_sym_BSLASHacl] = ACTIONS(4721), - [anon_sym_BSLASHAcl] = ACTIONS(4721), - [anon_sym_BSLASHaclp] = ACTIONS(4721), - [anon_sym_BSLASHAclp] = ACTIONS(4721), - [anon_sym_BSLASHacf] = ACTIONS(4721), - [anon_sym_BSLASHAcf] = ACTIONS(4721), - [anon_sym_BSLASHacfp] = ACTIONS(4721), - [anon_sym_BSLASHAcfp] = ACTIONS(4721), - [anon_sym_BSLASHac] = ACTIONS(4721), - [anon_sym_BSLASHAc] = ACTIONS(4721), - [anon_sym_BSLASHacp] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4721), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4721), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4721), - [anon_sym_BSLASHcolor] = ACTIONS(4721), - [anon_sym_BSLASHcolorbox] = ACTIONS(4721), - [anon_sym_BSLASHtextcolor] = ACTIONS(4721), - [anon_sym_BSLASHpagecolor] = ACTIONS(4721), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4721), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4721), - [anon_sym_BSLASHtext] = ACTIONS(4721), - [anon_sym_BSLASHintertext] = ACTIONS(4721), - [anon_sym_shortintertext] = ACTIONS(4721), + [297] = { + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4735), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), }, - [317] = { - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(317), - [aux_sym__section_repeat1] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(4729), - [sym_command_name] = ACTIONS(4731), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_COMMA] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_BSLASHpart] = ACTIONS(4733), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4736), - [anon_sym_BSLASHaddpart] = ACTIONS(4733), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4736), - [anon_sym_BSLASHchapter] = ACTIONS(4731), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddchap] = ACTIONS(4731), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsection] = ACTIONS(4731), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddsec] = ACTIONS(4731), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHparagraph] = ACTIONS(4731), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHitem] = ACTIONS(4731), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_RBRACE] = ACTIONS(4729), - [sym_word] = ACTIONS(4731), - [sym_placeholder] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_CARET] = ACTIONS(4731), - [anon_sym__] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4729), - [anon_sym_BSLASHbegin] = ACTIONS(4731), - [anon_sym_BSLASHusepackage] = ACTIONS(4731), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4731), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4731), - [anon_sym_BSLASHinclude] = ACTIONS(4731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4731), - [anon_sym_BSLASHinput] = ACTIONS(4731), - [anon_sym_BSLASHsubfile] = ACTIONS(4731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4731), - [anon_sym_BSLASHbibliography] = ACTIONS(4731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4731), - [anon_sym_BSLASHincludesvg] = ACTIONS(4731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4731), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4731), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4731), - [anon_sym_BSLASHimport] = ACTIONS(4731), - [anon_sym_BSLASHsubimport] = ACTIONS(4731), - [anon_sym_BSLASHinputfrom] = ACTIONS(4731), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4731), - [anon_sym_BSLASHincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHcaption] = ACTIONS(4731), - [anon_sym_BSLASHcite] = ACTIONS(4731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCite] = ACTIONS(4731), - [anon_sym_BSLASHnocite] = ACTIONS(4731), - [anon_sym_BSLASHcitet] = ACTIONS(4731), - [anon_sym_BSLASHcitep] = ACTIONS(4731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteauthor] = ACTIONS(4731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitetitle] = ACTIONS(4731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteyear] = ACTIONS(4731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitedate] = ACTIONS(4731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteurl] = ACTIONS(4731), - [anon_sym_BSLASHfullcite] = ACTIONS(4731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4731), - [anon_sym_BSLASHcitealt] = ACTIONS(4731), - [anon_sym_BSLASHcitealp] = ACTIONS(4731), - [anon_sym_BSLASHcitetext] = ACTIONS(4731), - [anon_sym_BSLASHparencite] = ACTIONS(4731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHParencite] = ACTIONS(4731), - [anon_sym_BSLASHfootcite] = ACTIONS(4731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4731), - [anon_sym_BSLASHtextcite] = ACTIONS(4731), - [anon_sym_BSLASHTextcite] = ACTIONS(4731), - [anon_sym_BSLASHsmartcite] = ACTIONS(4731), - [anon_sym_BSLASHSmartcite] = ACTIONS(4731), - [anon_sym_BSLASHsupercite] = ACTIONS(4731), - [anon_sym_BSLASHautocite] = ACTIONS(4731), - [anon_sym_BSLASHAutocite] = ACTIONS(4731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHvolcite] = ACTIONS(4731), - [anon_sym_BSLASHVolcite] = ACTIONS(4731), - [anon_sym_BSLASHpvolcite] = ACTIONS(4731), - [anon_sym_BSLASHPvolcite] = ACTIONS(4731), - [anon_sym_BSLASHfvolcite] = ACTIONS(4731), - [anon_sym_BSLASHftvolcite] = ACTIONS(4731), - [anon_sym_BSLASHsvolcite] = ACTIONS(4731), - [anon_sym_BSLASHSvolcite] = ACTIONS(4731), - [anon_sym_BSLASHtvolcite] = ACTIONS(4731), - [anon_sym_BSLASHTvolcite] = ACTIONS(4731), - [anon_sym_BSLASHavolcite] = ACTIONS(4731), - [anon_sym_BSLASHAvolcite] = ACTIONS(4731), - [anon_sym_BSLASHnotecite] = ACTIONS(4731), - [anon_sym_BSLASHNotecite] = ACTIONS(4731), - [anon_sym_BSLASHpnotecite] = ACTIONS(4731), - [anon_sym_BSLASHPnotecite] = ACTIONS(4731), - [anon_sym_BSLASHfnotecite] = ACTIONS(4731), - [anon_sym_BSLASHlabel] = ACTIONS(4731), - [anon_sym_BSLASHref] = ACTIONS(4731), - [anon_sym_BSLASHeqref] = ACTIONS(4731), - [anon_sym_BSLASHvref] = ACTIONS(4731), - [anon_sym_BSLASHVref] = ACTIONS(4731), - [anon_sym_BSLASHautoref] = ACTIONS(4731), - [anon_sym_BSLASHpageref] = ACTIONS(4731), - [anon_sym_BSLASHcref] = ACTIONS(4731), - [anon_sym_BSLASHCref] = ACTIONS(4731), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnameCref] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHlabelcref] = ACTIONS(4731), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCrefrange] = ACTIONS(4731), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnewlabel] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4731), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4731), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4731), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdef] = ACTIONS(4731), - [anon_sym_BSLASHlet] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4731), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4731), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4731), - [anon_sym_BSLASHgls] = ACTIONS(4731), - [anon_sym_BSLASHGls] = ACTIONS(4731), - [anon_sym_BSLASHGLS] = ACTIONS(4731), - [anon_sym_BSLASHglspl] = ACTIONS(4731), - [anon_sym_BSLASHGlspl] = ACTIONS(4731), - [anon_sym_BSLASHGLSpl] = ACTIONS(4731), - [anon_sym_BSLASHglsdisp] = ACTIONS(4731), - [anon_sym_BSLASHglslink] = ACTIONS(4731), - [anon_sym_BSLASHglstext] = ACTIONS(4731), - [anon_sym_BSLASHGlstext] = ACTIONS(4731), - [anon_sym_BSLASHGLStext] = ACTIONS(4731), - [anon_sym_BSLASHglsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4731), - [anon_sym_BSLASHglsplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSplural] = ACTIONS(4731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHglsname] = ACTIONS(4731), - [anon_sym_BSLASHGlsname] = ACTIONS(4731), - [anon_sym_BSLASHGLSname] = ACTIONS(4731), - [anon_sym_BSLASHglssymbol] = ACTIONS(4731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4731), - [anon_sym_BSLASHglsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4731), - [anon_sym_BSLASHglsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4731), - [anon_sym_BSLASHglsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4731), - [anon_sym_BSLASHglsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4731), - [anon_sym_BSLASHglsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4731), - [anon_sym_BSLASHnewacronym] = ACTIONS(4731), - [anon_sym_BSLASHacrshort] = ACTIONS(4731), - [anon_sym_BSLASHAcrshort] = ACTIONS(4731), - [anon_sym_BSLASHACRshort] = ACTIONS(4731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4731), - [anon_sym_BSLASHacrlong] = ACTIONS(4731), - [anon_sym_BSLASHAcrlong] = ACTIONS(4731), - [anon_sym_BSLASHACRlong] = ACTIONS(4731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4731), - [anon_sym_BSLASHacrfull] = ACTIONS(4731), - [anon_sym_BSLASHAcrfull] = ACTIONS(4731), - [anon_sym_BSLASHACRfull] = ACTIONS(4731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4731), - [anon_sym_BSLASHacs] = ACTIONS(4731), - [anon_sym_BSLASHAcs] = ACTIONS(4731), - [anon_sym_BSLASHacsp] = ACTIONS(4731), - [anon_sym_BSLASHAcsp] = ACTIONS(4731), - [anon_sym_BSLASHacl] = ACTIONS(4731), - [anon_sym_BSLASHAcl] = ACTIONS(4731), - [anon_sym_BSLASHaclp] = ACTIONS(4731), - [anon_sym_BSLASHAclp] = ACTIONS(4731), - [anon_sym_BSLASHacf] = ACTIONS(4731), - [anon_sym_BSLASHAcf] = ACTIONS(4731), - [anon_sym_BSLASHacfp] = ACTIONS(4731), - [anon_sym_BSLASHAcfp] = ACTIONS(4731), - [anon_sym_BSLASHac] = ACTIONS(4731), - [anon_sym_BSLASHAc] = ACTIONS(4731), - [anon_sym_BSLASHacp] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4731), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4731), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4731), - [anon_sym_BSLASHcolor] = ACTIONS(4731), - [anon_sym_BSLASHcolorbox] = ACTIONS(4731), - [anon_sym_BSLASHtextcolor] = ACTIONS(4731), - [anon_sym_BSLASHpagecolor] = ACTIONS(4731), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4731), - [anon_sym_BSLASHtext] = ACTIONS(4731), - [anon_sym_BSLASHintertext] = ACTIONS(4731), - [anon_sym_shortintertext] = ACTIONS(4731), + [298] = { + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(267), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4737), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, - [318] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_command_name] = ACTIONS(2015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [sym_word] = ACTIONS(2015), - [sym_placeholder] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(2015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2015), - [anon_sym_BSLASHinclude] = ACTIONS(2015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2015), - [anon_sym_BSLASHinput] = ACTIONS(2015), - [anon_sym_BSLASHsubfile] = ACTIONS(2015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2015), - [anon_sym_BSLASHbibliography] = ACTIONS(2015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2015), - [anon_sym_BSLASHincludesvg] = ACTIONS(2015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2015), - [anon_sym_BSLASHimport] = ACTIONS(2015), - [anon_sym_BSLASHsubimport] = ACTIONS(2015), - [anon_sym_BSLASHinputfrom] = ACTIONS(2015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2015), - [anon_sym_BSLASHincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHcaption] = ACTIONS(2015), - [anon_sym_BSLASHcite] = ACTIONS(2015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCite] = ACTIONS(2015), - [anon_sym_BSLASHnocite] = ACTIONS(2015), - [anon_sym_BSLASHcitet] = ACTIONS(2015), - [anon_sym_BSLASHcitep] = ACTIONS(2015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteauthor] = ACTIONS(2015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitetitle] = ACTIONS(2015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteyear] = ACTIONS(2015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitedate] = ACTIONS(2015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteurl] = ACTIONS(2015), - [anon_sym_BSLASHfullcite] = ACTIONS(2015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2015), - [anon_sym_BSLASHcitealt] = ACTIONS(2015), - [anon_sym_BSLASHcitealp] = ACTIONS(2015), - [anon_sym_BSLASHcitetext] = ACTIONS(2015), - [anon_sym_BSLASHparencite] = ACTIONS(2015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHParencite] = ACTIONS(2015), - [anon_sym_BSLASHfootcite] = ACTIONS(2015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2015), - [anon_sym_BSLASHtextcite] = ACTIONS(2015), - [anon_sym_BSLASHTextcite] = ACTIONS(2015), - [anon_sym_BSLASHsmartcite] = ACTIONS(2015), - [anon_sym_BSLASHSmartcite] = ACTIONS(2015), - [anon_sym_BSLASHsupercite] = ACTIONS(2015), - [anon_sym_BSLASHautocite] = ACTIONS(2015), - [anon_sym_BSLASHAutocite] = ACTIONS(2015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHvolcite] = ACTIONS(2015), - [anon_sym_BSLASHVolcite] = ACTIONS(2015), - [anon_sym_BSLASHpvolcite] = ACTIONS(2015), - [anon_sym_BSLASHPvolcite] = ACTIONS(2015), - [anon_sym_BSLASHfvolcite] = ACTIONS(2015), - [anon_sym_BSLASHftvolcite] = ACTIONS(2015), - [anon_sym_BSLASHsvolcite] = ACTIONS(2015), - [anon_sym_BSLASHSvolcite] = ACTIONS(2015), - [anon_sym_BSLASHtvolcite] = ACTIONS(2015), - [anon_sym_BSLASHTvolcite] = ACTIONS(2015), - [anon_sym_BSLASHavolcite] = ACTIONS(2015), - [anon_sym_BSLASHAvolcite] = ACTIONS(2015), - [anon_sym_BSLASHnotecite] = ACTIONS(2015), - [anon_sym_BSLASHNotecite] = ACTIONS(2015), - [anon_sym_BSLASHpnotecite] = ACTIONS(2015), - [anon_sym_BSLASHPnotecite] = ACTIONS(2015), - [anon_sym_BSLASHfnotecite] = ACTIONS(2015), - [anon_sym_BSLASHlabel] = ACTIONS(2015), - [anon_sym_BSLASHref] = ACTIONS(2015), - [anon_sym_BSLASHeqref] = ACTIONS(2015), - [anon_sym_BSLASHvref] = ACTIONS(2015), - [anon_sym_BSLASHVref] = ACTIONS(2015), - [anon_sym_BSLASHautoref] = ACTIONS(2015), - [anon_sym_BSLASHpageref] = ACTIONS(2015), - [anon_sym_BSLASHcref] = ACTIONS(2015), - [anon_sym_BSLASHCref] = ACTIONS(2015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnameCref] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHlabelcref] = ACTIONS(2015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCrefrange] = ACTIONS(2015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnewlabel] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdef] = ACTIONS(2015), - [anon_sym_BSLASHlet] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2015), - [anon_sym_BSLASHgls] = ACTIONS(2015), - [anon_sym_BSLASHGls] = ACTIONS(2015), - [anon_sym_BSLASHGLS] = ACTIONS(2015), - [anon_sym_BSLASHglspl] = ACTIONS(2015), - [anon_sym_BSLASHGlspl] = ACTIONS(2015), - [anon_sym_BSLASHGLSpl] = ACTIONS(2015), - [anon_sym_BSLASHglsdisp] = ACTIONS(2015), - [anon_sym_BSLASHglslink] = ACTIONS(2015), - [anon_sym_BSLASHglstext] = ACTIONS(2015), - [anon_sym_BSLASHGlstext] = ACTIONS(2015), - [anon_sym_BSLASHGLStext] = ACTIONS(2015), - [anon_sym_BSLASHglsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2015), - [anon_sym_BSLASHglsplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSplural] = ACTIONS(2015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHglsname] = ACTIONS(2015), - [anon_sym_BSLASHGlsname] = ACTIONS(2015), - [anon_sym_BSLASHGLSname] = ACTIONS(2015), - [anon_sym_BSLASHglssymbol] = ACTIONS(2015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2015), - [anon_sym_BSLASHglsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2015), - [anon_sym_BSLASHglsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2015), - [anon_sym_BSLASHglsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2015), - [anon_sym_BSLASHglsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2015), - [anon_sym_BSLASHglsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2015), - [anon_sym_BSLASHnewacronym] = ACTIONS(2015), - [anon_sym_BSLASHacrshort] = ACTIONS(2015), - [anon_sym_BSLASHAcrshort] = ACTIONS(2015), - [anon_sym_BSLASHACRshort] = ACTIONS(2015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2015), - [anon_sym_BSLASHacrlong] = ACTIONS(2015), - [anon_sym_BSLASHAcrlong] = ACTIONS(2015), - [anon_sym_BSLASHACRlong] = ACTIONS(2015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2015), - [anon_sym_BSLASHacrfull] = ACTIONS(2015), - [anon_sym_BSLASHAcrfull] = ACTIONS(2015), - [anon_sym_BSLASHACRfull] = ACTIONS(2015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2015), - [anon_sym_BSLASHacs] = ACTIONS(2015), - [anon_sym_BSLASHAcs] = ACTIONS(2015), - [anon_sym_BSLASHacsp] = ACTIONS(2015), - [anon_sym_BSLASHAcsp] = ACTIONS(2015), - [anon_sym_BSLASHacl] = ACTIONS(2015), - [anon_sym_BSLASHAcl] = ACTIONS(2015), - [anon_sym_BSLASHaclp] = ACTIONS(2015), - [anon_sym_BSLASHAclp] = ACTIONS(2015), - [anon_sym_BSLASHacf] = ACTIONS(2015), - [anon_sym_BSLASHAcf] = ACTIONS(2015), - [anon_sym_BSLASHacfp] = ACTIONS(2015), - [anon_sym_BSLASHAcfp] = ACTIONS(2015), - [anon_sym_BSLASHac] = ACTIONS(2015), - [anon_sym_BSLASHAc] = ACTIONS(2015), - [anon_sym_BSLASHacp] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2015), - [anon_sym_BSLASHcolor] = ACTIONS(2015), - [anon_sym_BSLASHcolorbox] = ACTIONS(2015), - [anon_sym_BSLASHtextcolor] = ACTIONS(2015), - [anon_sym_BSLASHpagecolor] = ACTIONS(2015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2015), - [anon_sym_BSLASHtext] = ACTIONS(2015), - [anon_sym_BSLASHintertext] = ACTIONS(2015), - [anon_sym_shortintertext] = ACTIONS(2015), + [299] = { + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(269), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4739), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), }, - [319] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_command_name] = ACTIONS(1997), + [300] = { + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(266), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4741), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), + }, + [301] = { + [sym_block_comment] = STATE(1704), + [sym__text_content] = STATE(1704), + [sym_curly_group] = STATE(1704), + [sym_text] = STATE(1704), + [sym_operator] = STATE(1586), + [sym_displayed_equation] = STATE(1704), + [sym_inline_formula] = STATE(1704), + [sym_math_set] = STATE(1704), + [sym__command] = STATE(1704), + [sym_generic_command] = STATE(1704), + [sym_title_declaration] = STATE(1704), + [sym_author_declaration] = STATE(1704), + [sym_package_include] = STATE(1704), + [sym_class_include] = STATE(1704), + [sym_latex_include] = STATE(1704), + [sym_biblatex_include] = STATE(1704), + [sym_bibtex_include] = STATE(1704), + [sym_graphics_include] = STATE(1704), + [sym_svg_include] = STATE(1704), + [sym_inkscape_include] = STATE(1704), + [sym_verbatim_include] = STATE(1704), + [sym_import_include] = STATE(1704), + [sym_caption] = STATE(1704), + [sym_citation] = STATE(1704), + [sym_label_definition] = STATE(1704), + [sym_label_reference] = STATE(1704), + [sym_label_reference_range] = STATE(1704), + [sym_label_number] = STATE(1704), + [sym_new_command_definition] = STATE(1704), + [sym_old_command_definition] = STATE(1704), + [sym_let_command_definition] = STATE(1704), + [sym_paired_delimiter_definition] = STATE(1704), + [sym_environment_definition] = STATE(1704), + [sym_glossary_entry_definition] = STATE(1704), + [sym_glossary_entry_reference] = STATE(1704), + [sym_acronym_definition] = STATE(1704), + [sym_acronym_reference] = STATE(1704), + [sym_theorem_definition] = STATE(1704), + [sym_color_definition] = STATE(1704), + [sym_color_set_definition] = STATE(1704), + [sym_color_reference] = STATE(1704), + [sym_tikz_library_import] = STATE(1704), + [sym_text_mode] = STATE(1704), + [aux_sym_curly_group_impl_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(305), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(4743), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4541), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4179), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(4255), + [anon_sym_BSLASHintertext] = ACTIONS(4255), + [anon_sym_shortintertext] = ACTIONS(4255), + }, + [302] = { + [sym_block_comment] = STATE(1631), + [sym__text_content] = STATE(1631), + [sym_curly_group] = STATE(1631), + [sym_text] = STATE(1631), + [sym_operator] = STATE(1629), + [sym_displayed_equation] = STATE(1631), + [sym_inline_formula] = STATE(1631), + [sym_math_set] = STATE(1631), + [sym__command] = STATE(1631), + [sym_generic_command] = STATE(1631), + [sym_title_declaration] = STATE(1631), + [sym_author_declaration] = STATE(1631), + [sym_package_include] = STATE(1631), + [sym_class_include] = STATE(1631), + [sym_latex_include] = STATE(1631), + [sym_biblatex_include] = STATE(1631), + [sym_bibtex_include] = STATE(1631), + [sym_graphics_include] = STATE(1631), + [sym_svg_include] = STATE(1631), + [sym_inkscape_include] = STATE(1631), + [sym_verbatim_include] = STATE(1631), + [sym_import_include] = STATE(1631), + [sym_caption] = STATE(1631), + [sym_citation] = STATE(1631), + [sym_label_definition] = STATE(1631), + [sym_label_reference] = STATE(1631), + [sym_label_reference_range] = STATE(1631), + [sym_label_number] = STATE(1631), + [sym_new_command_definition] = STATE(1631), + [sym_old_command_definition] = STATE(1631), + [sym_let_command_definition] = STATE(1631), + [sym_paired_delimiter_definition] = STATE(1631), + [sym_environment_definition] = STATE(1631), + [sym_glossary_entry_definition] = STATE(1631), + [sym_glossary_entry_reference] = STATE(1631), + [sym_acronym_definition] = STATE(1631), + [sym_acronym_reference] = STATE(1631), + [sym_theorem_definition] = STATE(1631), + [sym_color_definition] = STATE(1631), + [sym_color_set_definition] = STATE(1631), + [sym_color_reference] = STATE(1631), + [sym_tikz_library_import] = STATE(1631), + [sym_text_mode] = STATE(1631), + [aux_sym_curly_group_impl_repeat1] = STATE(271), + [aux_sym_text_repeat1] = STATE(309), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4285), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4289), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4291), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(4367), + [anon_sym_BSLASHintertext] = ACTIONS(4367), + [anon_sym_shortintertext] = ACTIONS(4367), + }, + [303] = { + [sym_block_comment] = STATE(1478), + [sym_operator] = STATE(1478), + [sym__command] = STATE(1478), + [sym_generic_command] = STATE(1478), + [sym_title_declaration] = STATE(1478), + [sym_author_declaration] = STATE(1478), + [sym_package_include] = STATE(1478), + [sym_class_include] = STATE(1478), + [sym_latex_include] = STATE(1478), + [sym_biblatex_include] = STATE(1478), + [sym_bibtex_include] = STATE(1478), + [sym_graphics_include] = STATE(1478), + [sym_svg_include] = STATE(1478), + [sym_inkscape_include] = STATE(1478), + [sym_verbatim_include] = STATE(1478), + [sym_import_include] = STATE(1478), + [sym_caption] = STATE(1478), + [sym_citation] = STATE(1478), + [sym_label_definition] = STATE(1478), + [sym_label_reference] = STATE(1478), + [sym_label_reference_range] = STATE(1478), + [sym_label_number] = STATE(1478), + [sym_new_command_definition] = STATE(1478), + [sym_old_command_definition] = STATE(1478), + [sym_let_command_definition] = STATE(1478), + [sym_paired_delimiter_definition] = STATE(1478), + [sym_environment_definition] = STATE(1478), + [sym_glossary_entry_definition] = STATE(1478), + [sym_glossary_entry_reference] = STATE(1478), + [sym_acronym_definition] = STATE(1478), + [sym_acronym_reference] = STATE(1478), + [sym_theorem_definition] = STATE(1478), + [sym_color_definition] = STATE(1478), + [sym_color_set_definition] = STATE(1478), + [sym_color_reference] = STATE(1478), + [sym_tikz_library_import] = STATE(1478), + [aux_sym_text_repeat1] = STATE(304), + [sym_command_name] = ACTIONS(3505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(3517), + [sym_placeholder] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_SLASH] = ACTIONS(3521), + [anon_sym_CARET] = ACTIONS(3521), + [anon_sym__] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_GT] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_PIPE] = ACTIONS(3521), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHbegin] = ACTIONS(2999), + [anon_sym_BSLASHtitle] = ACTIONS(3531), + [anon_sym_BSLASHauthor] = ACTIONS(3533), + [anon_sym_BSLASHusepackage] = ACTIONS(3535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3537), + [anon_sym_BSLASHinclude] = ACTIONS(3539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3539), + [anon_sym_BSLASHinput] = ACTIONS(3539), + [anon_sym_BSLASHsubfile] = ACTIONS(3539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3541), + [anon_sym_BSLASHbibliography] = ACTIONS(3543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3545), + [anon_sym_BSLASHincludesvg] = ACTIONS(3547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3549), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3551), + [anon_sym_BSLASHimport] = ACTIONS(3553), + [anon_sym_BSLASHsubimport] = ACTIONS(3553), + [anon_sym_BSLASHinputfrom] = ACTIONS(3553), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3553), + [anon_sym_BSLASHincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3553), + [anon_sym_BSLASHcaption] = ACTIONS(3555), + [anon_sym_BSLASHcite] = ACTIONS(3557), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCite] = ACTIONS(3557), + [anon_sym_BSLASHnocite] = ACTIONS(3557), + [anon_sym_BSLASHcitet] = ACTIONS(3557), + [anon_sym_BSLASHcitep] = ACTIONS(3557), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteauthor] = ACTIONS(3557), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3557), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitetitle] = ACTIONS(3557), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteyear] = ACTIONS(3557), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3559), + [anon_sym_BSLASHcitedate] = ACTIONS(3557), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3559), + [anon_sym_BSLASHciteurl] = ACTIONS(3557), + [anon_sym_BSLASHfullcite] = ACTIONS(3557), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3557), + [anon_sym_BSLASHcitealt] = ACTIONS(3557), + [anon_sym_BSLASHcitealp] = ACTIONS(3557), + [anon_sym_BSLASHcitetext] = ACTIONS(3557), + [anon_sym_BSLASHparencite] = ACTIONS(3557), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHParencite] = ACTIONS(3557), + [anon_sym_BSLASHfootcite] = ACTIONS(3557), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3557), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3557), + [anon_sym_BSLASHtextcite] = ACTIONS(3557), + [anon_sym_BSLASHTextcite] = ACTIONS(3557), + [anon_sym_BSLASHsmartcite] = ACTIONS(3557), + [anon_sym_BSLASHSmartcite] = ACTIONS(3557), + [anon_sym_BSLASHsupercite] = ACTIONS(3557), + [anon_sym_BSLASHautocite] = ACTIONS(3557), + [anon_sym_BSLASHAutocite] = ACTIONS(3557), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3559), + [anon_sym_BSLASHvolcite] = ACTIONS(3557), + [anon_sym_BSLASHVolcite] = ACTIONS(3557), + [anon_sym_BSLASHpvolcite] = ACTIONS(3557), + [anon_sym_BSLASHPvolcite] = ACTIONS(3557), + [anon_sym_BSLASHfvolcite] = ACTIONS(3557), + [anon_sym_BSLASHftvolcite] = ACTIONS(3557), + [anon_sym_BSLASHsvolcite] = ACTIONS(3557), + [anon_sym_BSLASHSvolcite] = ACTIONS(3557), + [anon_sym_BSLASHtvolcite] = ACTIONS(3557), + [anon_sym_BSLASHTvolcite] = ACTIONS(3557), + [anon_sym_BSLASHavolcite] = ACTIONS(3557), + [anon_sym_BSLASHAvolcite] = ACTIONS(3557), + [anon_sym_BSLASHnotecite] = ACTIONS(3557), + [anon_sym_BSLASHNotecite] = ACTIONS(3557), + [anon_sym_BSLASHpnotecite] = ACTIONS(3557), + [anon_sym_BSLASHPnotecite] = ACTIONS(3557), + [anon_sym_BSLASHfnotecite] = ACTIONS(3557), + [anon_sym_BSLASHlabel] = ACTIONS(3561), + [anon_sym_BSLASHref] = ACTIONS(3563), + [anon_sym_BSLASHeqref] = ACTIONS(3563), + [anon_sym_BSLASHvref] = ACTIONS(3563), + [anon_sym_BSLASHVref] = ACTIONS(3563), + [anon_sym_BSLASHautoref] = ACTIONS(3563), + [anon_sym_BSLASHpageref] = ACTIONS(3563), + [anon_sym_BSLASHcref] = ACTIONS(3563), + [anon_sym_BSLASHCref] = ACTIONS(3563), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnameCref] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3563), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3563), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3563), + [anon_sym_BSLASHlabelcref] = ACTIONS(3563), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3563), + [anon_sym_BSLASHcrefrange] = ACTIONS(3567), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHCrefrange] = ACTIONS(3567), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3569), + [anon_sym_BSLASHnewlabel] = ACTIONS(3571), + [anon_sym_BSLASHnewcommand] = ACTIONS(3573), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3573), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3573), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3575), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3573), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3575), + [anon_sym_BSLASHdef] = ACTIONS(3577), + [anon_sym_BSLASHlet] = ACTIONS(3579), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3581), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3581), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3583), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3585), + [anon_sym_BSLASHgls] = ACTIONS(3587), + [anon_sym_BSLASHGls] = ACTIONS(3587), + [anon_sym_BSLASHGLS] = ACTIONS(3587), + [anon_sym_BSLASHglspl] = ACTIONS(3587), + [anon_sym_BSLASHGlspl] = ACTIONS(3587), + [anon_sym_BSLASHGLSpl] = ACTIONS(3587), + [anon_sym_BSLASHglsdisp] = ACTIONS(3587), + [anon_sym_BSLASHglslink] = ACTIONS(3587), + [anon_sym_BSLASHglstext] = ACTIONS(3587), + [anon_sym_BSLASHGlstext] = ACTIONS(3587), + [anon_sym_BSLASHGLStext] = ACTIONS(3587), + [anon_sym_BSLASHglsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), + [anon_sym_BSLASHglsplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSplural] = ACTIONS(3587), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), + [anon_sym_BSLASHglsname] = ACTIONS(3587), + [anon_sym_BSLASHGlsname] = ACTIONS(3587), + [anon_sym_BSLASHGLSname] = ACTIONS(3587), + [anon_sym_BSLASHglssymbol] = ACTIONS(3587), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), + [anon_sym_BSLASHglsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), + [anon_sym_BSLASHglsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), + [anon_sym_BSLASHglsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), + [anon_sym_BSLASHglsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), + [anon_sym_BSLASHglsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), + [anon_sym_BSLASHnewacronym] = ACTIONS(3589), + [anon_sym_BSLASHacrshort] = ACTIONS(3591), + [anon_sym_BSLASHAcrshort] = ACTIONS(3591), + [anon_sym_BSLASHACRshort] = ACTIONS(3591), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3591), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3591), + [anon_sym_BSLASHacrlong] = ACTIONS(3591), + [anon_sym_BSLASHAcrlong] = ACTIONS(3591), + [anon_sym_BSLASHACRlong] = ACTIONS(3591), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3591), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3591), + [anon_sym_BSLASHacrfull] = ACTIONS(3591), + [anon_sym_BSLASHAcrfull] = ACTIONS(3591), + [anon_sym_BSLASHACRfull] = ACTIONS(3591), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3591), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3591), + [anon_sym_BSLASHacs] = ACTIONS(3591), + [anon_sym_BSLASHAcs] = ACTIONS(3591), + [anon_sym_BSLASHacsp] = ACTIONS(3591), + [anon_sym_BSLASHAcsp] = ACTIONS(3591), + [anon_sym_BSLASHacl] = ACTIONS(3591), + [anon_sym_BSLASHAcl] = ACTIONS(3591), + [anon_sym_BSLASHaclp] = ACTIONS(3591), + [anon_sym_BSLASHAclp] = ACTIONS(3591), + [anon_sym_BSLASHacf] = ACTIONS(3591), + [anon_sym_BSLASHAcf] = ACTIONS(3591), + [anon_sym_BSLASHacfp] = ACTIONS(3591), + [anon_sym_BSLASHAcfp] = ACTIONS(3591), + [anon_sym_BSLASHac] = ACTIONS(3591), + [anon_sym_BSLASHAc] = ACTIONS(3591), + [anon_sym_BSLASHacp] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3591), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3591), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3591), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3591), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3593), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3593), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3597), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3599), + [anon_sym_BSLASHcolor] = ACTIONS(3601), + [anon_sym_BSLASHcolorbox] = ACTIONS(3601), + [anon_sym_BSLASHtextcolor] = ACTIONS(3601), + [anon_sym_BSLASHpagecolor] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3603), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3603), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), + }, + [304] = { + [sym_block_comment] = STATE(1478), + [sym_operator] = STATE(1478), + [sym__command] = STATE(1478), + [sym_generic_command] = STATE(1478), + [sym_title_declaration] = STATE(1478), + [sym_author_declaration] = STATE(1478), + [sym_package_include] = STATE(1478), + [sym_class_include] = STATE(1478), + [sym_latex_include] = STATE(1478), + [sym_biblatex_include] = STATE(1478), + [sym_bibtex_include] = STATE(1478), + [sym_graphics_include] = STATE(1478), + [sym_svg_include] = STATE(1478), + [sym_inkscape_include] = STATE(1478), + [sym_verbatim_include] = STATE(1478), + [sym_import_include] = STATE(1478), + [sym_caption] = STATE(1478), + [sym_citation] = STATE(1478), + [sym_label_definition] = STATE(1478), + [sym_label_reference] = STATE(1478), + [sym_label_reference_range] = STATE(1478), + [sym_label_number] = STATE(1478), + [sym_new_command_definition] = STATE(1478), + [sym_old_command_definition] = STATE(1478), + [sym_let_command_definition] = STATE(1478), + [sym_paired_delimiter_definition] = STATE(1478), + [sym_environment_definition] = STATE(1478), + [sym_glossary_entry_definition] = STATE(1478), + [sym_glossary_entry_reference] = STATE(1478), + [sym_acronym_definition] = STATE(1478), + [sym_acronym_reference] = STATE(1478), + [sym_theorem_definition] = STATE(1478), + [sym_color_definition] = STATE(1478), + [sym_color_set_definition] = STATE(1478), + [sym_color_reference] = STATE(1478), + [sym_tikz_library_import] = STATE(1478), + [aux_sym_text_repeat1] = STATE(304), + [sym_command_name] = ACTIONS(4745), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(4751), + [sym_placeholder] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_STAR] = ACTIONS(4757), + [anon_sym_SLASH] = ACTIONS(4757), + [anon_sym_CARET] = ACTIONS(4757), + [anon_sym__] = ACTIONS(4757), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_BANG] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_SQUOTE] = ACTIONS(4757), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHbegin] = ACTIONS(2875), + [anon_sym_BSLASHtitle] = ACTIONS(4760), + [anon_sym_BSLASHauthor] = ACTIONS(4763), + [anon_sym_BSLASHusepackage] = ACTIONS(4766), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4766), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), + [anon_sym_BSLASHinclude] = ACTIONS(4772), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4772), + [anon_sym_BSLASHinput] = ACTIONS(4772), + [anon_sym_BSLASHsubfile] = ACTIONS(4772), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4775), + [anon_sym_BSLASHbibliography] = ACTIONS(4778), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), + [anon_sym_BSLASHincludesvg] = ACTIONS(4784), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4787), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4790), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4790), + [anon_sym_BSLASHimport] = ACTIONS(4793), + [anon_sym_BSLASHsubimport] = ACTIONS(4793), + [anon_sym_BSLASHinputfrom] = ACTIONS(4793), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), + [anon_sym_BSLASHincludefrom] = ACTIONS(4793), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), + [anon_sym_BSLASHcaption] = ACTIONS(4796), + [anon_sym_BSLASHcite] = ACTIONS(4799), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4802), + [anon_sym_BSLASHCite] = ACTIONS(4799), + [anon_sym_BSLASHnocite] = ACTIONS(4799), + [anon_sym_BSLASHcitet] = ACTIONS(4799), + [anon_sym_BSLASHcitep] = ACTIONS(4799), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4802), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4802), + [anon_sym_BSLASHciteauthor] = ACTIONS(4799), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4802), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4799), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4802), + [anon_sym_BSLASHcitetitle] = ACTIONS(4799), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4802), + [anon_sym_BSLASHciteyear] = ACTIONS(4799), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4802), + [anon_sym_BSLASHcitedate] = ACTIONS(4799), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4802), + [anon_sym_BSLASHciteurl] = ACTIONS(4799), + [anon_sym_BSLASHfullcite] = ACTIONS(4799), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4799), + [anon_sym_BSLASHcitealt] = ACTIONS(4799), + [anon_sym_BSLASHcitealp] = ACTIONS(4799), + [anon_sym_BSLASHcitetext] = ACTIONS(4799), + [anon_sym_BSLASHparencite] = ACTIONS(4799), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4802), + [anon_sym_BSLASHParencite] = ACTIONS(4799), + [anon_sym_BSLASHfootcite] = ACTIONS(4799), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4799), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4799), + [anon_sym_BSLASHtextcite] = ACTIONS(4799), + [anon_sym_BSLASHTextcite] = ACTIONS(4799), + [anon_sym_BSLASHsmartcite] = ACTIONS(4799), + [anon_sym_BSLASHSmartcite] = ACTIONS(4799), + [anon_sym_BSLASHsupercite] = ACTIONS(4799), + [anon_sym_BSLASHautocite] = ACTIONS(4799), + [anon_sym_BSLASHAutocite] = ACTIONS(4799), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4802), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4802), + [anon_sym_BSLASHvolcite] = ACTIONS(4799), + [anon_sym_BSLASHVolcite] = ACTIONS(4799), + [anon_sym_BSLASHpvolcite] = ACTIONS(4799), + [anon_sym_BSLASHPvolcite] = ACTIONS(4799), + [anon_sym_BSLASHfvolcite] = ACTIONS(4799), + [anon_sym_BSLASHftvolcite] = ACTIONS(4799), + [anon_sym_BSLASHsvolcite] = ACTIONS(4799), + [anon_sym_BSLASHSvolcite] = ACTIONS(4799), + [anon_sym_BSLASHtvolcite] = ACTIONS(4799), + [anon_sym_BSLASHTvolcite] = ACTIONS(4799), + [anon_sym_BSLASHavolcite] = ACTIONS(4799), + [anon_sym_BSLASHAvolcite] = ACTIONS(4799), + [anon_sym_BSLASHnotecite] = ACTIONS(4799), + [anon_sym_BSLASHNotecite] = ACTIONS(4799), + [anon_sym_BSLASHpnotecite] = ACTIONS(4799), + [anon_sym_BSLASHPnotecite] = ACTIONS(4799), + [anon_sym_BSLASHfnotecite] = ACTIONS(4799), + [anon_sym_BSLASHlabel] = ACTIONS(4805), + [anon_sym_BSLASHref] = ACTIONS(4808), + [anon_sym_BSLASHeqref] = ACTIONS(4808), + [anon_sym_BSLASHvref] = ACTIONS(4808), + [anon_sym_BSLASHVref] = ACTIONS(4808), + [anon_sym_BSLASHautoref] = ACTIONS(4808), + [anon_sym_BSLASHpageref] = ACTIONS(4808), + [anon_sym_BSLASHcref] = ACTIONS(4808), + [anon_sym_BSLASHCref] = ACTIONS(4808), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4811), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4811), + [anon_sym_BSLASHnamecref] = ACTIONS(4808), + [anon_sym_BSLASHnameCref] = ACTIONS(4808), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4808), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4808), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4808), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4808), + [anon_sym_BSLASHlabelcref] = ACTIONS(4808), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4808), + [anon_sym_BSLASHcrefrange] = ACTIONS(4814), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange] = ACTIONS(4814), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4817), + [anon_sym_BSLASHnewlabel] = ACTIONS(4820), + [anon_sym_BSLASHnewcommand] = ACTIONS(4823), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4826), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4826), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4826), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4826), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4832), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4835), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4835), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4838), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4844), + [anon_sym_BSLASHGls] = ACTIONS(4844), + [anon_sym_BSLASHGLS] = ACTIONS(4844), + [anon_sym_BSLASHglspl] = ACTIONS(4844), + [anon_sym_BSLASHGlspl] = ACTIONS(4844), + [anon_sym_BSLASHGLSpl] = ACTIONS(4844), + [anon_sym_BSLASHglsdisp] = ACTIONS(4844), + [anon_sym_BSLASHglslink] = ACTIONS(4844), + [anon_sym_BSLASHglstext] = ACTIONS(4844), + [anon_sym_BSLASHGlstext] = ACTIONS(4844), + [anon_sym_BSLASHGLStext] = ACTIONS(4844), + [anon_sym_BSLASHglsfirst] = ACTIONS(4844), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4844), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4844), + [anon_sym_BSLASHglsplural] = ACTIONS(4844), + [anon_sym_BSLASHGlsplural] = ACTIONS(4844), + [anon_sym_BSLASHGLSplural] = ACTIONS(4844), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4844), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4844), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4844), + [anon_sym_BSLASHglsname] = ACTIONS(4844), + [anon_sym_BSLASHGlsname] = ACTIONS(4844), + [anon_sym_BSLASHGLSname] = ACTIONS(4844), + [anon_sym_BSLASHglssymbol] = ACTIONS(4844), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4844), + [anon_sym_BSLASHglsdesc] = ACTIONS(4844), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4844), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4844), + [anon_sym_BSLASHglsuseri] = ACTIONS(4844), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4844), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4844), + [anon_sym_BSLASHglsuserii] = ACTIONS(4844), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4844), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4844), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4844), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4844), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4844), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4844), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4844), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4844), + [anon_sym_BSLASHglsuserv] = ACTIONS(4844), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4844), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4844), + [anon_sym_BSLASHglsuservi] = ACTIONS(4844), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4844), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4844), + [anon_sym_BSLASHnewacronym] = ACTIONS(4847), + [anon_sym_BSLASHacrshort] = ACTIONS(4850), + [anon_sym_BSLASHAcrshort] = ACTIONS(4850), + [anon_sym_BSLASHACRshort] = ACTIONS(4850), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4850), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4850), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4850), + [anon_sym_BSLASHacrlong] = ACTIONS(4850), + [anon_sym_BSLASHAcrlong] = ACTIONS(4850), + [anon_sym_BSLASHACRlong] = ACTIONS(4850), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4850), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4850), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4850), + [anon_sym_BSLASHacrfull] = ACTIONS(4850), + [anon_sym_BSLASHAcrfull] = ACTIONS(4850), + [anon_sym_BSLASHACRfull] = ACTIONS(4850), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4850), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4850), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4850), + [anon_sym_BSLASHacs] = ACTIONS(4850), + [anon_sym_BSLASHAcs] = ACTIONS(4850), + [anon_sym_BSLASHacsp] = ACTIONS(4850), + [anon_sym_BSLASHAcsp] = ACTIONS(4850), + [anon_sym_BSLASHacl] = ACTIONS(4850), + [anon_sym_BSLASHAcl] = ACTIONS(4850), + [anon_sym_BSLASHaclp] = ACTIONS(4850), + [anon_sym_BSLASHAclp] = ACTIONS(4850), + [anon_sym_BSLASHacf] = ACTIONS(4850), + [anon_sym_BSLASHAcf] = ACTIONS(4850), + [anon_sym_BSLASHacfp] = ACTIONS(4850), + [anon_sym_BSLASHAcfp] = ACTIONS(4850), + [anon_sym_BSLASHac] = ACTIONS(4850), + [anon_sym_BSLASHAc] = ACTIONS(4850), + [anon_sym_BSLASHacp] = ACTIONS(4850), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4850), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4850), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4850), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4850), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4850), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4850), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4850), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4850), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4850), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4850), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4856), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4856), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4859), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4862), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4868), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4868), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), + }, + [305] = { + [sym_block_comment] = STATE(1586), + [sym_operator] = STATE(1586), + [sym__command] = STATE(1586), + [sym_generic_command] = STATE(1586), + [sym_title_declaration] = STATE(1586), + [sym_author_declaration] = STATE(1586), + [sym_package_include] = STATE(1586), + [sym_class_include] = STATE(1586), + [sym_latex_include] = STATE(1586), + [sym_biblatex_include] = STATE(1586), + [sym_bibtex_include] = STATE(1586), + [sym_graphics_include] = STATE(1586), + [sym_svg_include] = STATE(1586), + [sym_inkscape_include] = STATE(1586), + [sym_verbatim_include] = STATE(1586), + [sym_import_include] = STATE(1586), + [sym_caption] = STATE(1586), + [sym_citation] = STATE(1586), + [sym_label_definition] = STATE(1586), + [sym_label_reference] = STATE(1586), + [sym_label_reference_range] = STATE(1586), + [sym_label_number] = STATE(1586), + [sym_new_command_definition] = STATE(1586), + [sym_old_command_definition] = STATE(1586), + [sym_let_command_definition] = STATE(1586), + [sym_paired_delimiter_definition] = STATE(1586), + [sym_environment_definition] = STATE(1586), + [sym_glossary_entry_definition] = STATE(1586), + [sym_glossary_entry_reference] = STATE(1586), + [sym_acronym_definition] = STATE(1586), + [sym_acronym_reference] = STATE(1586), + [sym_theorem_definition] = STATE(1586), + [sym_color_definition] = STATE(1586), + [sym_color_set_definition] = STATE(1586), + [sym_color_reference] = STATE(1586), + [sym_tikz_library_import] = STATE(1586), + [aux_sym_text_repeat1] = STATE(306), + [sym_command_name] = ACTIONS(4155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(4167), + [sym_placeholder] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym__] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHtitle] = ACTIONS(4181), + [anon_sym_BSLASHauthor] = ACTIONS(4183), + [anon_sym_BSLASHusepackage] = ACTIONS(4185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4187), + [anon_sym_BSLASHinclude] = ACTIONS(4189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4189), + [anon_sym_BSLASHinput] = ACTIONS(4189), + [anon_sym_BSLASHsubfile] = ACTIONS(4189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4191), + [anon_sym_BSLASHbibliography] = ACTIONS(4193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4195), + [anon_sym_BSLASHincludesvg] = ACTIONS(4197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4199), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4201), + [anon_sym_BSLASHimport] = ACTIONS(4203), + [anon_sym_BSLASHsubimport] = ACTIONS(4203), + [anon_sym_BSLASHinputfrom] = ACTIONS(4203), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4203), + [anon_sym_BSLASHincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4203), + [anon_sym_BSLASHcaption] = ACTIONS(4205), + [anon_sym_BSLASHcite] = ACTIONS(4207), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCite] = ACTIONS(4207), + [anon_sym_BSLASHnocite] = ACTIONS(4207), + [anon_sym_BSLASHcitet] = ACTIONS(4207), + [anon_sym_BSLASHcitep] = ACTIONS(4207), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteauthor] = ACTIONS(4207), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4207), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitetitle] = ACTIONS(4207), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteyear] = ACTIONS(4207), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4209), + [anon_sym_BSLASHcitedate] = ACTIONS(4207), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4209), + [anon_sym_BSLASHciteurl] = ACTIONS(4207), + [anon_sym_BSLASHfullcite] = ACTIONS(4207), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4207), + [anon_sym_BSLASHcitealt] = ACTIONS(4207), + [anon_sym_BSLASHcitealp] = ACTIONS(4207), + [anon_sym_BSLASHcitetext] = ACTIONS(4207), + [anon_sym_BSLASHparencite] = ACTIONS(4207), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHParencite] = ACTIONS(4207), + [anon_sym_BSLASHfootcite] = ACTIONS(4207), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4207), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4207), + [anon_sym_BSLASHtextcite] = ACTIONS(4207), + [anon_sym_BSLASHTextcite] = ACTIONS(4207), + [anon_sym_BSLASHsmartcite] = ACTIONS(4207), + [anon_sym_BSLASHSmartcite] = ACTIONS(4207), + [anon_sym_BSLASHsupercite] = ACTIONS(4207), + [anon_sym_BSLASHautocite] = ACTIONS(4207), + [anon_sym_BSLASHAutocite] = ACTIONS(4207), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4209), + [anon_sym_BSLASHvolcite] = ACTIONS(4207), + [anon_sym_BSLASHVolcite] = ACTIONS(4207), + [anon_sym_BSLASHpvolcite] = ACTIONS(4207), + [anon_sym_BSLASHPvolcite] = ACTIONS(4207), + [anon_sym_BSLASHfvolcite] = ACTIONS(4207), + [anon_sym_BSLASHftvolcite] = ACTIONS(4207), + [anon_sym_BSLASHsvolcite] = ACTIONS(4207), + [anon_sym_BSLASHSvolcite] = ACTIONS(4207), + [anon_sym_BSLASHtvolcite] = ACTIONS(4207), + [anon_sym_BSLASHTvolcite] = ACTIONS(4207), + [anon_sym_BSLASHavolcite] = ACTIONS(4207), + [anon_sym_BSLASHAvolcite] = ACTIONS(4207), + [anon_sym_BSLASHnotecite] = ACTIONS(4207), + [anon_sym_BSLASHNotecite] = ACTIONS(4207), + [anon_sym_BSLASHpnotecite] = ACTIONS(4207), + [anon_sym_BSLASHPnotecite] = ACTIONS(4207), + [anon_sym_BSLASHfnotecite] = ACTIONS(4207), + [anon_sym_BSLASHlabel] = ACTIONS(4211), + [anon_sym_BSLASHref] = ACTIONS(4213), + [anon_sym_BSLASHeqref] = ACTIONS(4213), + [anon_sym_BSLASHvref] = ACTIONS(4213), + [anon_sym_BSLASHVref] = ACTIONS(4213), + [anon_sym_BSLASHautoref] = ACTIONS(4213), + [anon_sym_BSLASHpageref] = ACTIONS(4213), + [anon_sym_BSLASHcref] = ACTIONS(4213), + [anon_sym_BSLASHCref] = ACTIONS(4213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4215), + [anon_sym_BSLASHnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnameCref] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4213), + [anon_sym_BSLASHlabelcref] = ACTIONS(4213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4213), + [anon_sym_BSLASHcrefrange] = ACTIONS(4217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHCrefrange] = ACTIONS(4217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4219), + [anon_sym_BSLASHnewlabel] = ACTIONS(4221), + [anon_sym_BSLASHnewcommand] = ACTIONS(4223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4225), + [anon_sym_BSLASHdef] = ACTIONS(4227), + [anon_sym_BSLASHlet] = ACTIONS(4229), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4235), + [anon_sym_BSLASHgls] = ACTIONS(4237), + [anon_sym_BSLASHGls] = ACTIONS(4237), + [anon_sym_BSLASHGLS] = ACTIONS(4237), + [anon_sym_BSLASHglspl] = ACTIONS(4237), + [anon_sym_BSLASHGlspl] = ACTIONS(4237), + [anon_sym_BSLASHGLSpl] = ACTIONS(4237), + [anon_sym_BSLASHglsdisp] = ACTIONS(4237), + [anon_sym_BSLASHglslink] = ACTIONS(4237), + [anon_sym_BSLASHglstext] = ACTIONS(4237), + [anon_sym_BSLASHGlstext] = ACTIONS(4237), + [anon_sym_BSLASHGLStext] = ACTIONS(4237), + [anon_sym_BSLASHglsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4237), + [anon_sym_BSLASHglsplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSplural] = ACTIONS(4237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4237), + [anon_sym_BSLASHglsname] = ACTIONS(4237), + [anon_sym_BSLASHGlsname] = ACTIONS(4237), + [anon_sym_BSLASHGLSname] = ACTIONS(4237), + [anon_sym_BSLASHglssymbol] = ACTIONS(4237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4237), + [anon_sym_BSLASHglsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4237), + [anon_sym_BSLASHglsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4237), + [anon_sym_BSLASHglsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4237), + [anon_sym_BSLASHglsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4237), + [anon_sym_BSLASHglsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4237), + [anon_sym_BSLASHnewacronym] = ACTIONS(4239), + [anon_sym_BSLASHacrshort] = ACTIONS(4241), + [anon_sym_BSLASHAcrshort] = ACTIONS(4241), + [anon_sym_BSLASHACRshort] = ACTIONS(4241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4241), + [anon_sym_BSLASHacrlong] = ACTIONS(4241), + [anon_sym_BSLASHAcrlong] = ACTIONS(4241), + [anon_sym_BSLASHACRlong] = ACTIONS(4241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4241), + [anon_sym_BSLASHacrfull] = ACTIONS(4241), + [anon_sym_BSLASHAcrfull] = ACTIONS(4241), + [anon_sym_BSLASHACRfull] = ACTIONS(4241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4241), + [anon_sym_BSLASHacs] = ACTIONS(4241), + [anon_sym_BSLASHAcs] = ACTIONS(4241), + [anon_sym_BSLASHacsp] = ACTIONS(4241), + [anon_sym_BSLASHAcsp] = ACTIONS(4241), + [anon_sym_BSLASHacl] = ACTIONS(4241), + [anon_sym_BSLASHAcl] = ACTIONS(4241), + [anon_sym_BSLASHaclp] = ACTIONS(4241), + [anon_sym_BSLASHAclp] = ACTIONS(4241), + [anon_sym_BSLASHacf] = ACTIONS(4241), + [anon_sym_BSLASHAcf] = ACTIONS(4241), + [anon_sym_BSLASHacfp] = ACTIONS(4241), + [anon_sym_BSLASHAcfp] = ACTIONS(4241), + [anon_sym_BSLASHac] = ACTIONS(4241), + [anon_sym_BSLASHAc] = ACTIONS(4241), + [anon_sym_BSLASHacp] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4243), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4243), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4249), + [anon_sym_BSLASHcolor] = ACTIONS(4251), + [anon_sym_BSLASHcolorbox] = ACTIONS(4251), + [anon_sym_BSLASHtextcolor] = ACTIONS(4251), + [anon_sym_BSLASHpagecolor] = ACTIONS(4251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4253), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), + }, + [306] = { + [sym_block_comment] = STATE(1586), + [sym_operator] = STATE(1586), + [sym__command] = STATE(1586), + [sym_generic_command] = STATE(1586), + [sym_title_declaration] = STATE(1586), + [sym_author_declaration] = STATE(1586), + [sym_package_include] = STATE(1586), + [sym_class_include] = STATE(1586), + [sym_latex_include] = STATE(1586), + [sym_biblatex_include] = STATE(1586), + [sym_bibtex_include] = STATE(1586), + [sym_graphics_include] = STATE(1586), + [sym_svg_include] = STATE(1586), + [sym_inkscape_include] = STATE(1586), + [sym_verbatim_include] = STATE(1586), + [sym_import_include] = STATE(1586), + [sym_caption] = STATE(1586), + [sym_citation] = STATE(1586), + [sym_label_definition] = STATE(1586), + [sym_label_reference] = STATE(1586), + [sym_label_reference_range] = STATE(1586), + [sym_label_number] = STATE(1586), + [sym_new_command_definition] = STATE(1586), + [sym_old_command_definition] = STATE(1586), + [sym_let_command_definition] = STATE(1586), + [sym_paired_delimiter_definition] = STATE(1586), + [sym_environment_definition] = STATE(1586), + [sym_glossary_entry_definition] = STATE(1586), + [sym_glossary_entry_reference] = STATE(1586), + [sym_acronym_definition] = STATE(1586), + [sym_acronym_reference] = STATE(1586), + [sym_theorem_definition] = STATE(1586), + [sym_color_definition] = STATE(1586), + [sym_color_set_definition] = STATE(1586), + [sym_color_reference] = STATE(1586), + [sym_tikz_library_import] = STATE(1586), + [aux_sym_text_repeat1] = STATE(306), + [sym_command_name] = ACTIONS(4871), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(4877), + [sym_placeholder] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHtitle] = ACTIONS(4886), + [anon_sym_BSLASHauthor] = ACTIONS(4889), + [anon_sym_BSLASHusepackage] = ACTIONS(4892), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4892), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4895), + [anon_sym_BSLASHinclude] = ACTIONS(4898), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4898), + [anon_sym_BSLASHinput] = ACTIONS(4898), + [anon_sym_BSLASHsubfile] = ACTIONS(4898), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4904), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4907), + [anon_sym_BSLASHincludesvg] = ACTIONS(4910), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4916), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4916), + [anon_sym_BSLASHimport] = ACTIONS(4919), + [anon_sym_BSLASHsubimport] = ACTIONS(4919), + [anon_sym_BSLASHinputfrom] = ACTIONS(4919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4919), + [anon_sym_BSLASHincludefrom] = ACTIONS(4919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4919), + [anon_sym_BSLASHcaption] = ACTIONS(4922), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4931), + [anon_sym_BSLASHref] = ACTIONS(4934), + [anon_sym_BSLASHeqref] = ACTIONS(4934), + [anon_sym_BSLASHvref] = ACTIONS(4934), + [anon_sym_BSLASHVref] = ACTIONS(4934), + [anon_sym_BSLASHautoref] = ACTIONS(4934), + [anon_sym_BSLASHpageref] = ACTIONS(4934), + [anon_sym_BSLASHcref] = ACTIONS(4934), + [anon_sym_BSLASHCref] = ACTIONS(4934), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4934), + [anon_sym_BSLASHnameCref] = ACTIONS(4934), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4934), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4934), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4934), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4934), + [anon_sym_BSLASHlabelcref] = ACTIONS(4934), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4934), + [anon_sym_BSLASHcrefrange] = ACTIONS(4940), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange] = ACTIONS(4940), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), + [anon_sym_BSLASHnewlabel] = ACTIONS(4946), + [anon_sym_BSLASHnewcommand] = ACTIONS(4949), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4952), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4952), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4952), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4952), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4958), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4964), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), + [anon_sym_BSLASHgls] = ACTIONS(4970), + [anon_sym_BSLASHGls] = ACTIONS(4970), + [anon_sym_BSLASHGLS] = ACTIONS(4970), + [anon_sym_BSLASHglspl] = ACTIONS(4970), + [anon_sym_BSLASHGlspl] = ACTIONS(4970), + [anon_sym_BSLASHGLSpl] = ACTIONS(4970), + [anon_sym_BSLASHglsdisp] = ACTIONS(4970), + [anon_sym_BSLASHglslink] = ACTIONS(4970), + [anon_sym_BSLASHglstext] = ACTIONS(4970), + [anon_sym_BSLASHGlstext] = ACTIONS(4970), + [anon_sym_BSLASHGLStext] = ACTIONS(4970), + [anon_sym_BSLASHglsfirst] = ACTIONS(4970), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4970), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4970), + [anon_sym_BSLASHglsplural] = ACTIONS(4970), + [anon_sym_BSLASHGlsplural] = ACTIONS(4970), + [anon_sym_BSLASHGLSplural] = ACTIONS(4970), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4970), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4970), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4970), + [anon_sym_BSLASHglsname] = ACTIONS(4970), + [anon_sym_BSLASHGlsname] = ACTIONS(4970), + [anon_sym_BSLASHGLSname] = ACTIONS(4970), + [anon_sym_BSLASHglssymbol] = ACTIONS(4970), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4970), + [anon_sym_BSLASHglsdesc] = ACTIONS(4970), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4970), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4970), + [anon_sym_BSLASHglsuseri] = ACTIONS(4970), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4970), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4970), + [anon_sym_BSLASHglsuserii] = ACTIONS(4970), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4970), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4970), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4970), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4970), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4970), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4970), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4970), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4970), + [anon_sym_BSLASHglsuserv] = ACTIONS(4970), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4970), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4970), + [anon_sym_BSLASHglsuservi] = ACTIONS(4970), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4970), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4970), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4976), + [anon_sym_BSLASHAcrshort] = ACTIONS(4976), + [anon_sym_BSLASHACRshort] = ACTIONS(4976), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4976), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4976), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4976), + [anon_sym_BSLASHacrlong] = ACTIONS(4976), + [anon_sym_BSLASHAcrlong] = ACTIONS(4976), + [anon_sym_BSLASHACRlong] = ACTIONS(4976), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4976), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4976), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4976), + [anon_sym_BSLASHacrfull] = ACTIONS(4976), + [anon_sym_BSLASHAcrfull] = ACTIONS(4976), + [anon_sym_BSLASHACRfull] = ACTIONS(4976), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4976), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4976), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4976), + [anon_sym_BSLASHacs] = ACTIONS(4976), + [anon_sym_BSLASHAcs] = ACTIONS(4976), + [anon_sym_BSLASHacsp] = ACTIONS(4976), + [anon_sym_BSLASHAcsp] = ACTIONS(4976), + [anon_sym_BSLASHacl] = ACTIONS(4976), + [anon_sym_BSLASHAcl] = ACTIONS(4976), + [anon_sym_BSLASHaclp] = ACTIONS(4976), + [anon_sym_BSLASHAclp] = ACTIONS(4976), + [anon_sym_BSLASHacf] = ACTIONS(4976), + [anon_sym_BSLASHAcf] = ACTIONS(4976), + [anon_sym_BSLASHacfp] = ACTIONS(4976), + [anon_sym_BSLASHAcfp] = ACTIONS(4976), + [anon_sym_BSLASHac] = ACTIONS(4976), + [anon_sym_BSLASHAc] = ACTIONS(4976), + [anon_sym_BSLASHacp] = ACTIONS(4976), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4976), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4976), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4976), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4976), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4976), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4976), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4976), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4976), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4976), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4976), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4982), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4985), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4988), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4994), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4994), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), + }, + [307] = { + [sym_block_comment] = STATE(1629), + [sym_operator] = STATE(1629), + [sym__command] = STATE(1629), + [sym_generic_command] = STATE(1629), + [sym_title_declaration] = STATE(1629), + [sym_author_declaration] = STATE(1629), + [sym_package_include] = STATE(1629), + [sym_class_include] = STATE(1629), + [sym_latex_include] = STATE(1629), + [sym_biblatex_include] = STATE(1629), + [sym_bibtex_include] = STATE(1629), + [sym_graphics_include] = STATE(1629), + [sym_svg_include] = STATE(1629), + [sym_inkscape_include] = STATE(1629), + [sym_verbatim_include] = STATE(1629), + [sym_import_include] = STATE(1629), + [sym_caption] = STATE(1629), + [sym_citation] = STATE(1629), + [sym_label_definition] = STATE(1629), + [sym_label_reference] = STATE(1629), + [sym_label_reference_range] = STATE(1629), + [sym_label_number] = STATE(1629), + [sym_new_command_definition] = STATE(1629), + [sym_old_command_definition] = STATE(1629), + [sym_let_command_definition] = STATE(1629), + [sym_paired_delimiter_definition] = STATE(1629), + [sym_environment_definition] = STATE(1629), + [sym_glossary_entry_definition] = STATE(1629), + [sym_glossary_entry_reference] = STATE(1629), + [sym_acronym_definition] = STATE(1629), + [sym_acronym_reference] = STATE(1629), + [sym_theorem_definition] = STATE(1629), + [sym_color_definition] = STATE(1629), + [sym_color_set_definition] = STATE(1629), + [sym_color_reference] = STATE(1629), + [sym_tikz_library_import] = STATE(1629), + [aux_sym_text_repeat1] = STATE(307), + [sym_command_name] = ACTIONS(4997), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_BSLASHand] = ACTIONS(2875), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym__] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_COLON] = ACTIONS(5009), + [anon_sym_SQUOTE] = ACTIONS(5009), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2875), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2867), + [anon_sym_BSLASHtitle] = ACTIONS(5012), + [anon_sym_BSLASHauthor] = ACTIONS(5015), + [anon_sym_BSLASHusepackage] = ACTIONS(5018), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5018), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5024), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5024), + [anon_sym_BSLASHinput] = ACTIONS(5024), + [anon_sym_BSLASHsubfile] = ACTIONS(5024), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), + [anon_sym_BSLASHbibliography] = ACTIONS(5030), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5036), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5042), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5042), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5048), + [anon_sym_BSLASHcite] = ACTIONS(5051), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5054), + [anon_sym_BSLASHCite] = ACTIONS(5051), + [anon_sym_BSLASHnocite] = ACTIONS(5051), + [anon_sym_BSLASHcitet] = ACTIONS(5051), + [anon_sym_BSLASHcitep] = ACTIONS(5051), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5054), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5054), + [anon_sym_BSLASHciteauthor] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5054), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5054), + [anon_sym_BSLASHcitetitle] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5054), + [anon_sym_BSLASHciteyear] = ACTIONS(5051), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5054), + [anon_sym_BSLASHcitedate] = ACTIONS(5051), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5054), + [anon_sym_BSLASHciteurl] = ACTIONS(5051), + [anon_sym_BSLASHfullcite] = ACTIONS(5051), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5051), + [anon_sym_BSLASHcitealt] = ACTIONS(5051), + [anon_sym_BSLASHcitealp] = ACTIONS(5051), + [anon_sym_BSLASHcitetext] = ACTIONS(5051), + [anon_sym_BSLASHparencite] = ACTIONS(5051), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5054), + [anon_sym_BSLASHParencite] = ACTIONS(5051), + [anon_sym_BSLASHfootcite] = ACTIONS(5051), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5051), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5051), + [anon_sym_BSLASHtextcite] = ACTIONS(5051), + [anon_sym_BSLASHTextcite] = ACTIONS(5051), + [anon_sym_BSLASHsmartcite] = ACTIONS(5051), + [anon_sym_BSLASHSmartcite] = ACTIONS(5051), + [anon_sym_BSLASHsupercite] = ACTIONS(5051), + [anon_sym_BSLASHautocite] = ACTIONS(5051), + [anon_sym_BSLASHAutocite] = ACTIONS(5051), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5054), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5054), + [anon_sym_BSLASHvolcite] = ACTIONS(5051), + [anon_sym_BSLASHVolcite] = ACTIONS(5051), + [anon_sym_BSLASHpvolcite] = ACTIONS(5051), + [anon_sym_BSLASHPvolcite] = ACTIONS(5051), + [anon_sym_BSLASHfvolcite] = ACTIONS(5051), + [anon_sym_BSLASHftvolcite] = ACTIONS(5051), + [anon_sym_BSLASHsvolcite] = ACTIONS(5051), + [anon_sym_BSLASHSvolcite] = ACTIONS(5051), + [anon_sym_BSLASHtvolcite] = ACTIONS(5051), + [anon_sym_BSLASHTvolcite] = ACTIONS(5051), + [anon_sym_BSLASHavolcite] = ACTIONS(5051), + [anon_sym_BSLASHAvolcite] = ACTIONS(5051), + [anon_sym_BSLASHnotecite] = ACTIONS(5051), + [anon_sym_BSLASHNotecite] = ACTIONS(5051), + [anon_sym_BSLASHpnotecite] = ACTIONS(5051), + [anon_sym_BSLASHPnotecite] = ACTIONS(5051), + [anon_sym_BSLASHfnotecite] = ACTIONS(5051), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5060), + [anon_sym_BSLASHeqref] = ACTIONS(5060), + [anon_sym_BSLASHvref] = ACTIONS(5060), + [anon_sym_BSLASHVref] = ACTIONS(5060), + [anon_sym_BSLASHautoref] = ACTIONS(5060), + [anon_sym_BSLASHpageref] = ACTIONS(5060), + [anon_sym_BSLASHcref] = ACTIONS(5060), + [anon_sym_BSLASHCref] = ACTIONS(5060), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5060), + [anon_sym_BSLASHnameCref] = ACTIONS(5060), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5060), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5060), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5060), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5060), + [anon_sym_BSLASHlabelcref] = ACTIONS(5060), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5060), + [anon_sym_BSLASHcrefrange] = ACTIONS(5066), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange] = ACTIONS(5066), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), + [anon_sym_BSLASHnewlabel] = ACTIONS(5072), + [anon_sym_BSLASHnewcommand] = ACTIONS(5075), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5078), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5078), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5078), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5078), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5084), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5087), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5087), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5096), + [anon_sym_BSLASHGls] = ACTIONS(5096), + [anon_sym_BSLASHGLS] = ACTIONS(5096), + [anon_sym_BSLASHglspl] = ACTIONS(5096), + [anon_sym_BSLASHGlspl] = ACTIONS(5096), + [anon_sym_BSLASHGLSpl] = ACTIONS(5096), + [anon_sym_BSLASHglsdisp] = ACTIONS(5096), + [anon_sym_BSLASHglslink] = ACTIONS(5096), + [anon_sym_BSLASHglstext] = ACTIONS(5096), + [anon_sym_BSLASHGlstext] = ACTIONS(5096), + [anon_sym_BSLASHGLStext] = ACTIONS(5096), + [anon_sym_BSLASHglsfirst] = ACTIONS(5096), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5096), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5096), + [anon_sym_BSLASHglsplural] = ACTIONS(5096), + [anon_sym_BSLASHGlsplural] = ACTIONS(5096), + [anon_sym_BSLASHGLSplural] = ACTIONS(5096), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5096), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5096), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5096), + [anon_sym_BSLASHglsname] = ACTIONS(5096), + [anon_sym_BSLASHGlsname] = ACTIONS(5096), + [anon_sym_BSLASHGLSname] = ACTIONS(5096), + [anon_sym_BSLASHglssymbol] = ACTIONS(5096), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5096), + [anon_sym_BSLASHglsdesc] = ACTIONS(5096), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5096), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5096), + [anon_sym_BSLASHglsuseri] = ACTIONS(5096), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5096), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5096), + [anon_sym_BSLASHglsuserii] = ACTIONS(5096), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5096), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5096), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5096), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5096), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5096), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5096), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5096), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5096), + [anon_sym_BSLASHglsuserv] = ACTIONS(5096), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5096), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5096), + [anon_sym_BSLASHglsuservi] = ACTIONS(5096), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5096), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5096), + [anon_sym_BSLASHnewacronym] = ACTIONS(5099), + [anon_sym_BSLASHacrshort] = ACTIONS(5102), + [anon_sym_BSLASHAcrshort] = ACTIONS(5102), + [anon_sym_BSLASHACRshort] = ACTIONS(5102), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5102), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5102), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5102), + [anon_sym_BSLASHacrlong] = ACTIONS(5102), + [anon_sym_BSLASHAcrlong] = ACTIONS(5102), + [anon_sym_BSLASHACRlong] = ACTIONS(5102), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5102), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5102), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5102), + [anon_sym_BSLASHacrfull] = ACTIONS(5102), + [anon_sym_BSLASHAcrfull] = ACTIONS(5102), + [anon_sym_BSLASHACRfull] = ACTIONS(5102), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5102), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5102), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5102), + [anon_sym_BSLASHacs] = ACTIONS(5102), + [anon_sym_BSLASHAcs] = ACTIONS(5102), + [anon_sym_BSLASHacsp] = ACTIONS(5102), + [anon_sym_BSLASHAcsp] = ACTIONS(5102), + [anon_sym_BSLASHacl] = ACTIONS(5102), + [anon_sym_BSLASHAcl] = ACTIONS(5102), + [anon_sym_BSLASHaclp] = ACTIONS(5102), + [anon_sym_BSLASHAclp] = ACTIONS(5102), + [anon_sym_BSLASHacf] = ACTIONS(5102), + [anon_sym_BSLASHAcf] = ACTIONS(5102), + [anon_sym_BSLASHacfp] = ACTIONS(5102), + [anon_sym_BSLASHAcfp] = ACTIONS(5102), + [anon_sym_BSLASHac] = ACTIONS(5102), + [anon_sym_BSLASHAc] = ACTIONS(5102), + [anon_sym_BSLASHacp] = ACTIONS(5102), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5102), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5102), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5102), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5102), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5102), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5102), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5102), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5102), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5102), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5102), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5114), + [anon_sym_BSLASHcolor] = ACTIONS(5117), + [anon_sym_BSLASHcolorbox] = ACTIONS(5117), + [anon_sym_BSLASHtextcolor] = ACTIONS(5117), + [anon_sym_BSLASHpagecolor] = ACTIONS(5117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5120), + [anon_sym_BSLASHtext] = ACTIONS(2875), + [anon_sym_BSLASHintertext] = ACTIONS(2875), + [anon_sym_shortintertext] = ACTIONS(2875), + }, + [308] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2823), + [sym_operator] = STATE(1724), + [sym__trivia_text_comment] = STATE(2824), + [sym__trivia_text_verbatim] = STATE(2826), + [sym__trivia_text_listing] = STATE(2827), + [sym__trivia_text_minted] = STATE(2828), + [sym__trivia_text_pycode] = STATE(2829), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1995), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_comment] = ACTIONS(5133), + [anon_sym_verbatim] = ACTIONS(5135), + [anon_sym_lstlisting] = ACTIONS(5137), + [anon_sym_minted] = ACTIONS(5139), + [anon_sym_pycode] = ACTIONS(5141), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [309] = { + [sym_block_comment] = STATE(1629), + [sym_operator] = STATE(1629), + [sym__command] = STATE(1629), + [sym_generic_command] = STATE(1629), + [sym_title_declaration] = STATE(1629), + [sym_author_declaration] = STATE(1629), + [sym_package_include] = STATE(1629), + [sym_class_include] = STATE(1629), + [sym_latex_include] = STATE(1629), + [sym_biblatex_include] = STATE(1629), + [sym_bibtex_include] = STATE(1629), + [sym_graphics_include] = STATE(1629), + [sym_svg_include] = STATE(1629), + [sym_inkscape_include] = STATE(1629), + [sym_verbatim_include] = STATE(1629), + [sym_import_include] = STATE(1629), + [sym_caption] = STATE(1629), + [sym_citation] = STATE(1629), + [sym_label_definition] = STATE(1629), + [sym_label_reference] = STATE(1629), + [sym_label_reference_range] = STATE(1629), + [sym_label_number] = STATE(1629), + [sym_new_command_definition] = STATE(1629), + [sym_old_command_definition] = STATE(1629), + [sym_let_command_definition] = STATE(1629), + [sym_paired_delimiter_definition] = STATE(1629), + [sym_environment_definition] = STATE(1629), + [sym_glossary_entry_definition] = STATE(1629), + [sym_glossary_entry_reference] = STATE(1629), + [sym_acronym_definition] = STATE(1629), + [sym_acronym_reference] = STATE(1629), + [sym_theorem_definition] = STATE(1629), + [sym_color_definition] = STATE(1629), + [sym_color_set_definition] = STATE(1629), + [sym_color_reference] = STATE(1629), + [sym_tikz_library_import] = STATE(1629), + [aux_sym_text_repeat1] = STATE(307), + [sym_command_name] = ACTIONS(4269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_BSLASHand] = ACTIONS(2999), + [sym_word] = ACTIONS(4279), + [sym_placeholder] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym__] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2997), + [anon_sym_BSLASHtitle] = ACTIONS(4293), + [anon_sym_BSLASHauthor] = ACTIONS(4295), + [anon_sym_BSLASHusepackage] = ACTIONS(4297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4299), + [anon_sym_BSLASHinclude] = ACTIONS(4301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4301), + [anon_sym_BSLASHinput] = ACTIONS(4301), + [anon_sym_BSLASHsubfile] = ACTIONS(4301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4303), + [anon_sym_BSLASHbibliography] = ACTIONS(4305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4307), + [anon_sym_BSLASHincludesvg] = ACTIONS(4309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4313), + [anon_sym_BSLASHimport] = ACTIONS(4315), + [anon_sym_BSLASHsubimport] = ACTIONS(4315), + [anon_sym_BSLASHinputfrom] = ACTIONS(4315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4315), + [anon_sym_BSLASHincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4315), + [anon_sym_BSLASHcaption] = ACTIONS(4317), + [anon_sym_BSLASHcite] = ACTIONS(4319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCite] = ACTIONS(4319), + [anon_sym_BSLASHnocite] = ACTIONS(4319), + [anon_sym_BSLASHcitet] = ACTIONS(4319), + [anon_sym_BSLASHcitep] = ACTIONS(4319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteauthor] = ACTIONS(4319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitetitle] = ACTIONS(4319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteyear] = ACTIONS(4319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4321), + [anon_sym_BSLASHcitedate] = ACTIONS(4319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4321), + [anon_sym_BSLASHciteurl] = ACTIONS(4319), + [anon_sym_BSLASHfullcite] = ACTIONS(4319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4319), + [anon_sym_BSLASHcitealt] = ACTIONS(4319), + [anon_sym_BSLASHcitealp] = ACTIONS(4319), + [anon_sym_BSLASHcitetext] = ACTIONS(4319), + [anon_sym_BSLASHparencite] = ACTIONS(4319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHParencite] = ACTIONS(4319), + [anon_sym_BSLASHfootcite] = ACTIONS(4319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4319), + [anon_sym_BSLASHtextcite] = ACTIONS(4319), + [anon_sym_BSLASHTextcite] = ACTIONS(4319), + [anon_sym_BSLASHsmartcite] = ACTIONS(4319), + [anon_sym_BSLASHSmartcite] = ACTIONS(4319), + [anon_sym_BSLASHsupercite] = ACTIONS(4319), + [anon_sym_BSLASHautocite] = ACTIONS(4319), + [anon_sym_BSLASHAutocite] = ACTIONS(4319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4321), + [anon_sym_BSLASHvolcite] = ACTIONS(4319), + [anon_sym_BSLASHVolcite] = ACTIONS(4319), + [anon_sym_BSLASHpvolcite] = ACTIONS(4319), + [anon_sym_BSLASHPvolcite] = ACTIONS(4319), + [anon_sym_BSLASHfvolcite] = ACTIONS(4319), + [anon_sym_BSLASHftvolcite] = ACTIONS(4319), + [anon_sym_BSLASHsvolcite] = ACTIONS(4319), + [anon_sym_BSLASHSvolcite] = ACTIONS(4319), + [anon_sym_BSLASHtvolcite] = ACTIONS(4319), + [anon_sym_BSLASHTvolcite] = ACTIONS(4319), + [anon_sym_BSLASHavolcite] = ACTIONS(4319), + [anon_sym_BSLASHAvolcite] = ACTIONS(4319), + [anon_sym_BSLASHnotecite] = ACTIONS(4319), + [anon_sym_BSLASHNotecite] = ACTIONS(4319), + [anon_sym_BSLASHpnotecite] = ACTIONS(4319), + [anon_sym_BSLASHPnotecite] = ACTIONS(4319), + [anon_sym_BSLASHfnotecite] = ACTIONS(4319), + [anon_sym_BSLASHlabel] = ACTIONS(4323), + [anon_sym_BSLASHref] = ACTIONS(4325), + [anon_sym_BSLASHeqref] = ACTIONS(4325), + [anon_sym_BSLASHvref] = ACTIONS(4325), + [anon_sym_BSLASHVref] = ACTIONS(4325), + [anon_sym_BSLASHautoref] = ACTIONS(4325), + [anon_sym_BSLASHpageref] = ACTIONS(4325), + [anon_sym_BSLASHcref] = ACTIONS(4325), + [anon_sym_BSLASHCref] = ACTIONS(4325), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4327), + [anon_sym_BSLASHnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnameCref] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4325), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4325), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4325), + [anon_sym_BSLASHlabelcref] = ACTIONS(4325), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4325), + [anon_sym_BSLASHcrefrange] = ACTIONS(4329), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHCrefrange] = ACTIONS(4329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4331), + [anon_sym_BSLASHnewlabel] = ACTIONS(4333), + [anon_sym_BSLASHnewcommand] = ACTIONS(4335), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4335), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4335), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4337), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4337), + [anon_sym_BSLASHdef] = ACTIONS(4339), + [anon_sym_BSLASHlet] = ACTIONS(4341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4343), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4343), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4347), + [anon_sym_BSLASHgls] = ACTIONS(4349), + [anon_sym_BSLASHGls] = ACTIONS(4349), + [anon_sym_BSLASHGLS] = ACTIONS(4349), + [anon_sym_BSLASHglspl] = ACTIONS(4349), + [anon_sym_BSLASHGlspl] = ACTIONS(4349), + [anon_sym_BSLASHGLSpl] = ACTIONS(4349), + [anon_sym_BSLASHglsdisp] = ACTIONS(4349), + [anon_sym_BSLASHglslink] = ACTIONS(4349), + [anon_sym_BSLASHglstext] = ACTIONS(4349), + [anon_sym_BSLASHGlstext] = ACTIONS(4349), + [anon_sym_BSLASHGLStext] = ACTIONS(4349), + [anon_sym_BSLASHglsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4349), + [anon_sym_BSLASHglsplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSplural] = ACTIONS(4349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4349), + [anon_sym_BSLASHglsname] = ACTIONS(4349), + [anon_sym_BSLASHGlsname] = ACTIONS(4349), + [anon_sym_BSLASHGLSname] = ACTIONS(4349), + [anon_sym_BSLASHglssymbol] = ACTIONS(4349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4349), + [anon_sym_BSLASHglsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4349), + [anon_sym_BSLASHglsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4349), + [anon_sym_BSLASHglsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4349), + [anon_sym_BSLASHglsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4349), + [anon_sym_BSLASHglsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4349), + [anon_sym_BSLASHnewacronym] = ACTIONS(4351), + [anon_sym_BSLASHacrshort] = ACTIONS(4353), + [anon_sym_BSLASHAcrshort] = ACTIONS(4353), + [anon_sym_BSLASHACRshort] = ACTIONS(4353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4353), + [anon_sym_BSLASHacrlong] = ACTIONS(4353), + [anon_sym_BSLASHAcrlong] = ACTIONS(4353), + [anon_sym_BSLASHACRlong] = ACTIONS(4353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4353), + [anon_sym_BSLASHacrfull] = ACTIONS(4353), + [anon_sym_BSLASHAcrfull] = ACTIONS(4353), + [anon_sym_BSLASHACRfull] = ACTIONS(4353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4353), + [anon_sym_BSLASHacs] = ACTIONS(4353), + [anon_sym_BSLASHAcs] = ACTIONS(4353), + [anon_sym_BSLASHacsp] = ACTIONS(4353), + [anon_sym_BSLASHAcsp] = ACTIONS(4353), + [anon_sym_BSLASHacl] = ACTIONS(4353), + [anon_sym_BSLASHAcl] = ACTIONS(4353), + [anon_sym_BSLASHaclp] = ACTIONS(4353), + [anon_sym_BSLASHAclp] = ACTIONS(4353), + [anon_sym_BSLASHacf] = ACTIONS(4353), + [anon_sym_BSLASHAcf] = ACTIONS(4353), + [anon_sym_BSLASHacfp] = ACTIONS(4353), + [anon_sym_BSLASHAcfp] = ACTIONS(4353), + [anon_sym_BSLASHac] = ACTIONS(4353), + [anon_sym_BSLASHAc] = ACTIONS(4353), + [anon_sym_BSLASHacp] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4355), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4355), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4359), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4361), + [anon_sym_BSLASHcolor] = ACTIONS(4363), + [anon_sym_BSLASHcolorbox] = ACTIONS(4363), + [anon_sym_BSLASHtextcolor] = ACTIONS(4363), + [anon_sym_BSLASHpagecolor] = ACTIONS(4363), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4365), + [anon_sym_BSLASHtext] = ACTIONS(2999), + [anon_sym_BSLASHintertext] = ACTIONS(2999), + [anon_sym_shortintertext] = ACTIONS(2999), + }, + [310] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5217), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(5217), + [anon_sym_RBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), + }, + [311] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [312] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [313] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [314] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [315] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5229), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [anon_sym_RBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [316] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5229), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [anon_sym_RBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [317] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5229), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [anon_sym_RBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [318] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5229), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(5229), + [anon_sym_RBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [319] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5233), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [anon_sym_RBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, [320] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5233), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [anon_sym_RBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, [321] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_command_name] = ACTIONS(1979), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5233), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(5233), + [anon_sym_RBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, [322] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_command_name] = ACTIONS(1979), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5217), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(5219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [anon_sym_RBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, [323] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_command_name] = ACTIONS(1979), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [sym_curly_group] = STATE(732), + [sym_mixed_group] = STATE(732), + [aux_sym_generic_command_repeat1] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(5237), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5241), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_BSLASHpart] = ACTIONS(5239), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddpart] = ACTIONS(5239), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHchapter] = ACTIONS(5239), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddchap] = ACTIONS(5239), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsection] = ACTIONS(5239), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddsec] = ACTIONS(5239), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHparagraph] = ACTIONS(5239), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHitem] = ACTIONS(5239), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, [324] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [325] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [326] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [327] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [328] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [329] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [330] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [331] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [332] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [333] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [334] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [335] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [336] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [337] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [338] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_command_name] = ACTIONS(1919), + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5247), + [sym_command_name] = ACTIONS(5249), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [339] = { - [sym__enum_itemdeclaration] = STATE(193), - [sym_enum_item] = STATE(282), - [aux_sym__section_repeat8] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [340] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(283), - [aux_sym__section_repeat7] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [341] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), - [aux_sym__section_repeat6] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [342] = { - [sym__subsubsection_declaration] = STATE(162), - [sym_subsubsection] = STATE(285), - [aux_sym__section_repeat5] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [343] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(293), - [aux_sym__section_repeat4] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [344] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(315), - [aux_sym__section_repeat3] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [345] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(316), - [aux_sym__section_repeat2] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [346] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [347] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [348] = { - [sym_curly_group] = STATE(915), - [sym_mixed_group] = STATE(915), - [aux_sym_generic_command_repeat1] = STATE(417), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4739), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4739), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_BSLASHpart] = ACTIONS(4629), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddpart] = ACTIONS(4629), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHchapter] = ACTIONS(4629), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddchap] = ACTIONS(4629), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsection] = ACTIONS(4629), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddsec] = ACTIONS(4629), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHparagraph] = ACTIONS(4629), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4629), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHitem] = ACTIONS(4629), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), - }, - [349] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHend] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [350] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4707), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym_RPAREN] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_RBRACK] = ACTIONS(4705), - [anon_sym_COMMA] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_BSLASHpart] = ACTIONS(4707), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddpart] = ACTIONS(4707), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHchapter] = ACTIONS(4707), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddchap] = ACTIONS(4707), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHparagraph] = ACTIONS(4707), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4707), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4705), - [sym_word] = ACTIONS(4707), - [sym_placeholder] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_CARET] = ACTIONS(4707), - [anon_sym__] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4707), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4705), - [anon_sym_BSLASHbegin] = ACTIONS(4707), - [anon_sym_BSLASHusepackage] = ACTIONS(4707), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4707), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4707), - [anon_sym_BSLASHinclude] = ACTIONS(4707), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4707), - [anon_sym_BSLASHinput] = ACTIONS(4707), - [anon_sym_BSLASHsubfile] = ACTIONS(4707), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4707), - [anon_sym_BSLASHbibliography] = ACTIONS(4707), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4707), - [anon_sym_BSLASHincludesvg] = ACTIONS(4707), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4707), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4707), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4707), - [anon_sym_BSLASHimport] = ACTIONS(4707), - [anon_sym_BSLASHsubimport] = ACTIONS(4707), - [anon_sym_BSLASHinputfrom] = ACTIONS(4707), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4707), - [anon_sym_BSLASHincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHcaption] = ACTIONS(4707), - [anon_sym_BSLASHcite] = ACTIONS(4707), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCite] = ACTIONS(4707), - [anon_sym_BSLASHnocite] = ACTIONS(4707), - [anon_sym_BSLASHcitet] = ACTIONS(4707), - [anon_sym_BSLASHcitep] = ACTIONS(4707), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteauthor] = ACTIONS(4707), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4707), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitetitle] = ACTIONS(4707), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteyear] = ACTIONS(4707), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitedate] = ACTIONS(4707), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteurl] = ACTIONS(4707), - [anon_sym_BSLASHfullcite] = ACTIONS(4707), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4707), - [anon_sym_BSLASHcitealt] = ACTIONS(4707), - [anon_sym_BSLASHcitealp] = ACTIONS(4707), - [anon_sym_BSLASHcitetext] = ACTIONS(4707), - [anon_sym_BSLASHparencite] = ACTIONS(4707), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHParencite] = ACTIONS(4707), - [anon_sym_BSLASHfootcite] = ACTIONS(4707), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4707), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4707), - [anon_sym_BSLASHtextcite] = ACTIONS(4707), - [anon_sym_BSLASHTextcite] = ACTIONS(4707), - [anon_sym_BSLASHsmartcite] = ACTIONS(4707), - [anon_sym_BSLASHSmartcite] = ACTIONS(4707), - [anon_sym_BSLASHsupercite] = ACTIONS(4707), - [anon_sym_BSLASHautocite] = ACTIONS(4707), - [anon_sym_BSLASHAutocite] = ACTIONS(4707), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHvolcite] = ACTIONS(4707), - [anon_sym_BSLASHVolcite] = ACTIONS(4707), - [anon_sym_BSLASHpvolcite] = ACTIONS(4707), - [anon_sym_BSLASHPvolcite] = ACTIONS(4707), - [anon_sym_BSLASHfvolcite] = ACTIONS(4707), - [anon_sym_BSLASHftvolcite] = ACTIONS(4707), - [anon_sym_BSLASHsvolcite] = ACTIONS(4707), - [anon_sym_BSLASHSvolcite] = ACTIONS(4707), - [anon_sym_BSLASHtvolcite] = ACTIONS(4707), - [anon_sym_BSLASHTvolcite] = ACTIONS(4707), - [anon_sym_BSLASHavolcite] = ACTIONS(4707), - [anon_sym_BSLASHAvolcite] = ACTIONS(4707), - [anon_sym_BSLASHnotecite] = ACTIONS(4707), - [anon_sym_BSLASHNotecite] = ACTIONS(4707), - [anon_sym_BSLASHpnotecite] = ACTIONS(4707), - [anon_sym_BSLASHPnotecite] = ACTIONS(4707), - [anon_sym_BSLASHfnotecite] = ACTIONS(4707), - [anon_sym_BSLASHlabel] = ACTIONS(4707), - [anon_sym_BSLASHref] = ACTIONS(4707), - [anon_sym_BSLASHeqref] = ACTIONS(4707), - [anon_sym_BSLASHvref] = ACTIONS(4707), - [anon_sym_BSLASHVref] = ACTIONS(4707), - [anon_sym_BSLASHautoref] = ACTIONS(4707), - [anon_sym_BSLASHpageref] = ACTIONS(4707), - [anon_sym_BSLASHcref] = ACTIONS(4707), - [anon_sym_BSLASHCref] = ACTIONS(4707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnameCref] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHlabelcref] = ACTIONS(4707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCrefrange] = ACTIONS(4707), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnewlabel] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdef] = ACTIONS(4707), - [anon_sym_BSLASHlet] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4707), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4707), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), - [anon_sym_BSLASHgls] = ACTIONS(4707), - [anon_sym_BSLASHGls] = ACTIONS(4707), - [anon_sym_BSLASHGLS] = ACTIONS(4707), - [anon_sym_BSLASHglspl] = ACTIONS(4707), - [anon_sym_BSLASHGlspl] = ACTIONS(4707), - [anon_sym_BSLASHGLSpl] = ACTIONS(4707), - [anon_sym_BSLASHglsdisp] = ACTIONS(4707), - [anon_sym_BSLASHglslink] = ACTIONS(4707), - [anon_sym_BSLASHglstext] = ACTIONS(4707), - [anon_sym_BSLASHGlstext] = ACTIONS(4707), - [anon_sym_BSLASHGLStext] = ACTIONS(4707), - [anon_sym_BSLASHglsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4707), - [anon_sym_BSLASHglsplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSplural] = ACTIONS(4707), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHglsname] = ACTIONS(4707), - [anon_sym_BSLASHGlsname] = ACTIONS(4707), - [anon_sym_BSLASHGLSname] = ACTIONS(4707), - [anon_sym_BSLASHglssymbol] = ACTIONS(4707), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4707), - [anon_sym_BSLASHglsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4707), - [anon_sym_BSLASHglsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4707), - [anon_sym_BSLASHglsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4707), - [anon_sym_BSLASHglsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4707), - [anon_sym_BSLASHglsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4707), - [anon_sym_BSLASHnewacronym] = ACTIONS(4707), - [anon_sym_BSLASHacrshort] = ACTIONS(4707), - [anon_sym_BSLASHAcrshort] = ACTIONS(4707), - [anon_sym_BSLASHACRshort] = ACTIONS(4707), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4707), - [anon_sym_BSLASHacrlong] = ACTIONS(4707), - [anon_sym_BSLASHAcrlong] = ACTIONS(4707), - [anon_sym_BSLASHACRlong] = ACTIONS(4707), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4707), - [anon_sym_BSLASHacrfull] = ACTIONS(4707), - [anon_sym_BSLASHAcrfull] = ACTIONS(4707), - [anon_sym_BSLASHACRfull] = ACTIONS(4707), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4707), - [anon_sym_BSLASHacs] = ACTIONS(4707), - [anon_sym_BSLASHAcs] = ACTIONS(4707), - [anon_sym_BSLASHacsp] = ACTIONS(4707), - [anon_sym_BSLASHAcsp] = ACTIONS(4707), - [anon_sym_BSLASHacl] = ACTIONS(4707), - [anon_sym_BSLASHAcl] = ACTIONS(4707), - [anon_sym_BSLASHaclp] = ACTIONS(4707), - [anon_sym_BSLASHAclp] = ACTIONS(4707), - [anon_sym_BSLASHacf] = ACTIONS(4707), - [anon_sym_BSLASHAcf] = ACTIONS(4707), - [anon_sym_BSLASHacfp] = ACTIONS(4707), - [anon_sym_BSLASHAcfp] = ACTIONS(4707), - [anon_sym_BSLASHac] = ACTIONS(4707), - [anon_sym_BSLASHAc] = ACTIONS(4707), - [anon_sym_BSLASHacp] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4707), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4707), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4707), - [anon_sym_BSLASHcolor] = ACTIONS(4707), - [anon_sym_BSLASHcolorbox] = ACTIONS(4707), - [anon_sym_BSLASHtextcolor] = ACTIONS(4707), - [anon_sym_BSLASHpagecolor] = ACTIONS(4707), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4707), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4707), - [anon_sym_BSLASHtext] = ACTIONS(4707), - [anon_sym_BSLASHintertext] = ACTIONS(4707), - [anon_sym_shortintertext] = ACTIONS(4707), - }, - [351] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHend] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [352] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHend] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [353] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4703), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [354] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHend] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [355] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHend] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [356] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHend] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [357] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4703), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [358] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHend] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [359] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [360] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [361] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [362] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [363] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [364] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [365] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [366] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [367] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [368] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [369] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHend] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [370] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [371] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [372] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [373] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [374] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [375] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [376] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [377] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [378] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [379] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [380] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [381] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [382] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [383] = { - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(399), - [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHend] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [384] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [385] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [386] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [387] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [388] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [389] = { - [sym_curly_group] = STATE(1139), - [sym_mixed_group] = STATE(1139), - [aux_sym_generic_command_repeat1] = STATE(389), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_BSLASHpart] = ACTIONS(4619), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddpart] = ACTIONS(4619), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHchapter] = ACTIONS(4619), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddchap] = ACTIONS(4619), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsection] = ACTIONS(4619), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddsec] = ACTIONS(4619), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHparagraph] = ACTIONS(4619), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4619), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHitem] = ACTIONS(4619), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4744), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHend] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), - }, - [390] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [391] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4633), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHchapter] = ACTIONS(4633), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddchap] = ACTIONS(4633), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsection] = ACTIONS(4633), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddsec] = ACTIONS(4633), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHparagraph] = ACTIONS(4633), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4633), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHitem] = ACTIONS(4747), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4750), - [anon_sym_LBRACE] = ACTIONS(4631), - [sym_word] = ACTIONS(4633), - [sym_placeholder] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym__] = ACTIONS(4633), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4633), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4631), - [anon_sym_BSLASHbegin] = ACTIONS(4633), - [anon_sym_BSLASHend] = ACTIONS(4633), - [anon_sym_BSLASHusepackage] = ACTIONS(4633), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4633), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4633), - [anon_sym_BSLASHinclude] = ACTIONS(4633), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), - [anon_sym_BSLASHinput] = ACTIONS(4633), - [anon_sym_BSLASHsubfile] = ACTIONS(4633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4633), - [anon_sym_BSLASHbibliography] = ACTIONS(4633), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4633), - [anon_sym_BSLASHincludesvg] = ACTIONS(4633), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4633), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4633), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4633), - [anon_sym_BSLASHimport] = ACTIONS(4633), - [anon_sym_BSLASHsubimport] = ACTIONS(4633), - [anon_sym_BSLASHinputfrom] = ACTIONS(4633), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4633), - [anon_sym_BSLASHincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHcaption] = ACTIONS(4633), - [anon_sym_BSLASHcite] = ACTIONS(4633), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCite] = ACTIONS(4633), - [anon_sym_BSLASHnocite] = ACTIONS(4633), - [anon_sym_BSLASHcitet] = ACTIONS(4633), - [anon_sym_BSLASHcitep] = ACTIONS(4633), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteauthor] = ACTIONS(4633), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4633), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitetitle] = ACTIONS(4633), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteyear] = ACTIONS(4633), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitedate] = ACTIONS(4633), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteurl] = ACTIONS(4633), - [anon_sym_BSLASHfullcite] = ACTIONS(4633), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4633), - [anon_sym_BSLASHcitealt] = ACTIONS(4633), - [anon_sym_BSLASHcitealp] = ACTIONS(4633), - [anon_sym_BSLASHcitetext] = ACTIONS(4633), - [anon_sym_BSLASHparencite] = ACTIONS(4633), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHParencite] = ACTIONS(4633), - [anon_sym_BSLASHfootcite] = ACTIONS(4633), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4633), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4633), - [anon_sym_BSLASHtextcite] = ACTIONS(4633), - [anon_sym_BSLASHTextcite] = ACTIONS(4633), - [anon_sym_BSLASHsmartcite] = ACTIONS(4633), - [anon_sym_BSLASHSmartcite] = ACTIONS(4633), - [anon_sym_BSLASHsupercite] = ACTIONS(4633), - [anon_sym_BSLASHautocite] = ACTIONS(4633), - [anon_sym_BSLASHAutocite] = ACTIONS(4633), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHvolcite] = ACTIONS(4633), - [anon_sym_BSLASHVolcite] = ACTIONS(4633), - [anon_sym_BSLASHpvolcite] = ACTIONS(4633), - [anon_sym_BSLASHPvolcite] = ACTIONS(4633), - [anon_sym_BSLASHfvolcite] = ACTIONS(4633), - [anon_sym_BSLASHftvolcite] = ACTIONS(4633), - [anon_sym_BSLASHsvolcite] = ACTIONS(4633), - [anon_sym_BSLASHSvolcite] = ACTIONS(4633), - [anon_sym_BSLASHtvolcite] = ACTIONS(4633), - [anon_sym_BSLASHTvolcite] = ACTIONS(4633), - [anon_sym_BSLASHavolcite] = ACTIONS(4633), - [anon_sym_BSLASHAvolcite] = ACTIONS(4633), - [anon_sym_BSLASHnotecite] = ACTIONS(4633), - [anon_sym_BSLASHNotecite] = ACTIONS(4633), - [anon_sym_BSLASHpnotecite] = ACTIONS(4633), - [anon_sym_BSLASHPnotecite] = ACTIONS(4633), - [anon_sym_BSLASHfnotecite] = ACTIONS(4633), - [anon_sym_BSLASHlabel] = ACTIONS(4633), - [anon_sym_BSLASHref] = ACTIONS(4633), - [anon_sym_BSLASHeqref] = ACTIONS(4633), - [anon_sym_BSLASHvref] = ACTIONS(4633), - [anon_sym_BSLASHVref] = ACTIONS(4633), - [anon_sym_BSLASHautoref] = ACTIONS(4633), - [anon_sym_BSLASHpageref] = ACTIONS(4633), - [anon_sym_BSLASHcref] = ACTIONS(4633), - [anon_sym_BSLASHCref] = ACTIONS(4633), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnameCref] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHlabelcref] = ACTIONS(4633), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCrefrange] = ACTIONS(4633), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnewlabel] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4633), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4633), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4633), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdef] = ACTIONS(4633), - [anon_sym_BSLASHlet] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4633), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4633), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4633), - [anon_sym_BSLASHgls] = ACTIONS(4633), - [anon_sym_BSLASHGls] = ACTIONS(4633), - [anon_sym_BSLASHGLS] = ACTIONS(4633), - [anon_sym_BSLASHglspl] = ACTIONS(4633), - [anon_sym_BSLASHGlspl] = ACTIONS(4633), - [anon_sym_BSLASHGLSpl] = ACTIONS(4633), - [anon_sym_BSLASHglsdisp] = ACTIONS(4633), - [anon_sym_BSLASHglslink] = ACTIONS(4633), - [anon_sym_BSLASHglstext] = ACTIONS(4633), - [anon_sym_BSLASHGlstext] = ACTIONS(4633), - [anon_sym_BSLASHGLStext] = ACTIONS(4633), - [anon_sym_BSLASHglsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4633), - [anon_sym_BSLASHglsplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSplural] = ACTIONS(4633), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHglsname] = ACTIONS(4633), - [anon_sym_BSLASHGlsname] = ACTIONS(4633), - [anon_sym_BSLASHGLSname] = ACTIONS(4633), - [anon_sym_BSLASHglssymbol] = ACTIONS(4633), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4633), - [anon_sym_BSLASHglsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4633), - [anon_sym_BSLASHglsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4633), - [anon_sym_BSLASHglsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4633), - [anon_sym_BSLASHglsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4633), - [anon_sym_BSLASHglsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4633), - [anon_sym_BSLASHnewacronym] = ACTIONS(4633), - [anon_sym_BSLASHacrshort] = ACTIONS(4633), - [anon_sym_BSLASHAcrshort] = ACTIONS(4633), - [anon_sym_BSLASHACRshort] = ACTIONS(4633), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4633), - [anon_sym_BSLASHacrlong] = ACTIONS(4633), - [anon_sym_BSLASHAcrlong] = ACTIONS(4633), - [anon_sym_BSLASHACRlong] = ACTIONS(4633), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4633), - [anon_sym_BSLASHacrfull] = ACTIONS(4633), - [anon_sym_BSLASHAcrfull] = ACTIONS(4633), - [anon_sym_BSLASHACRfull] = ACTIONS(4633), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4633), - [anon_sym_BSLASHacs] = ACTIONS(4633), - [anon_sym_BSLASHAcs] = ACTIONS(4633), - [anon_sym_BSLASHacsp] = ACTIONS(4633), - [anon_sym_BSLASHAcsp] = ACTIONS(4633), - [anon_sym_BSLASHacl] = ACTIONS(4633), - [anon_sym_BSLASHAcl] = ACTIONS(4633), - [anon_sym_BSLASHaclp] = ACTIONS(4633), - [anon_sym_BSLASHAclp] = ACTIONS(4633), - [anon_sym_BSLASHacf] = ACTIONS(4633), - [anon_sym_BSLASHAcf] = ACTIONS(4633), - [anon_sym_BSLASHacfp] = ACTIONS(4633), - [anon_sym_BSLASHAcfp] = ACTIONS(4633), - [anon_sym_BSLASHac] = ACTIONS(4633), - [anon_sym_BSLASHAc] = ACTIONS(4633), - [anon_sym_BSLASHacp] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4633), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4633), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4633), - [anon_sym_BSLASHcolor] = ACTIONS(4633), - [anon_sym_BSLASHcolorbox] = ACTIONS(4633), - [anon_sym_BSLASHtextcolor] = ACTIONS(4633), - [anon_sym_BSLASHpagecolor] = ACTIONS(4633), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4633), - [anon_sym_BSLASHtext] = ACTIONS(4633), - [anon_sym_BSLASHintertext] = ACTIONS(4633), - [anon_sym_shortintertext] = ACTIONS(4633), - }, - [392] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4643), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_BSLASHpart] = ACTIONS(4643), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddpart] = ACTIONS(4643), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHchapter] = ACTIONS(4643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddchap] = ACTIONS(4643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsection] = ACTIONS(4643), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddsec] = ACTIONS(4643), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHparagraph] = ACTIONS(4643), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4756), - [anon_sym_BSLASHitem] = ACTIONS(4643), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [sym_word] = ACTIONS(4643), - [sym_placeholder] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym__] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4641), - [anon_sym_BSLASHbegin] = ACTIONS(4643), - [anon_sym_BSLASHend] = ACTIONS(4643), - [anon_sym_BSLASHusepackage] = ACTIONS(4643), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4643), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4643), - [anon_sym_BSLASHinclude] = ACTIONS(4643), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4643), - [anon_sym_BSLASHinput] = ACTIONS(4643), - [anon_sym_BSLASHsubfile] = ACTIONS(4643), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4643), - [anon_sym_BSLASHbibliography] = ACTIONS(4643), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4643), - [anon_sym_BSLASHincludesvg] = ACTIONS(4643), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4643), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4643), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4643), - [anon_sym_BSLASHimport] = ACTIONS(4643), - [anon_sym_BSLASHsubimport] = ACTIONS(4643), - [anon_sym_BSLASHinputfrom] = ACTIONS(4643), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4643), - [anon_sym_BSLASHincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHcaption] = ACTIONS(4643), - [anon_sym_BSLASHcite] = ACTIONS(4643), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCite] = ACTIONS(4643), - [anon_sym_BSLASHnocite] = ACTIONS(4643), - [anon_sym_BSLASHcitet] = ACTIONS(4643), - [anon_sym_BSLASHcitep] = ACTIONS(4643), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteauthor] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitetitle] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteyear] = ACTIONS(4643), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitedate] = ACTIONS(4643), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteurl] = ACTIONS(4643), - [anon_sym_BSLASHfullcite] = ACTIONS(4643), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4643), - [anon_sym_BSLASHcitealt] = ACTIONS(4643), - [anon_sym_BSLASHcitealp] = ACTIONS(4643), - [anon_sym_BSLASHcitetext] = ACTIONS(4643), - [anon_sym_BSLASHparencite] = ACTIONS(4643), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHParencite] = ACTIONS(4643), - [anon_sym_BSLASHfootcite] = ACTIONS(4643), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4643), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4643), - [anon_sym_BSLASHtextcite] = ACTIONS(4643), - [anon_sym_BSLASHTextcite] = ACTIONS(4643), - [anon_sym_BSLASHsmartcite] = ACTIONS(4643), - [anon_sym_BSLASHSmartcite] = ACTIONS(4643), - [anon_sym_BSLASHsupercite] = ACTIONS(4643), - [anon_sym_BSLASHautocite] = ACTIONS(4643), - [anon_sym_BSLASHAutocite] = ACTIONS(4643), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHvolcite] = ACTIONS(4643), - [anon_sym_BSLASHVolcite] = ACTIONS(4643), - [anon_sym_BSLASHpvolcite] = ACTIONS(4643), - [anon_sym_BSLASHPvolcite] = ACTIONS(4643), - [anon_sym_BSLASHfvolcite] = ACTIONS(4643), - [anon_sym_BSLASHftvolcite] = ACTIONS(4643), - [anon_sym_BSLASHsvolcite] = ACTIONS(4643), - [anon_sym_BSLASHSvolcite] = ACTIONS(4643), - [anon_sym_BSLASHtvolcite] = ACTIONS(4643), - [anon_sym_BSLASHTvolcite] = ACTIONS(4643), - [anon_sym_BSLASHavolcite] = ACTIONS(4643), - [anon_sym_BSLASHAvolcite] = ACTIONS(4643), - [anon_sym_BSLASHnotecite] = ACTIONS(4643), - [anon_sym_BSLASHNotecite] = ACTIONS(4643), - [anon_sym_BSLASHpnotecite] = ACTIONS(4643), - [anon_sym_BSLASHPnotecite] = ACTIONS(4643), - [anon_sym_BSLASHfnotecite] = ACTIONS(4643), - [anon_sym_BSLASHlabel] = ACTIONS(4643), - [anon_sym_BSLASHref] = ACTIONS(4643), - [anon_sym_BSLASHeqref] = ACTIONS(4643), - [anon_sym_BSLASHvref] = ACTIONS(4643), - [anon_sym_BSLASHVref] = ACTIONS(4643), - [anon_sym_BSLASHautoref] = ACTIONS(4643), - [anon_sym_BSLASHpageref] = ACTIONS(4643), - [anon_sym_BSLASHcref] = ACTIONS(4643), - [anon_sym_BSLASHCref] = ACTIONS(4643), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnameCref] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHlabelcref] = ACTIONS(4643), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCrefrange] = ACTIONS(4643), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnewlabel] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4643), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4643), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4643), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdef] = ACTIONS(4643), - [anon_sym_BSLASHlet] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4643), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4643), - [anon_sym_BSLASHgls] = ACTIONS(4643), - [anon_sym_BSLASHGls] = ACTIONS(4643), - [anon_sym_BSLASHGLS] = ACTIONS(4643), - [anon_sym_BSLASHglspl] = ACTIONS(4643), - [anon_sym_BSLASHGlspl] = ACTIONS(4643), - [anon_sym_BSLASHGLSpl] = ACTIONS(4643), - [anon_sym_BSLASHglsdisp] = ACTIONS(4643), - [anon_sym_BSLASHglslink] = ACTIONS(4643), - [anon_sym_BSLASHglstext] = ACTIONS(4643), - [anon_sym_BSLASHGlstext] = ACTIONS(4643), - [anon_sym_BSLASHGLStext] = ACTIONS(4643), - [anon_sym_BSLASHglsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4643), - [anon_sym_BSLASHglsplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSplural] = ACTIONS(4643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHglsname] = ACTIONS(4643), - [anon_sym_BSLASHGlsname] = ACTIONS(4643), - [anon_sym_BSLASHGLSname] = ACTIONS(4643), - [anon_sym_BSLASHglssymbol] = ACTIONS(4643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4643), - [anon_sym_BSLASHglsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4643), - [anon_sym_BSLASHglsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4643), - [anon_sym_BSLASHglsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4643), - [anon_sym_BSLASHglsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4643), - [anon_sym_BSLASHglsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4643), - [anon_sym_BSLASHnewacronym] = ACTIONS(4643), - [anon_sym_BSLASHacrshort] = ACTIONS(4643), - [anon_sym_BSLASHAcrshort] = ACTIONS(4643), - [anon_sym_BSLASHACRshort] = ACTIONS(4643), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4643), - [anon_sym_BSLASHacrlong] = ACTIONS(4643), - [anon_sym_BSLASHAcrlong] = ACTIONS(4643), - [anon_sym_BSLASHACRlong] = ACTIONS(4643), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4643), - [anon_sym_BSLASHacrfull] = ACTIONS(4643), - [anon_sym_BSLASHAcrfull] = ACTIONS(4643), - [anon_sym_BSLASHACRfull] = ACTIONS(4643), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4643), - [anon_sym_BSLASHacs] = ACTIONS(4643), - [anon_sym_BSLASHAcs] = ACTIONS(4643), - [anon_sym_BSLASHacsp] = ACTIONS(4643), - [anon_sym_BSLASHAcsp] = ACTIONS(4643), - [anon_sym_BSLASHacl] = ACTIONS(4643), - [anon_sym_BSLASHAcl] = ACTIONS(4643), - [anon_sym_BSLASHaclp] = ACTIONS(4643), - [anon_sym_BSLASHAclp] = ACTIONS(4643), - [anon_sym_BSLASHacf] = ACTIONS(4643), - [anon_sym_BSLASHAcf] = ACTIONS(4643), - [anon_sym_BSLASHacfp] = ACTIONS(4643), - [anon_sym_BSLASHAcfp] = ACTIONS(4643), - [anon_sym_BSLASHac] = ACTIONS(4643), - [anon_sym_BSLASHAc] = ACTIONS(4643), - [anon_sym_BSLASHacp] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4643), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4643), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4643), - [anon_sym_BSLASHcolor] = ACTIONS(4643), - [anon_sym_BSLASHcolorbox] = ACTIONS(4643), - [anon_sym_BSLASHtextcolor] = ACTIONS(4643), - [anon_sym_BSLASHpagecolor] = ACTIONS(4643), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4643), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4643), - [anon_sym_BSLASHtext] = ACTIONS(4643), - [anon_sym_BSLASHintertext] = ACTIONS(4643), - [anon_sym_shortintertext] = ACTIONS(4643), - }, - [393] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [394] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_BSLASHpart] = ACTIONS(4653), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddpart] = ACTIONS(4653), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHchapter] = ACTIONS(4653), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddchap] = ACTIONS(4653), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsection] = ACTIONS(4653), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddsec] = ACTIONS(4653), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHparagraph] = ACTIONS(4759), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4762), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4653), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4651), - [anon_sym_BSLASHitem] = ACTIONS(4653), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [sym_word] = ACTIONS(4653), - [sym_placeholder] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym__] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4651), - [anon_sym_BSLASHbegin] = ACTIONS(4653), - [anon_sym_BSLASHend] = ACTIONS(4653), - [anon_sym_BSLASHusepackage] = ACTIONS(4653), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4653), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4653), - [anon_sym_BSLASHinclude] = ACTIONS(4653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4653), - [anon_sym_BSLASHinput] = ACTIONS(4653), - [anon_sym_BSLASHsubfile] = ACTIONS(4653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4653), - [anon_sym_BSLASHbibliography] = ACTIONS(4653), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4653), - [anon_sym_BSLASHincludesvg] = ACTIONS(4653), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4653), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4653), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4653), - [anon_sym_BSLASHimport] = ACTIONS(4653), - [anon_sym_BSLASHsubimport] = ACTIONS(4653), - [anon_sym_BSLASHinputfrom] = ACTIONS(4653), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4653), - [anon_sym_BSLASHincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHcaption] = ACTIONS(4653), - [anon_sym_BSLASHcite] = ACTIONS(4653), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCite] = ACTIONS(4653), - [anon_sym_BSLASHnocite] = ACTIONS(4653), - [anon_sym_BSLASHcitet] = ACTIONS(4653), - [anon_sym_BSLASHcitep] = ACTIONS(4653), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteauthor] = ACTIONS(4653), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4653), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitetitle] = ACTIONS(4653), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteyear] = ACTIONS(4653), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitedate] = ACTIONS(4653), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteurl] = ACTIONS(4653), - [anon_sym_BSLASHfullcite] = ACTIONS(4653), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4653), - [anon_sym_BSLASHcitealt] = ACTIONS(4653), - [anon_sym_BSLASHcitealp] = ACTIONS(4653), - [anon_sym_BSLASHcitetext] = ACTIONS(4653), - [anon_sym_BSLASHparencite] = ACTIONS(4653), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHParencite] = ACTIONS(4653), - [anon_sym_BSLASHfootcite] = ACTIONS(4653), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4653), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4653), - [anon_sym_BSLASHtextcite] = ACTIONS(4653), - [anon_sym_BSLASHTextcite] = ACTIONS(4653), - [anon_sym_BSLASHsmartcite] = ACTIONS(4653), - [anon_sym_BSLASHSmartcite] = ACTIONS(4653), - [anon_sym_BSLASHsupercite] = ACTIONS(4653), - [anon_sym_BSLASHautocite] = ACTIONS(4653), - [anon_sym_BSLASHAutocite] = ACTIONS(4653), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHvolcite] = ACTIONS(4653), - [anon_sym_BSLASHVolcite] = ACTIONS(4653), - [anon_sym_BSLASHpvolcite] = ACTIONS(4653), - [anon_sym_BSLASHPvolcite] = ACTIONS(4653), - [anon_sym_BSLASHfvolcite] = ACTIONS(4653), - [anon_sym_BSLASHftvolcite] = ACTIONS(4653), - [anon_sym_BSLASHsvolcite] = ACTIONS(4653), - [anon_sym_BSLASHSvolcite] = ACTIONS(4653), - [anon_sym_BSLASHtvolcite] = ACTIONS(4653), - [anon_sym_BSLASHTvolcite] = ACTIONS(4653), - [anon_sym_BSLASHavolcite] = ACTIONS(4653), - [anon_sym_BSLASHAvolcite] = ACTIONS(4653), - [anon_sym_BSLASHnotecite] = ACTIONS(4653), - [anon_sym_BSLASHNotecite] = ACTIONS(4653), - [anon_sym_BSLASHpnotecite] = ACTIONS(4653), - [anon_sym_BSLASHPnotecite] = ACTIONS(4653), - [anon_sym_BSLASHfnotecite] = ACTIONS(4653), - [anon_sym_BSLASHlabel] = ACTIONS(4653), - [anon_sym_BSLASHref] = ACTIONS(4653), - [anon_sym_BSLASHeqref] = ACTIONS(4653), - [anon_sym_BSLASHvref] = ACTIONS(4653), - [anon_sym_BSLASHVref] = ACTIONS(4653), - [anon_sym_BSLASHautoref] = ACTIONS(4653), - [anon_sym_BSLASHpageref] = ACTIONS(4653), - [anon_sym_BSLASHcref] = ACTIONS(4653), - [anon_sym_BSLASHCref] = ACTIONS(4653), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnameCref] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHlabelcref] = ACTIONS(4653), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCrefrange] = ACTIONS(4653), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnewlabel] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4653), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4653), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4653), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdef] = ACTIONS(4653), - [anon_sym_BSLASHlet] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4653), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4653), - [anon_sym_BSLASHgls] = ACTIONS(4653), - [anon_sym_BSLASHGls] = ACTIONS(4653), - [anon_sym_BSLASHGLS] = ACTIONS(4653), - [anon_sym_BSLASHglspl] = ACTIONS(4653), - [anon_sym_BSLASHGlspl] = ACTIONS(4653), - [anon_sym_BSLASHGLSpl] = ACTIONS(4653), - [anon_sym_BSLASHglsdisp] = ACTIONS(4653), - [anon_sym_BSLASHglslink] = ACTIONS(4653), - [anon_sym_BSLASHglstext] = ACTIONS(4653), - [anon_sym_BSLASHGlstext] = ACTIONS(4653), - [anon_sym_BSLASHGLStext] = ACTIONS(4653), - [anon_sym_BSLASHglsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4653), - [anon_sym_BSLASHglsplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSplural] = ACTIONS(4653), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHglsname] = ACTIONS(4653), - [anon_sym_BSLASHGlsname] = ACTIONS(4653), - [anon_sym_BSLASHGLSname] = ACTIONS(4653), - [anon_sym_BSLASHglssymbol] = ACTIONS(4653), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4653), - [anon_sym_BSLASHglsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4653), - [anon_sym_BSLASHglsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4653), - [anon_sym_BSLASHglsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4653), - [anon_sym_BSLASHglsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4653), - [anon_sym_BSLASHglsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4653), - [anon_sym_BSLASHnewacronym] = ACTIONS(4653), - [anon_sym_BSLASHacrshort] = ACTIONS(4653), - [anon_sym_BSLASHAcrshort] = ACTIONS(4653), - [anon_sym_BSLASHACRshort] = ACTIONS(4653), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4653), - [anon_sym_BSLASHacrlong] = ACTIONS(4653), - [anon_sym_BSLASHAcrlong] = ACTIONS(4653), - [anon_sym_BSLASHACRlong] = ACTIONS(4653), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4653), - [anon_sym_BSLASHacrfull] = ACTIONS(4653), - [anon_sym_BSLASHAcrfull] = ACTIONS(4653), - [anon_sym_BSLASHACRfull] = ACTIONS(4653), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4653), - [anon_sym_BSLASHacs] = ACTIONS(4653), - [anon_sym_BSLASHAcs] = ACTIONS(4653), - [anon_sym_BSLASHacsp] = ACTIONS(4653), - [anon_sym_BSLASHAcsp] = ACTIONS(4653), - [anon_sym_BSLASHacl] = ACTIONS(4653), - [anon_sym_BSLASHAcl] = ACTIONS(4653), - [anon_sym_BSLASHaclp] = ACTIONS(4653), - [anon_sym_BSLASHAclp] = ACTIONS(4653), - [anon_sym_BSLASHacf] = ACTIONS(4653), - [anon_sym_BSLASHAcf] = ACTIONS(4653), - [anon_sym_BSLASHacfp] = ACTIONS(4653), - [anon_sym_BSLASHAcfp] = ACTIONS(4653), - [anon_sym_BSLASHac] = ACTIONS(4653), - [anon_sym_BSLASHAc] = ACTIONS(4653), - [anon_sym_BSLASHacp] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4653), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4653), - [anon_sym_BSLASHcolor] = ACTIONS(4653), - [anon_sym_BSLASHcolorbox] = ACTIONS(4653), - [anon_sym_BSLASHtextcolor] = ACTIONS(4653), - [anon_sym_BSLASHpagecolor] = ACTIONS(4653), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4653), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4653), - [anon_sym_BSLASHtext] = ACTIONS(4653), - [anon_sym_BSLASHintertext] = ACTIONS(4653), - [anon_sym_shortintertext] = ACTIONS(4653), - }, - [395] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4663), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_BSLASHpart] = ACTIONS(4663), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddpart] = ACTIONS(4663), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHchapter] = ACTIONS(4663), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddchap] = ACTIONS(4663), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsection] = ACTIONS(4663), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddsec] = ACTIONS(4663), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4768), - [anon_sym_BSLASHparagraph] = ACTIONS(4663), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4663), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHitem] = ACTIONS(4663), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [sym_word] = ACTIONS(4663), - [sym_placeholder] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym__] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4661), - [anon_sym_BSLASHbegin] = ACTIONS(4663), - [anon_sym_BSLASHend] = ACTIONS(4663), - [anon_sym_BSLASHusepackage] = ACTIONS(4663), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4663), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4663), - [anon_sym_BSLASHinclude] = ACTIONS(4663), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4663), - [anon_sym_BSLASHinput] = ACTIONS(4663), - [anon_sym_BSLASHsubfile] = ACTIONS(4663), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4663), - [anon_sym_BSLASHbibliography] = ACTIONS(4663), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4663), - [anon_sym_BSLASHincludesvg] = ACTIONS(4663), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4663), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4663), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4663), - [anon_sym_BSLASHimport] = ACTIONS(4663), - [anon_sym_BSLASHsubimport] = ACTIONS(4663), - [anon_sym_BSLASHinputfrom] = ACTIONS(4663), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4663), - [anon_sym_BSLASHincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHcaption] = ACTIONS(4663), - [anon_sym_BSLASHcite] = ACTIONS(4663), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCite] = ACTIONS(4663), - [anon_sym_BSLASHnocite] = ACTIONS(4663), - [anon_sym_BSLASHcitet] = ACTIONS(4663), - [anon_sym_BSLASHcitep] = ACTIONS(4663), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteauthor] = ACTIONS(4663), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4663), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitetitle] = ACTIONS(4663), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteyear] = ACTIONS(4663), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitedate] = ACTIONS(4663), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteurl] = ACTIONS(4663), - [anon_sym_BSLASHfullcite] = ACTIONS(4663), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4663), - [anon_sym_BSLASHcitealt] = ACTIONS(4663), - [anon_sym_BSLASHcitealp] = ACTIONS(4663), - [anon_sym_BSLASHcitetext] = ACTIONS(4663), - [anon_sym_BSLASHparencite] = ACTIONS(4663), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHParencite] = ACTIONS(4663), - [anon_sym_BSLASHfootcite] = ACTIONS(4663), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4663), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4663), - [anon_sym_BSLASHtextcite] = ACTIONS(4663), - [anon_sym_BSLASHTextcite] = ACTIONS(4663), - [anon_sym_BSLASHsmartcite] = ACTIONS(4663), - [anon_sym_BSLASHSmartcite] = ACTIONS(4663), - [anon_sym_BSLASHsupercite] = ACTIONS(4663), - [anon_sym_BSLASHautocite] = ACTIONS(4663), - [anon_sym_BSLASHAutocite] = ACTIONS(4663), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHvolcite] = ACTIONS(4663), - [anon_sym_BSLASHVolcite] = ACTIONS(4663), - [anon_sym_BSLASHpvolcite] = ACTIONS(4663), - [anon_sym_BSLASHPvolcite] = ACTIONS(4663), - [anon_sym_BSLASHfvolcite] = ACTIONS(4663), - [anon_sym_BSLASHftvolcite] = ACTIONS(4663), - [anon_sym_BSLASHsvolcite] = ACTIONS(4663), - [anon_sym_BSLASHSvolcite] = ACTIONS(4663), - [anon_sym_BSLASHtvolcite] = ACTIONS(4663), - [anon_sym_BSLASHTvolcite] = ACTIONS(4663), - [anon_sym_BSLASHavolcite] = ACTIONS(4663), - [anon_sym_BSLASHAvolcite] = ACTIONS(4663), - [anon_sym_BSLASHnotecite] = ACTIONS(4663), - [anon_sym_BSLASHNotecite] = ACTIONS(4663), - [anon_sym_BSLASHpnotecite] = ACTIONS(4663), - [anon_sym_BSLASHPnotecite] = ACTIONS(4663), - [anon_sym_BSLASHfnotecite] = ACTIONS(4663), - [anon_sym_BSLASHlabel] = ACTIONS(4663), - [anon_sym_BSLASHref] = ACTIONS(4663), - [anon_sym_BSLASHeqref] = ACTIONS(4663), - [anon_sym_BSLASHvref] = ACTIONS(4663), - [anon_sym_BSLASHVref] = ACTIONS(4663), - [anon_sym_BSLASHautoref] = ACTIONS(4663), - [anon_sym_BSLASHpageref] = ACTIONS(4663), - [anon_sym_BSLASHcref] = ACTIONS(4663), - [anon_sym_BSLASHCref] = ACTIONS(4663), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnameCref] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHlabelcref] = ACTIONS(4663), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCrefrange] = ACTIONS(4663), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnewlabel] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4663), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4663), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4663), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdef] = ACTIONS(4663), - [anon_sym_BSLASHlet] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4663), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4663), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4663), - [anon_sym_BSLASHgls] = ACTIONS(4663), - [anon_sym_BSLASHGls] = ACTIONS(4663), - [anon_sym_BSLASHGLS] = ACTIONS(4663), - [anon_sym_BSLASHglspl] = ACTIONS(4663), - [anon_sym_BSLASHGlspl] = ACTIONS(4663), - [anon_sym_BSLASHGLSpl] = ACTIONS(4663), - [anon_sym_BSLASHglsdisp] = ACTIONS(4663), - [anon_sym_BSLASHglslink] = ACTIONS(4663), - [anon_sym_BSLASHglstext] = ACTIONS(4663), - [anon_sym_BSLASHGlstext] = ACTIONS(4663), - [anon_sym_BSLASHGLStext] = ACTIONS(4663), - [anon_sym_BSLASHglsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4663), - [anon_sym_BSLASHglsplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSplural] = ACTIONS(4663), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHglsname] = ACTIONS(4663), - [anon_sym_BSLASHGlsname] = ACTIONS(4663), - [anon_sym_BSLASHGLSname] = ACTIONS(4663), - [anon_sym_BSLASHglssymbol] = ACTIONS(4663), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4663), - [anon_sym_BSLASHglsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4663), - [anon_sym_BSLASHglsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4663), - [anon_sym_BSLASHglsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4663), - [anon_sym_BSLASHglsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4663), - [anon_sym_BSLASHglsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4663), - [anon_sym_BSLASHnewacronym] = ACTIONS(4663), - [anon_sym_BSLASHacrshort] = ACTIONS(4663), - [anon_sym_BSLASHAcrshort] = ACTIONS(4663), - [anon_sym_BSLASHACRshort] = ACTIONS(4663), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4663), - [anon_sym_BSLASHacrlong] = ACTIONS(4663), - [anon_sym_BSLASHAcrlong] = ACTIONS(4663), - [anon_sym_BSLASHACRlong] = ACTIONS(4663), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4663), - [anon_sym_BSLASHacrfull] = ACTIONS(4663), - [anon_sym_BSLASHAcrfull] = ACTIONS(4663), - [anon_sym_BSLASHACRfull] = ACTIONS(4663), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4663), - [anon_sym_BSLASHacs] = ACTIONS(4663), - [anon_sym_BSLASHAcs] = ACTIONS(4663), - [anon_sym_BSLASHacsp] = ACTIONS(4663), - [anon_sym_BSLASHAcsp] = ACTIONS(4663), - [anon_sym_BSLASHacl] = ACTIONS(4663), - [anon_sym_BSLASHAcl] = ACTIONS(4663), - [anon_sym_BSLASHaclp] = ACTIONS(4663), - [anon_sym_BSLASHAclp] = ACTIONS(4663), - [anon_sym_BSLASHacf] = ACTIONS(4663), - [anon_sym_BSLASHAcf] = ACTIONS(4663), - [anon_sym_BSLASHacfp] = ACTIONS(4663), - [anon_sym_BSLASHAcfp] = ACTIONS(4663), - [anon_sym_BSLASHac] = ACTIONS(4663), - [anon_sym_BSLASHAc] = ACTIONS(4663), - [anon_sym_BSLASHacp] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4663), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4663), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4663), - [anon_sym_BSLASHcolor] = ACTIONS(4663), - [anon_sym_BSLASHcolorbox] = ACTIONS(4663), - [anon_sym_BSLASHtextcolor] = ACTIONS(4663), - [anon_sym_BSLASHpagecolor] = ACTIONS(4663), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4663), - [anon_sym_BSLASHtext] = ACTIONS(4663), - [anon_sym_BSLASHintertext] = ACTIONS(4663), - [anon_sym_shortintertext] = ACTIONS(4663), - }, - [396] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(4677), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_BSLASHpart] = ACTIONS(4677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddpart] = ACTIONS(4677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsection] = ACTIONS(4677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddsec] = ACTIONS(4677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubsection] = ACTIONS(4771), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4774), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHparagraph] = ACTIONS(4677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHitem] = ACTIONS(4677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [sym_word] = ACTIONS(4677), - [sym_placeholder] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym__] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4675), - [anon_sym_BSLASHbegin] = ACTIONS(4677), - [anon_sym_BSLASHend] = ACTIONS(4677), - [anon_sym_BSLASHusepackage] = ACTIONS(4677), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4677), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4677), - [anon_sym_BSLASHinclude] = ACTIONS(4677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4677), - [anon_sym_BSLASHinput] = ACTIONS(4677), - [anon_sym_BSLASHsubfile] = ACTIONS(4677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4677), - [anon_sym_BSLASHbibliography] = ACTIONS(4677), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4677), - [anon_sym_BSLASHincludesvg] = ACTIONS(4677), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4677), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4677), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4677), - [anon_sym_BSLASHimport] = ACTIONS(4677), - [anon_sym_BSLASHsubimport] = ACTIONS(4677), - [anon_sym_BSLASHinputfrom] = ACTIONS(4677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4677), - [anon_sym_BSLASHincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHcaption] = ACTIONS(4677), - [anon_sym_BSLASHcite] = ACTIONS(4677), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCite] = ACTIONS(4677), - [anon_sym_BSLASHnocite] = ACTIONS(4677), - [anon_sym_BSLASHcitet] = ACTIONS(4677), - [anon_sym_BSLASHcitep] = ACTIONS(4677), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteauthor] = ACTIONS(4677), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4677), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitetitle] = ACTIONS(4677), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteyear] = ACTIONS(4677), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitedate] = ACTIONS(4677), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteurl] = ACTIONS(4677), - [anon_sym_BSLASHfullcite] = ACTIONS(4677), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4677), - [anon_sym_BSLASHcitealt] = ACTIONS(4677), - [anon_sym_BSLASHcitealp] = ACTIONS(4677), - [anon_sym_BSLASHcitetext] = ACTIONS(4677), - [anon_sym_BSLASHparencite] = ACTIONS(4677), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHParencite] = ACTIONS(4677), - [anon_sym_BSLASHfootcite] = ACTIONS(4677), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4677), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4677), - [anon_sym_BSLASHtextcite] = ACTIONS(4677), - [anon_sym_BSLASHTextcite] = ACTIONS(4677), - [anon_sym_BSLASHsmartcite] = ACTIONS(4677), - [anon_sym_BSLASHSmartcite] = ACTIONS(4677), - [anon_sym_BSLASHsupercite] = ACTIONS(4677), - [anon_sym_BSLASHautocite] = ACTIONS(4677), - [anon_sym_BSLASHAutocite] = ACTIONS(4677), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHvolcite] = ACTIONS(4677), - [anon_sym_BSLASHVolcite] = ACTIONS(4677), - [anon_sym_BSLASHpvolcite] = ACTIONS(4677), - [anon_sym_BSLASHPvolcite] = ACTIONS(4677), - [anon_sym_BSLASHfvolcite] = ACTIONS(4677), - [anon_sym_BSLASHftvolcite] = ACTIONS(4677), - [anon_sym_BSLASHsvolcite] = ACTIONS(4677), - [anon_sym_BSLASHSvolcite] = ACTIONS(4677), - [anon_sym_BSLASHtvolcite] = ACTIONS(4677), - [anon_sym_BSLASHTvolcite] = ACTIONS(4677), - [anon_sym_BSLASHavolcite] = ACTIONS(4677), - [anon_sym_BSLASHAvolcite] = ACTIONS(4677), - [anon_sym_BSLASHnotecite] = ACTIONS(4677), - [anon_sym_BSLASHNotecite] = ACTIONS(4677), - [anon_sym_BSLASHpnotecite] = ACTIONS(4677), - [anon_sym_BSLASHPnotecite] = ACTIONS(4677), - [anon_sym_BSLASHfnotecite] = ACTIONS(4677), - [anon_sym_BSLASHlabel] = ACTIONS(4677), - [anon_sym_BSLASHref] = ACTIONS(4677), - [anon_sym_BSLASHeqref] = ACTIONS(4677), - [anon_sym_BSLASHvref] = ACTIONS(4677), - [anon_sym_BSLASHVref] = ACTIONS(4677), - [anon_sym_BSLASHautoref] = ACTIONS(4677), - [anon_sym_BSLASHpageref] = ACTIONS(4677), - [anon_sym_BSLASHcref] = ACTIONS(4677), - [anon_sym_BSLASHCref] = ACTIONS(4677), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnameCref] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHlabelcref] = ACTIONS(4677), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCrefrange] = ACTIONS(4677), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnewlabel] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4677), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4677), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4677), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdef] = ACTIONS(4677), - [anon_sym_BSLASHlet] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4677), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4677), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4677), - [anon_sym_BSLASHgls] = ACTIONS(4677), - [anon_sym_BSLASHGls] = ACTIONS(4677), - [anon_sym_BSLASHGLS] = ACTIONS(4677), - [anon_sym_BSLASHglspl] = ACTIONS(4677), - [anon_sym_BSLASHGlspl] = ACTIONS(4677), - [anon_sym_BSLASHGLSpl] = ACTIONS(4677), - [anon_sym_BSLASHglsdisp] = ACTIONS(4677), - [anon_sym_BSLASHglslink] = ACTIONS(4677), - [anon_sym_BSLASHglstext] = ACTIONS(4677), - [anon_sym_BSLASHGlstext] = ACTIONS(4677), - [anon_sym_BSLASHGLStext] = ACTIONS(4677), - [anon_sym_BSLASHglsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4677), - [anon_sym_BSLASHglsplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSplural] = ACTIONS(4677), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHglsname] = ACTIONS(4677), - [anon_sym_BSLASHGlsname] = ACTIONS(4677), - [anon_sym_BSLASHGLSname] = ACTIONS(4677), - [anon_sym_BSLASHglssymbol] = ACTIONS(4677), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4677), - [anon_sym_BSLASHglsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4677), - [anon_sym_BSLASHglsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4677), - [anon_sym_BSLASHglsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4677), - [anon_sym_BSLASHglsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4677), - [anon_sym_BSLASHglsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4677), - [anon_sym_BSLASHnewacronym] = ACTIONS(4677), - [anon_sym_BSLASHacrshort] = ACTIONS(4677), - [anon_sym_BSLASHAcrshort] = ACTIONS(4677), - [anon_sym_BSLASHACRshort] = ACTIONS(4677), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4677), - [anon_sym_BSLASHacrlong] = ACTIONS(4677), - [anon_sym_BSLASHAcrlong] = ACTIONS(4677), - [anon_sym_BSLASHACRlong] = ACTIONS(4677), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4677), - [anon_sym_BSLASHacrfull] = ACTIONS(4677), - [anon_sym_BSLASHAcrfull] = ACTIONS(4677), - [anon_sym_BSLASHACRfull] = ACTIONS(4677), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4677), - [anon_sym_BSLASHacs] = ACTIONS(4677), - [anon_sym_BSLASHAcs] = ACTIONS(4677), - [anon_sym_BSLASHacsp] = ACTIONS(4677), - [anon_sym_BSLASHAcsp] = ACTIONS(4677), - [anon_sym_BSLASHacl] = ACTIONS(4677), - [anon_sym_BSLASHAcl] = ACTIONS(4677), - [anon_sym_BSLASHaclp] = ACTIONS(4677), - [anon_sym_BSLASHAclp] = ACTIONS(4677), - [anon_sym_BSLASHacf] = ACTIONS(4677), - [anon_sym_BSLASHAcf] = ACTIONS(4677), - [anon_sym_BSLASHacfp] = ACTIONS(4677), - [anon_sym_BSLASHAcfp] = ACTIONS(4677), - [anon_sym_BSLASHac] = ACTIONS(4677), - [anon_sym_BSLASHAc] = ACTIONS(4677), - [anon_sym_BSLASHacp] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4677), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4677), - [anon_sym_BSLASHcolor] = ACTIONS(4677), - [anon_sym_BSLASHcolorbox] = ACTIONS(4677), - [anon_sym_BSLASHtextcolor] = ACTIONS(4677), - [anon_sym_BSLASHpagecolor] = ACTIONS(4677), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4677), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4677), - [anon_sym_BSLASHtext] = ACTIONS(4677), - [anon_sym_BSLASHintertext] = ACTIONS(4677), - [anon_sym_shortintertext] = ACTIONS(4677), - }, - [397] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [398] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(4711), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4709), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_BSLASHpart] = ACTIONS(4711), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddpart] = ACTIONS(4711), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHchapter] = ACTIONS(4711), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddchap] = ACTIONS(4711), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4780), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4780), - [anon_sym_BSLASHsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHparagraph] = ACTIONS(4711), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4711), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHitem] = ACTIONS(4711), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [sym_word] = ACTIONS(4711), - [sym_placeholder] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_CARET] = ACTIONS(4711), - [anon_sym__] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4709), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4709), - [anon_sym_BSLASHbegin] = ACTIONS(4711), - [anon_sym_BSLASHend] = ACTIONS(4711), - [anon_sym_BSLASHusepackage] = ACTIONS(4711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4711), - [anon_sym_BSLASHinclude] = ACTIONS(4711), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4711), - [anon_sym_BSLASHinput] = ACTIONS(4711), - [anon_sym_BSLASHsubfile] = ACTIONS(4711), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4711), - [anon_sym_BSLASHbibliography] = ACTIONS(4711), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4711), - [anon_sym_BSLASHincludesvg] = ACTIONS(4711), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4711), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4711), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4711), - [anon_sym_BSLASHimport] = ACTIONS(4711), - [anon_sym_BSLASHsubimport] = ACTIONS(4711), - [anon_sym_BSLASHinputfrom] = ACTIONS(4711), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4711), - [anon_sym_BSLASHincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHcaption] = ACTIONS(4711), - [anon_sym_BSLASHcite] = ACTIONS(4711), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCite] = ACTIONS(4711), - [anon_sym_BSLASHnocite] = ACTIONS(4711), - [anon_sym_BSLASHcitet] = ACTIONS(4711), - [anon_sym_BSLASHcitep] = ACTIONS(4711), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteauthor] = ACTIONS(4711), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4711), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitetitle] = ACTIONS(4711), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteyear] = ACTIONS(4711), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitedate] = ACTIONS(4711), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteurl] = ACTIONS(4711), - [anon_sym_BSLASHfullcite] = ACTIONS(4711), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4711), - [anon_sym_BSLASHcitealt] = ACTIONS(4711), - [anon_sym_BSLASHcitealp] = ACTIONS(4711), - [anon_sym_BSLASHcitetext] = ACTIONS(4711), - [anon_sym_BSLASHparencite] = ACTIONS(4711), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHParencite] = ACTIONS(4711), - [anon_sym_BSLASHfootcite] = ACTIONS(4711), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4711), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4711), - [anon_sym_BSLASHtextcite] = ACTIONS(4711), - [anon_sym_BSLASHTextcite] = ACTIONS(4711), - [anon_sym_BSLASHsmartcite] = ACTIONS(4711), - [anon_sym_BSLASHSmartcite] = ACTIONS(4711), - [anon_sym_BSLASHsupercite] = ACTIONS(4711), - [anon_sym_BSLASHautocite] = ACTIONS(4711), - [anon_sym_BSLASHAutocite] = ACTIONS(4711), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHvolcite] = ACTIONS(4711), - [anon_sym_BSLASHVolcite] = ACTIONS(4711), - [anon_sym_BSLASHpvolcite] = ACTIONS(4711), - [anon_sym_BSLASHPvolcite] = ACTIONS(4711), - [anon_sym_BSLASHfvolcite] = ACTIONS(4711), - [anon_sym_BSLASHftvolcite] = ACTIONS(4711), - [anon_sym_BSLASHsvolcite] = ACTIONS(4711), - [anon_sym_BSLASHSvolcite] = ACTIONS(4711), - [anon_sym_BSLASHtvolcite] = ACTIONS(4711), - [anon_sym_BSLASHTvolcite] = ACTIONS(4711), - [anon_sym_BSLASHavolcite] = ACTIONS(4711), - [anon_sym_BSLASHAvolcite] = ACTIONS(4711), - [anon_sym_BSLASHnotecite] = ACTIONS(4711), - [anon_sym_BSLASHNotecite] = ACTIONS(4711), - [anon_sym_BSLASHpnotecite] = ACTIONS(4711), - [anon_sym_BSLASHPnotecite] = ACTIONS(4711), - [anon_sym_BSLASHfnotecite] = ACTIONS(4711), - [anon_sym_BSLASHlabel] = ACTIONS(4711), - [anon_sym_BSLASHref] = ACTIONS(4711), - [anon_sym_BSLASHeqref] = ACTIONS(4711), - [anon_sym_BSLASHvref] = ACTIONS(4711), - [anon_sym_BSLASHVref] = ACTIONS(4711), - [anon_sym_BSLASHautoref] = ACTIONS(4711), - [anon_sym_BSLASHpageref] = ACTIONS(4711), - [anon_sym_BSLASHcref] = ACTIONS(4711), - [anon_sym_BSLASHCref] = ACTIONS(4711), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnameCref] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHlabelcref] = ACTIONS(4711), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCrefrange] = ACTIONS(4711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnewlabel] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4711), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4711), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4711), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdef] = ACTIONS(4711), - [anon_sym_BSLASHlet] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4711), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4711), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4711), - [anon_sym_BSLASHgls] = ACTIONS(4711), - [anon_sym_BSLASHGls] = ACTIONS(4711), - [anon_sym_BSLASHGLS] = ACTIONS(4711), - [anon_sym_BSLASHglspl] = ACTIONS(4711), - [anon_sym_BSLASHGlspl] = ACTIONS(4711), - [anon_sym_BSLASHGLSpl] = ACTIONS(4711), - [anon_sym_BSLASHglsdisp] = ACTIONS(4711), - [anon_sym_BSLASHglslink] = ACTIONS(4711), - [anon_sym_BSLASHglstext] = ACTIONS(4711), - [anon_sym_BSLASHGlstext] = ACTIONS(4711), - [anon_sym_BSLASHGLStext] = ACTIONS(4711), - [anon_sym_BSLASHglsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4711), - [anon_sym_BSLASHglsplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSplural] = ACTIONS(4711), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHglsname] = ACTIONS(4711), - [anon_sym_BSLASHGlsname] = ACTIONS(4711), - [anon_sym_BSLASHGLSname] = ACTIONS(4711), - [anon_sym_BSLASHglssymbol] = ACTIONS(4711), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4711), - [anon_sym_BSLASHglsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4711), - [anon_sym_BSLASHglsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4711), - [anon_sym_BSLASHglsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4711), - [anon_sym_BSLASHglsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4711), - [anon_sym_BSLASHglsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4711), - [anon_sym_BSLASHnewacronym] = ACTIONS(4711), - [anon_sym_BSLASHacrshort] = ACTIONS(4711), - [anon_sym_BSLASHAcrshort] = ACTIONS(4711), - [anon_sym_BSLASHACRshort] = ACTIONS(4711), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4711), - [anon_sym_BSLASHacrlong] = ACTIONS(4711), - [anon_sym_BSLASHAcrlong] = ACTIONS(4711), - [anon_sym_BSLASHACRlong] = ACTIONS(4711), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4711), - [anon_sym_BSLASHacrfull] = ACTIONS(4711), - [anon_sym_BSLASHAcrfull] = ACTIONS(4711), - [anon_sym_BSLASHACRfull] = ACTIONS(4711), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4711), - [anon_sym_BSLASHacs] = ACTIONS(4711), - [anon_sym_BSLASHAcs] = ACTIONS(4711), - [anon_sym_BSLASHacsp] = ACTIONS(4711), - [anon_sym_BSLASHAcsp] = ACTIONS(4711), - [anon_sym_BSLASHacl] = ACTIONS(4711), - [anon_sym_BSLASHAcl] = ACTIONS(4711), - [anon_sym_BSLASHaclp] = ACTIONS(4711), - [anon_sym_BSLASHAclp] = ACTIONS(4711), - [anon_sym_BSLASHacf] = ACTIONS(4711), - [anon_sym_BSLASHAcf] = ACTIONS(4711), - [anon_sym_BSLASHacfp] = ACTIONS(4711), - [anon_sym_BSLASHAcfp] = ACTIONS(4711), - [anon_sym_BSLASHac] = ACTIONS(4711), - [anon_sym_BSLASHAc] = ACTIONS(4711), - [anon_sym_BSLASHacp] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4711), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4711), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4711), - [anon_sym_BSLASHcolor] = ACTIONS(4711), - [anon_sym_BSLASHcolorbox] = ACTIONS(4711), - [anon_sym_BSLASHtextcolor] = ACTIONS(4711), - [anon_sym_BSLASHpagecolor] = ACTIONS(4711), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4711), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4711), - [anon_sym_BSLASHtext] = ACTIONS(4711), - [anon_sym_BSLASHintertext] = ACTIONS(4711), - [anon_sym_shortintertext] = ACTIONS(4711), - }, - [399] = { - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(399), - [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4721), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_BSLASHpart] = ACTIONS(4721), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddpart] = ACTIONS(4721), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHchapter] = ACTIONS(4783), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4786), - [anon_sym_BSLASHaddchap] = ACTIONS(4783), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4786), - [anon_sym_BSLASHsection] = ACTIONS(4721), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddsec] = ACTIONS(4721), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHparagraph] = ACTIONS(4721), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4721), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHitem] = ACTIONS(4721), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [sym_word] = ACTIONS(4721), - [sym_placeholder] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym__] = ACTIONS(4721), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4719), - [anon_sym_BSLASHbegin] = ACTIONS(4721), - [anon_sym_BSLASHend] = ACTIONS(4721), - [anon_sym_BSLASHusepackage] = ACTIONS(4721), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4721), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4721), - [anon_sym_BSLASHinclude] = ACTIONS(4721), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4721), - [anon_sym_BSLASHinput] = ACTIONS(4721), - [anon_sym_BSLASHsubfile] = ACTIONS(4721), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4721), - [anon_sym_BSLASHbibliography] = ACTIONS(4721), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4721), - [anon_sym_BSLASHincludesvg] = ACTIONS(4721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4721), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4721), - [anon_sym_BSLASHimport] = ACTIONS(4721), - [anon_sym_BSLASHsubimport] = ACTIONS(4721), - [anon_sym_BSLASHinputfrom] = ACTIONS(4721), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4721), - [anon_sym_BSLASHincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHcaption] = ACTIONS(4721), - [anon_sym_BSLASHcite] = ACTIONS(4721), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCite] = ACTIONS(4721), - [anon_sym_BSLASHnocite] = ACTIONS(4721), - [anon_sym_BSLASHcitet] = ACTIONS(4721), - [anon_sym_BSLASHcitep] = ACTIONS(4721), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteauthor] = ACTIONS(4721), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4721), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitetitle] = ACTIONS(4721), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteyear] = ACTIONS(4721), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitedate] = ACTIONS(4721), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteurl] = ACTIONS(4721), - [anon_sym_BSLASHfullcite] = ACTIONS(4721), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4721), - [anon_sym_BSLASHcitealt] = ACTIONS(4721), - [anon_sym_BSLASHcitealp] = ACTIONS(4721), - [anon_sym_BSLASHcitetext] = ACTIONS(4721), - [anon_sym_BSLASHparencite] = ACTIONS(4721), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHParencite] = ACTIONS(4721), - [anon_sym_BSLASHfootcite] = ACTIONS(4721), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4721), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4721), - [anon_sym_BSLASHtextcite] = ACTIONS(4721), - [anon_sym_BSLASHTextcite] = ACTIONS(4721), - [anon_sym_BSLASHsmartcite] = ACTIONS(4721), - [anon_sym_BSLASHSmartcite] = ACTIONS(4721), - [anon_sym_BSLASHsupercite] = ACTIONS(4721), - [anon_sym_BSLASHautocite] = ACTIONS(4721), - [anon_sym_BSLASHAutocite] = ACTIONS(4721), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHvolcite] = ACTIONS(4721), - [anon_sym_BSLASHVolcite] = ACTIONS(4721), - [anon_sym_BSLASHpvolcite] = ACTIONS(4721), - [anon_sym_BSLASHPvolcite] = ACTIONS(4721), - [anon_sym_BSLASHfvolcite] = ACTIONS(4721), - [anon_sym_BSLASHftvolcite] = ACTIONS(4721), - [anon_sym_BSLASHsvolcite] = ACTIONS(4721), - [anon_sym_BSLASHSvolcite] = ACTIONS(4721), - [anon_sym_BSLASHtvolcite] = ACTIONS(4721), - [anon_sym_BSLASHTvolcite] = ACTIONS(4721), - [anon_sym_BSLASHavolcite] = ACTIONS(4721), - [anon_sym_BSLASHAvolcite] = ACTIONS(4721), - [anon_sym_BSLASHnotecite] = ACTIONS(4721), - [anon_sym_BSLASHNotecite] = ACTIONS(4721), - [anon_sym_BSLASHpnotecite] = ACTIONS(4721), - [anon_sym_BSLASHPnotecite] = ACTIONS(4721), - [anon_sym_BSLASHfnotecite] = ACTIONS(4721), - [anon_sym_BSLASHlabel] = ACTIONS(4721), - [anon_sym_BSLASHref] = ACTIONS(4721), - [anon_sym_BSLASHeqref] = ACTIONS(4721), - [anon_sym_BSLASHvref] = ACTIONS(4721), - [anon_sym_BSLASHVref] = ACTIONS(4721), - [anon_sym_BSLASHautoref] = ACTIONS(4721), - [anon_sym_BSLASHpageref] = ACTIONS(4721), - [anon_sym_BSLASHcref] = ACTIONS(4721), - [anon_sym_BSLASHCref] = ACTIONS(4721), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnameCref] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHlabelcref] = ACTIONS(4721), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCrefrange] = ACTIONS(4721), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnewlabel] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4721), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4721), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4721), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdef] = ACTIONS(4721), - [anon_sym_BSLASHlet] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4721), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4721), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4721), - [anon_sym_BSLASHgls] = ACTIONS(4721), - [anon_sym_BSLASHGls] = ACTIONS(4721), - [anon_sym_BSLASHGLS] = ACTIONS(4721), - [anon_sym_BSLASHglspl] = ACTIONS(4721), - [anon_sym_BSLASHGlspl] = ACTIONS(4721), - [anon_sym_BSLASHGLSpl] = ACTIONS(4721), - [anon_sym_BSLASHglsdisp] = ACTIONS(4721), - [anon_sym_BSLASHglslink] = ACTIONS(4721), - [anon_sym_BSLASHglstext] = ACTIONS(4721), - [anon_sym_BSLASHGlstext] = ACTIONS(4721), - [anon_sym_BSLASHGLStext] = ACTIONS(4721), - [anon_sym_BSLASHglsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4721), - [anon_sym_BSLASHglsplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSplural] = ACTIONS(4721), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHglsname] = ACTIONS(4721), - [anon_sym_BSLASHGlsname] = ACTIONS(4721), - [anon_sym_BSLASHGLSname] = ACTIONS(4721), - [anon_sym_BSLASHglssymbol] = ACTIONS(4721), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4721), - [anon_sym_BSLASHglsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4721), - [anon_sym_BSLASHglsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4721), - [anon_sym_BSLASHglsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4721), - [anon_sym_BSLASHglsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4721), - [anon_sym_BSLASHglsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4721), - [anon_sym_BSLASHnewacronym] = ACTIONS(4721), - [anon_sym_BSLASHacrshort] = ACTIONS(4721), - [anon_sym_BSLASHAcrshort] = ACTIONS(4721), - [anon_sym_BSLASHACRshort] = ACTIONS(4721), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4721), - [anon_sym_BSLASHacrlong] = ACTIONS(4721), - [anon_sym_BSLASHAcrlong] = ACTIONS(4721), - [anon_sym_BSLASHACRlong] = ACTIONS(4721), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4721), - [anon_sym_BSLASHacrfull] = ACTIONS(4721), - [anon_sym_BSLASHAcrfull] = ACTIONS(4721), - [anon_sym_BSLASHACRfull] = ACTIONS(4721), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4721), - [anon_sym_BSLASHacs] = ACTIONS(4721), - [anon_sym_BSLASHAcs] = ACTIONS(4721), - [anon_sym_BSLASHacsp] = ACTIONS(4721), - [anon_sym_BSLASHAcsp] = ACTIONS(4721), - [anon_sym_BSLASHacl] = ACTIONS(4721), - [anon_sym_BSLASHAcl] = ACTIONS(4721), - [anon_sym_BSLASHaclp] = ACTIONS(4721), - [anon_sym_BSLASHAclp] = ACTIONS(4721), - [anon_sym_BSLASHacf] = ACTIONS(4721), - [anon_sym_BSLASHAcf] = ACTIONS(4721), - [anon_sym_BSLASHacfp] = ACTIONS(4721), - [anon_sym_BSLASHAcfp] = ACTIONS(4721), - [anon_sym_BSLASHac] = ACTIONS(4721), - [anon_sym_BSLASHAc] = ACTIONS(4721), - [anon_sym_BSLASHacp] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4721), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4721), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4721), - [anon_sym_BSLASHcolor] = ACTIONS(4721), - [anon_sym_BSLASHcolorbox] = ACTIONS(4721), - [anon_sym_BSLASHtextcolor] = ACTIONS(4721), - [anon_sym_BSLASHpagecolor] = ACTIONS(4721), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4721), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4721), - [anon_sym_BSLASHtext] = ACTIONS(4721), - [anon_sym_BSLASHintertext] = ACTIONS(4721), - [anon_sym_shortintertext] = ACTIONS(4721), - }, - [400] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [401] = { - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(401), - [aux_sym__section_repeat1] = STATE(401), - [sym_command_name] = ACTIONS(4731), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_COMMA] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4792), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4792), - [anon_sym_BSLASHchapter] = ACTIONS(4731), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddchap] = ACTIONS(4731), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsection] = ACTIONS(4731), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddsec] = ACTIONS(4731), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHparagraph] = ACTIONS(4731), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHitem] = ACTIONS(4731), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [sym_word] = ACTIONS(4731), - [sym_placeholder] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_CARET] = ACTIONS(4731), - [anon_sym__] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4729), - [anon_sym_BSLASHbegin] = ACTIONS(4731), - [anon_sym_BSLASHend] = ACTIONS(4731), - [anon_sym_BSLASHusepackage] = ACTIONS(4731), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4731), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4731), - [anon_sym_BSLASHinclude] = ACTIONS(4731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4731), - [anon_sym_BSLASHinput] = ACTIONS(4731), - [anon_sym_BSLASHsubfile] = ACTIONS(4731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4731), - [anon_sym_BSLASHbibliography] = ACTIONS(4731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4731), - [anon_sym_BSLASHincludesvg] = ACTIONS(4731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4731), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4731), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4731), - [anon_sym_BSLASHimport] = ACTIONS(4731), - [anon_sym_BSLASHsubimport] = ACTIONS(4731), - [anon_sym_BSLASHinputfrom] = ACTIONS(4731), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4731), - [anon_sym_BSLASHincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHcaption] = ACTIONS(4731), - [anon_sym_BSLASHcite] = ACTIONS(4731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCite] = ACTIONS(4731), - [anon_sym_BSLASHnocite] = ACTIONS(4731), - [anon_sym_BSLASHcitet] = ACTIONS(4731), - [anon_sym_BSLASHcitep] = ACTIONS(4731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteauthor] = ACTIONS(4731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitetitle] = ACTIONS(4731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteyear] = ACTIONS(4731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitedate] = ACTIONS(4731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteurl] = ACTIONS(4731), - [anon_sym_BSLASHfullcite] = ACTIONS(4731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4731), - [anon_sym_BSLASHcitealt] = ACTIONS(4731), - [anon_sym_BSLASHcitealp] = ACTIONS(4731), - [anon_sym_BSLASHcitetext] = ACTIONS(4731), - [anon_sym_BSLASHparencite] = ACTIONS(4731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHParencite] = ACTIONS(4731), - [anon_sym_BSLASHfootcite] = ACTIONS(4731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4731), - [anon_sym_BSLASHtextcite] = ACTIONS(4731), - [anon_sym_BSLASHTextcite] = ACTIONS(4731), - [anon_sym_BSLASHsmartcite] = ACTIONS(4731), - [anon_sym_BSLASHSmartcite] = ACTIONS(4731), - [anon_sym_BSLASHsupercite] = ACTIONS(4731), - [anon_sym_BSLASHautocite] = ACTIONS(4731), - [anon_sym_BSLASHAutocite] = ACTIONS(4731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHvolcite] = ACTIONS(4731), - [anon_sym_BSLASHVolcite] = ACTIONS(4731), - [anon_sym_BSLASHpvolcite] = ACTIONS(4731), - [anon_sym_BSLASHPvolcite] = ACTIONS(4731), - [anon_sym_BSLASHfvolcite] = ACTIONS(4731), - [anon_sym_BSLASHftvolcite] = ACTIONS(4731), - [anon_sym_BSLASHsvolcite] = ACTIONS(4731), - [anon_sym_BSLASHSvolcite] = ACTIONS(4731), - [anon_sym_BSLASHtvolcite] = ACTIONS(4731), - [anon_sym_BSLASHTvolcite] = ACTIONS(4731), - [anon_sym_BSLASHavolcite] = ACTIONS(4731), - [anon_sym_BSLASHAvolcite] = ACTIONS(4731), - [anon_sym_BSLASHnotecite] = ACTIONS(4731), - [anon_sym_BSLASHNotecite] = ACTIONS(4731), - [anon_sym_BSLASHpnotecite] = ACTIONS(4731), - [anon_sym_BSLASHPnotecite] = ACTIONS(4731), - [anon_sym_BSLASHfnotecite] = ACTIONS(4731), - [anon_sym_BSLASHlabel] = ACTIONS(4731), - [anon_sym_BSLASHref] = ACTIONS(4731), - [anon_sym_BSLASHeqref] = ACTIONS(4731), - [anon_sym_BSLASHvref] = ACTIONS(4731), - [anon_sym_BSLASHVref] = ACTIONS(4731), - [anon_sym_BSLASHautoref] = ACTIONS(4731), - [anon_sym_BSLASHpageref] = ACTIONS(4731), - [anon_sym_BSLASHcref] = ACTIONS(4731), - [anon_sym_BSLASHCref] = ACTIONS(4731), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnameCref] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHlabelcref] = ACTIONS(4731), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCrefrange] = ACTIONS(4731), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnewlabel] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4731), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4731), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4731), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdef] = ACTIONS(4731), - [anon_sym_BSLASHlet] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4731), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4731), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4731), - [anon_sym_BSLASHgls] = ACTIONS(4731), - [anon_sym_BSLASHGls] = ACTIONS(4731), - [anon_sym_BSLASHGLS] = ACTIONS(4731), - [anon_sym_BSLASHglspl] = ACTIONS(4731), - [anon_sym_BSLASHGlspl] = ACTIONS(4731), - [anon_sym_BSLASHGLSpl] = ACTIONS(4731), - [anon_sym_BSLASHglsdisp] = ACTIONS(4731), - [anon_sym_BSLASHglslink] = ACTIONS(4731), - [anon_sym_BSLASHglstext] = ACTIONS(4731), - [anon_sym_BSLASHGlstext] = ACTIONS(4731), - [anon_sym_BSLASHGLStext] = ACTIONS(4731), - [anon_sym_BSLASHglsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4731), - [anon_sym_BSLASHglsplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSplural] = ACTIONS(4731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHglsname] = ACTIONS(4731), - [anon_sym_BSLASHGlsname] = ACTIONS(4731), - [anon_sym_BSLASHGLSname] = ACTIONS(4731), - [anon_sym_BSLASHglssymbol] = ACTIONS(4731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4731), - [anon_sym_BSLASHglsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4731), - [anon_sym_BSLASHglsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4731), - [anon_sym_BSLASHglsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4731), - [anon_sym_BSLASHglsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4731), - [anon_sym_BSLASHglsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4731), - [anon_sym_BSLASHnewacronym] = ACTIONS(4731), - [anon_sym_BSLASHacrshort] = ACTIONS(4731), - [anon_sym_BSLASHAcrshort] = ACTIONS(4731), - [anon_sym_BSLASHACRshort] = ACTIONS(4731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4731), - [anon_sym_BSLASHacrlong] = ACTIONS(4731), - [anon_sym_BSLASHAcrlong] = ACTIONS(4731), - [anon_sym_BSLASHACRlong] = ACTIONS(4731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4731), - [anon_sym_BSLASHacrfull] = ACTIONS(4731), - [anon_sym_BSLASHAcrfull] = ACTIONS(4731), - [anon_sym_BSLASHACRfull] = ACTIONS(4731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4731), - [anon_sym_BSLASHacs] = ACTIONS(4731), - [anon_sym_BSLASHAcs] = ACTIONS(4731), - [anon_sym_BSLASHacsp] = ACTIONS(4731), - [anon_sym_BSLASHAcsp] = ACTIONS(4731), - [anon_sym_BSLASHacl] = ACTIONS(4731), - [anon_sym_BSLASHAcl] = ACTIONS(4731), - [anon_sym_BSLASHaclp] = ACTIONS(4731), - [anon_sym_BSLASHAclp] = ACTIONS(4731), - [anon_sym_BSLASHacf] = ACTIONS(4731), - [anon_sym_BSLASHAcf] = ACTIONS(4731), - [anon_sym_BSLASHacfp] = ACTIONS(4731), - [anon_sym_BSLASHAcfp] = ACTIONS(4731), - [anon_sym_BSLASHac] = ACTIONS(4731), - [anon_sym_BSLASHAc] = ACTIONS(4731), - [anon_sym_BSLASHacp] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4731), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4731), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4731), - [anon_sym_BSLASHcolor] = ACTIONS(4731), - [anon_sym_BSLASHcolorbox] = ACTIONS(4731), - [anon_sym_BSLASHtextcolor] = ACTIONS(4731), - [anon_sym_BSLASHpagecolor] = ACTIONS(4731), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4731), - [anon_sym_BSLASHtext] = ACTIONS(4731), - [anon_sym_BSLASHintertext] = ACTIONS(4731), - [anon_sym_shortintertext] = ACTIONS(4731), - }, - [402] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [403] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [404] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [405] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(448), - [aux_sym__section_repeat2] = STATE(448), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [406] = { - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(603), - [aux_sym__section_repeat1] = STATE(603), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(803), - [anon_sym_BSLASHpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHaddpart] = ACTIONS(803), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(805), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [407] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHend] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [408] = { - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(604), - [aux_sym__section_repeat2] = STATE(604), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [409] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [410] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [411] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [412] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [413] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHend] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [414] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHend] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [415] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [416] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [417] = { - [sym_curly_group] = STATE(915), - [sym_mixed_group] = STATE(915), - [aux_sym_generic_command_repeat1] = STATE(641), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4739), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4739), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_BSLASHpart] = ACTIONS(4613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddpart] = ACTIONS(4613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHchapter] = ACTIONS(4613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddchap] = ACTIONS(4613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsection] = ACTIONS(4613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddsec] = ACTIONS(4613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHparagraph] = ACTIONS(4613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHitem] = ACTIONS(4613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), - }, - [418] = { - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(604), - [aux_sym__section_repeat2] = STATE(604), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [419] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [420] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [421] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [422] = { - [sym_curly_group] = STATE(968), - [sym_mixed_group] = STATE(968), - [aux_sym_generic_command_repeat1] = STATE(422), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4795), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_BSLASHpart] = ACTIONS(4619), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddpart] = ACTIONS(4619), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHchapter] = ACTIONS(4619), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddchap] = ACTIONS(4619), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsection] = ACTIONS(4619), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddsec] = ACTIONS(4619), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHparagraph] = ACTIONS(4619), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4619), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHitem] = ACTIONS(4619), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4798), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), - }, - [423] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [424] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [425] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [426] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [427] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHtitle] = ACTIONS(5249), + [anon_sym_BSLASHauthor] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), }, - [428] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(2015), + [325] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5251), + [sym_command_name] = ACTIONS(5253), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(2013), - [sym_word] = ACTIONS(2015), - [sym_placeholder] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2015), - [anon_sym_BSLASHend] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(2015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2015), - [anon_sym_BSLASHinclude] = ACTIONS(2015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2015), - [anon_sym_BSLASHinput] = ACTIONS(2015), - [anon_sym_BSLASHsubfile] = ACTIONS(2015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2015), - [anon_sym_BSLASHbibliography] = ACTIONS(2015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2015), - [anon_sym_BSLASHincludesvg] = ACTIONS(2015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2015), - [anon_sym_BSLASHimport] = ACTIONS(2015), - [anon_sym_BSLASHsubimport] = ACTIONS(2015), - [anon_sym_BSLASHinputfrom] = ACTIONS(2015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2015), - [anon_sym_BSLASHincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHcaption] = ACTIONS(2015), - [anon_sym_BSLASHcite] = ACTIONS(2015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCite] = ACTIONS(2015), - [anon_sym_BSLASHnocite] = ACTIONS(2015), - [anon_sym_BSLASHcitet] = ACTIONS(2015), - [anon_sym_BSLASHcitep] = ACTIONS(2015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteauthor] = ACTIONS(2015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitetitle] = ACTIONS(2015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteyear] = ACTIONS(2015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitedate] = ACTIONS(2015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteurl] = ACTIONS(2015), - [anon_sym_BSLASHfullcite] = ACTIONS(2015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2015), - [anon_sym_BSLASHcitealt] = ACTIONS(2015), - [anon_sym_BSLASHcitealp] = ACTIONS(2015), - [anon_sym_BSLASHcitetext] = ACTIONS(2015), - [anon_sym_BSLASHparencite] = ACTIONS(2015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHParencite] = ACTIONS(2015), - [anon_sym_BSLASHfootcite] = ACTIONS(2015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2015), - [anon_sym_BSLASHtextcite] = ACTIONS(2015), - [anon_sym_BSLASHTextcite] = ACTIONS(2015), - [anon_sym_BSLASHsmartcite] = ACTIONS(2015), - [anon_sym_BSLASHSmartcite] = ACTIONS(2015), - [anon_sym_BSLASHsupercite] = ACTIONS(2015), - [anon_sym_BSLASHautocite] = ACTIONS(2015), - [anon_sym_BSLASHAutocite] = ACTIONS(2015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHvolcite] = ACTIONS(2015), - [anon_sym_BSLASHVolcite] = ACTIONS(2015), - [anon_sym_BSLASHpvolcite] = ACTIONS(2015), - [anon_sym_BSLASHPvolcite] = ACTIONS(2015), - [anon_sym_BSLASHfvolcite] = ACTIONS(2015), - [anon_sym_BSLASHftvolcite] = ACTIONS(2015), - [anon_sym_BSLASHsvolcite] = ACTIONS(2015), - [anon_sym_BSLASHSvolcite] = ACTIONS(2015), - [anon_sym_BSLASHtvolcite] = ACTIONS(2015), - [anon_sym_BSLASHTvolcite] = ACTIONS(2015), - [anon_sym_BSLASHavolcite] = ACTIONS(2015), - [anon_sym_BSLASHAvolcite] = ACTIONS(2015), - [anon_sym_BSLASHnotecite] = ACTIONS(2015), - [anon_sym_BSLASHNotecite] = ACTIONS(2015), - [anon_sym_BSLASHpnotecite] = ACTIONS(2015), - [anon_sym_BSLASHPnotecite] = ACTIONS(2015), - [anon_sym_BSLASHfnotecite] = ACTIONS(2015), - [anon_sym_BSLASHlabel] = ACTIONS(2015), - [anon_sym_BSLASHref] = ACTIONS(2015), - [anon_sym_BSLASHeqref] = ACTIONS(2015), - [anon_sym_BSLASHvref] = ACTIONS(2015), - [anon_sym_BSLASHVref] = ACTIONS(2015), - [anon_sym_BSLASHautoref] = ACTIONS(2015), - [anon_sym_BSLASHpageref] = ACTIONS(2015), - [anon_sym_BSLASHcref] = ACTIONS(2015), - [anon_sym_BSLASHCref] = ACTIONS(2015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnameCref] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHlabelcref] = ACTIONS(2015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCrefrange] = ACTIONS(2015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnewlabel] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdef] = ACTIONS(2015), - [anon_sym_BSLASHlet] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2015), - [anon_sym_BSLASHgls] = ACTIONS(2015), - [anon_sym_BSLASHGls] = ACTIONS(2015), - [anon_sym_BSLASHGLS] = ACTIONS(2015), - [anon_sym_BSLASHglspl] = ACTIONS(2015), - [anon_sym_BSLASHGlspl] = ACTIONS(2015), - [anon_sym_BSLASHGLSpl] = ACTIONS(2015), - [anon_sym_BSLASHglsdisp] = ACTIONS(2015), - [anon_sym_BSLASHglslink] = ACTIONS(2015), - [anon_sym_BSLASHglstext] = ACTIONS(2015), - [anon_sym_BSLASHGlstext] = ACTIONS(2015), - [anon_sym_BSLASHGLStext] = ACTIONS(2015), - [anon_sym_BSLASHglsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2015), - [anon_sym_BSLASHglsplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSplural] = ACTIONS(2015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHglsname] = ACTIONS(2015), - [anon_sym_BSLASHGlsname] = ACTIONS(2015), - [anon_sym_BSLASHGLSname] = ACTIONS(2015), - [anon_sym_BSLASHglssymbol] = ACTIONS(2015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2015), - [anon_sym_BSLASHglsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2015), - [anon_sym_BSLASHglsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2015), - [anon_sym_BSLASHglsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2015), - [anon_sym_BSLASHglsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2015), - [anon_sym_BSLASHglsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2015), - [anon_sym_BSLASHnewacronym] = ACTIONS(2015), - [anon_sym_BSLASHacrshort] = ACTIONS(2015), - [anon_sym_BSLASHAcrshort] = ACTIONS(2015), - [anon_sym_BSLASHACRshort] = ACTIONS(2015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2015), - [anon_sym_BSLASHacrlong] = ACTIONS(2015), - [anon_sym_BSLASHAcrlong] = ACTIONS(2015), - [anon_sym_BSLASHACRlong] = ACTIONS(2015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2015), - [anon_sym_BSLASHacrfull] = ACTIONS(2015), - [anon_sym_BSLASHAcrfull] = ACTIONS(2015), - [anon_sym_BSLASHACRfull] = ACTIONS(2015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2015), - [anon_sym_BSLASHacs] = ACTIONS(2015), - [anon_sym_BSLASHAcs] = ACTIONS(2015), - [anon_sym_BSLASHacsp] = ACTIONS(2015), - [anon_sym_BSLASHAcsp] = ACTIONS(2015), - [anon_sym_BSLASHacl] = ACTIONS(2015), - [anon_sym_BSLASHAcl] = ACTIONS(2015), - [anon_sym_BSLASHaclp] = ACTIONS(2015), - [anon_sym_BSLASHAclp] = ACTIONS(2015), - [anon_sym_BSLASHacf] = ACTIONS(2015), - [anon_sym_BSLASHAcf] = ACTIONS(2015), - [anon_sym_BSLASHacfp] = ACTIONS(2015), - [anon_sym_BSLASHAcfp] = ACTIONS(2015), - [anon_sym_BSLASHac] = ACTIONS(2015), - [anon_sym_BSLASHAc] = ACTIONS(2015), - [anon_sym_BSLASHacp] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2015), - [anon_sym_BSLASHcolor] = ACTIONS(2015), - [anon_sym_BSLASHcolorbox] = ACTIONS(2015), - [anon_sym_BSLASHtextcolor] = ACTIONS(2015), - [anon_sym_BSLASHpagecolor] = ACTIONS(2015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2015), - [anon_sym_BSLASHtext] = ACTIONS(2015), - [anon_sym_BSLASHintertext] = ACTIONS(2015), - [anon_sym_shortintertext] = ACTIONS(2015), - }, - [429] = { - [sym_curly_group] = STATE(1181), - [sym_mixed_group] = STATE(1181), - [aux_sym_generic_command_repeat1] = STATE(464), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4801), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4801), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_BSLASHpart] = ACTIONS(4629), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddpart] = ACTIONS(4629), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHchapter] = ACTIONS(4629), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddchap] = ACTIONS(4629), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsection] = ACTIONS(4629), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddsec] = ACTIONS(4629), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHparagraph] = ACTIONS(4629), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4629), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHitem] = ACTIONS(4629), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), - }, - [430] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHend] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [431] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4633), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHchapter] = ACTIONS(4633), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddchap] = ACTIONS(4633), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsection] = ACTIONS(4633), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddsec] = ACTIONS(4633), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHparagraph] = ACTIONS(4633), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4633), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHitem] = ACTIONS(4803), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(4631), - [sym_word] = ACTIONS(4633), - [sym_placeholder] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym__] = ACTIONS(4633), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4633), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4631), - [anon_sym_BSLASHbegin] = ACTIONS(4633), - [anon_sym_BSLASHusepackage] = ACTIONS(4633), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4633), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4633), - [anon_sym_BSLASHinclude] = ACTIONS(4633), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), - [anon_sym_BSLASHinput] = ACTIONS(4633), - [anon_sym_BSLASHsubfile] = ACTIONS(4633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4633), - [anon_sym_BSLASHbibliography] = ACTIONS(4633), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4633), - [anon_sym_BSLASHincludesvg] = ACTIONS(4633), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4633), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4633), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4633), - [anon_sym_BSLASHimport] = ACTIONS(4633), - [anon_sym_BSLASHsubimport] = ACTIONS(4633), - [anon_sym_BSLASHinputfrom] = ACTIONS(4633), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4633), - [anon_sym_BSLASHincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHcaption] = ACTIONS(4633), - [anon_sym_BSLASHcite] = ACTIONS(4633), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCite] = ACTIONS(4633), - [anon_sym_BSLASHnocite] = ACTIONS(4633), - [anon_sym_BSLASHcitet] = ACTIONS(4633), - [anon_sym_BSLASHcitep] = ACTIONS(4633), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteauthor] = ACTIONS(4633), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4633), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitetitle] = ACTIONS(4633), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteyear] = ACTIONS(4633), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitedate] = ACTIONS(4633), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteurl] = ACTIONS(4633), - [anon_sym_BSLASHfullcite] = ACTIONS(4633), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4633), - [anon_sym_BSLASHcitealt] = ACTIONS(4633), - [anon_sym_BSLASHcitealp] = ACTIONS(4633), - [anon_sym_BSLASHcitetext] = ACTIONS(4633), - [anon_sym_BSLASHparencite] = ACTIONS(4633), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHParencite] = ACTIONS(4633), - [anon_sym_BSLASHfootcite] = ACTIONS(4633), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4633), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4633), - [anon_sym_BSLASHtextcite] = ACTIONS(4633), - [anon_sym_BSLASHTextcite] = ACTIONS(4633), - [anon_sym_BSLASHsmartcite] = ACTIONS(4633), - [anon_sym_BSLASHSmartcite] = ACTIONS(4633), - [anon_sym_BSLASHsupercite] = ACTIONS(4633), - [anon_sym_BSLASHautocite] = ACTIONS(4633), - [anon_sym_BSLASHAutocite] = ACTIONS(4633), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHvolcite] = ACTIONS(4633), - [anon_sym_BSLASHVolcite] = ACTIONS(4633), - [anon_sym_BSLASHpvolcite] = ACTIONS(4633), - [anon_sym_BSLASHPvolcite] = ACTIONS(4633), - [anon_sym_BSLASHfvolcite] = ACTIONS(4633), - [anon_sym_BSLASHftvolcite] = ACTIONS(4633), - [anon_sym_BSLASHsvolcite] = ACTIONS(4633), - [anon_sym_BSLASHSvolcite] = ACTIONS(4633), - [anon_sym_BSLASHtvolcite] = ACTIONS(4633), - [anon_sym_BSLASHTvolcite] = ACTIONS(4633), - [anon_sym_BSLASHavolcite] = ACTIONS(4633), - [anon_sym_BSLASHAvolcite] = ACTIONS(4633), - [anon_sym_BSLASHnotecite] = ACTIONS(4633), - [anon_sym_BSLASHNotecite] = ACTIONS(4633), - [anon_sym_BSLASHpnotecite] = ACTIONS(4633), - [anon_sym_BSLASHPnotecite] = ACTIONS(4633), - [anon_sym_BSLASHfnotecite] = ACTIONS(4633), - [anon_sym_BSLASHlabel] = ACTIONS(4633), - [anon_sym_BSLASHref] = ACTIONS(4633), - [anon_sym_BSLASHeqref] = ACTIONS(4633), - [anon_sym_BSLASHvref] = ACTIONS(4633), - [anon_sym_BSLASHVref] = ACTIONS(4633), - [anon_sym_BSLASHautoref] = ACTIONS(4633), - [anon_sym_BSLASHpageref] = ACTIONS(4633), - [anon_sym_BSLASHcref] = ACTIONS(4633), - [anon_sym_BSLASHCref] = ACTIONS(4633), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnameCref] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHlabelcref] = ACTIONS(4633), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCrefrange] = ACTIONS(4633), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnewlabel] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4633), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4633), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4633), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdef] = ACTIONS(4633), - [anon_sym_BSLASHlet] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4633), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4633), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4633), - [anon_sym_BSLASHgls] = ACTIONS(4633), - [anon_sym_BSLASHGls] = ACTIONS(4633), - [anon_sym_BSLASHGLS] = ACTIONS(4633), - [anon_sym_BSLASHglspl] = ACTIONS(4633), - [anon_sym_BSLASHGlspl] = ACTIONS(4633), - [anon_sym_BSLASHGLSpl] = ACTIONS(4633), - [anon_sym_BSLASHglsdisp] = ACTIONS(4633), - [anon_sym_BSLASHglslink] = ACTIONS(4633), - [anon_sym_BSLASHglstext] = ACTIONS(4633), - [anon_sym_BSLASHGlstext] = ACTIONS(4633), - [anon_sym_BSLASHGLStext] = ACTIONS(4633), - [anon_sym_BSLASHglsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4633), - [anon_sym_BSLASHglsplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSplural] = ACTIONS(4633), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHglsname] = ACTIONS(4633), - [anon_sym_BSLASHGlsname] = ACTIONS(4633), - [anon_sym_BSLASHGLSname] = ACTIONS(4633), - [anon_sym_BSLASHglssymbol] = ACTIONS(4633), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4633), - [anon_sym_BSLASHglsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4633), - [anon_sym_BSLASHglsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4633), - [anon_sym_BSLASHglsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4633), - [anon_sym_BSLASHglsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4633), - [anon_sym_BSLASHglsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4633), - [anon_sym_BSLASHnewacronym] = ACTIONS(4633), - [anon_sym_BSLASHacrshort] = ACTIONS(4633), - [anon_sym_BSLASHAcrshort] = ACTIONS(4633), - [anon_sym_BSLASHACRshort] = ACTIONS(4633), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4633), - [anon_sym_BSLASHacrlong] = ACTIONS(4633), - [anon_sym_BSLASHAcrlong] = ACTIONS(4633), - [anon_sym_BSLASHACRlong] = ACTIONS(4633), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4633), - [anon_sym_BSLASHacrfull] = ACTIONS(4633), - [anon_sym_BSLASHAcrfull] = ACTIONS(4633), - [anon_sym_BSLASHACRfull] = ACTIONS(4633), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4633), - [anon_sym_BSLASHacs] = ACTIONS(4633), - [anon_sym_BSLASHAcs] = ACTIONS(4633), - [anon_sym_BSLASHacsp] = ACTIONS(4633), - [anon_sym_BSLASHAcsp] = ACTIONS(4633), - [anon_sym_BSLASHacl] = ACTIONS(4633), - [anon_sym_BSLASHAcl] = ACTIONS(4633), - [anon_sym_BSLASHaclp] = ACTIONS(4633), - [anon_sym_BSLASHAclp] = ACTIONS(4633), - [anon_sym_BSLASHacf] = ACTIONS(4633), - [anon_sym_BSLASHAcf] = ACTIONS(4633), - [anon_sym_BSLASHacfp] = ACTIONS(4633), - [anon_sym_BSLASHAcfp] = ACTIONS(4633), - [anon_sym_BSLASHac] = ACTIONS(4633), - [anon_sym_BSLASHAc] = ACTIONS(4633), - [anon_sym_BSLASHacp] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4633), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4633), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4633), - [anon_sym_BSLASHcolor] = ACTIONS(4633), - [anon_sym_BSLASHcolorbox] = ACTIONS(4633), - [anon_sym_BSLASHtextcolor] = ACTIONS(4633), - [anon_sym_BSLASHpagecolor] = ACTIONS(4633), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4633), - [anon_sym_BSLASHtext] = ACTIONS(4633), - [anon_sym_BSLASHintertext] = ACTIONS(4633), - [anon_sym_shortintertext] = ACTIONS(4633), - }, - [432] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4703), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHend] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [433] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4703), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHend] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [434] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4707), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym_RPAREN] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_RBRACK] = ACTIONS(4705), - [anon_sym_COMMA] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_BSLASHpart] = ACTIONS(4707), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddpart] = ACTIONS(4707), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHchapter] = ACTIONS(4707), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddchap] = ACTIONS(4707), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHparagraph] = ACTIONS(4707), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4707), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4705), - [sym_word] = ACTIONS(4707), - [sym_placeholder] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_CARET] = ACTIONS(4707), - [anon_sym__] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4707), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4705), - [anon_sym_BSLASHbegin] = ACTIONS(4707), - [anon_sym_BSLASHend] = ACTIONS(4707), - [anon_sym_BSLASHusepackage] = ACTIONS(4707), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4707), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4707), - [anon_sym_BSLASHinclude] = ACTIONS(4707), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4707), - [anon_sym_BSLASHinput] = ACTIONS(4707), - [anon_sym_BSLASHsubfile] = ACTIONS(4707), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4707), - [anon_sym_BSLASHbibliography] = ACTIONS(4707), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4707), - [anon_sym_BSLASHincludesvg] = ACTIONS(4707), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4707), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4707), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4707), - [anon_sym_BSLASHimport] = ACTIONS(4707), - [anon_sym_BSLASHsubimport] = ACTIONS(4707), - [anon_sym_BSLASHinputfrom] = ACTIONS(4707), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4707), - [anon_sym_BSLASHincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHcaption] = ACTIONS(4707), - [anon_sym_BSLASHcite] = ACTIONS(4707), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCite] = ACTIONS(4707), - [anon_sym_BSLASHnocite] = ACTIONS(4707), - [anon_sym_BSLASHcitet] = ACTIONS(4707), - [anon_sym_BSLASHcitep] = ACTIONS(4707), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteauthor] = ACTIONS(4707), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4707), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitetitle] = ACTIONS(4707), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteyear] = ACTIONS(4707), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitedate] = ACTIONS(4707), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteurl] = ACTIONS(4707), - [anon_sym_BSLASHfullcite] = ACTIONS(4707), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4707), - [anon_sym_BSLASHcitealt] = ACTIONS(4707), - [anon_sym_BSLASHcitealp] = ACTIONS(4707), - [anon_sym_BSLASHcitetext] = ACTIONS(4707), - [anon_sym_BSLASHparencite] = ACTIONS(4707), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHParencite] = ACTIONS(4707), - [anon_sym_BSLASHfootcite] = ACTIONS(4707), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4707), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4707), - [anon_sym_BSLASHtextcite] = ACTIONS(4707), - [anon_sym_BSLASHTextcite] = ACTIONS(4707), - [anon_sym_BSLASHsmartcite] = ACTIONS(4707), - [anon_sym_BSLASHSmartcite] = ACTIONS(4707), - [anon_sym_BSLASHsupercite] = ACTIONS(4707), - [anon_sym_BSLASHautocite] = ACTIONS(4707), - [anon_sym_BSLASHAutocite] = ACTIONS(4707), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHvolcite] = ACTIONS(4707), - [anon_sym_BSLASHVolcite] = ACTIONS(4707), - [anon_sym_BSLASHpvolcite] = ACTIONS(4707), - [anon_sym_BSLASHPvolcite] = ACTIONS(4707), - [anon_sym_BSLASHfvolcite] = ACTIONS(4707), - [anon_sym_BSLASHftvolcite] = ACTIONS(4707), - [anon_sym_BSLASHsvolcite] = ACTIONS(4707), - [anon_sym_BSLASHSvolcite] = ACTIONS(4707), - [anon_sym_BSLASHtvolcite] = ACTIONS(4707), - [anon_sym_BSLASHTvolcite] = ACTIONS(4707), - [anon_sym_BSLASHavolcite] = ACTIONS(4707), - [anon_sym_BSLASHAvolcite] = ACTIONS(4707), - [anon_sym_BSLASHnotecite] = ACTIONS(4707), - [anon_sym_BSLASHNotecite] = ACTIONS(4707), - [anon_sym_BSLASHpnotecite] = ACTIONS(4707), - [anon_sym_BSLASHPnotecite] = ACTIONS(4707), - [anon_sym_BSLASHfnotecite] = ACTIONS(4707), - [anon_sym_BSLASHlabel] = ACTIONS(4707), - [anon_sym_BSLASHref] = ACTIONS(4707), - [anon_sym_BSLASHeqref] = ACTIONS(4707), - [anon_sym_BSLASHvref] = ACTIONS(4707), - [anon_sym_BSLASHVref] = ACTIONS(4707), - [anon_sym_BSLASHautoref] = ACTIONS(4707), - [anon_sym_BSLASHpageref] = ACTIONS(4707), - [anon_sym_BSLASHcref] = ACTIONS(4707), - [anon_sym_BSLASHCref] = ACTIONS(4707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnameCref] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHlabelcref] = ACTIONS(4707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCrefrange] = ACTIONS(4707), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnewlabel] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdef] = ACTIONS(4707), - [anon_sym_BSLASHlet] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4707), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4707), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), - [anon_sym_BSLASHgls] = ACTIONS(4707), - [anon_sym_BSLASHGls] = ACTIONS(4707), - [anon_sym_BSLASHGLS] = ACTIONS(4707), - [anon_sym_BSLASHglspl] = ACTIONS(4707), - [anon_sym_BSLASHGlspl] = ACTIONS(4707), - [anon_sym_BSLASHGLSpl] = ACTIONS(4707), - [anon_sym_BSLASHglsdisp] = ACTIONS(4707), - [anon_sym_BSLASHglslink] = ACTIONS(4707), - [anon_sym_BSLASHglstext] = ACTIONS(4707), - [anon_sym_BSLASHGlstext] = ACTIONS(4707), - [anon_sym_BSLASHGLStext] = ACTIONS(4707), - [anon_sym_BSLASHglsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4707), - [anon_sym_BSLASHglsplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSplural] = ACTIONS(4707), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHglsname] = ACTIONS(4707), - [anon_sym_BSLASHGlsname] = ACTIONS(4707), - [anon_sym_BSLASHGLSname] = ACTIONS(4707), - [anon_sym_BSLASHglssymbol] = ACTIONS(4707), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4707), - [anon_sym_BSLASHglsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4707), - [anon_sym_BSLASHglsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4707), - [anon_sym_BSLASHglsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4707), - [anon_sym_BSLASHglsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4707), - [anon_sym_BSLASHglsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4707), - [anon_sym_BSLASHnewacronym] = ACTIONS(4707), - [anon_sym_BSLASHacrshort] = ACTIONS(4707), - [anon_sym_BSLASHAcrshort] = ACTIONS(4707), - [anon_sym_BSLASHACRshort] = ACTIONS(4707), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4707), - [anon_sym_BSLASHacrlong] = ACTIONS(4707), - [anon_sym_BSLASHAcrlong] = ACTIONS(4707), - [anon_sym_BSLASHACRlong] = ACTIONS(4707), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4707), - [anon_sym_BSLASHacrfull] = ACTIONS(4707), - [anon_sym_BSLASHAcrfull] = ACTIONS(4707), - [anon_sym_BSLASHACRfull] = ACTIONS(4707), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4707), - [anon_sym_BSLASHacs] = ACTIONS(4707), - [anon_sym_BSLASHAcs] = ACTIONS(4707), - [anon_sym_BSLASHacsp] = ACTIONS(4707), - [anon_sym_BSLASHAcsp] = ACTIONS(4707), - [anon_sym_BSLASHacl] = ACTIONS(4707), - [anon_sym_BSLASHAcl] = ACTIONS(4707), - [anon_sym_BSLASHaclp] = ACTIONS(4707), - [anon_sym_BSLASHAclp] = ACTIONS(4707), - [anon_sym_BSLASHacf] = ACTIONS(4707), - [anon_sym_BSLASHAcf] = ACTIONS(4707), - [anon_sym_BSLASHacfp] = ACTIONS(4707), - [anon_sym_BSLASHAcfp] = ACTIONS(4707), - [anon_sym_BSLASHac] = ACTIONS(4707), - [anon_sym_BSLASHAc] = ACTIONS(4707), - [anon_sym_BSLASHacp] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4707), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4707), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4707), - [anon_sym_BSLASHcolor] = ACTIONS(4707), - [anon_sym_BSLASHcolorbox] = ACTIONS(4707), - [anon_sym_BSLASHtextcolor] = ACTIONS(4707), - [anon_sym_BSLASHpagecolor] = ACTIONS(4707), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4707), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4707), - [anon_sym_BSLASHtext] = ACTIONS(4707), - [anon_sym_BSLASHintertext] = ACTIONS(4707), - [anon_sym_shortintertext] = ACTIONS(4707), - }, - [435] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4643), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_BSLASHpart] = ACTIONS(4643), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddpart] = ACTIONS(4643), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHchapter] = ACTIONS(4643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddchap] = ACTIONS(4643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsection] = ACTIONS(4643), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddsec] = ACTIONS(4643), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHparagraph] = ACTIONS(4643), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4809), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4812), - [anon_sym_BSLASHitem] = ACTIONS(4643), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [sym_word] = ACTIONS(4643), - [sym_placeholder] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym__] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4641), - [anon_sym_BSLASHbegin] = ACTIONS(4643), - [anon_sym_BSLASHusepackage] = ACTIONS(4643), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4643), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4643), - [anon_sym_BSLASHinclude] = ACTIONS(4643), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4643), - [anon_sym_BSLASHinput] = ACTIONS(4643), - [anon_sym_BSLASHsubfile] = ACTIONS(4643), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4643), - [anon_sym_BSLASHbibliography] = ACTIONS(4643), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4643), - [anon_sym_BSLASHincludesvg] = ACTIONS(4643), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4643), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4643), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4643), - [anon_sym_BSLASHimport] = ACTIONS(4643), - [anon_sym_BSLASHsubimport] = ACTIONS(4643), - [anon_sym_BSLASHinputfrom] = ACTIONS(4643), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4643), - [anon_sym_BSLASHincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHcaption] = ACTIONS(4643), - [anon_sym_BSLASHcite] = ACTIONS(4643), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCite] = ACTIONS(4643), - [anon_sym_BSLASHnocite] = ACTIONS(4643), - [anon_sym_BSLASHcitet] = ACTIONS(4643), - [anon_sym_BSLASHcitep] = ACTIONS(4643), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteauthor] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitetitle] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteyear] = ACTIONS(4643), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitedate] = ACTIONS(4643), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteurl] = ACTIONS(4643), - [anon_sym_BSLASHfullcite] = ACTIONS(4643), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4643), - [anon_sym_BSLASHcitealt] = ACTIONS(4643), - [anon_sym_BSLASHcitealp] = ACTIONS(4643), - [anon_sym_BSLASHcitetext] = ACTIONS(4643), - [anon_sym_BSLASHparencite] = ACTIONS(4643), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHParencite] = ACTIONS(4643), - [anon_sym_BSLASHfootcite] = ACTIONS(4643), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4643), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4643), - [anon_sym_BSLASHtextcite] = ACTIONS(4643), - [anon_sym_BSLASHTextcite] = ACTIONS(4643), - [anon_sym_BSLASHsmartcite] = ACTIONS(4643), - [anon_sym_BSLASHSmartcite] = ACTIONS(4643), - [anon_sym_BSLASHsupercite] = ACTIONS(4643), - [anon_sym_BSLASHautocite] = ACTIONS(4643), - [anon_sym_BSLASHAutocite] = ACTIONS(4643), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHvolcite] = ACTIONS(4643), - [anon_sym_BSLASHVolcite] = ACTIONS(4643), - [anon_sym_BSLASHpvolcite] = ACTIONS(4643), - [anon_sym_BSLASHPvolcite] = ACTIONS(4643), - [anon_sym_BSLASHfvolcite] = ACTIONS(4643), - [anon_sym_BSLASHftvolcite] = ACTIONS(4643), - [anon_sym_BSLASHsvolcite] = ACTIONS(4643), - [anon_sym_BSLASHSvolcite] = ACTIONS(4643), - [anon_sym_BSLASHtvolcite] = ACTIONS(4643), - [anon_sym_BSLASHTvolcite] = ACTIONS(4643), - [anon_sym_BSLASHavolcite] = ACTIONS(4643), - [anon_sym_BSLASHAvolcite] = ACTIONS(4643), - [anon_sym_BSLASHnotecite] = ACTIONS(4643), - [anon_sym_BSLASHNotecite] = ACTIONS(4643), - [anon_sym_BSLASHpnotecite] = ACTIONS(4643), - [anon_sym_BSLASHPnotecite] = ACTIONS(4643), - [anon_sym_BSLASHfnotecite] = ACTIONS(4643), - [anon_sym_BSLASHlabel] = ACTIONS(4643), - [anon_sym_BSLASHref] = ACTIONS(4643), - [anon_sym_BSLASHeqref] = ACTIONS(4643), - [anon_sym_BSLASHvref] = ACTIONS(4643), - [anon_sym_BSLASHVref] = ACTIONS(4643), - [anon_sym_BSLASHautoref] = ACTIONS(4643), - [anon_sym_BSLASHpageref] = ACTIONS(4643), - [anon_sym_BSLASHcref] = ACTIONS(4643), - [anon_sym_BSLASHCref] = ACTIONS(4643), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnameCref] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHlabelcref] = ACTIONS(4643), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCrefrange] = ACTIONS(4643), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnewlabel] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4643), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4643), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4643), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdef] = ACTIONS(4643), - [anon_sym_BSLASHlet] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4643), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4643), - [anon_sym_BSLASHgls] = ACTIONS(4643), - [anon_sym_BSLASHGls] = ACTIONS(4643), - [anon_sym_BSLASHGLS] = ACTIONS(4643), - [anon_sym_BSLASHglspl] = ACTIONS(4643), - [anon_sym_BSLASHGlspl] = ACTIONS(4643), - [anon_sym_BSLASHGLSpl] = ACTIONS(4643), - [anon_sym_BSLASHglsdisp] = ACTIONS(4643), - [anon_sym_BSLASHglslink] = ACTIONS(4643), - [anon_sym_BSLASHglstext] = ACTIONS(4643), - [anon_sym_BSLASHGlstext] = ACTIONS(4643), - [anon_sym_BSLASHGLStext] = ACTIONS(4643), - [anon_sym_BSLASHglsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4643), - [anon_sym_BSLASHglsplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSplural] = ACTIONS(4643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHglsname] = ACTIONS(4643), - [anon_sym_BSLASHGlsname] = ACTIONS(4643), - [anon_sym_BSLASHGLSname] = ACTIONS(4643), - [anon_sym_BSLASHglssymbol] = ACTIONS(4643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4643), - [anon_sym_BSLASHglsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4643), - [anon_sym_BSLASHglsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4643), - [anon_sym_BSLASHglsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4643), - [anon_sym_BSLASHglsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4643), - [anon_sym_BSLASHglsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4643), - [anon_sym_BSLASHnewacronym] = ACTIONS(4643), - [anon_sym_BSLASHacrshort] = ACTIONS(4643), - [anon_sym_BSLASHAcrshort] = ACTIONS(4643), - [anon_sym_BSLASHACRshort] = ACTIONS(4643), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4643), - [anon_sym_BSLASHacrlong] = ACTIONS(4643), - [anon_sym_BSLASHAcrlong] = ACTIONS(4643), - [anon_sym_BSLASHACRlong] = ACTIONS(4643), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4643), - [anon_sym_BSLASHacrfull] = ACTIONS(4643), - [anon_sym_BSLASHAcrfull] = ACTIONS(4643), - [anon_sym_BSLASHACRfull] = ACTIONS(4643), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4643), - [anon_sym_BSLASHacs] = ACTIONS(4643), - [anon_sym_BSLASHAcs] = ACTIONS(4643), - [anon_sym_BSLASHacsp] = ACTIONS(4643), - [anon_sym_BSLASHAcsp] = ACTIONS(4643), - [anon_sym_BSLASHacl] = ACTIONS(4643), - [anon_sym_BSLASHAcl] = ACTIONS(4643), - [anon_sym_BSLASHaclp] = ACTIONS(4643), - [anon_sym_BSLASHAclp] = ACTIONS(4643), - [anon_sym_BSLASHacf] = ACTIONS(4643), - [anon_sym_BSLASHAcf] = ACTIONS(4643), - [anon_sym_BSLASHacfp] = ACTIONS(4643), - [anon_sym_BSLASHAcfp] = ACTIONS(4643), - [anon_sym_BSLASHac] = ACTIONS(4643), - [anon_sym_BSLASHAc] = ACTIONS(4643), - [anon_sym_BSLASHacp] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4643), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4643), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4643), - [anon_sym_BSLASHcolor] = ACTIONS(4643), - [anon_sym_BSLASHcolorbox] = ACTIONS(4643), - [anon_sym_BSLASHtextcolor] = ACTIONS(4643), - [anon_sym_BSLASHpagecolor] = ACTIONS(4643), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4643), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4643), - [anon_sym_BSLASHtext] = ACTIONS(4643), - [anon_sym_BSLASHintertext] = ACTIONS(4643), - [anon_sym_shortintertext] = ACTIONS(4643), - }, - [436] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_BSLASHpart] = ACTIONS(4653), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddpart] = ACTIONS(4653), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHchapter] = ACTIONS(4653), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddchap] = ACTIONS(4653), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsection] = ACTIONS(4653), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddsec] = ACTIONS(4653), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHparagraph] = ACTIONS(4815), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4818), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4653), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4651), - [anon_sym_BSLASHitem] = ACTIONS(4653), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [sym_word] = ACTIONS(4653), - [sym_placeholder] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym__] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4651), - [anon_sym_BSLASHbegin] = ACTIONS(4653), - [anon_sym_BSLASHusepackage] = ACTIONS(4653), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4653), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4653), - [anon_sym_BSLASHinclude] = ACTIONS(4653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4653), - [anon_sym_BSLASHinput] = ACTIONS(4653), - [anon_sym_BSLASHsubfile] = ACTIONS(4653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4653), - [anon_sym_BSLASHbibliography] = ACTIONS(4653), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4653), - [anon_sym_BSLASHincludesvg] = ACTIONS(4653), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4653), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4653), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4653), - [anon_sym_BSLASHimport] = ACTIONS(4653), - [anon_sym_BSLASHsubimport] = ACTIONS(4653), - [anon_sym_BSLASHinputfrom] = ACTIONS(4653), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4653), - [anon_sym_BSLASHincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHcaption] = ACTIONS(4653), - [anon_sym_BSLASHcite] = ACTIONS(4653), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCite] = ACTIONS(4653), - [anon_sym_BSLASHnocite] = ACTIONS(4653), - [anon_sym_BSLASHcitet] = ACTIONS(4653), - [anon_sym_BSLASHcitep] = ACTIONS(4653), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteauthor] = ACTIONS(4653), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4653), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitetitle] = ACTIONS(4653), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteyear] = ACTIONS(4653), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitedate] = ACTIONS(4653), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteurl] = ACTIONS(4653), - [anon_sym_BSLASHfullcite] = ACTIONS(4653), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4653), - [anon_sym_BSLASHcitealt] = ACTIONS(4653), - [anon_sym_BSLASHcitealp] = ACTIONS(4653), - [anon_sym_BSLASHcitetext] = ACTIONS(4653), - [anon_sym_BSLASHparencite] = ACTIONS(4653), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHParencite] = ACTIONS(4653), - [anon_sym_BSLASHfootcite] = ACTIONS(4653), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4653), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4653), - [anon_sym_BSLASHtextcite] = ACTIONS(4653), - [anon_sym_BSLASHTextcite] = ACTIONS(4653), - [anon_sym_BSLASHsmartcite] = ACTIONS(4653), - [anon_sym_BSLASHSmartcite] = ACTIONS(4653), - [anon_sym_BSLASHsupercite] = ACTIONS(4653), - [anon_sym_BSLASHautocite] = ACTIONS(4653), - [anon_sym_BSLASHAutocite] = ACTIONS(4653), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHvolcite] = ACTIONS(4653), - [anon_sym_BSLASHVolcite] = ACTIONS(4653), - [anon_sym_BSLASHpvolcite] = ACTIONS(4653), - [anon_sym_BSLASHPvolcite] = ACTIONS(4653), - [anon_sym_BSLASHfvolcite] = ACTIONS(4653), - [anon_sym_BSLASHftvolcite] = ACTIONS(4653), - [anon_sym_BSLASHsvolcite] = ACTIONS(4653), - [anon_sym_BSLASHSvolcite] = ACTIONS(4653), - [anon_sym_BSLASHtvolcite] = ACTIONS(4653), - [anon_sym_BSLASHTvolcite] = ACTIONS(4653), - [anon_sym_BSLASHavolcite] = ACTIONS(4653), - [anon_sym_BSLASHAvolcite] = ACTIONS(4653), - [anon_sym_BSLASHnotecite] = ACTIONS(4653), - [anon_sym_BSLASHNotecite] = ACTIONS(4653), - [anon_sym_BSLASHpnotecite] = ACTIONS(4653), - [anon_sym_BSLASHPnotecite] = ACTIONS(4653), - [anon_sym_BSLASHfnotecite] = ACTIONS(4653), - [anon_sym_BSLASHlabel] = ACTIONS(4653), - [anon_sym_BSLASHref] = ACTIONS(4653), - [anon_sym_BSLASHeqref] = ACTIONS(4653), - [anon_sym_BSLASHvref] = ACTIONS(4653), - [anon_sym_BSLASHVref] = ACTIONS(4653), - [anon_sym_BSLASHautoref] = ACTIONS(4653), - [anon_sym_BSLASHpageref] = ACTIONS(4653), - [anon_sym_BSLASHcref] = ACTIONS(4653), - [anon_sym_BSLASHCref] = ACTIONS(4653), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnameCref] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHlabelcref] = ACTIONS(4653), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCrefrange] = ACTIONS(4653), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnewlabel] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4653), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4653), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4653), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdef] = ACTIONS(4653), - [anon_sym_BSLASHlet] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4653), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4653), - [anon_sym_BSLASHgls] = ACTIONS(4653), - [anon_sym_BSLASHGls] = ACTIONS(4653), - [anon_sym_BSLASHGLS] = ACTIONS(4653), - [anon_sym_BSLASHglspl] = ACTIONS(4653), - [anon_sym_BSLASHGlspl] = ACTIONS(4653), - [anon_sym_BSLASHGLSpl] = ACTIONS(4653), - [anon_sym_BSLASHglsdisp] = ACTIONS(4653), - [anon_sym_BSLASHglslink] = ACTIONS(4653), - [anon_sym_BSLASHglstext] = ACTIONS(4653), - [anon_sym_BSLASHGlstext] = ACTIONS(4653), - [anon_sym_BSLASHGLStext] = ACTIONS(4653), - [anon_sym_BSLASHglsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4653), - [anon_sym_BSLASHglsplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSplural] = ACTIONS(4653), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHglsname] = ACTIONS(4653), - [anon_sym_BSLASHGlsname] = ACTIONS(4653), - [anon_sym_BSLASHGLSname] = ACTIONS(4653), - [anon_sym_BSLASHglssymbol] = ACTIONS(4653), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4653), - [anon_sym_BSLASHglsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4653), - [anon_sym_BSLASHglsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4653), - [anon_sym_BSLASHglsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4653), - [anon_sym_BSLASHglsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4653), - [anon_sym_BSLASHglsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4653), - [anon_sym_BSLASHnewacronym] = ACTIONS(4653), - [anon_sym_BSLASHacrshort] = ACTIONS(4653), - [anon_sym_BSLASHAcrshort] = ACTIONS(4653), - [anon_sym_BSLASHACRshort] = ACTIONS(4653), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4653), - [anon_sym_BSLASHacrlong] = ACTIONS(4653), - [anon_sym_BSLASHAcrlong] = ACTIONS(4653), - [anon_sym_BSLASHACRlong] = ACTIONS(4653), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4653), - [anon_sym_BSLASHacrfull] = ACTIONS(4653), - [anon_sym_BSLASHAcrfull] = ACTIONS(4653), - [anon_sym_BSLASHACRfull] = ACTIONS(4653), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4653), - [anon_sym_BSLASHacs] = ACTIONS(4653), - [anon_sym_BSLASHAcs] = ACTIONS(4653), - [anon_sym_BSLASHacsp] = ACTIONS(4653), - [anon_sym_BSLASHAcsp] = ACTIONS(4653), - [anon_sym_BSLASHacl] = ACTIONS(4653), - [anon_sym_BSLASHAcl] = ACTIONS(4653), - [anon_sym_BSLASHaclp] = ACTIONS(4653), - [anon_sym_BSLASHAclp] = ACTIONS(4653), - [anon_sym_BSLASHacf] = ACTIONS(4653), - [anon_sym_BSLASHAcf] = ACTIONS(4653), - [anon_sym_BSLASHacfp] = ACTIONS(4653), - [anon_sym_BSLASHAcfp] = ACTIONS(4653), - [anon_sym_BSLASHac] = ACTIONS(4653), - [anon_sym_BSLASHAc] = ACTIONS(4653), - [anon_sym_BSLASHacp] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4653), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4653), - [anon_sym_BSLASHcolor] = ACTIONS(4653), - [anon_sym_BSLASHcolorbox] = ACTIONS(4653), - [anon_sym_BSLASHtextcolor] = ACTIONS(4653), - [anon_sym_BSLASHpagecolor] = ACTIONS(4653), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4653), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4653), - [anon_sym_BSLASHtext] = ACTIONS(4653), - [anon_sym_BSLASHintertext] = ACTIONS(4653), - [anon_sym_shortintertext] = ACTIONS(4653), - }, - [437] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4663), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_BSLASHpart] = ACTIONS(4663), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddpart] = ACTIONS(4663), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHchapter] = ACTIONS(4663), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddchap] = ACTIONS(4663), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsection] = ACTIONS(4663), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddsec] = ACTIONS(4663), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4821), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4824), - [anon_sym_BSLASHparagraph] = ACTIONS(4663), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4663), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHitem] = ACTIONS(4663), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [sym_word] = ACTIONS(4663), - [sym_placeholder] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym__] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4661), - [anon_sym_BSLASHbegin] = ACTIONS(4663), - [anon_sym_BSLASHusepackage] = ACTIONS(4663), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4663), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4663), - [anon_sym_BSLASHinclude] = ACTIONS(4663), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4663), - [anon_sym_BSLASHinput] = ACTIONS(4663), - [anon_sym_BSLASHsubfile] = ACTIONS(4663), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4663), - [anon_sym_BSLASHbibliography] = ACTIONS(4663), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4663), - [anon_sym_BSLASHincludesvg] = ACTIONS(4663), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4663), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4663), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4663), - [anon_sym_BSLASHimport] = ACTIONS(4663), - [anon_sym_BSLASHsubimport] = ACTIONS(4663), - [anon_sym_BSLASHinputfrom] = ACTIONS(4663), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4663), - [anon_sym_BSLASHincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHcaption] = ACTIONS(4663), - [anon_sym_BSLASHcite] = ACTIONS(4663), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCite] = ACTIONS(4663), - [anon_sym_BSLASHnocite] = ACTIONS(4663), - [anon_sym_BSLASHcitet] = ACTIONS(4663), - [anon_sym_BSLASHcitep] = ACTIONS(4663), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteauthor] = ACTIONS(4663), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4663), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitetitle] = ACTIONS(4663), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteyear] = ACTIONS(4663), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitedate] = ACTIONS(4663), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteurl] = ACTIONS(4663), - [anon_sym_BSLASHfullcite] = ACTIONS(4663), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4663), - [anon_sym_BSLASHcitealt] = ACTIONS(4663), - [anon_sym_BSLASHcitealp] = ACTIONS(4663), - [anon_sym_BSLASHcitetext] = ACTIONS(4663), - [anon_sym_BSLASHparencite] = ACTIONS(4663), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHParencite] = ACTIONS(4663), - [anon_sym_BSLASHfootcite] = ACTIONS(4663), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4663), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4663), - [anon_sym_BSLASHtextcite] = ACTIONS(4663), - [anon_sym_BSLASHTextcite] = ACTIONS(4663), - [anon_sym_BSLASHsmartcite] = ACTIONS(4663), - [anon_sym_BSLASHSmartcite] = ACTIONS(4663), - [anon_sym_BSLASHsupercite] = ACTIONS(4663), - [anon_sym_BSLASHautocite] = ACTIONS(4663), - [anon_sym_BSLASHAutocite] = ACTIONS(4663), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHvolcite] = ACTIONS(4663), - [anon_sym_BSLASHVolcite] = ACTIONS(4663), - [anon_sym_BSLASHpvolcite] = ACTIONS(4663), - [anon_sym_BSLASHPvolcite] = ACTIONS(4663), - [anon_sym_BSLASHfvolcite] = ACTIONS(4663), - [anon_sym_BSLASHftvolcite] = ACTIONS(4663), - [anon_sym_BSLASHsvolcite] = ACTIONS(4663), - [anon_sym_BSLASHSvolcite] = ACTIONS(4663), - [anon_sym_BSLASHtvolcite] = ACTIONS(4663), - [anon_sym_BSLASHTvolcite] = ACTIONS(4663), - [anon_sym_BSLASHavolcite] = ACTIONS(4663), - [anon_sym_BSLASHAvolcite] = ACTIONS(4663), - [anon_sym_BSLASHnotecite] = ACTIONS(4663), - [anon_sym_BSLASHNotecite] = ACTIONS(4663), - [anon_sym_BSLASHpnotecite] = ACTIONS(4663), - [anon_sym_BSLASHPnotecite] = ACTIONS(4663), - [anon_sym_BSLASHfnotecite] = ACTIONS(4663), - [anon_sym_BSLASHlabel] = ACTIONS(4663), - [anon_sym_BSLASHref] = ACTIONS(4663), - [anon_sym_BSLASHeqref] = ACTIONS(4663), - [anon_sym_BSLASHvref] = ACTIONS(4663), - [anon_sym_BSLASHVref] = ACTIONS(4663), - [anon_sym_BSLASHautoref] = ACTIONS(4663), - [anon_sym_BSLASHpageref] = ACTIONS(4663), - [anon_sym_BSLASHcref] = ACTIONS(4663), - [anon_sym_BSLASHCref] = ACTIONS(4663), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnameCref] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHlabelcref] = ACTIONS(4663), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCrefrange] = ACTIONS(4663), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnewlabel] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4663), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4663), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4663), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdef] = ACTIONS(4663), - [anon_sym_BSLASHlet] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4663), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4663), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4663), - [anon_sym_BSLASHgls] = ACTIONS(4663), - [anon_sym_BSLASHGls] = ACTIONS(4663), - [anon_sym_BSLASHGLS] = ACTIONS(4663), - [anon_sym_BSLASHglspl] = ACTIONS(4663), - [anon_sym_BSLASHGlspl] = ACTIONS(4663), - [anon_sym_BSLASHGLSpl] = ACTIONS(4663), - [anon_sym_BSLASHglsdisp] = ACTIONS(4663), - [anon_sym_BSLASHglslink] = ACTIONS(4663), - [anon_sym_BSLASHglstext] = ACTIONS(4663), - [anon_sym_BSLASHGlstext] = ACTIONS(4663), - [anon_sym_BSLASHGLStext] = ACTIONS(4663), - [anon_sym_BSLASHglsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4663), - [anon_sym_BSLASHglsplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSplural] = ACTIONS(4663), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHglsname] = ACTIONS(4663), - [anon_sym_BSLASHGlsname] = ACTIONS(4663), - [anon_sym_BSLASHGLSname] = ACTIONS(4663), - [anon_sym_BSLASHglssymbol] = ACTIONS(4663), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4663), - [anon_sym_BSLASHglsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4663), - [anon_sym_BSLASHglsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4663), - [anon_sym_BSLASHglsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4663), - [anon_sym_BSLASHglsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4663), - [anon_sym_BSLASHglsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4663), - [anon_sym_BSLASHnewacronym] = ACTIONS(4663), - [anon_sym_BSLASHacrshort] = ACTIONS(4663), - [anon_sym_BSLASHAcrshort] = ACTIONS(4663), - [anon_sym_BSLASHACRshort] = ACTIONS(4663), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4663), - [anon_sym_BSLASHacrlong] = ACTIONS(4663), - [anon_sym_BSLASHAcrlong] = ACTIONS(4663), - [anon_sym_BSLASHACRlong] = ACTIONS(4663), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4663), - [anon_sym_BSLASHacrfull] = ACTIONS(4663), - [anon_sym_BSLASHAcrfull] = ACTIONS(4663), - [anon_sym_BSLASHACRfull] = ACTIONS(4663), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4663), - [anon_sym_BSLASHacs] = ACTIONS(4663), - [anon_sym_BSLASHAcs] = ACTIONS(4663), - [anon_sym_BSLASHacsp] = ACTIONS(4663), - [anon_sym_BSLASHAcsp] = ACTIONS(4663), - [anon_sym_BSLASHacl] = ACTIONS(4663), - [anon_sym_BSLASHAcl] = ACTIONS(4663), - [anon_sym_BSLASHaclp] = ACTIONS(4663), - [anon_sym_BSLASHAclp] = ACTIONS(4663), - [anon_sym_BSLASHacf] = ACTIONS(4663), - [anon_sym_BSLASHAcf] = ACTIONS(4663), - [anon_sym_BSLASHacfp] = ACTIONS(4663), - [anon_sym_BSLASHAcfp] = ACTIONS(4663), - [anon_sym_BSLASHac] = ACTIONS(4663), - [anon_sym_BSLASHAc] = ACTIONS(4663), - [anon_sym_BSLASHacp] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4663), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4663), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4663), - [anon_sym_BSLASHcolor] = ACTIONS(4663), - [anon_sym_BSLASHcolorbox] = ACTIONS(4663), - [anon_sym_BSLASHtextcolor] = ACTIONS(4663), - [anon_sym_BSLASHpagecolor] = ACTIONS(4663), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4663), - [anon_sym_BSLASHtext] = ACTIONS(4663), - [anon_sym_BSLASHintertext] = ACTIONS(4663), - [anon_sym_shortintertext] = ACTIONS(4663), - }, - [438] = { - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(523), - [aux_sym__section_repeat1] = STATE(523), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHaddpart] = ACTIONS(529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(531), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [439] = { - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(524), - [aux_sym__section_repeat2] = STATE(524), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [440] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [441] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [442] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [443] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [444] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [445] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [446] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(4677), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_BSLASHpart] = ACTIONS(4677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddpart] = ACTIONS(4677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsection] = ACTIONS(4677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddsec] = ACTIONS(4677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubsection] = ACTIONS(4827), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHparagraph] = ACTIONS(4677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHitem] = ACTIONS(4677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [sym_word] = ACTIONS(4677), - [sym_placeholder] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym__] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4675), - [anon_sym_BSLASHbegin] = ACTIONS(4677), - [anon_sym_BSLASHusepackage] = ACTIONS(4677), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4677), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4677), - [anon_sym_BSLASHinclude] = ACTIONS(4677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4677), - [anon_sym_BSLASHinput] = ACTIONS(4677), - [anon_sym_BSLASHsubfile] = ACTIONS(4677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4677), - [anon_sym_BSLASHbibliography] = ACTIONS(4677), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4677), - [anon_sym_BSLASHincludesvg] = ACTIONS(4677), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4677), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4677), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4677), - [anon_sym_BSLASHimport] = ACTIONS(4677), - [anon_sym_BSLASHsubimport] = ACTIONS(4677), - [anon_sym_BSLASHinputfrom] = ACTIONS(4677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4677), - [anon_sym_BSLASHincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHcaption] = ACTIONS(4677), - [anon_sym_BSLASHcite] = ACTIONS(4677), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCite] = ACTIONS(4677), - [anon_sym_BSLASHnocite] = ACTIONS(4677), - [anon_sym_BSLASHcitet] = ACTIONS(4677), - [anon_sym_BSLASHcitep] = ACTIONS(4677), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteauthor] = ACTIONS(4677), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4677), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitetitle] = ACTIONS(4677), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteyear] = ACTIONS(4677), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitedate] = ACTIONS(4677), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteurl] = ACTIONS(4677), - [anon_sym_BSLASHfullcite] = ACTIONS(4677), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4677), - [anon_sym_BSLASHcitealt] = ACTIONS(4677), - [anon_sym_BSLASHcitealp] = ACTIONS(4677), - [anon_sym_BSLASHcitetext] = ACTIONS(4677), - [anon_sym_BSLASHparencite] = ACTIONS(4677), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHParencite] = ACTIONS(4677), - [anon_sym_BSLASHfootcite] = ACTIONS(4677), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4677), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4677), - [anon_sym_BSLASHtextcite] = ACTIONS(4677), - [anon_sym_BSLASHTextcite] = ACTIONS(4677), - [anon_sym_BSLASHsmartcite] = ACTIONS(4677), - [anon_sym_BSLASHSmartcite] = ACTIONS(4677), - [anon_sym_BSLASHsupercite] = ACTIONS(4677), - [anon_sym_BSLASHautocite] = ACTIONS(4677), - [anon_sym_BSLASHAutocite] = ACTIONS(4677), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHvolcite] = ACTIONS(4677), - [anon_sym_BSLASHVolcite] = ACTIONS(4677), - [anon_sym_BSLASHpvolcite] = ACTIONS(4677), - [anon_sym_BSLASHPvolcite] = ACTIONS(4677), - [anon_sym_BSLASHfvolcite] = ACTIONS(4677), - [anon_sym_BSLASHftvolcite] = ACTIONS(4677), - [anon_sym_BSLASHsvolcite] = ACTIONS(4677), - [anon_sym_BSLASHSvolcite] = ACTIONS(4677), - [anon_sym_BSLASHtvolcite] = ACTIONS(4677), - [anon_sym_BSLASHTvolcite] = ACTIONS(4677), - [anon_sym_BSLASHavolcite] = ACTIONS(4677), - [anon_sym_BSLASHAvolcite] = ACTIONS(4677), - [anon_sym_BSLASHnotecite] = ACTIONS(4677), - [anon_sym_BSLASHNotecite] = ACTIONS(4677), - [anon_sym_BSLASHpnotecite] = ACTIONS(4677), - [anon_sym_BSLASHPnotecite] = ACTIONS(4677), - [anon_sym_BSLASHfnotecite] = ACTIONS(4677), - [anon_sym_BSLASHlabel] = ACTIONS(4677), - [anon_sym_BSLASHref] = ACTIONS(4677), - [anon_sym_BSLASHeqref] = ACTIONS(4677), - [anon_sym_BSLASHvref] = ACTIONS(4677), - [anon_sym_BSLASHVref] = ACTIONS(4677), - [anon_sym_BSLASHautoref] = ACTIONS(4677), - [anon_sym_BSLASHpageref] = ACTIONS(4677), - [anon_sym_BSLASHcref] = ACTIONS(4677), - [anon_sym_BSLASHCref] = ACTIONS(4677), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnameCref] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHlabelcref] = ACTIONS(4677), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCrefrange] = ACTIONS(4677), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnewlabel] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4677), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4677), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4677), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdef] = ACTIONS(4677), - [anon_sym_BSLASHlet] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4677), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4677), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4677), - [anon_sym_BSLASHgls] = ACTIONS(4677), - [anon_sym_BSLASHGls] = ACTIONS(4677), - [anon_sym_BSLASHGLS] = ACTIONS(4677), - [anon_sym_BSLASHglspl] = ACTIONS(4677), - [anon_sym_BSLASHGlspl] = ACTIONS(4677), - [anon_sym_BSLASHGLSpl] = ACTIONS(4677), - [anon_sym_BSLASHglsdisp] = ACTIONS(4677), - [anon_sym_BSLASHglslink] = ACTIONS(4677), - [anon_sym_BSLASHglstext] = ACTIONS(4677), - [anon_sym_BSLASHGlstext] = ACTIONS(4677), - [anon_sym_BSLASHGLStext] = ACTIONS(4677), - [anon_sym_BSLASHglsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4677), - [anon_sym_BSLASHglsplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSplural] = ACTIONS(4677), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHglsname] = ACTIONS(4677), - [anon_sym_BSLASHGlsname] = ACTIONS(4677), - [anon_sym_BSLASHGLSname] = ACTIONS(4677), - [anon_sym_BSLASHglssymbol] = ACTIONS(4677), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4677), - [anon_sym_BSLASHglsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4677), - [anon_sym_BSLASHglsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4677), - [anon_sym_BSLASHglsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4677), - [anon_sym_BSLASHglsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4677), - [anon_sym_BSLASHglsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4677), - [anon_sym_BSLASHnewacronym] = ACTIONS(4677), - [anon_sym_BSLASHacrshort] = ACTIONS(4677), - [anon_sym_BSLASHAcrshort] = ACTIONS(4677), - [anon_sym_BSLASHACRshort] = ACTIONS(4677), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4677), - [anon_sym_BSLASHacrlong] = ACTIONS(4677), - [anon_sym_BSLASHAcrlong] = ACTIONS(4677), - [anon_sym_BSLASHACRlong] = ACTIONS(4677), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4677), - [anon_sym_BSLASHacrfull] = ACTIONS(4677), - [anon_sym_BSLASHAcrfull] = ACTIONS(4677), - [anon_sym_BSLASHACRfull] = ACTIONS(4677), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4677), - [anon_sym_BSLASHacs] = ACTIONS(4677), - [anon_sym_BSLASHAcs] = ACTIONS(4677), - [anon_sym_BSLASHacsp] = ACTIONS(4677), - [anon_sym_BSLASHAcsp] = ACTIONS(4677), - [anon_sym_BSLASHacl] = ACTIONS(4677), - [anon_sym_BSLASHAcl] = ACTIONS(4677), - [anon_sym_BSLASHaclp] = ACTIONS(4677), - [anon_sym_BSLASHAclp] = ACTIONS(4677), - [anon_sym_BSLASHacf] = ACTIONS(4677), - [anon_sym_BSLASHAcf] = ACTIONS(4677), - [anon_sym_BSLASHacfp] = ACTIONS(4677), - [anon_sym_BSLASHAcfp] = ACTIONS(4677), - [anon_sym_BSLASHac] = ACTIONS(4677), - [anon_sym_BSLASHAc] = ACTIONS(4677), - [anon_sym_BSLASHacp] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4677), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4677), - [anon_sym_BSLASHcolor] = ACTIONS(4677), - [anon_sym_BSLASHcolorbox] = ACTIONS(4677), - [anon_sym_BSLASHtextcolor] = ACTIONS(4677), - [anon_sym_BSLASHpagecolor] = ACTIONS(4677), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4677), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4677), - [anon_sym_BSLASHtext] = ACTIONS(4677), - [anon_sym_BSLASHintertext] = ACTIONS(4677), - [anon_sym_shortintertext] = ACTIONS(4677), - }, - [447] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(4711), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4709), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_BSLASHpart] = ACTIONS(4711), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddpart] = ACTIONS(4711), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHchapter] = ACTIONS(4711), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddchap] = ACTIONS(4711), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsection] = ACTIONS(4833), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4836), - [anon_sym_BSLASHaddsec] = ACTIONS(4833), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4836), - [anon_sym_BSLASHsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHparagraph] = ACTIONS(4711), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4711), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHitem] = ACTIONS(4711), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [sym_word] = ACTIONS(4711), - [sym_placeholder] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_CARET] = ACTIONS(4711), - [anon_sym__] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4709), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4709), - [anon_sym_BSLASHbegin] = ACTIONS(4711), - [anon_sym_BSLASHusepackage] = ACTIONS(4711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4711), - [anon_sym_BSLASHinclude] = ACTIONS(4711), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4711), - [anon_sym_BSLASHinput] = ACTIONS(4711), - [anon_sym_BSLASHsubfile] = ACTIONS(4711), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4711), - [anon_sym_BSLASHbibliography] = ACTIONS(4711), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4711), - [anon_sym_BSLASHincludesvg] = ACTIONS(4711), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4711), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4711), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4711), - [anon_sym_BSLASHimport] = ACTIONS(4711), - [anon_sym_BSLASHsubimport] = ACTIONS(4711), - [anon_sym_BSLASHinputfrom] = ACTIONS(4711), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4711), - [anon_sym_BSLASHincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHcaption] = ACTIONS(4711), - [anon_sym_BSLASHcite] = ACTIONS(4711), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCite] = ACTIONS(4711), - [anon_sym_BSLASHnocite] = ACTIONS(4711), - [anon_sym_BSLASHcitet] = ACTIONS(4711), - [anon_sym_BSLASHcitep] = ACTIONS(4711), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteauthor] = ACTIONS(4711), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4711), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitetitle] = ACTIONS(4711), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteyear] = ACTIONS(4711), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitedate] = ACTIONS(4711), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteurl] = ACTIONS(4711), - [anon_sym_BSLASHfullcite] = ACTIONS(4711), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4711), - [anon_sym_BSLASHcitealt] = ACTIONS(4711), - [anon_sym_BSLASHcitealp] = ACTIONS(4711), - [anon_sym_BSLASHcitetext] = ACTIONS(4711), - [anon_sym_BSLASHparencite] = ACTIONS(4711), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHParencite] = ACTIONS(4711), - [anon_sym_BSLASHfootcite] = ACTIONS(4711), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4711), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4711), - [anon_sym_BSLASHtextcite] = ACTIONS(4711), - [anon_sym_BSLASHTextcite] = ACTIONS(4711), - [anon_sym_BSLASHsmartcite] = ACTIONS(4711), - [anon_sym_BSLASHSmartcite] = ACTIONS(4711), - [anon_sym_BSLASHsupercite] = ACTIONS(4711), - [anon_sym_BSLASHautocite] = ACTIONS(4711), - [anon_sym_BSLASHAutocite] = ACTIONS(4711), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHvolcite] = ACTIONS(4711), - [anon_sym_BSLASHVolcite] = ACTIONS(4711), - [anon_sym_BSLASHpvolcite] = ACTIONS(4711), - [anon_sym_BSLASHPvolcite] = ACTIONS(4711), - [anon_sym_BSLASHfvolcite] = ACTIONS(4711), - [anon_sym_BSLASHftvolcite] = ACTIONS(4711), - [anon_sym_BSLASHsvolcite] = ACTIONS(4711), - [anon_sym_BSLASHSvolcite] = ACTIONS(4711), - [anon_sym_BSLASHtvolcite] = ACTIONS(4711), - [anon_sym_BSLASHTvolcite] = ACTIONS(4711), - [anon_sym_BSLASHavolcite] = ACTIONS(4711), - [anon_sym_BSLASHAvolcite] = ACTIONS(4711), - [anon_sym_BSLASHnotecite] = ACTIONS(4711), - [anon_sym_BSLASHNotecite] = ACTIONS(4711), - [anon_sym_BSLASHpnotecite] = ACTIONS(4711), - [anon_sym_BSLASHPnotecite] = ACTIONS(4711), - [anon_sym_BSLASHfnotecite] = ACTIONS(4711), - [anon_sym_BSLASHlabel] = ACTIONS(4711), - [anon_sym_BSLASHref] = ACTIONS(4711), - [anon_sym_BSLASHeqref] = ACTIONS(4711), - [anon_sym_BSLASHvref] = ACTIONS(4711), - [anon_sym_BSLASHVref] = ACTIONS(4711), - [anon_sym_BSLASHautoref] = ACTIONS(4711), - [anon_sym_BSLASHpageref] = ACTIONS(4711), - [anon_sym_BSLASHcref] = ACTIONS(4711), - [anon_sym_BSLASHCref] = ACTIONS(4711), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnameCref] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHlabelcref] = ACTIONS(4711), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCrefrange] = ACTIONS(4711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnewlabel] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4711), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4711), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4711), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdef] = ACTIONS(4711), - [anon_sym_BSLASHlet] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4711), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4711), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4711), - [anon_sym_BSLASHgls] = ACTIONS(4711), - [anon_sym_BSLASHGls] = ACTIONS(4711), - [anon_sym_BSLASHGLS] = ACTIONS(4711), - [anon_sym_BSLASHglspl] = ACTIONS(4711), - [anon_sym_BSLASHGlspl] = ACTIONS(4711), - [anon_sym_BSLASHGLSpl] = ACTIONS(4711), - [anon_sym_BSLASHglsdisp] = ACTIONS(4711), - [anon_sym_BSLASHglslink] = ACTIONS(4711), - [anon_sym_BSLASHglstext] = ACTIONS(4711), - [anon_sym_BSLASHGlstext] = ACTIONS(4711), - [anon_sym_BSLASHGLStext] = ACTIONS(4711), - [anon_sym_BSLASHglsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4711), - [anon_sym_BSLASHglsplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSplural] = ACTIONS(4711), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHglsname] = ACTIONS(4711), - [anon_sym_BSLASHGlsname] = ACTIONS(4711), - [anon_sym_BSLASHGLSname] = ACTIONS(4711), - [anon_sym_BSLASHglssymbol] = ACTIONS(4711), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4711), - [anon_sym_BSLASHglsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4711), - [anon_sym_BSLASHglsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4711), - [anon_sym_BSLASHglsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4711), - [anon_sym_BSLASHglsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4711), - [anon_sym_BSLASHglsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4711), - [anon_sym_BSLASHnewacronym] = ACTIONS(4711), - [anon_sym_BSLASHacrshort] = ACTIONS(4711), - [anon_sym_BSLASHAcrshort] = ACTIONS(4711), - [anon_sym_BSLASHACRshort] = ACTIONS(4711), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4711), - [anon_sym_BSLASHacrlong] = ACTIONS(4711), - [anon_sym_BSLASHAcrlong] = ACTIONS(4711), - [anon_sym_BSLASHACRlong] = ACTIONS(4711), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4711), - [anon_sym_BSLASHacrfull] = ACTIONS(4711), - [anon_sym_BSLASHAcrfull] = ACTIONS(4711), - [anon_sym_BSLASHACRfull] = ACTIONS(4711), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4711), - [anon_sym_BSLASHacs] = ACTIONS(4711), - [anon_sym_BSLASHAcs] = ACTIONS(4711), - [anon_sym_BSLASHacsp] = ACTIONS(4711), - [anon_sym_BSLASHAcsp] = ACTIONS(4711), - [anon_sym_BSLASHacl] = ACTIONS(4711), - [anon_sym_BSLASHAcl] = ACTIONS(4711), - [anon_sym_BSLASHaclp] = ACTIONS(4711), - [anon_sym_BSLASHAclp] = ACTIONS(4711), - [anon_sym_BSLASHacf] = ACTIONS(4711), - [anon_sym_BSLASHAcf] = ACTIONS(4711), - [anon_sym_BSLASHacfp] = ACTIONS(4711), - [anon_sym_BSLASHAcfp] = ACTIONS(4711), - [anon_sym_BSLASHac] = ACTIONS(4711), - [anon_sym_BSLASHAc] = ACTIONS(4711), - [anon_sym_BSLASHacp] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4711), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4711), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4711), - [anon_sym_BSLASHcolor] = ACTIONS(4711), - [anon_sym_BSLASHcolorbox] = ACTIONS(4711), - [anon_sym_BSLASHtextcolor] = ACTIONS(4711), - [anon_sym_BSLASHpagecolor] = ACTIONS(4711), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4711), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4711), - [anon_sym_BSLASHtext] = ACTIONS(4711), - [anon_sym_BSLASHintertext] = ACTIONS(4711), - [anon_sym_shortintertext] = ACTIONS(4711), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5255), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5251), + [anon_sym_RBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHtitle] = ACTIONS(5253), + [anon_sym_BSLASHauthor] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), }, - [448] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(448), - [aux_sym__section_repeat2] = STATE(448), - [sym_command_name] = ACTIONS(4721), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_BSLASHpart] = ACTIONS(4721), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddpart] = ACTIONS(4721), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHchapter] = ACTIONS(4839), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4842), - [anon_sym_BSLASHaddchap] = ACTIONS(4839), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4842), - [anon_sym_BSLASHsection] = ACTIONS(4721), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddsec] = ACTIONS(4721), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHparagraph] = ACTIONS(4721), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4721), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHitem] = ACTIONS(4721), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [sym_word] = ACTIONS(4721), - [sym_placeholder] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym__] = ACTIONS(4721), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4719), - [anon_sym_BSLASHbegin] = ACTIONS(4721), - [anon_sym_BSLASHusepackage] = ACTIONS(4721), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4721), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4721), - [anon_sym_BSLASHinclude] = ACTIONS(4721), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4721), - [anon_sym_BSLASHinput] = ACTIONS(4721), - [anon_sym_BSLASHsubfile] = ACTIONS(4721), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4721), - [anon_sym_BSLASHbibliography] = ACTIONS(4721), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4721), - [anon_sym_BSLASHincludesvg] = ACTIONS(4721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4721), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4721), - [anon_sym_BSLASHimport] = ACTIONS(4721), - [anon_sym_BSLASHsubimport] = ACTIONS(4721), - [anon_sym_BSLASHinputfrom] = ACTIONS(4721), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4721), - [anon_sym_BSLASHincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHcaption] = ACTIONS(4721), - [anon_sym_BSLASHcite] = ACTIONS(4721), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCite] = ACTIONS(4721), - [anon_sym_BSLASHnocite] = ACTIONS(4721), - [anon_sym_BSLASHcitet] = ACTIONS(4721), - [anon_sym_BSLASHcitep] = ACTIONS(4721), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteauthor] = ACTIONS(4721), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4721), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitetitle] = ACTIONS(4721), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteyear] = ACTIONS(4721), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitedate] = ACTIONS(4721), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteurl] = ACTIONS(4721), - [anon_sym_BSLASHfullcite] = ACTIONS(4721), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4721), - [anon_sym_BSLASHcitealt] = ACTIONS(4721), - [anon_sym_BSLASHcitealp] = ACTIONS(4721), - [anon_sym_BSLASHcitetext] = ACTIONS(4721), - [anon_sym_BSLASHparencite] = ACTIONS(4721), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHParencite] = ACTIONS(4721), - [anon_sym_BSLASHfootcite] = ACTIONS(4721), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4721), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4721), - [anon_sym_BSLASHtextcite] = ACTIONS(4721), - [anon_sym_BSLASHTextcite] = ACTIONS(4721), - [anon_sym_BSLASHsmartcite] = ACTIONS(4721), - [anon_sym_BSLASHSmartcite] = ACTIONS(4721), - [anon_sym_BSLASHsupercite] = ACTIONS(4721), - [anon_sym_BSLASHautocite] = ACTIONS(4721), - [anon_sym_BSLASHAutocite] = ACTIONS(4721), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHvolcite] = ACTIONS(4721), - [anon_sym_BSLASHVolcite] = ACTIONS(4721), - [anon_sym_BSLASHpvolcite] = ACTIONS(4721), - [anon_sym_BSLASHPvolcite] = ACTIONS(4721), - [anon_sym_BSLASHfvolcite] = ACTIONS(4721), - [anon_sym_BSLASHftvolcite] = ACTIONS(4721), - [anon_sym_BSLASHsvolcite] = ACTIONS(4721), - [anon_sym_BSLASHSvolcite] = ACTIONS(4721), - [anon_sym_BSLASHtvolcite] = ACTIONS(4721), - [anon_sym_BSLASHTvolcite] = ACTIONS(4721), - [anon_sym_BSLASHavolcite] = ACTIONS(4721), - [anon_sym_BSLASHAvolcite] = ACTIONS(4721), - [anon_sym_BSLASHnotecite] = ACTIONS(4721), - [anon_sym_BSLASHNotecite] = ACTIONS(4721), - [anon_sym_BSLASHpnotecite] = ACTIONS(4721), - [anon_sym_BSLASHPnotecite] = ACTIONS(4721), - [anon_sym_BSLASHfnotecite] = ACTIONS(4721), - [anon_sym_BSLASHlabel] = ACTIONS(4721), - [anon_sym_BSLASHref] = ACTIONS(4721), - [anon_sym_BSLASHeqref] = ACTIONS(4721), - [anon_sym_BSLASHvref] = ACTIONS(4721), - [anon_sym_BSLASHVref] = ACTIONS(4721), - [anon_sym_BSLASHautoref] = ACTIONS(4721), - [anon_sym_BSLASHpageref] = ACTIONS(4721), - [anon_sym_BSLASHcref] = ACTIONS(4721), - [anon_sym_BSLASHCref] = ACTIONS(4721), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnameCref] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHlabelcref] = ACTIONS(4721), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCrefrange] = ACTIONS(4721), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnewlabel] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4721), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4721), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4721), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdef] = ACTIONS(4721), - [anon_sym_BSLASHlet] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4721), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4721), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4721), - [anon_sym_BSLASHgls] = ACTIONS(4721), - [anon_sym_BSLASHGls] = ACTIONS(4721), - [anon_sym_BSLASHGLS] = ACTIONS(4721), - [anon_sym_BSLASHglspl] = ACTIONS(4721), - [anon_sym_BSLASHGlspl] = ACTIONS(4721), - [anon_sym_BSLASHGLSpl] = ACTIONS(4721), - [anon_sym_BSLASHglsdisp] = ACTIONS(4721), - [anon_sym_BSLASHglslink] = ACTIONS(4721), - [anon_sym_BSLASHglstext] = ACTIONS(4721), - [anon_sym_BSLASHGlstext] = ACTIONS(4721), - [anon_sym_BSLASHGLStext] = ACTIONS(4721), - [anon_sym_BSLASHglsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4721), - [anon_sym_BSLASHglsplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSplural] = ACTIONS(4721), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHglsname] = ACTIONS(4721), - [anon_sym_BSLASHGlsname] = ACTIONS(4721), - [anon_sym_BSLASHGLSname] = ACTIONS(4721), - [anon_sym_BSLASHglssymbol] = ACTIONS(4721), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4721), - [anon_sym_BSLASHglsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4721), - [anon_sym_BSLASHglsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4721), - [anon_sym_BSLASHglsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4721), - [anon_sym_BSLASHglsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4721), - [anon_sym_BSLASHglsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4721), - [anon_sym_BSLASHnewacronym] = ACTIONS(4721), - [anon_sym_BSLASHacrshort] = ACTIONS(4721), - [anon_sym_BSLASHAcrshort] = ACTIONS(4721), - [anon_sym_BSLASHACRshort] = ACTIONS(4721), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4721), - [anon_sym_BSLASHacrlong] = ACTIONS(4721), - [anon_sym_BSLASHAcrlong] = ACTIONS(4721), - [anon_sym_BSLASHACRlong] = ACTIONS(4721), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4721), - [anon_sym_BSLASHacrfull] = ACTIONS(4721), - [anon_sym_BSLASHAcrfull] = ACTIONS(4721), - [anon_sym_BSLASHACRfull] = ACTIONS(4721), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4721), - [anon_sym_BSLASHacs] = ACTIONS(4721), - [anon_sym_BSLASHAcs] = ACTIONS(4721), - [anon_sym_BSLASHacsp] = ACTIONS(4721), - [anon_sym_BSLASHAcsp] = ACTIONS(4721), - [anon_sym_BSLASHacl] = ACTIONS(4721), - [anon_sym_BSLASHAcl] = ACTIONS(4721), - [anon_sym_BSLASHaclp] = ACTIONS(4721), - [anon_sym_BSLASHAclp] = ACTIONS(4721), - [anon_sym_BSLASHacf] = ACTIONS(4721), - [anon_sym_BSLASHAcf] = ACTIONS(4721), - [anon_sym_BSLASHacfp] = ACTIONS(4721), - [anon_sym_BSLASHAcfp] = ACTIONS(4721), - [anon_sym_BSLASHac] = ACTIONS(4721), - [anon_sym_BSLASHAc] = ACTIONS(4721), - [anon_sym_BSLASHacp] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4721), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4721), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4721), - [anon_sym_BSLASHcolor] = ACTIONS(4721), - [anon_sym_BSLASHcolorbox] = ACTIONS(4721), - [anon_sym_BSLASHtextcolor] = ACTIONS(4721), - [anon_sym_BSLASHpagecolor] = ACTIONS(4721), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4721), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4721), - [anon_sym_BSLASHtext] = ACTIONS(4721), - [anon_sym_BSLASHintertext] = ACTIONS(4721), - [anon_sym_shortintertext] = ACTIONS(4721), + [326] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(5261), + [sym_command_name] = ACTIONS(5263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5263), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_BSLASHpart] = ACTIONS(5263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddpart] = ACTIONS(5263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHchapter] = ACTIONS(5263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddchap] = ACTIONS(5263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsection] = ACTIONS(5263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddsec] = ACTIONS(5263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5268), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHparagraph] = ACTIONS(5263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHitem] = ACTIONS(5263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), + [anon_sym_LBRACE] = ACTIONS(5261), + [anon_sym_RBRACE] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [sym_placeholder] = ACTIONS(5261), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5263), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5263), + [anon_sym__] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_BANG] = ACTIONS(5263), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_SQUOTE] = ACTIONS(5263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), + [anon_sym_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), + [anon_sym_BSLASHbegin] = ACTIONS(5263), + [anon_sym_BSLASHtitle] = ACTIONS(5263), + [anon_sym_BSLASHauthor] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), + [anon_sym_BSLASHinclude] = ACTIONS(5263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), + [anon_sym_BSLASHinput] = ACTIONS(5263), + [anon_sym_BSLASHsubfile] = ACTIONS(5263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), + [anon_sym_BSLASHbibliography] = ACTIONS(5263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), + [anon_sym_BSLASHincludesvg] = ACTIONS(5263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), + [anon_sym_BSLASHimport] = ACTIONS(5263), + [anon_sym_BSLASHsubimport] = ACTIONS(5263), + [anon_sym_BSLASHinputfrom] = ACTIONS(5263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), + [anon_sym_BSLASHincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHcaption] = ACTIONS(5263), + [anon_sym_BSLASHcite] = ACTIONS(5263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCite] = ACTIONS(5263), + [anon_sym_BSLASHnocite] = ACTIONS(5263), + [anon_sym_BSLASHcitet] = ACTIONS(5263), + [anon_sym_BSLASHcitep] = ACTIONS(5263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteyear] = ACTIONS(5263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitedate] = ACTIONS(5263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteurl] = ACTIONS(5263), + [anon_sym_BSLASHfullcite] = ACTIONS(5263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), + [anon_sym_BSLASHcitealt] = ACTIONS(5263), + [anon_sym_BSLASHcitealp] = ACTIONS(5263), + [anon_sym_BSLASHcitetext] = ACTIONS(5263), + [anon_sym_BSLASHparencite] = ACTIONS(5263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHParencite] = ACTIONS(5263), + [anon_sym_BSLASHfootcite] = ACTIONS(5263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), + [anon_sym_BSLASHtextcite] = ACTIONS(5263), + [anon_sym_BSLASHTextcite] = ACTIONS(5263), + [anon_sym_BSLASHsmartcite] = ACTIONS(5263), + [anon_sym_BSLASHSmartcite] = ACTIONS(5263), + [anon_sym_BSLASHsupercite] = ACTIONS(5263), + [anon_sym_BSLASHautocite] = ACTIONS(5263), + [anon_sym_BSLASHAutocite] = ACTIONS(5263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHvolcite] = ACTIONS(5263), + [anon_sym_BSLASHVolcite] = ACTIONS(5263), + [anon_sym_BSLASHpvolcite] = ACTIONS(5263), + [anon_sym_BSLASHPvolcite] = ACTIONS(5263), + [anon_sym_BSLASHfvolcite] = ACTIONS(5263), + [anon_sym_BSLASHftvolcite] = ACTIONS(5263), + [anon_sym_BSLASHsvolcite] = ACTIONS(5263), + [anon_sym_BSLASHSvolcite] = ACTIONS(5263), + [anon_sym_BSLASHtvolcite] = ACTIONS(5263), + [anon_sym_BSLASHTvolcite] = ACTIONS(5263), + [anon_sym_BSLASHavolcite] = ACTIONS(5263), + [anon_sym_BSLASHAvolcite] = ACTIONS(5263), + [anon_sym_BSLASHnotecite] = ACTIONS(5263), + [anon_sym_BSLASHNotecite] = ACTIONS(5263), + [anon_sym_BSLASHpnotecite] = ACTIONS(5263), + [anon_sym_BSLASHPnotecite] = ACTIONS(5263), + [anon_sym_BSLASHfnotecite] = ACTIONS(5263), + [anon_sym_BSLASHlabel] = ACTIONS(5263), + [anon_sym_BSLASHref] = ACTIONS(5263), + [anon_sym_BSLASHeqref] = ACTIONS(5263), + [anon_sym_BSLASHvref] = ACTIONS(5263), + [anon_sym_BSLASHVref] = ACTIONS(5263), + [anon_sym_BSLASHautoref] = ACTIONS(5263), + [anon_sym_BSLASHpageref] = ACTIONS(5263), + [anon_sym_BSLASHcref] = ACTIONS(5263), + [anon_sym_BSLASHCref] = ACTIONS(5263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnameCref] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHlabelcref] = ACTIONS(5263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnewlabel] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdef] = ACTIONS(5263), + [anon_sym_BSLASHlet] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), + [anon_sym_BSLASHgls] = ACTIONS(5263), + [anon_sym_BSLASHGls] = ACTIONS(5263), + [anon_sym_BSLASHGLS] = ACTIONS(5263), + [anon_sym_BSLASHglspl] = ACTIONS(5263), + [anon_sym_BSLASHGlspl] = ACTIONS(5263), + [anon_sym_BSLASHGLSpl] = ACTIONS(5263), + [anon_sym_BSLASHglsdisp] = ACTIONS(5263), + [anon_sym_BSLASHglslink] = ACTIONS(5263), + [anon_sym_BSLASHglstext] = ACTIONS(5263), + [anon_sym_BSLASHGlstext] = ACTIONS(5263), + [anon_sym_BSLASHGLStext] = ACTIONS(5263), + [anon_sym_BSLASHglsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), + [anon_sym_BSLASHglsplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSplural] = ACTIONS(5263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHglsname] = ACTIONS(5263), + [anon_sym_BSLASHGlsname] = ACTIONS(5263), + [anon_sym_BSLASHGLSname] = ACTIONS(5263), + [anon_sym_BSLASHglssymbol] = ACTIONS(5263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), + [anon_sym_BSLASHglsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), + [anon_sym_BSLASHglsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), + [anon_sym_BSLASHglsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), + [anon_sym_BSLASHglsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), + [anon_sym_BSLASHglsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), + [anon_sym_BSLASHnewacronym] = ACTIONS(5263), + [anon_sym_BSLASHacrshort] = ACTIONS(5263), + [anon_sym_BSLASHAcrshort] = ACTIONS(5263), + [anon_sym_BSLASHACRshort] = ACTIONS(5263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), + [anon_sym_BSLASHacrlong] = ACTIONS(5263), + [anon_sym_BSLASHAcrlong] = ACTIONS(5263), + [anon_sym_BSLASHACRlong] = ACTIONS(5263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), + [anon_sym_BSLASHacrfull] = ACTIONS(5263), + [anon_sym_BSLASHAcrfull] = ACTIONS(5263), + [anon_sym_BSLASHACRfull] = ACTIONS(5263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), + [anon_sym_BSLASHacs] = ACTIONS(5263), + [anon_sym_BSLASHAcs] = ACTIONS(5263), + [anon_sym_BSLASHacsp] = ACTIONS(5263), + [anon_sym_BSLASHAcsp] = ACTIONS(5263), + [anon_sym_BSLASHacl] = ACTIONS(5263), + [anon_sym_BSLASHAcl] = ACTIONS(5263), + [anon_sym_BSLASHaclp] = ACTIONS(5263), + [anon_sym_BSLASHAclp] = ACTIONS(5263), + [anon_sym_BSLASHacf] = ACTIONS(5263), + [anon_sym_BSLASHAcf] = ACTIONS(5263), + [anon_sym_BSLASHacfp] = ACTIONS(5263), + [anon_sym_BSLASHAcfp] = ACTIONS(5263), + [anon_sym_BSLASHac] = ACTIONS(5263), + [anon_sym_BSLASHAc] = ACTIONS(5263), + [anon_sym_BSLASHacp] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), + [anon_sym_BSLASHcolor] = ACTIONS(5263), + [anon_sym_BSLASHcolorbox] = ACTIONS(5263), + [anon_sym_BSLASHtextcolor] = ACTIONS(5263), + [anon_sym_BSLASHpagecolor] = ACTIONS(5263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [anon_sym_BSLASHtext] = ACTIONS(5263), + [anon_sym_BSLASHintertext] = ACTIONS(5263), + [anon_sym_shortintertext] = ACTIONS(5263), }, - [449] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1997), + [327] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(5271), + [sym_command_name] = ACTIONS(5273), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHend] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5275), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5278), + [anon_sym_BSLASHaddsec] = ACTIONS(5275), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5278), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHtitle] = ACTIONS(5273), + [anon_sym_BSLASHauthor] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), }, - [450] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1997), + [328] = { + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(328), + [aux_sym__section_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(5281), + [sym_command_name] = ACTIONS(5283), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHend] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [anon_sym_BSLASHiffalse] = ACTIONS(5283), + [anon_sym_LPAREN] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_BSLASHpart] = ACTIONS(5283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddpart] = ACTIONS(5283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5288), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5288), + [anon_sym_BSLASHsection] = ACTIONS(5283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddsec] = ACTIONS(5283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHparagraph] = ACTIONS(5283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHitem] = ACTIONS(5283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(5281), + [anon_sym_RBRACE] = ACTIONS(5281), + [sym_word] = ACTIONS(5283), + [sym_placeholder] = ACTIONS(5281), + [anon_sym_PLUS] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_SLASH] = ACTIONS(5283), + [anon_sym_CARET] = ACTIONS(5283), + [anon_sym__] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(5283), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym_BANG] = ACTIONS(5283), + [anon_sym_PIPE] = ACTIONS(5283), + [anon_sym_COLON] = ACTIONS(5283), + [anon_sym_SQUOTE] = ACTIONS(5283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), + [anon_sym_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), + [anon_sym_BSLASHbegin] = ACTIONS(5283), + [anon_sym_BSLASHtitle] = ACTIONS(5283), + [anon_sym_BSLASHauthor] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), + [anon_sym_BSLASHinclude] = ACTIONS(5283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), + [anon_sym_BSLASHinput] = ACTIONS(5283), + [anon_sym_BSLASHsubfile] = ACTIONS(5283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), + [anon_sym_BSLASHbibliography] = ACTIONS(5283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), + [anon_sym_BSLASHincludesvg] = ACTIONS(5283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), + [anon_sym_BSLASHimport] = ACTIONS(5283), + [anon_sym_BSLASHsubimport] = ACTIONS(5283), + [anon_sym_BSLASHinputfrom] = ACTIONS(5283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), + [anon_sym_BSLASHincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHcaption] = ACTIONS(5283), + [anon_sym_BSLASHcite] = ACTIONS(5283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCite] = ACTIONS(5283), + [anon_sym_BSLASHnocite] = ACTIONS(5283), + [anon_sym_BSLASHcitet] = ACTIONS(5283), + [anon_sym_BSLASHcitep] = ACTIONS(5283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteyear] = ACTIONS(5283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitedate] = ACTIONS(5283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteurl] = ACTIONS(5283), + [anon_sym_BSLASHfullcite] = ACTIONS(5283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), + [anon_sym_BSLASHcitealt] = ACTIONS(5283), + [anon_sym_BSLASHcitealp] = ACTIONS(5283), + [anon_sym_BSLASHcitetext] = ACTIONS(5283), + [anon_sym_BSLASHparencite] = ACTIONS(5283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHParencite] = ACTIONS(5283), + [anon_sym_BSLASHfootcite] = ACTIONS(5283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), + [anon_sym_BSLASHtextcite] = ACTIONS(5283), + [anon_sym_BSLASHTextcite] = ACTIONS(5283), + [anon_sym_BSLASHsmartcite] = ACTIONS(5283), + [anon_sym_BSLASHSmartcite] = ACTIONS(5283), + [anon_sym_BSLASHsupercite] = ACTIONS(5283), + [anon_sym_BSLASHautocite] = ACTIONS(5283), + [anon_sym_BSLASHAutocite] = ACTIONS(5283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHvolcite] = ACTIONS(5283), + [anon_sym_BSLASHVolcite] = ACTIONS(5283), + [anon_sym_BSLASHpvolcite] = ACTIONS(5283), + [anon_sym_BSLASHPvolcite] = ACTIONS(5283), + [anon_sym_BSLASHfvolcite] = ACTIONS(5283), + [anon_sym_BSLASHftvolcite] = ACTIONS(5283), + [anon_sym_BSLASHsvolcite] = ACTIONS(5283), + [anon_sym_BSLASHSvolcite] = ACTIONS(5283), + [anon_sym_BSLASHtvolcite] = ACTIONS(5283), + [anon_sym_BSLASHTvolcite] = ACTIONS(5283), + [anon_sym_BSLASHavolcite] = ACTIONS(5283), + [anon_sym_BSLASHAvolcite] = ACTIONS(5283), + [anon_sym_BSLASHnotecite] = ACTIONS(5283), + [anon_sym_BSLASHNotecite] = ACTIONS(5283), + [anon_sym_BSLASHpnotecite] = ACTIONS(5283), + [anon_sym_BSLASHPnotecite] = ACTIONS(5283), + [anon_sym_BSLASHfnotecite] = ACTIONS(5283), + [anon_sym_BSLASHlabel] = ACTIONS(5283), + [anon_sym_BSLASHref] = ACTIONS(5283), + [anon_sym_BSLASHeqref] = ACTIONS(5283), + [anon_sym_BSLASHvref] = ACTIONS(5283), + [anon_sym_BSLASHVref] = ACTIONS(5283), + [anon_sym_BSLASHautoref] = ACTIONS(5283), + [anon_sym_BSLASHpageref] = ACTIONS(5283), + [anon_sym_BSLASHcref] = ACTIONS(5283), + [anon_sym_BSLASHCref] = ACTIONS(5283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnameCref] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHlabelcref] = ACTIONS(5283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnewlabel] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdef] = ACTIONS(5283), + [anon_sym_BSLASHlet] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5283), + [anon_sym_BSLASHacrshort] = ACTIONS(5283), + [anon_sym_BSLASHAcrshort] = ACTIONS(5283), + [anon_sym_BSLASHACRshort] = ACTIONS(5283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), + [anon_sym_BSLASHacrlong] = ACTIONS(5283), + [anon_sym_BSLASHAcrlong] = ACTIONS(5283), + [anon_sym_BSLASHACRlong] = ACTIONS(5283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), + [anon_sym_BSLASHacrfull] = ACTIONS(5283), + [anon_sym_BSLASHAcrfull] = ACTIONS(5283), + [anon_sym_BSLASHACRfull] = ACTIONS(5283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), + [anon_sym_BSLASHacs] = ACTIONS(5283), + [anon_sym_BSLASHAcs] = ACTIONS(5283), + [anon_sym_BSLASHacsp] = ACTIONS(5283), + [anon_sym_BSLASHAcsp] = ACTIONS(5283), + [anon_sym_BSLASHacl] = ACTIONS(5283), + [anon_sym_BSLASHAcl] = ACTIONS(5283), + [anon_sym_BSLASHaclp] = ACTIONS(5283), + [anon_sym_BSLASHAclp] = ACTIONS(5283), + [anon_sym_BSLASHacf] = ACTIONS(5283), + [anon_sym_BSLASHAcf] = ACTIONS(5283), + [anon_sym_BSLASHacfp] = ACTIONS(5283), + [anon_sym_BSLASHAcfp] = ACTIONS(5283), + [anon_sym_BSLASHac] = ACTIONS(5283), + [anon_sym_BSLASHAc] = ACTIONS(5283), + [anon_sym_BSLASHacp] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), + [anon_sym_BSLASHcolor] = ACTIONS(5283), + [anon_sym_BSLASHcolorbox] = ACTIONS(5283), + [anon_sym_BSLASHtextcolor] = ACTIONS(5283), + [anon_sym_BSLASHpagecolor] = ACTIONS(5283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHtext] = ACTIONS(5283), + [anon_sym_BSLASHintertext] = ACTIONS(5283), + [anon_sym_shortintertext] = ACTIONS(5283), }, - [451] = { - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(451), - [aux_sym__section_repeat1] = STATE(451), - [sym_command_name] = ACTIONS(4731), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_COMMA] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_BSLASHpart] = ACTIONS(4845), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4848), - [anon_sym_BSLASHaddpart] = ACTIONS(4845), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4848), - [anon_sym_BSLASHchapter] = ACTIONS(4731), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddchap] = ACTIONS(4731), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsection] = ACTIONS(4731), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddsec] = ACTIONS(4731), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHparagraph] = ACTIONS(4731), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHitem] = ACTIONS(4731), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [sym_word] = ACTIONS(4731), - [sym_placeholder] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_CARET] = ACTIONS(4731), - [anon_sym__] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4729), - [anon_sym_BSLASHbegin] = ACTIONS(4731), - [anon_sym_BSLASHusepackage] = ACTIONS(4731), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4731), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4731), - [anon_sym_BSLASHinclude] = ACTIONS(4731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4731), - [anon_sym_BSLASHinput] = ACTIONS(4731), - [anon_sym_BSLASHsubfile] = ACTIONS(4731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4731), - [anon_sym_BSLASHbibliography] = ACTIONS(4731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4731), - [anon_sym_BSLASHincludesvg] = ACTIONS(4731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4731), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4731), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4731), - [anon_sym_BSLASHimport] = ACTIONS(4731), - [anon_sym_BSLASHsubimport] = ACTIONS(4731), - [anon_sym_BSLASHinputfrom] = ACTIONS(4731), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4731), - [anon_sym_BSLASHincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHcaption] = ACTIONS(4731), - [anon_sym_BSLASHcite] = ACTIONS(4731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCite] = ACTIONS(4731), - [anon_sym_BSLASHnocite] = ACTIONS(4731), - [anon_sym_BSLASHcitet] = ACTIONS(4731), - [anon_sym_BSLASHcitep] = ACTIONS(4731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteauthor] = ACTIONS(4731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitetitle] = ACTIONS(4731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteyear] = ACTIONS(4731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitedate] = ACTIONS(4731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteurl] = ACTIONS(4731), - [anon_sym_BSLASHfullcite] = ACTIONS(4731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4731), - [anon_sym_BSLASHcitealt] = ACTIONS(4731), - [anon_sym_BSLASHcitealp] = ACTIONS(4731), - [anon_sym_BSLASHcitetext] = ACTIONS(4731), - [anon_sym_BSLASHparencite] = ACTIONS(4731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHParencite] = ACTIONS(4731), - [anon_sym_BSLASHfootcite] = ACTIONS(4731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4731), - [anon_sym_BSLASHtextcite] = ACTIONS(4731), - [anon_sym_BSLASHTextcite] = ACTIONS(4731), - [anon_sym_BSLASHsmartcite] = ACTIONS(4731), - [anon_sym_BSLASHSmartcite] = ACTIONS(4731), - [anon_sym_BSLASHsupercite] = ACTIONS(4731), - [anon_sym_BSLASHautocite] = ACTIONS(4731), - [anon_sym_BSLASHAutocite] = ACTIONS(4731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHvolcite] = ACTIONS(4731), - [anon_sym_BSLASHVolcite] = ACTIONS(4731), - [anon_sym_BSLASHpvolcite] = ACTIONS(4731), - [anon_sym_BSLASHPvolcite] = ACTIONS(4731), - [anon_sym_BSLASHfvolcite] = ACTIONS(4731), - [anon_sym_BSLASHftvolcite] = ACTIONS(4731), - [anon_sym_BSLASHsvolcite] = ACTIONS(4731), - [anon_sym_BSLASHSvolcite] = ACTIONS(4731), - [anon_sym_BSLASHtvolcite] = ACTIONS(4731), - [anon_sym_BSLASHTvolcite] = ACTIONS(4731), - [anon_sym_BSLASHavolcite] = ACTIONS(4731), - [anon_sym_BSLASHAvolcite] = ACTIONS(4731), - [anon_sym_BSLASHnotecite] = ACTIONS(4731), - [anon_sym_BSLASHNotecite] = ACTIONS(4731), - [anon_sym_BSLASHpnotecite] = ACTIONS(4731), - [anon_sym_BSLASHPnotecite] = ACTIONS(4731), - [anon_sym_BSLASHfnotecite] = ACTIONS(4731), - [anon_sym_BSLASHlabel] = ACTIONS(4731), - [anon_sym_BSLASHref] = ACTIONS(4731), - [anon_sym_BSLASHeqref] = ACTIONS(4731), - [anon_sym_BSLASHvref] = ACTIONS(4731), - [anon_sym_BSLASHVref] = ACTIONS(4731), - [anon_sym_BSLASHautoref] = ACTIONS(4731), - [anon_sym_BSLASHpageref] = ACTIONS(4731), - [anon_sym_BSLASHcref] = ACTIONS(4731), - [anon_sym_BSLASHCref] = ACTIONS(4731), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnameCref] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHlabelcref] = ACTIONS(4731), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCrefrange] = ACTIONS(4731), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnewlabel] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4731), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4731), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4731), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdef] = ACTIONS(4731), - [anon_sym_BSLASHlet] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4731), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4731), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4731), - [anon_sym_BSLASHgls] = ACTIONS(4731), - [anon_sym_BSLASHGls] = ACTIONS(4731), - [anon_sym_BSLASHGLS] = ACTIONS(4731), - [anon_sym_BSLASHglspl] = ACTIONS(4731), - [anon_sym_BSLASHGlspl] = ACTIONS(4731), - [anon_sym_BSLASHGLSpl] = ACTIONS(4731), - [anon_sym_BSLASHglsdisp] = ACTIONS(4731), - [anon_sym_BSLASHglslink] = ACTIONS(4731), - [anon_sym_BSLASHglstext] = ACTIONS(4731), - [anon_sym_BSLASHGlstext] = ACTIONS(4731), - [anon_sym_BSLASHGLStext] = ACTIONS(4731), - [anon_sym_BSLASHglsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4731), - [anon_sym_BSLASHglsplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSplural] = ACTIONS(4731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHglsname] = ACTIONS(4731), - [anon_sym_BSLASHGlsname] = ACTIONS(4731), - [anon_sym_BSLASHGLSname] = ACTIONS(4731), - [anon_sym_BSLASHglssymbol] = ACTIONS(4731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4731), - [anon_sym_BSLASHglsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4731), - [anon_sym_BSLASHglsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4731), - [anon_sym_BSLASHglsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4731), - [anon_sym_BSLASHglsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4731), - [anon_sym_BSLASHglsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4731), - [anon_sym_BSLASHnewacronym] = ACTIONS(4731), - [anon_sym_BSLASHacrshort] = ACTIONS(4731), - [anon_sym_BSLASHAcrshort] = ACTIONS(4731), - [anon_sym_BSLASHACRshort] = ACTIONS(4731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4731), - [anon_sym_BSLASHacrlong] = ACTIONS(4731), - [anon_sym_BSLASHAcrlong] = ACTIONS(4731), - [anon_sym_BSLASHACRlong] = ACTIONS(4731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4731), - [anon_sym_BSLASHacrfull] = ACTIONS(4731), - [anon_sym_BSLASHAcrfull] = ACTIONS(4731), - [anon_sym_BSLASHACRfull] = ACTIONS(4731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4731), - [anon_sym_BSLASHacs] = ACTIONS(4731), - [anon_sym_BSLASHAcs] = ACTIONS(4731), - [anon_sym_BSLASHacsp] = ACTIONS(4731), - [anon_sym_BSLASHAcsp] = ACTIONS(4731), - [anon_sym_BSLASHacl] = ACTIONS(4731), - [anon_sym_BSLASHAcl] = ACTIONS(4731), - [anon_sym_BSLASHaclp] = ACTIONS(4731), - [anon_sym_BSLASHAclp] = ACTIONS(4731), - [anon_sym_BSLASHacf] = ACTIONS(4731), - [anon_sym_BSLASHAcf] = ACTIONS(4731), - [anon_sym_BSLASHacfp] = ACTIONS(4731), - [anon_sym_BSLASHAcfp] = ACTIONS(4731), - [anon_sym_BSLASHac] = ACTIONS(4731), - [anon_sym_BSLASHAc] = ACTIONS(4731), - [anon_sym_BSLASHacp] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4731), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4731), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4731), - [anon_sym_BSLASHcolor] = ACTIONS(4731), - [anon_sym_BSLASHcolorbox] = ACTIONS(4731), - [anon_sym_BSLASHtextcolor] = ACTIONS(4731), - [anon_sym_BSLASHpagecolor] = ACTIONS(4731), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4731), - [anon_sym_BSLASHtext] = ACTIONS(4731), - [anon_sym_BSLASHintertext] = ACTIONS(4731), - [anon_sym_shortintertext] = ACTIONS(4731), + [329] = { + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(329), + [aux_sym__section_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(5291), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5295), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHaddpart] = ACTIONS(5295), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5298), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [anon_sym_RBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHtitle] = ACTIONS(5293), + [anon_sym_BSLASHauthor] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), }, - [452] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1979), + [330] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5301), + [sym_command_name] = ACTIONS(5303), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHend] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_BSLASHiffalse] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_RPAREN] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5301), + [anon_sym_BSLASHpart] = ACTIONS(5303), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddpart] = ACTIONS(5303), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHchapter] = ACTIONS(5303), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddchap] = ACTIONS(5303), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsection] = ACTIONS(5303), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddsec] = ACTIONS(5303), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHparagraph] = ACTIONS(5303), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5308), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(5301), + [anon_sym_RBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(5303), + [sym_placeholder] = ACTIONS(5301), + [anon_sym_PLUS] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_SLASH] = ACTIONS(5303), + [anon_sym_CARET] = ACTIONS(5303), + [anon_sym__] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(5303), + [anon_sym_GT] = ACTIONS(5303), + [anon_sym_BANG] = ACTIONS(5303), + [anon_sym_PIPE] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_SQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), + [anon_sym_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), + [anon_sym_BSLASHbegin] = ACTIONS(5303), + [anon_sym_BSLASHtitle] = ACTIONS(5303), + [anon_sym_BSLASHauthor] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), + [anon_sym_BSLASHinclude] = ACTIONS(5303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), + [anon_sym_BSLASHinput] = ACTIONS(5303), + [anon_sym_BSLASHsubfile] = ACTIONS(5303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), + [anon_sym_BSLASHbibliography] = ACTIONS(5303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), + [anon_sym_BSLASHincludesvg] = ACTIONS(5303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), + [anon_sym_BSLASHimport] = ACTIONS(5303), + [anon_sym_BSLASHsubimport] = ACTIONS(5303), + [anon_sym_BSLASHinputfrom] = ACTIONS(5303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), + [anon_sym_BSLASHincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHcaption] = ACTIONS(5303), + [anon_sym_BSLASHcite] = ACTIONS(5303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCite] = ACTIONS(5303), + [anon_sym_BSLASHnocite] = ACTIONS(5303), + [anon_sym_BSLASHcitet] = ACTIONS(5303), + [anon_sym_BSLASHcitep] = ACTIONS(5303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteyear] = ACTIONS(5303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitedate] = ACTIONS(5303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteurl] = ACTIONS(5303), + [anon_sym_BSLASHfullcite] = ACTIONS(5303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), + [anon_sym_BSLASHcitealt] = ACTIONS(5303), + [anon_sym_BSLASHcitealp] = ACTIONS(5303), + [anon_sym_BSLASHcitetext] = ACTIONS(5303), + [anon_sym_BSLASHparencite] = ACTIONS(5303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHParencite] = ACTIONS(5303), + [anon_sym_BSLASHfootcite] = ACTIONS(5303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), + [anon_sym_BSLASHtextcite] = ACTIONS(5303), + [anon_sym_BSLASHTextcite] = ACTIONS(5303), + [anon_sym_BSLASHsmartcite] = ACTIONS(5303), + [anon_sym_BSLASHSmartcite] = ACTIONS(5303), + [anon_sym_BSLASHsupercite] = ACTIONS(5303), + [anon_sym_BSLASHautocite] = ACTIONS(5303), + [anon_sym_BSLASHAutocite] = ACTIONS(5303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHvolcite] = ACTIONS(5303), + [anon_sym_BSLASHVolcite] = ACTIONS(5303), + [anon_sym_BSLASHpvolcite] = ACTIONS(5303), + [anon_sym_BSLASHPvolcite] = ACTIONS(5303), + [anon_sym_BSLASHfvolcite] = ACTIONS(5303), + [anon_sym_BSLASHftvolcite] = ACTIONS(5303), + [anon_sym_BSLASHsvolcite] = ACTIONS(5303), + [anon_sym_BSLASHSvolcite] = ACTIONS(5303), + [anon_sym_BSLASHtvolcite] = ACTIONS(5303), + [anon_sym_BSLASHTvolcite] = ACTIONS(5303), + [anon_sym_BSLASHavolcite] = ACTIONS(5303), + [anon_sym_BSLASHAvolcite] = ACTIONS(5303), + [anon_sym_BSLASHnotecite] = ACTIONS(5303), + [anon_sym_BSLASHNotecite] = ACTIONS(5303), + [anon_sym_BSLASHpnotecite] = ACTIONS(5303), + [anon_sym_BSLASHPnotecite] = ACTIONS(5303), + [anon_sym_BSLASHfnotecite] = ACTIONS(5303), + [anon_sym_BSLASHlabel] = ACTIONS(5303), + [anon_sym_BSLASHref] = ACTIONS(5303), + [anon_sym_BSLASHeqref] = ACTIONS(5303), + [anon_sym_BSLASHvref] = ACTIONS(5303), + [anon_sym_BSLASHVref] = ACTIONS(5303), + [anon_sym_BSLASHautoref] = ACTIONS(5303), + [anon_sym_BSLASHpageref] = ACTIONS(5303), + [anon_sym_BSLASHcref] = ACTIONS(5303), + [anon_sym_BSLASHCref] = ACTIONS(5303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnameCref] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHlabelcref] = ACTIONS(5303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnewlabel] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdef] = ACTIONS(5303), + [anon_sym_BSLASHlet] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), + [anon_sym_BSLASHgls] = ACTIONS(5303), + [anon_sym_BSLASHGls] = ACTIONS(5303), + [anon_sym_BSLASHGLS] = ACTIONS(5303), + [anon_sym_BSLASHglspl] = ACTIONS(5303), + [anon_sym_BSLASHGlspl] = ACTIONS(5303), + [anon_sym_BSLASHGLSpl] = ACTIONS(5303), + [anon_sym_BSLASHglsdisp] = ACTIONS(5303), + [anon_sym_BSLASHglslink] = ACTIONS(5303), + [anon_sym_BSLASHglstext] = ACTIONS(5303), + [anon_sym_BSLASHGlstext] = ACTIONS(5303), + [anon_sym_BSLASHGLStext] = ACTIONS(5303), + [anon_sym_BSLASHglsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), + [anon_sym_BSLASHglsplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSplural] = ACTIONS(5303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHglsname] = ACTIONS(5303), + [anon_sym_BSLASHGlsname] = ACTIONS(5303), + [anon_sym_BSLASHGLSname] = ACTIONS(5303), + [anon_sym_BSLASHglssymbol] = ACTIONS(5303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), + [anon_sym_BSLASHglsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), + [anon_sym_BSLASHglsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), + [anon_sym_BSLASHglsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), + [anon_sym_BSLASHglsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), + [anon_sym_BSLASHglsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), + [anon_sym_BSLASHnewacronym] = ACTIONS(5303), + [anon_sym_BSLASHacrshort] = ACTIONS(5303), + [anon_sym_BSLASHAcrshort] = ACTIONS(5303), + [anon_sym_BSLASHACRshort] = ACTIONS(5303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), + [anon_sym_BSLASHacrlong] = ACTIONS(5303), + [anon_sym_BSLASHAcrlong] = ACTIONS(5303), + [anon_sym_BSLASHACRlong] = ACTIONS(5303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), + [anon_sym_BSLASHacrfull] = ACTIONS(5303), + [anon_sym_BSLASHAcrfull] = ACTIONS(5303), + [anon_sym_BSLASHACRfull] = ACTIONS(5303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), + [anon_sym_BSLASHacs] = ACTIONS(5303), + [anon_sym_BSLASHAcs] = ACTIONS(5303), + [anon_sym_BSLASHacsp] = ACTIONS(5303), + [anon_sym_BSLASHAcsp] = ACTIONS(5303), + [anon_sym_BSLASHacl] = ACTIONS(5303), + [anon_sym_BSLASHAcl] = ACTIONS(5303), + [anon_sym_BSLASHaclp] = ACTIONS(5303), + [anon_sym_BSLASHAclp] = ACTIONS(5303), + [anon_sym_BSLASHacf] = ACTIONS(5303), + [anon_sym_BSLASHAcf] = ACTIONS(5303), + [anon_sym_BSLASHacfp] = ACTIONS(5303), + [anon_sym_BSLASHAcfp] = ACTIONS(5303), + [anon_sym_BSLASHac] = ACTIONS(5303), + [anon_sym_BSLASHAc] = ACTIONS(5303), + [anon_sym_BSLASHacp] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), + [anon_sym_BSLASHcolor] = ACTIONS(5303), + [anon_sym_BSLASHcolorbox] = ACTIONS(5303), + [anon_sym_BSLASHtextcolor] = ACTIONS(5303), + [anon_sym_BSLASHpagecolor] = ACTIONS(5303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), + [anon_sym_BSLASHtext] = ACTIONS(5303), + [anon_sym_BSLASHintertext] = ACTIONS(5303), + [anon_sym_shortintertext] = ACTIONS(5303), }, - [453] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1979), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHend] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [331] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [454] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), + [332] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_command_name] = ACTIONS(2097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(2097), + [sym_placeholder] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym__] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(2097), + [anon_sym_BSLASHauthor] = ACTIONS(2097), + [anon_sym_BSLASHusepackage] = ACTIONS(2097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2097), + [anon_sym_BSLASHinclude] = ACTIONS(2097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2097), + [anon_sym_BSLASHinput] = ACTIONS(2097), + [anon_sym_BSLASHsubfile] = ACTIONS(2097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [anon_sym_BSLASHbibliography] = ACTIONS(2097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2097), + [anon_sym_BSLASHincludesvg] = ACTIONS(2097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2097), + [anon_sym_BSLASHimport] = ACTIONS(2097), + [anon_sym_BSLASHsubimport] = ACTIONS(2097), + [anon_sym_BSLASHinputfrom] = ACTIONS(2097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2097), + [anon_sym_BSLASHincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHcaption] = ACTIONS(2097), + [anon_sym_BSLASHcite] = ACTIONS(2097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCite] = ACTIONS(2097), + [anon_sym_BSLASHnocite] = ACTIONS(2097), + [anon_sym_BSLASHcitet] = ACTIONS(2097), + [anon_sym_BSLASHcitep] = ACTIONS(2097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteauthor] = ACTIONS(2097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitetitle] = ACTIONS(2097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteyear] = ACTIONS(2097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitedate] = ACTIONS(2097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteurl] = ACTIONS(2097), + [anon_sym_BSLASHfullcite] = ACTIONS(2097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2097), + [anon_sym_BSLASHcitealt] = ACTIONS(2097), + [anon_sym_BSLASHcitealp] = ACTIONS(2097), + [anon_sym_BSLASHcitetext] = ACTIONS(2097), + [anon_sym_BSLASHparencite] = ACTIONS(2097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHParencite] = ACTIONS(2097), + [anon_sym_BSLASHfootcite] = ACTIONS(2097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2097), + [anon_sym_BSLASHtextcite] = ACTIONS(2097), + [anon_sym_BSLASHTextcite] = ACTIONS(2097), + [anon_sym_BSLASHsmartcite] = ACTIONS(2097), + [anon_sym_BSLASHSmartcite] = ACTIONS(2097), + [anon_sym_BSLASHsupercite] = ACTIONS(2097), + [anon_sym_BSLASHautocite] = ACTIONS(2097), + [anon_sym_BSLASHAutocite] = ACTIONS(2097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHvolcite] = ACTIONS(2097), + [anon_sym_BSLASHVolcite] = ACTIONS(2097), + [anon_sym_BSLASHpvolcite] = ACTIONS(2097), + [anon_sym_BSLASHPvolcite] = ACTIONS(2097), + [anon_sym_BSLASHfvolcite] = ACTIONS(2097), + [anon_sym_BSLASHftvolcite] = ACTIONS(2097), + [anon_sym_BSLASHsvolcite] = ACTIONS(2097), + [anon_sym_BSLASHSvolcite] = ACTIONS(2097), + [anon_sym_BSLASHtvolcite] = ACTIONS(2097), + [anon_sym_BSLASHTvolcite] = ACTIONS(2097), + [anon_sym_BSLASHavolcite] = ACTIONS(2097), + [anon_sym_BSLASHAvolcite] = ACTIONS(2097), + [anon_sym_BSLASHnotecite] = ACTIONS(2097), + [anon_sym_BSLASHNotecite] = ACTIONS(2097), + [anon_sym_BSLASHpnotecite] = ACTIONS(2097), + [anon_sym_BSLASHPnotecite] = ACTIONS(2097), + [anon_sym_BSLASHfnotecite] = ACTIONS(2097), + [anon_sym_BSLASHlabel] = ACTIONS(2097), + [anon_sym_BSLASHref] = ACTIONS(2097), + [anon_sym_BSLASHeqref] = ACTIONS(2097), + [anon_sym_BSLASHvref] = ACTIONS(2097), + [anon_sym_BSLASHVref] = ACTIONS(2097), + [anon_sym_BSLASHautoref] = ACTIONS(2097), + [anon_sym_BSLASHpageref] = ACTIONS(2097), + [anon_sym_BSLASHcref] = ACTIONS(2097), + [anon_sym_BSLASHCref] = ACTIONS(2097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnameCref] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHlabelcref] = ACTIONS(2097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdef] = ACTIONS(2097), + [anon_sym_BSLASHlet] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2097), + [anon_sym_BSLASHgls] = ACTIONS(2097), + [anon_sym_BSLASHGls] = ACTIONS(2097), + [anon_sym_BSLASHGLS] = ACTIONS(2097), + [anon_sym_BSLASHglspl] = ACTIONS(2097), + [anon_sym_BSLASHGlspl] = ACTIONS(2097), + [anon_sym_BSLASHGLSpl] = ACTIONS(2097), + [anon_sym_BSLASHglsdisp] = ACTIONS(2097), + [anon_sym_BSLASHglslink] = ACTIONS(2097), + [anon_sym_BSLASHglstext] = ACTIONS(2097), + [anon_sym_BSLASHGlstext] = ACTIONS(2097), + [anon_sym_BSLASHGLStext] = ACTIONS(2097), + [anon_sym_BSLASHglsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2097), + [anon_sym_BSLASHglsplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSplural] = ACTIONS(2097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHglsname] = ACTIONS(2097), + [anon_sym_BSLASHGlsname] = ACTIONS(2097), + [anon_sym_BSLASHGLSname] = ACTIONS(2097), + [anon_sym_BSLASHglssymbol] = ACTIONS(2097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2097), + [anon_sym_BSLASHglsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2097), + [anon_sym_BSLASHglsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2097), + [anon_sym_BSLASHglsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2097), + [anon_sym_BSLASHglsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2097), + [anon_sym_BSLASHglsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2097), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2097), + [anon_sym_BSLASHAcrshort] = ACTIONS(2097), + [anon_sym_BSLASHACRshort] = ACTIONS(2097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2097), + [anon_sym_BSLASHacrlong] = ACTIONS(2097), + [anon_sym_BSLASHAcrlong] = ACTIONS(2097), + [anon_sym_BSLASHACRlong] = ACTIONS(2097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2097), + [anon_sym_BSLASHacrfull] = ACTIONS(2097), + [anon_sym_BSLASHAcrfull] = ACTIONS(2097), + [anon_sym_BSLASHACRfull] = ACTIONS(2097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2097), + [anon_sym_BSLASHacs] = ACTIONS(2097), + [anon_sym_BSLASHAcs] = ACTIONS(2097), + [anon_sym_BSLASHacsp] = ACTIONS(2097), + [anon_sym_BSLASHAcsp] = ACTIONS(2097), + [anon_sym_BSLASHacl] = ACTIONS(2097), + [anon_sym_BSLASHAcl] = ACTIONS(2097), + [anon_sym_BSLASHaclp] = ACTIONS(2097), + [anon_sym_BSLASHAclp] = ACTIONS(2097), + [anon_sym_BSLASHacf] = ACTIONS(2097), + [anon_sym_BSLASHAcf] = ACTIONS(2097), + [anon_sym_BSLASHacfp] = ACTIONS(2097), + [anon_sym_BSLASHAcfp] = ACTIONS(2097), + [anon_sym_BSLASHac] = ACTIONS(2097), + [anon_sym_BSLASHAc] = ACTIONS(2097), + [anon_sym_BSLASHacp] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2097), + [anon_sym_BSLASHcolor] = ACTIONS(2097), + [anon_sym_BSLASHcolorbox] = ACTIONS(2097), + [anon_sym_BSLASHtextcolor] = ACTIONS(2097), + [anon_sym_BSLASHpagecolor] = ACTIONS(2097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2097), + [anon_sym_BSLASHtext] = ACTIONS(2097), + [anon_sym_BSLASHintertext] = ACTIONS(2097), + [anon_sym_shortintertext] = ACTIONS(2097), + }, + [333] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), + }, + [334] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(2073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), + }, + [335] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [336] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [337] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [338] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [339] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [340] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [341] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [342] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [343] = { + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(328), + [aux_sym__section_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -161288,13 +133670,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -161317,23 +133700,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -161341,7 +133724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -161353,8 +133736,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -161381,8 +133764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -161392,18 +133775,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -161501,9 +133884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -161516,3951 +133899,3713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(1979), [anon_sym_shortintertext] = ACTIONS(1979), }, - [455] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [456] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [457] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [458] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(2015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(2013), - [sym_word] = ACTIONS(2015), - [sym_placeholder] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(2015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2015), - [anon_sym_BSLASHinclude] = ACTIONS(2015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2015), - [anon_sym_BSLASHinput] = ACTIONS(2015), - [anon_sym_BSLASHsubfile] = ACTIONS(2015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2015), - [anon_sym_BSLASHbibliography] = ACTIONS(2015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2015), - [anon_sym_BSLASHincludesvg] = ACTIONS(2015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2015), - [anon_sym_BSLASHimport] = ACTIONS(2015), - [anon_sym_BSLASHsubimport] = ACTIONS(2015), - [anon_sym_BSLASHinputfrom] = ACTIONS(2015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2015), - [anon_sym_BSLASHincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHcaption] = ACTIONS(2015), - [anon_sym_BSLASHcite] = ACTIONS(2015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCite] = ACTIONS(2015), - [anon_sym_BSLASHnocite] = ACTIONS(2015), - [anon_sym_BSLASHcitet] = ACTIONS(2015), - [anon_sym_BSLASHcitep] = ACTIONS(2015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteauthor] = ACTIONS(2015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitetitle] = ACTIONS(2015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteyear] = ACTIONS(2015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitedate] = ACTIONS(2015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteurl] = ACTIONS(2015), - [anon_sym_BSLASHfullcite] = ACTIONS(2015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2015), - [anon_sym_BSLASHcitealt] = ACTIONS(2015), - [anon_sym_BSLASHcitealp] = ACTIONS(2015), - [anon_sym_BSLASHcitetext] = ACTIONS(2015), - [anon_sym_BSLASHparencite] = ACTIONS(2015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHParencite] = ACTIONS(2015), - [anon_sym_BSLASHfootcite] = ACTIONS(2015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2015), - [anon_sym_BSLASHtextcite] = ACTIONS(2015), - [anon_sym_BSLASHTextcite] = ACTIONS(2015), - [anon_sym_BSLASHsmartcite] = ACTIONS(2015), - [anon_sym_BSLASHSmartcite] = ACTIONS(2015), - [anon_sym_BSLASHsupercite] = ACTIONS(2015), - [anon_sym_BSLASHautocite] = ACTIONS(2015), - [anon_sym_BSLASHAutocite] = ACTIONS(2015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHvolcite] = ACTIONS(2015), - [anon_sym_BSLASHVolcite] = ACTIONS(2015), - [anon_sym_BSLASHpvolcite] = ACTIONS(2015), - [anon_sym_BSLASHPvolcite] = ACTIONS(2015), - [anon_sym_BSLASHfvolcite] = ACTIONS(2015), - [anon_sym_BSLASHftvolcite] = ACTIONS(2015), - [anon_sym_BSLASHsvolcite] = ACTIONS(2015), - [anon_sym_BSLASHSvolcite] = ACTIONS(2015), - [anon_sym_BSLASHtvolcite] = ACTIONS(2015), - [anon_sym_BSLASHTvolcite] = ACTIONS(2015), - [anon_sym_BSLASHavolcite] = ACTIONS(2015), - [anon_sym_BSLASHAvolcite] = ACTIONS(2015), - [anon_sym_BSLASHnotecite] = ACTIONS(2015), - [anon_sym_BSLASHNotecite] = ACTIONS(2015), - [anon_sym_BSLASHpnotecite] = ACTIONS(2015), - [anon_sym_BSLASHPnotecite] = ACTIONS(2015), - [anon_sym_BSLASHfnotecite] = ACTIONS(2015), - [anon_sym_BSLASHlabel] = ACTIONS(2015), - [anon_sym_BSLASHref] = ACTIONS(2015), - [anon_sym_BSLASHeqref] = ACTIONS(2015), - [anon_sym_BSLASHvref] = ACTIONS(2015), - [anon_sym_BSLASHVref] = ACTIONS(2015), - [anon_sym_BSLASHautoref] = ACTIONS(2015), - [anon_sym_BSLASHpageref] = ACTIONS(2015), - [anon_sym_BSLASHcref] = ACTIONS(2015), - [anon_sym_BSLASHCref] = ACTIONS(2015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnameCref] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHlabelcref] = ACTIONS(2015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCrefrange] = ACTIONS(2015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnewlabel] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdef] = ACTIONS(2015), - [anon_sym_BSLASHlet] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2015), - [anon_sym_BSLASHgls] = ACTIONS(2015), - [anon_sym_BSLASHGls] = ACTIONS(2015), - [anon_sym_BSLASHGLS] = ACTIONS(2015), - [anon_sym_BSLASHglspl] = ACTIONS(2015), - [anon_sym_BSLASHGlspl] = ACTIONS(2015), - [anon_sym_BSLASHGLSpl] = ACTIONS(2015), - [anon_sym_BSLASHglsdisp] = ACTIONS(2015), - [anon_sym_BSLASHglslink] = ACTIONS(2015), - [anon_sym_BSLASHglstext] = ACTIONS(2015), - [anon_sym_BSLASHGlstext] = ACTIONS(2015), - [anon_sym_BSLASHGLStext] = ACTIONS(2015), - [anon_sym_BSLASHglsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2015), - [anon_sym_BSLASHglsplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSplural] = ACTIONS(2015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHglsname] = ACTIONS(2015), - [anon_sym_BSLASHGlsname] = ACTIONS(2015), - [anon_sym_BSLASHGLSname] = ACTIONS(2015), - [anon_sym_BSLASHglssymbol] = ACTIONS(2015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2015), - [anon_sym_BSLASHglsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2015), - [anon_sym_BSLASHglsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2015), - [anon_sym_BSLASHglsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2015), - [anon_sym_BSLASHglsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2015), - [anon_sym_BSLASHglsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2015), - [anon_sym_BSLASHnewacronym] = ACTIONS(2015), - [anon_sym_BSLASHacrshort] = ACTIONS(2015), - [anon_sym_BSLASHAcrshort] = ACTIONS(2015), - [anon_sym_BSLASHACRshort] = ACTIONS(2015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2015), - [anon_sym_BSLASHacrlong] = ACTIONS(2015), - [anon_sym_BSLASHAcrlong] = ACTIONS(2015), - [anon_sym_BSLASHACRlong] = ACTIONS(2015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2015), - [anon_sym_BSLASHacrfull] = ACTIONS(2015), - [anon_sym_BSLASHAcrfull] = ACTIONS(2015), - [anon_sym_BSLASHACRfull] = ACTIONS(2015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2015), - [anon_sym_BSLASHacs] = ACTIONS(2015), - [anon_sym_BSLASHAcs] = ACTIONS(2015), - [anon_sym_BSLASHacsp] = ACTIONS(2015), - [anon_sym_BSLASHAcsp] = ACTIONS(2015), - [anon_sym_BSLASHacl] = ACTIONS(2015), - [anon_sym_BSLASHAcl] = ACTIONS(2015), - [anon_sym_BSLASHaclp] = ACTIONS(2015), - [anon_sym_BSLASHAclp] = ACTIONS(2015), - [anon_sym_BSLASHacf] = ACTIONS(2015), - [anon_sym_BSLASHAcf] = ACTIONS(2015), - [anon_sym_BSLASHacfp] = ACTIONS(2015), - [anon_sym_BSLASHAcfp] = ACTIONS(2015), - [anon_sym_BSLASHac] = ACTIONS(2015), - [anon_sym_BSLASHAc] = ACTIONS(2015), - [anon_sym_BSLASHacp] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2015), - [anon_sym_BSLASHcolor] = ACTIONS(2015), - [anon_sym_BSLASHcolorbox] = ACTIONS(2015), - [anon_sym_BSLASHtextcolor] = ACTIONS(2015), - [anon_sym_BSLASHpagecolor] = ACTIONS(2015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2015), - [anon_sym_BSLASHtext] = ACTIONS(2015), - [anon_sym_BSLASHintertext] = ACTIONS(2015), - [anon_sym_shortintertext] = ACTIONS(2015), + [344] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [459] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), + [345] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [460] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [346] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [461] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), + [347] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [462] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), + [348] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [463] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), + [349] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [464] = { - [sym_curly_group] = STATE(1181), - [sym_mixed_group] = STATE(1181), - [aux_sym_generic_command_repeat1] = STATE(540), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4801), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4801), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_BSLASHpart] = ACTIONS(4613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddpart] = ACTIONS(4613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHchapter] = ACTIONS(4613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddchap] = ACTIONS(4613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsection] = ACTIONS(4613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddsec] = ACTIONS(4613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHparagraph] = ACTIONS(4613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHitem] = ACTIONS(4613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), + [350] = { + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(328), + [aux_sym__section_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [465] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), + [351] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [466] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), + [352] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [467] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), + [353] = { + [sym__part_declaration] = STATE(134), + [sym_part] = STATE(329), + [aux_sym__section_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(5221), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [468] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHend] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), + [354] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [469] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), + [355] = { + [sym_curly_group] = STATE(732), + [sym_mixed_group] = STATE(732), + [aux_sym_generic_command_repeat1] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(5315), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5319), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(5319), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_BSLASHpart] = ACTIONS(5317), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddpart] = ACTIONS(5317), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHchapter] = ACTIONS(5317), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddchap] = ACTIONS(5317), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsection] = ACTIONS(5317), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddsec] = ACTIONS(5317), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHparagraph] = ACTIONS(5317), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHitem] = ACTIONS(5317), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5315), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), + }, + [356] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [357] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -165473,13 +137618,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -165502,23 +137648,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -165526,7 +137672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -165538,8 +137684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -165566,8 +137712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -165577,18 +137723,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -165686,9 +137832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -165701,11484 +137847,5405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(1979), [anon_sym_shortintertext] = ACTIONS(1979), }, - [470] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1919), + [358] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [471] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1919), + [359] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [472] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(1919), + [360] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [473] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(1919), + [361] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [474] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(1919), + [362] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), + }, + [363] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [364] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [365] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), + }, + [366] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [367] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [475] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(1919), + [368] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHend] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [476] = { - [sym_curly_group] = STATE(658), - [sym_brack_group_text] = STATE(2060), - [ts_builtin_sym_end] = ACTIONS(4851), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_BSLASHpart] = ACTIONS(4853), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddpart] = ACTIONS(4853), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHchapter] = ACTIONS(4853), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddchap] = ACTIONS(4853), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsection] = ACTIONS(4853), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddsec] = ACTIONS(4853), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHparagraph] = ACTIONS(4853), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHitem] = ACTIONS(4853), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4851), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), - }, - [477] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [478] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [479] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [480] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [481] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1979), + [369] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), - }, - [482] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [483] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [484] = { - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(399), - [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHend] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [485] = { - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(524), - [aux_sym__section_repeat2] = STATE(524), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [486] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [487] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [488] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [489] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [490] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [491] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [492] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(1979), + [370] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [493] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(1919), + [371] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [494] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(1919), + [372] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [495] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(1919), + [373] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [496] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(1919), + [374] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [497] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1919), + [375] = { + [sym__section_declaration] = STATE(154), + [sym_section] = STATE(327), + [aux_sym__section_repeat3] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [498] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(1919), + [376] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(5325), + [sym_command_name] = ACTIONS(5327), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [499] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [500] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [501] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [502] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [503] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [504] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [505] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [506] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [507] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [508] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [509] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [510] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), + [anon_sym_BSLASHiffalse] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5327), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5327), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5327), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5327), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5332), + [anon_sym_BSLASHparagraph] = ACTIONS(5327), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5327), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [anon_sym_RBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5327), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_STAR] = ACTIONS(5327), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_CARET] = ACTIONS(5327), + [anon_sym__] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_BANG] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_SQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5327), + [anon_sym_BSLASHtitle] = ACTIONS(5327), + [anon_sym_BSLASHauthor] = ACTIONS(5327), + [anon_sym_BSLASHusepackage] = ACTIONS(5327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), + [anon_sym_BSLASHinclude] = ACTIONS(5327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), + [anon_sym_BSLASHinput] = ACTIONS(5327), + [anon_sym_BSLASHsubfile] = ACTIONS(5327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [anon_sym_BSLASHbibliography] = ACTIONS(5327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), + [anon_sym_BSLASHincludesvg] = ACTIONS(5327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), + [anon_sym_BSLASHimport] = ACTIONS(5327), + [anon_sym_BSLASHsubimport] = ACTIONS(5327), + [anon_sym_BSLASHinputfrom] = ACTIONS(5327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), + [anon_sym_BSLASHincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHcaption] = ACTIONS(5327), + [anon_sym_BSLASHcite] = ACTIONS(5327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5327), + [anon_sym_BSLASHnocite] = ACTIONS(5327), + [anon_sym_BSLASHcitet] = ACTIONS(5327), + [anon_sym_BSLASHcitep] = ACTIONS(5327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5327), + [anon_sym_BSLASHfullcite] = ACTIONS(5327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), + [anon_sym_BSLASHcitealt] = ACTIONS(5327), + [anon_sym_BSLASHcitealp] = ACTIONS(5327), + [anon_sym_BSLASHcitetext] = ACTIONS(5327), + [anon_sym_BSLASHparencite] = ACTIONS(5327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5327), + [anon_sym_BSLASHfootcite] = ACTIONS(5327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), + [anon_sym_BSLASHtextcite] = ACTIONS(5327), + [anon_sym_BSLASHTextcite] = ACTIONS(5327), + [anon_sym_BSLASHsmartcite] = ACTIONS(5327), + [anon_sym_BSLASHSmartcite] = ACTIONS(5327), + [anon_sym_BSLASHsupercite] = ACTIONS(5327), + [anon_sym_BSLASHautocite] = ACTIONS(5327), + [anon_sym_BSLASHAutocite] = ACTIONS(5327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5327), + [anon_sym_BSLASHVolcite] = ACTIONS(5327), + [anon_sym_BSLASHpvolcite] = ACTIONS(5327), + [anon_sym_BSLASHPvolcite] = ACTIONS(5327), + [anon_sym_BSLASHfvolcite] = ACTIONS(5327), + [anon_sym_BSLASHftvolcite] = ACTIONS(5327), + [anon_sym_BSLASHsvolcite] = ACTIONS(5327), + [anon_sym_BSLASHSvolcite] = ACTIONS(5327), + [anon_sym_BSLASHtvolcite] = ACTIONS(5327), + [anon_sym_BSLASHTvolcite] = ACTIONS(5327), + [anon_sym_BSLASHavolcite] = ACTIONS(5327), + [anon_sym_BSLASHAvolcite] = ACTIONS(5327), + [anon_sym_BSLASHnotecite] = ACTIONS(5327), + [anon_sym_BSLASHNotecite] = ACTIONS(5327), + [anon_sym_BSLASHpnotecite] = ACTIONS(5327), + [anon_sym_BSLASHPnotecite] = ACTIONS(5327), + [anon_sym_BSLASHfnotecite] = ACTIONS(5327), + [anon_sym_BSLASHlabel] = ACTIONS(5327), + [anon_sym_BSLASHref] = ACTIONS(5327), + [anon_sym_BSLASHeqref] = ACTIONS(5327), + [anon_sym_BSLASHvref] = ACTIONS(5327), + [anon_sym_BSLASHVref] = ACTIONS(5327), + [anon_sym_BSLASHautoref] = ACTIONS(5327), + [anon_sym_BSLASHpageref] = ACTIONS(5327), + [anon_sym_BSLASHcref] = ACTIONS(5327), + [anon_sym_BSLASHCref] = ACTIONS(5327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnameCref] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHlabelcref] = ACTIONS(5327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5327), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5327), + [anon_sym_BSLASHlet] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), + [anon_sym_BSLASHgls] = ACTIONS(5327), + [anon_sym_BSLASHGls] = ACTIONS(5327), + [anon_sym_BSLASHGLS] = ACTIONS(5327), + [anon_sym_BSLASHglspl] = ACTIONS(5327), + [anon_sym_BSLASHGlspl] = ACTIONS(5327), + [anon_sym_BSLASHGLSpl] = ACTIONS(5327), + [anon_sym_BSLASHglsdisp] = ACTIONS(5327), + [anon_sym_BSLASHglslink] = ACTIONS(5327), + [anon_sym_BSLASHglstext] = ACTIONS(5327), + [anon_sym_BSLASHGlstext] = ACTIONS(5327), + [anon_sym_BSLASHGLStext] = ACTIONS(5327), + [anon_sym_BSLASHglsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), + [anon_sym_BSLASHglsplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSplural] = ACTIONS(5327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHglsname] = ACTIONS(5327), + [anon_sym_BSLASHGlsname] = ACTIONS(5327), + [anon_sym_BSLASHGLSname] = ACTIONS(5327), + [anon_sym_BSLASHglssymbol] = ACTIONS(5327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), + [anon_sym_BSLASHglsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), + [anon_sym_BSLASHglsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), + [anon_sym_BSLASHglsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), + [anon_sym_BSLASHglsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), + [anon_sym_BSLASHglsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), + [anon_sym_BSLASHnewacronym] = ACTIONS(5327), + [anon_sym_BSLASHacrshort] = ACTIONS(5327), + [anon_sym_BSLASHAcrshort] = ACTIONS(5327), + [anon_sym_BSLASHACRshort] = ACTIONS(5327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), + [anon_sym_BSLASHacrlong] = ACTIONS(5327), + [anon_sym_BSLASHAcrlong] = ACTIONS(5327), + [anon_sym_BSLASHACRlong] = ACTIONS(5327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), + [anon_sym_BSLASHacrfull] = ACTIONS(5327), + [anon_sym_BSLASHAcrfull] = ACTIONS(5327), + [anon_sym_BSLASHACRfull] = ACTIONS(5327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), + [anon_sym_BSLASHacs] = ACTIONS(5327), + [anon_sym_BSLASHAcs] = ACTIONS(5327), + [anon_sym_BSLASHacsp] = ACTIONS(5327), + [anon_sym_BSLASHAcsp] = ACTIONS(5327), + [anon_sym_BSLASHacl] = ACTIONS(5327), + [anon_sym_BSLASHAcl] = ACTIONS(5327), + [anon_sym_BSLASHaclp] = ACTIONS(5327), + [anon_sym_BSLASHAclp] = ACTIONS(5327), + [anon_sym_BSLASHacf] = ACTIONS(5327), + [anon_sym_BSLASHAcf] = ACTIONS(5327), + [anon_sym_BSLASHacfp] = ACTIONS(5327), + [anon_sym_BSLASHAcfp] = ACTIONS(5327), + [anon_sym_BSLASHac] = ACTIONS(5327), + [anon_sym_BSLASHAc] = ACTIONS(5327), + [anon_sym_BSLASHacp] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), + [anon_sym_BSLASHcolor] = ACTIONS(5327), + [anon_sym_BSLASHcolorbox] = ACTIONS(5327), + [anon_sym_BSLASHtextcolor] = ACTIONS(5327), + [anon_sym_BSLASHpagecolor] = ACTIONS(5327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [anon_sym_BSLASHtext] = ACTIONS(5327), + [anon_sym_BSLASHintertext] = ACTIONS(5327), + [anon_sym_shortintertext] = ACTIONS(5327), }, - [511] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), + [377] = { + [sym__enum_itemdeclaration] = STATE(205), + [sym_enum_item] = STATE(325), + [aux_sym__section_repeat8] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -177191,13 +143258,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -177220,23 +143288,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -177244,7 +143312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -177256,8 +143324,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -177284,8 +143352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -177295,18 +143363,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -177404,9 +143472,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -177419,324 +143487,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(1979), [anon_sym_shortintertext] = ACTIONS(1979), }, - [512] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1979), + [378] = { + [sym__chapter_declaration] = STATE(145), + [sym_chapter] = STATE(328), + [aux_sym__section_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(5321), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [513] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), + [379] = { + [sym__subsubsection_declaration] = STATE(175), + [sym_subsubsection] = STATE(376), + [aux_sym__section_repeat5] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -177749,13 +143822,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -177778,23 +143852,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -177802,7 +143876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -177814,8 +143888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -177842,8 +143916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -177853,18 +143927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -177962,9 +144036,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -177975,22925 +144049,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), [anon_sym_BSLASHtext] = ACTIONS(1979), [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), - }, - [514] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [515] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(1997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), - }, - [516] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), - }, - [517] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [518] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(2015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(2013), - [sym_word] = ACTIONS(2015), - [sym_placeholder] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2013), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(2015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2015), - [anon_sym_BSLASHinclude] = ACTIONS(2015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2015), - [anon_sym_BSLASHinput] = ACTIONS(2015), - [anon_sym_BSLASHsubfile] = ACTIONS(2015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2015), - [anon_sym_BSLASHbibliography] = ACTIONS(2015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2015), - [anon_sym_BSLASHincludesvg] = ACTIONS(2015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2015), - [anon_sym_BSLASHimport] = ACTIONS(2015), - [anon_sym_BSLASHsubimport] = ACTIONS(2015), - [anon_sym_BSLASHinputfrom] = ACTIONS(2015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2015), - [anon_sym_BSLASHincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHcaption] = ACTIONS(2015), - [anon_sym_BSLASHcite] = ACTIONS(2015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCite] = ACTIONS(2015), - [anon_sym_BSLASHnocite] = ACTIONS(2015), - [anon_sym_BSLASHcitet] = ACTIONS(2015), - [anon_sym_BSLASHcitep] = ACTIONS(2015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteauthor] = ACTIONS(2015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitetitle] = ACTIONS(2015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteyear] = ACTIONS(2015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitedate] = ACTIONS(2015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteurl] = ACTIONS(2015), - [anon_sym_BSLASHfullcite] = ACTIONS(2015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2015), - [anon_sym_BSLASHcitealt] = ACTIONS(2015), - [anon_sym_BSLASHcitealp] = ACTIONS(2015), - [anon_sym_BSLASHcitetext] = ACTIONS(2015), - [anon_sym_BSLASHparencite] = ACTIONS(2015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHParencite] = ACTIONS(2015), - [anon_sym_BSLASHfootcite] = ACTIONS(2015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2015), - [anon_sym_BSLASHtextcite] = ACTIONS(2015), - [anon_sym_BSLASHTextcite] = ACTIONS(2015), - [anon_sym_BSLASHsmartcite] = ACTIONS(2015), - [anon_sym_BSLASHSmartcite] = ACTIONS(2015), - [anon_sym_BSLASHsupercite] = ACTIONS(2015), - [anon_sym_BSLASHautocite] = ACTIONS(2015), - [anon_sym_BSLASHAutocite] = ACTIONS(2015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHvolcite] = ACTIONS(2015), - [anon_sym_BSLASHVolcite] = ACTIONS(2015), - [anon_sym_BSLASHpvolcite] = ACTIONS(2015), - [anon_sym_BSLASHPvolcite] = ACTIONS(2015), - [anon_sym_BSLASHfvolcite] = ACTIONS(2015), - [anon_sym_BSLASHftvolcite] = ACTIONS(2015), - [anon_sym_BSLASHsvolcite] = ACTIONS(2015), - [anon_sym_BSLASHSvolcite] = ACTIONS(2015), - [anon_sym_BSLASHtvolcite] = ACTIONS(2015), - [anon_sym_BSLASHTvolcite] = ACTIONS(2015), - [anon_sym_BSLASHavolcite] = ACTIONS(2015), - [anon_sym_BSLASHAvolcite] = ACTIONS(2015), - [anon_sym_BSLASHnotecite] = ACTIONS(2015), - [anon_sym_BSLASHNotecite] = ACTIONS(2015), - [anon_sym_BSLASHpnotecite] = ACTIONS(2015), - [anon_sym_BSLASHPnotecite] = ACTIONS(2015), - [anon_sym_BSLASHfnotecite] = ACTIONS(2015), - [anon_sym_BSLASHlabel] = ACTIONS(2015), - [anon_sym_BSLASHref] = ACTIONS(2015), - [anon_sym_BSLASHeqref] = ACTIONS(2015), - [anon_sym_BSLASHvref] = ACTIONS(2015), - [anon_sym_BSLASHVref] = ACTIONS(2015), - [anon_sym_BSLASHautoref] = ACTIONS(2015), - [anon_sym_BSLASHpageref] = ACTIONS(2015), - [anon_sym_BSLASHcref] = ACTIONS(2015), - [anon_sym_BSLASHCref] = ACTIONS(2015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnameCref] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHlabelcref] = ACTIONS(2015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCrefrange] = ACTIONS(2015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnewlabel] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdef] = ACTIONS(2015), - [anon_sym_BSLASHlet] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2015), - [anon_sym_BSLASHgls] = ACTIONS(2015), - [anon_sym_BSLASHGls] = ACTIONS(2015), - [anon_sym_BSLASHGLS] = ACTIONS(2015), - [anon_sym_BSLASHglspl] = ACTIONS(2015), - [anon_sym_BSLASHGlspl] = ACTIONS(2015), - [anon_sym_BSLASHGLSpl] = ACTIONS(2015), - [anon_sym_BSLASHglsdisp] = ACTIONS(2015), - [anon_sym_BSLASHglslink] = ACTIONS(2015), - [anon_sym_BSLASHglstext] = ACTIONS(2015), - [anon_sym_BSLASHGlstext] = ACTIONS(2015), - [anon_sym_BSLASHGLStext] = ACTIONS(2015), - [anon_sym_BSLASHglsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2015), - [anon_sym_BSLASHglsplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSplural] = ACTIONS(2015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHglsname] = ACTIONS(2015), - [anon_sym_BSLASHGlsname] = ACTIONS(2015), - [anon_sym_BSLASHGLSname] = ACTIONS(2015), - [anon_sym_BSLASHglssymbol] = ACTIONS(2015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2015), - [anon_sym_BSLASHglsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2015), - [anon_sym_BSLASHglsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2015), - [anon_sym_BSLASHglsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2015), - [anon_sym_BSLASHglsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2015), - [anon_sym_BSLASHglsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2015), - [anon_sym_BSLASHnewacronym] = ACTIONS(2015), - [anon_sym_BSLASHacrshort] = ACTIONS(2015), - [anon_sym_BSLASHAcrshort] = ACTIONS(2015), - [anon_sym_BSLASHACRshort] = ACTIONS(2015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2015), - [anon_sym_BSLASHacrlong] = ACTIONS(2015), - [anon_sym_BSLASHAcrlong] = ACTIONS(2015), - [anon_sym_BSLASHACRlong] = ACTIONS(2015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2015), - [anon_sym_BSLASHacrfull] = ACTIONS(2015), - [anon_sym_BSLASHAcrfull] = ACTIONS(2015), - [anon_sym_BSLASHACRfull] = ACTIONS(2015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2015), - [anon_sym_BSLASHacs] = ACTIONS(2015), - [anon_sym_BSLASHAcs] = ACTIONS(2015), - [anon_sym_BSLASHacsp] = ACTIONS(2015), - [anon_sym_BSLASHAcsp] = ACTIONS(2015), - [anon_sym_BSLASHacl] = ACTIONS(2015), - [anon_sym_BSLASHAcl] = ACTIONS(2015), - [anon_sym_BSLASHaclp] = ACTIONS(2015), - [anon_sym_BSLASHAclp] = ACTIONS(2015), - [anon_sym_BSLASHacf] = ACTIONS(2015), - [anon_sym_BSLASHAcf] = ACTIONS(2015), - [anon_sym_BSLASHacfp] = ACTIONS(2015), - [anon_sym_BSLASHAcfp] = ACTIONS(2015), - [anon_sym_BSLASHac] = ACTIONS(2015), - [anon_sym_BSLASHAc] = ACTIONS(2015), - [anon_sym_BSLASHacp] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2015), - [anon_sym_BSLASHcolor] = ACTIONS(2015), - [anon_sym_BSLASHcolorbox] = ACTIONS(2015), - [anon_sym_BSLASHtextcolor] = ACTIONS(2015), - [anon_sym_BSLASHpagecolor] = ACTIONS(2015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2015), - [anon_sym_BSLASHtext] = ACTIONS(2015), - [anon_sym_BSLASHintertext] = ACTIONS(2015), - [anon_sym_shortintertext] = ACTIONS(2015), - }, - [519] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [520] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [521] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [522] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [523] = { - [sym__part_declaration] = STATE(126), - [sym_part] = STATE(523), - [aux_sym__section_repeat1] = STATE(523), - [sym_command_name] = ACTIONS(4731), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_COMMA] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_BSLASHpart] = ACTIONS(4857), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4860), - [anon_sym_BSLASHaddpart] = ACTIONS(4857), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4860), - [anon_sym_BSLASHchapter] = ACTIONS(4731), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddchap] = ACTIONS(4731), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsection] = ACTIONS(4731), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddsec] = ACTIONS(4731), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHparagraph] = ACTIONS(4731), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHitem] = ACTIONS(4731), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [sym_word] = ACTIONS(4731), - [sym_placeholder] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_CARET] = ACTIONS(4731), - [anon_sym__] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4729), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4729), - [anon_sym_BSLASHbegin] = ACTIONS(4731), - [anon_sym_BSLASHusepackage] = ACTIONS(4731), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4731), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4731), - [anon_sym_BSLASHinclude] = ACTIONS(4731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4731), - [anon_sym_BSLASHinput] = ACTIONS(4731), - [anon_sym_BSLASHsubfile] = ACTIONS(4731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4731), - [anon_sym_BSLASHbibliography] = ACTIONS(4731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4731), - [anon_sym_BSLASHincludesvg] = ACTIONS(4731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4731), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4731), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4731), - [anon_sym_BSLASHimport] = ACTIONS(4731), - [anon_sym_BSLASHsubimport] = ACTIONS(4731), - [anon_sym_BSLASHinputfrom] = ACTIONS(4731), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4731), - [anon_sym_BSLASHincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHcaption] = ACTIONS(4731), - [anon_sym_BSLASHcite] = ACTIONS(4731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCite] = ACTIONS(4731), - [anon_sym_BSLASHnocite] = ACTIONS(4731), - [anon_sym_BSLASHcitet] = ACTIONS(4731), - [anon_sym_BSLASHcitep] = ACTIONS(4731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteauthor] = ACTIONS(4731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitetitle] = ACTIONS(4731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteyear] = ACTIONS(4731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitedate] = ACTIONS(4731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteurl] = ACTIONS(4731), - [anon_sym_BSLASHfullcite] = ACTIONS(4731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4731), - [anon_sym_BSLASHcitealt] = ACTIONS(4731), - [anon_sym_BSLASHcitealp] = ACTIONS(4731), - [anon_sym_BSLASHcitetext] = ACTIONS(4731), - [anon_sym_BSLASHparencite] = ACTIONS(4731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHParencite] = ACTIONS(4731), - [anon_sym_BSLASHfootcite] = ACTIONS(4731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4731), - [anon_sym_BSLASHtextcite] = ACTIONS(4731), - [anon_sym_BSLASHTextcite] = ACTIONS(4731), - [anon_sym_BSLASHsmartcite] = ACTIONS(4731), - [anon_sym_BSLASHSmartcite] = ACTIONS(4731), - [anon_sym_BSLASHsupercite] = ACTIONS(4731), - [anon_sym_BSLASHautocite] = ACTIONS(4731), - [anon_sym_BSLASHAutocite] = ACTIONS(4731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHvolcite] = ACTIONS(4731), - [anon_sym_BSLASHVolcite] = ACTIONS(4731), - [anon_sym_BSLASHpvolcite] = ACTIONS(4731), - [anon_sym_BSLASHPvolcite] = ACTIONS(4731), - [anon_sym_BSLASHfvolcite] = ACTIONS(4731), - [anon_sym_BSLASHftvolcite] = ACTIONS(4731), - [anon_sym_BSLASHsvolcite] = ACTIONS(4731), - [anon_sym_BSLASHSvolcite] = ACTIONS(4731), - [anon_sym_BSLASHtvolcite] = ACTIONS(4731), - [anon_sym_BSLASHTvolcite] = ACTIONS(4731), - [anon_sym_BSLASHavolcite] = ACTIONS(4731), - [anon_sym_BSLASHAvolcite] = ACTIONS(4731), - [anon_sym_BSLASHnotecite] = ACTIONS(4731), - [anon_sym_BSLASHNotecite] = ACTIONS(4731), - [anon_sym_BSLASHpnotecite] = ACTIONS(4731), - [anon_sym_BSLASHPnotecite] = ACTIONS(4731), - [anon_sym_BSLASHfnotecite] = ACTIONS(4731), - [anon_sym_BSLASHlabel] = ACTIONS(4731), - [anon_sym_BSLASHref] = ACTIONS(4731), - [anon_sym_BSLASHeqref] = ACTIONS(4731), - [anon_sym_BSLASHvref] = ACTIONS(4731), - [anon_sym_BSLASHVref] = ACTIONS(4731), - [anon_sym_BSLASHautoref] = ACTIONS(4731), - [anon_sym_BSLASHpageref] = ACTIONS(4731), - [anon_sym_BSLASHcref] = ACTIONS(4731), - [anon_sym_BSLASHCref] = ACTIONS(4731), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnameCref] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHlabelcref] = ACTIONS(4731), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCrefrange] = ACTIONS(4731), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnewlabel] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4731), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4731), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4731), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdef] = ACTIONS(4731), - [anon_sym_BSLASHlet] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4731), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4731), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4731), - [anon_sym_BSLASHgls] = ACTIONS(4731), - [anon_sym_BSLASHGls] = ACTIONS(4731), - [anon_sym_BSLASHGLS] = ACTIONS(4731), - [anon_sym_BSLASHglspl] = ACTIONS(4731), - [anon_sym_BSLASHGlspl] = ACTIONS(4731), - [anon_sym_BSLASHGLSpl] = ACTIONS(4731), - [anon_sym_BSLASHglsdisp] = ACTIONS(4731), - [anon_sym_BSLASHglslink] = ACTIONS(4731), - [anon_sym_BSLASHglstext] = ACTIONS(4731), - [anon_sym_BSLASHGlstext] = ACTIONS(4731), - [anon_sym_BSLASHGLStext] = ACTIONS(4731), - [anon_sym_BSLASHglsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4731), - [anon_sym_BSLASHglsplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSplural] = ACTIONS(4731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHglsname] = ACTIONS(4731), - [anon_sym_BSLASHGlsname] = ACTIONS(4731), - [anon_sym_BSLASHGLSname] = ACTIONS(4731), - [anon_sym_BSLASHglssymbol] = ACTIONS(4731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4731), - [anon_sym_BSLASHglsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4731), - [anon_sym_BSLASHglsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4731), - [anon_sym_BSLASHglsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4731), - [anon_sym_BSLASHglsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4731), - [anon_sym_BSLASHglsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4731), - [anon_sym_BSLASHnewacronym] = ACTIONS(4731), - [anon_sym_BSLASHacrshort] = ACTIONS(4731), - [anon_sym_BSLASHAcrshort] = ACTIONS(4731), - [anon_sym_BSLASHACRshort] = ACTIONS(4731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4731), - [anon_sym_BSLASHacrlong] = ACTIONS(4731), - [anon_sym_BSLASHAcrlong] = ACTIONS(4731), - [anon_sym_BSLASHACRlong] = ACTIONS(4731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4731), - [anon_sym_BSLASHacrfull] = ACTIONS(4731), - [anon_sym_BSLASHAcrfull] = ACTIONS(4731), - [anon_sym_BSLASHACRfull] = ACTIONS(4731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4731), - [anon_sym_BSLASHacs] = ACTIONS(4731), - [anon_sym_BSLASHAcs] = ACTIONS(4731), - [anon_sym_BSLASHacsp] = ACTIONS(4731), - [anon_sym_BSLASHAcsp] = ACTIONS(4731), - [anon_sym_BSLASHacl] = ACTIONS(4731), - [anon_sym_BSLASHAcl] = ACTIONS(4731), - [anon_sym_BSLASHaclp] = ACTIONS(4731), - [anon_sym_BSLASHAclp] = ACTIONS(4731), - [anon_sym_BSLASHacf] = ACTIONS(4731), - [anon_sym_BSLASHAcf] = ACTIONS(4731), - [anon_sym_BSLASHacfp] = ACTIONS(4731), - [anon_sym_BSLASHAcfp] = ACTIONS(4731), - [anon_sym_BSLASHac] = ACTIONS(4731), - [anon_sym_BSLASHAc] = ACTIONS(4731), - [anon_sym_BSLASHacp] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4731), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4731), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4731), - [anon_sym_BSLASHcolor] = ACTIONS(4731), - [anon_sym_BSLASHcolorbox] = ACTIONS(4731), - [anon_sym_BSLASHtextcolor] = ACTIONS(4731), - [anon_sym_BSLASHpagecolor] = ACTIONS(4731), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4731), - [anon_sym_BSLASHtext] = ACTIONS(4731), - [anon_sym_BSLASHintertext] = ACTIONS(4731), - [anon_sym_shortintertext] = ACTIONS(4731), - }, - [524] = { - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(524), - [aux_sym__section_repeat2] = STATE(524), - [sym_command_name] = ACTIONS(4721), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_BSLASHpart] = ACTIONS(4721), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddpart] = ACTIONS(4721), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHchapter] = ACTIONS(4863), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4866), - [anon_sym_BSLASHaddchap] = ACTIONS(4863), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4866), - [anon_sym_BSLASHsection] = ACTIONS(4721), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddsec] = ACTIONS(4721), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHparagraph] = ACTIONS(4721), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4721), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHitem] = ACTIONS(4721), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [sym_word] = ACTIONS(4721), - [sym_placeholder] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym__] = ACTIONS(4721), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4719), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4719), - [anon_sym_BSLASHbegin] = ACTIONS(4721), - [anon_sym_BSLASHusepackage] = ACTIONS(4721), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4721), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4721), - [anon_sym_BSLASHinclude] = ACTIONS(4721), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4721), - [anon_sym_BSLASHinput] = ACTIONS(4721), - [anon_sym_BSLASHsubfile] = ACTIONS(4721), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4721), - [anon_sym_BSLASHbibliography] = ACTIONS(4721), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4721), - [anon_sym_BSLASHincludesvg] = ACTIONS(4721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4721), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4721), - [anon_sym_BSLASHimport] = ACTIONS(4721), - [anon_sym_BSLASHsubimport] = ACTIONS(4721), - [anon_sym_BSLASHinputfrom] = ACTIONS(4721), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4721), - [anon_sym_BSLASHincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHcaption] = ACTIONS(4721), - [anon_sym_BSLASHcite] = ACTIONS(4721), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCite] = ACTIONS(4721), - [anon_sym_BSLASHnocite] = ACTIONS(4721), - [anon_sym_BSLASHcitet] = ACTIONS(4721), - [anon_sym_BSLASHcitep] = ACTIONS(4721), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteauthor] = ACTIONS(4721), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4721), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitetitle] = ACTIONS(4721), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteyear] = ACTIONS(4721), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitedate] = ACTIONS(4721), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteurl] = ACTIONS(4721), - [anon_sym_BSLASHfullcite] = ACTIONS(4721), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4721), - [anon_sym_BSLASHcitealt] = ACTIONS(4721), - [anon_sym_BSLASHcitealp] = ACTIONS(4721), - [anon_sym_BSLASHcitetext] = ACTIONS(4721), - [anon_sym_BSLASHparencite] = ACTIONS(4721), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHParencite] = ACTIONS(4721), - [anon_sym_BSLASHfootcite] = ACTIONS(4721), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4721), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4721), - [anon_sym_BSLASHtextcite] = ACTIONS(4721), - [anon_sym_BSLASHTextcite] = ACTIONS(4721), - [anon_sym_BSLASHsmartcite] = ACTIONS(4721), - [anon_sym_BSLASHSmartcite] = ACTIONS(4721), - [anon_sym_BSLASHsupercite] = ACTIONS(4721), - [anon_sym_BSLASHautocite] = ACTIONS(4721), - [anon_sym_BSLASHAutocite] = ACTIONS(4721), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHvolcite] = ACTIONS(4721), - [anon_sym_BSLASHVolcite] = ACTIONS(4721), - [anon_sym_BSLASHpvolcite] = ACTIONS(4721), - [anon_sym_BSLASHPvolcite] = ACTIONS(4721), - [anon_sym_BSLASHfvolcite] = ACTIONS(4721), - [anon_sym_BSLASHftvolcite] = ACTIONS(4721), - [anon_sym_BSLASHsvolcite] = ACTIONS(4721), - [anon_sym_BSLASHSvolcite] = ACTIONS(4721), - [anon_sym_BSLASHtvolcite] = ACTIONS(4721), - [anon_sym_BSLASHTvolcite] = ACTIONS(4721), - [anon_sym_BSLASHavolcite] = ACTIONS(4721), - [anon_sym_BSLASHAvolcite] = ACTIONS(4721), - [anon_sym_BSLASHnotecite] = ACTIONS(4721), - [anon_sym_BSLASHNotecite] = ACTIONS(4721), - [anon_sym_BSLASHpnotecite] = ACTIONS(4721), - [anon_sym_BSLASHPnotecite] = ACTIONS(4721), - [anon_sym_BSLASHfnotecite] = ACTIONS(4721), - [anon_sym_BSLASHlabel] = ACTIONS(4721), - [anon_sym_BSLASHref] = ACTIONS(4721), - [anon_sym_BSLASHeqref] = ACTIONS(4721), - [anon_sym_BSLASHvref] = ACTIONS(4721), - [anon_sym_BSLASHVref] = ACTIONS(4721), - [anon_sym_BSLASHautoref] = ACTIONS(4721), - [anon_sym_BSLASHpageref] = ACTIONS(4721), - [anon_sym_BSLASHcref] = ACTIONS(4721), - [anon_sym_BSLASHCref] = ACTIONS(4721), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnameCref] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHlabelcref] = ACTIONS(4721), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCrefrange] = ACTIONS(4721), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnewlabel] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4721), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4721), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4721), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdef] = ACTIONS(4721), - [anon_sym_BSLASHlet] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4721), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4721), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4721), - [anon_sym_BSLASHgls] = ACTIONS(4721), - [anon_sym_BSLASHGls] = ACTIONS(4721), - [anon_sym_BSLASHGLS] = ACTIONS(4721), - [anon_sym_BSLASHglspl] = ACTIONS(4721), - [anon_sym_BSLASHGlspl] = ACTIONS(4721), - [anon_sym_BSLASHGLSpl] = ACTIONS(4721), - [anon_sym_BSLASHglsdisp] = ACTIONS(4721), - [anon_sym_BSLASHglslink] = ACTIONS(4721), - [anon_sym_BSLASHglstext] = ACTIONS(4721), - [anon_sym_BSLASHGlstext] = ACTIONS(4721), - [anon_sym_BSLASHGLStext] = ACTIONS(4721), - [anon_sym_BSLASHglsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4721), - [anon_sym_BSLASHglsplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSplural] = ACTIONS(4721), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHglsname] = ACTIONS(4721), - [anon_sym_BSLASHGlsname] = ACTIONS(4721), - [anon_sym_BSLASHGLSname] = ACTIONS(4721), - [anon_sym_BSLASHglssymbol] = ACTIONS(4721), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4721), - [anon_sym_BSLASHglsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4721), - [anon_sym_BSLASHglsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4721), - [anon_sym_BSLASHglsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4721), - [anon_sym_BSLASHglsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4721), - [anon_sym_BSLASHglsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4721), - [anon_sym_BSLASHnewacronym] = ACTIONS(4721), - [anon_sym_BSLASHacrshort] = ACTIONS(4721), - [anon_sym_BSLASHAcrshort] = ACTIONS(4721), - [anon_sym_BSLASHACRshort] = ACTIONS(4721), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4721), - [anon_sym_BSLASHacrlong] = ACTIONS(4721), - [anon_sym_BSLASHAcrlong] = ACTIONS(4721), - [anon_sym_BSLASHACRlong] = ACTIONS(4721), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4721), - [anon_sym_BSLASHacrfull] = ACTIONS(4721), - [anon_sym_BSLASHAcrfull] = ACTIONS(4721), - [anon_sym_BSLASHACRfull] = ACTIONS(4721), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4721), - [anon_sym_BSLASHacs] = ACTIONS(4721), - [anon_sym_BSLASHAcs] = ACTIONS(4721), - [anon_sym_BSLASHacsp] = ACTIONS(4721), - [anon_sym_BSLASHAcsp] = ACTIONS(4721), - [anon_sym_BSLASHacl] = ACTIONS(4721), - [anon_sym_BSLASHAcl] = ACTIONS(4721), - [anon_sym_BSLASHaclp] = ACTIONS(4721), - [anon_sym_BSLASHAclp] = ACTIONS(4721), - [anon_sym_BSLASHacf] = ACTIONS(4721), - [anon_sym_BSLASHAcf] = ACTIONS(4721), - [anon_sym_BSLASHacfp] = ACTIONS(4721), - [anon_sym_BSLASHAcfp] = ACTIONS(4721), - [anon_sym_BSLASHac] = ACTIONS(4721), - [anon_sym_BSLASHAc] = ACTIONS(4721), - [anon_sym_BSLASHacp] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4721), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4721), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4721), - [anon_sym_BSLASHcolor] = ACTIONS(4721), - [anon_sym_BSLASHcolorbox] = ACTIONS(4721), - [anon_sym_BSLASHtextcolor] = ACTIONS(4721), - [anon_sym_BSLASHpagecolor] = ACTIONS(4721), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4721), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4721), - [anon_sym_BSLASHtext] = ACTIONS(4721), - [anon_sym_BSLASHintertext] = ACTIONS(4721), - [anon_sym_shortintertext] = ACTIONS(4721), - }, - [525] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(4711), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4709), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_BSLASHpart] = ACTIONS(4711), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddpart] = ACTIONS(4711), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHchapter] = ACTIONS(4711), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddchap] = ACTIONS(4711), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsection] = ACTIONS(4869), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4872), - [anon_sym_BSLASHaddsec] = ACTIONS(4869), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4872), - [anon_sym_BSLASHsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHparagraph] = ACTIONS(4711), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4711), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHitem] = ACTIONS(4711), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [sym_word] = ACTIONS(4711), - [sym_placeholder] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_CARET] = ACTIONS(4711), - [anon_sym__] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4709), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4709), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4709), - [anon_sym_BSLASHbegin] = ACTIONS(4711), - [anon_sym_BSLASHusepackage] = ACTIONS(4711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4711), - [anon_sym_BSLASHinclude] = ACTIONS(4711), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4711), - [anon_sym_BSLASHinput] = ACTIONS(4711), - [anon_sym_BSLASHsubfile] = ACTIONS(4711), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4711), - [anon_sym_BSLASHbibliography] = ACTIONS(4711), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4711), - [anon_sym_BSLASHincludesvg] = ACTIONS(4711), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4711), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4711), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4711), - [anon_sym_BSLASHimport] = ACTIONS(4711), - [anon_sym_BSLASHsubimport] = ACTIONS(4711), - [anon_sym_BSLASHinputfrom] = ACTIONS(4711), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4711), - [anon_sym_BSLASHincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHcaption] = ACTIONS(4711), - [anon_sym_BSLASHcite] = ACTIONS(4711), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCite] = ACTIONS(4711), - [anon_sym_BSLASHnocite] = ACTIONS(4711), - [anon_sym_BSLASHcitet] = ACTIONS(4711), - [anon_sym_BSLASHcitep] = ACTIONS(4711), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteauthor] = ACTIONS(4711), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4711), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitetitle] = ACTIONS(4711), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteyear] = ACTIONS(4711), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitedate] = ACTIONS(4711), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteurl] = ACTIONS(4711), - [anon_sym_BSLASHfullcite] = ACTIONS(4711), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4711), - [anon_sym_BSLASHcitealt] = ACTIONS(4711), - [anon_sym_BSLASHcitealp] = ACTIONS(4711), - [anon_sym_BSLASHcitetext] = ACTIONS(4711), - [anon_sym_BSLASHparencite] = ACTIONS(4711), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHParencite] = ACTIONS(4711), - [anon_sym_BSLASHfootcite] = ACTIONS(4711), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4711), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4711), - [anon_sym_BSLASHtextcite] = ACTIONS(4711), - [anon_sym_BSLASHTextcite] = ACTIONS(4711), - [anon_sym_BSLASHsmartcite] = ACTIONS(4711), - [anon_sym_BSLASHSmartcite] = ACTIONS(4711), - [anon_sym_BSLASHsupercite] = ACTIONS(4711), - [anon_sym_BSLASHautocite] = ACTIONS(4711), - [anon_sym_BSLASHAutocite] = ACTIONS(4711), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHvolcite] = ACTIONS(4711), - [anon_sym_BSLASHVolcite] = ACTIONS(4711), - [anon_sym_BSLASHpvolcite] = ACTIONS(4711), - [anon_sym_BSLASHPvolcite] = ACTIONS(4711), - [anon_sym_BSLASHfvolcite] = ACTIONS(4711), - [anon_sym_BSLASHftvolcite] = ACTIONS(4711), - [anon_sym_BSLASHsvolcite] = ACTIONS(4711), - [anon_sym_BSLASHSvolcite] = ACTIONS(4711), - [anon_sym_BSLASHtvolcite] = ACTIONS(4711), - [anon_sym_BSLASHTvolcite] = ACTIONS(4711), - [anon_sym_BSLASHavolcite] = ACTIONS(4711), - [anon_sym_BSLASHAvolcite] = ACTIONS(4711), - [anon_sym_BSLASHnotecite] = ACTIONS(4711), - [anon_sym_BSLASHNotecite] = ACTIONS(4711), - [anon_sym_BSLASHpnotecite] = ACTIONS(4711), - [anon_sym_BSLASHPnotecite] = ACTIONS(4711), - [anon_sym_BSLASHfnotecite] = ACTIONS(4711), - [anon_sym_BSLASHlabel] = ACTIONS(4711), - [anon_sym_BSLASHref] = ACTIONS(4711), - [anon_sym_BSLASHeqref] = ACTIONS(4711), - [anon_sym_BSLASHvref] = ACTIONS(4711), - [anon_sym_BSLASHVref] = ACTIONS(4711), - [anon_sym_BSLASHautoref] = ACTIONS(4711), - [anon_sym_BSLASHpageref] = ACTIONS(4711), - [anon_sym_BSLASHcref] = ACTIONS(4711), - [anon_sym_BSLASHCref] = ACTIONS(4711), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnameCref] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHlabelcref] = ACTIONS(4711), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCrefrange] = ACTIONS(4711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnewlabel] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4711), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4711), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4711), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdef] = ACTIONS(4711), - [anon_sym_BSLASHlet] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4711), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4711), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4711), - [anon_sym_BSLASHgls] = ACTIONS(4711), - [anon_sym_BSLASHGls] = ACTIONS(4711), - [anon_sym_BSLASHGLS] = ACTIONS(4711), - [anon_sym_BSLASHglspl] = ACTIONS(4711), - [anon_sym_BSLASHGlspl] = ACTIONS(4711), - [anon_sym_BSLASHGLSpl] = ACTIONS(4711), - [anon_sym_BSLASHglsdisp] = ACTIONS(4711), - [anon_sym_BSLASHglslink] = ACTIONS(4711), - [anon_sym_BSLASHglstext] = ACTIONS(4711), - [anon_sym_BSLASHGlstext] = ACTIONS(4711), - [anon_sym_BSLASHGLStext] = ACTIONS(4711), - [anon_sym_BSLASHglsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4711), - [anon_sym_BSLASHglsplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSplural] = ACTIONS(4711), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHglsname] = ACTIONS(4711), - [anon_sym_BSLASHGlsname] = ACTIONS(4711), - [anon_sym_BSLASHGLSname] = ACTIONS(4711), - [anon_sym_BSLASHglssymbol] = ACTIONS(4711), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4711), - [anon_sym_BSLASHglsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4711), - [anon_sym_BSLASHglsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4711), - [anon_sym_BSLASHglsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4711), - [anon_sym_BSLASHglsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4711), - [anon_sym_BSLASHglsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4711), - [anon_sym_BSLASHnewacronym] = ACTIONS(4711), - [anon_sym_BSLASHacrshort] = ACTIONS(4711), - [anon_sym_BSLASHAcrshort] = ACTIONS(4711), - [anon_sym_BSLASHACRshort] = ACTIONS(4711), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4711), - [anon_sym_BSLASHacrlong] = ACTIONS(4711), - [anon_sym_BSLASHAcrlong] = ACTIONS(4711), - [anon_sym_BSLASHACRlong] = ACTIONS(4711), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4711), - [anon_sym_BSLASHacrfull] = ACTIONS(4711), - [anon_sym_BSLASHAcrfull] = ACTIONS(4711), - [anon_sym_BSLASHACRfull] = ACTIONS(4711), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4711), - [anon_sym_BSLASHacs] = ACTIONS(4711), - [anon_sym_BSLASHAcs] = ACTIONS(4711), - [anon_sym_BSLASHacsp] = ACTIONS(4711), - [anon_sym_BSLASHAcsp] = ACTIONS(4711), - [anon_sym_BSLASHacl] = ACTIONS(4711), - [anon_sym_BSLASHAcl] = ACTIONS(4711), - [anon_sym_BSLASHaclp] = ACTIONS(4711), - [anon_sym_BSLASHAclp] = ACTIONS(4711), - [anon_sym_BSLASHacf] = ACTIONS(4711), - [anon_sym_BSLASHAcf] = ACTIONS(4711), - [anon_sym_BSLASHacfp] = ACTIONS(4711), - [anon_sym_BSLASHAcfp] = ACTIONS(4711), - [anon_sym_BSLASHac] = ACTIONS(4711), - [anon_sym_BSLASHAc] = ACTIONS(4711), - [anon_sym_BSLASHacp] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4711), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4711), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4711), - [anon_sym_BSLASHcolor] = ACTIONS(4711), - [anon_sym_BSLASHcolorbox] = ACTIONS(4711), - [anon_sym_BSLASHtextcolor] = ACTIONS(4711), - [anon_sym_BSLASHpagecolor] = ACTIONS(4711), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4711), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4711), - [anon_sym_BSLASHtext] = ACTIONS(4711), - [anon_sym_BSLASHintertext] = ACTIONS(4711), - [anon_sym_shortintertext] = ACTIONS(4711), - }, - [526] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(4677), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_BSLASHpart] = ACTIONS(4677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddpart] = ACTIONS(4677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsection] = ACTIONS(4677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddsec] = ACTIONS(4677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubsection] = ACTIONS(4875), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4878), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHparagraph] = ACTIONS(4677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHitem] = ACTIONS(4677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [sym_word] = ACTIONS(4677), - [sym_placeholder] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym__] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4675), - [anon_sym_BSLASHbegin] = ACTIONS(4677), - [anon_sym_BSLASHusepackage] = ACTIONS(4677), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4677), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4677), - [anon_sym_BSLASHinclude] = ACTIONS(4677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4677), - [anon_sym_BSLASHinput] = ACTIONS(4677), - [anon_sym_BSLASHsubfile] = ACTIONS(4677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4677), - [anon_sym_BSLASHbibliography] = ACTIONS(4677), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4677), - [anon_sym_BSLASHincludesvg] = ACTIONS(4677), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4677), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4677), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4677), - [anon_sym_BSLASHimport] = ACTIONS(4677), - [anon_sym_BSLASHsubimport] = ACTIONS(4677), - [anon_sym_BSLASHinputfrom] = ACTIONS(4677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4677), - [anon_sym_BSLASHincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHcaption] = ACTIONS(4677), - [anon_sym_BSLASHcite] = ACTIONS(4677), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCite] = ACTIONS(4677), - [anon_sym_BSLASHnocite] = ACTIONS(4677), - [anon_sym_BSLASHcitet] = ACTIONS(4677), - [anon_sym_BSLASHcitep] = ACTIONS(4677), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteauthor] = ACTIONS(4677), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4677), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitetitle] = ACTIONS(4677), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteyear] = ACTIONS(4677), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitedate] = ACTIONS(4677), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteurl] = ACTIONS(4677), - [anon_sym_BSLASHfullcite] = ACTIONS(4677), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4677), - [anon_sym_BSLASHcitealt] = ACTIONS(4677), - [anon_sym_BSLASHcitealp] = ACTIONS(4677), - [anon_sym_BSLASHcitetext] = ACTIONS(4677), - [anon_sym_BSLASHparencite] = ACTIONS(4677), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHParencite] = ACTIONS(4677), - [anon_sym_BSLASHfootcite] = ACTIONS(4677), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4677), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4677), - [anon_sym_BSLASHtextcite] = ACTIONS(4677), - [anon_sym_BSLASHTextcite] = ACTIONS(4677), - [anon_sym_BSLASHsmartcite] = ACTIONS(4677), - [anon_sym_BSLASHSmartcite] = ACTIONS(4677), - [anon_sym_BSLASHsupercite] = ACTIONS(4677), - [anon_sym_BSLASHautocite] = ACTIONS(4677), - [anon_sym_BSLASHAutocite] = ACTIONS(4677), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHvolcite] = ACTIONS(4677), - [anon_sym_BSLASHVolcite] = ACTIONS(4677), - [anon_sym_BSLASHpvolcite] = ACTIONS(4677), - [anon_sym_BSLASHPvolcite] = ACTIONS(4677), - [anon_sym_BSLASHfvolcite] = ACTIONS(4677), - [anon_sym_BSLASHftvolcite] = ACTIONS(4677), - [anon_sym_BSLASHsvolcite] = ACTIONS(4677), - [anon_sym_BSLASHSvolcite] = ACTIONS(4677), - [anon_sym_BSLASHtvolcite] = ACTIONS(4677), - [anon_sym_BSLASHTvolcite] = ACTIONS(4677), - [anon_sym_BSLASHavolcite] = ACTIONS(4677), - [anon_sym_BSLASHAvolcite] = ACTIONS(4677), - [anon_sym_BSLASHnotecite] = ACTIONS(4677), - [anon_sym_BSLASHNotecite] = ACTIONS(4677), - [anon_sym_BSLASHpnotecite] = ACTIONS(4677), - [anon_sym_BSLASHPnotecite] = ACTIONS(4677), - [anon_sym_BSLASHfnotecite] = ACTIONS(4677), - [anon_sym_BSLASHlabel] = ACTIONS(4677), - [anon_sym_BSLASHref] = ACTIONS(4677), - [anon_sym_BSLASHeqref] = ACTIONS(4677), - [anon_sym_BSLASHvref] = ACTIONS(4677), - [anon_sym_BSLASHVref] = ACTIONS(4677), - [anon_sym_BSLASHautoref] = ACTIONS(4677), - [anon_sym_BSLASHpageref] = ACTIONS(4677), - [anon_sym_BSLASHcref] = ACTIONS(4677), - [anon_sym_BSLASHCref] = ACTIONS(4677), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnameCref] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHlabelcref] = ACTIONS(4677), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCrefrange] = ACTIONS(4677), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnewlabel] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4677), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4677), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4677), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdef] = ACTIONS(4677), - [anon_sym_BSLASHlet] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4677), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4677), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4677), - [anon_sym_BSLASHgls] = ACTIONS(4677), - [anon_sym_BSLASHGls] = ACTIONS(4677), - [anon_sym_BSLASHGLS] = ACTIONS(4677), - [anon_sym_BSLASHglspl] = ACTIONS(4677), - [anon_sym_BSLASHGlspl] = ACTIONS(4677), - [anon_sym_BSLASHGLSpl] = ACTIONS(4677), - [anon_sym_BSLASHglsdisp] = ACTIONS(4677), - [anon_sym_BSLASHglslink] = ACTIONS(4677), - [anon_sym_BSLASHglstext] = ACTIONS(4677), - [anon_sym_BSLASHGlstext] = ACTIONS(4677), - [anon_sym_BSLASHGLStext] = ACTIONS(4677), - [anon_sym_BSLASHglsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4677), - [anon_sym_BSLASHglsplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSplural] = ACTIONS(4677), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHglsname] = ACTIONS(4677), - [anon_sym_BSLASHGlsname] = ACTIONS(4677), - [anon_sym_BSLASHGLSname] = ACTIONS(4677), - [anon_sym_BSLASHglssymbol] = ACTIONS(4677), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4677), - [anon_sym_BSLASHglsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4677), - [anon_sym_BSLASHglsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4677), - [anon_sym_BSLASHglsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4677), - [anon_sym_BSLASHglsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4677), - [anon_sym_BSLASHglsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4677), - [anon_sym_BSLASHnewacronym] = ACTIONS(4677), - [anon_sym_BSLASHacrshort] = ACTIONS(4677), - [anon_sym_BSLASHAcrshort] = ACTIONS(4677), - [anon_sym_BSLASHACRshort] = ACTIONS(4677), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4677), - [anon_sym_BSLASHacrlong] = ACTIONS(4677), - [anon_sym_BSLASHAcrlong] = ACTIONS(4677), - [anon_sym_BSLASHACRlong] = ACTIONS(4677), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4677), - [anon_sym_BSLASHacrfull] = ACTIONS(4677), - [anon_sym_BSLASHAcrfull] = ACTIONS(4677), - [anon_sym_BSLASHACRfull] = ACTIONS(4677), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4677), - [anon_sym_BSLASHacs] = ACTIONS(4677), - [anon_sym_BSLASHAcs] = ACTIONS(4677), - [anon_sym_BSLASHacsp] = ACTIONS(4677), - [anon_sym_BSLASHAcsp] = ACTIONS(4677), - [anon_sym_BSLASHacl] = ACTIONS(4677), - [anon_sym_BSLASHAcl] = ACTIONS(4677), - [anon_sym_BSLASHaclp] = ACTIONS(4677), - [anon_sym_BSLASHAclp] = ACTIONS(4677), - [anon_sym_BSLASHacf] = ACTIONS(4677), - [anon_sym_BSLASHAcf] = ACTIONS(4677), - [anon_sym_BSLASHacfp] = ACTIONS(4677), - [anon_sym_BSLASHAcfp] = ACTIONS(4677), - [anon_sym_BSLASHac] = ACTIONS(4677), - [anon_sym_BSLASHAc] = ACTIONS(4677), - [anon_sym_BSLASHacp] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4677), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4677), - [anon_sym_BSLASHcolor] = ACTIONS(4677), - [anon_sym_BSLASHcolorbox] = ACTIONS(4677), - [anon_sym_BSLASHtextcolor] = ACTIONS(4677), - [anon_sym_BSLASHpagecolor] = ACTIONS(4677), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4677), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4677), - [anon_sym_BSLASHtext] = ACTIONS(4677), - [anon_sym_BSLASHintertext] = ACTIONS(4677), - [anon_sym_shortintertext] = ACTIONS(4677), - }, - [527] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4663), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_BSLASHpart] = ACTIONS(4663), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddpart] = ACTIONS(4663), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHchapter] = ACTIONS(4663), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddchap] = ACTIONS(4663), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsection] = ACTIONS(4663), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddsec] = ACTIONS(4663), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4881), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4884), - [anon_sym_BSLASHparagraph] = ACTIONS(4663), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4663), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHitem] = ACTIONS(4663), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [sym_word] = ACTIONS(4663), - [sym_placeholder] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym__] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4661), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4661), - [anon_sym_BSLASHbegin] = ACTIONS(4663), - [anon_sym_BSLASHusepackage] = ACTIONS(4663), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4663), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4663), - [anon_sym_BSLASHinclude] = ACTIONS(4663), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4663), - [anon_sym_BSLASHinput] = ACTIONS(4663), - [anon_sym_BSLASHsubfile] = ACTIONS(4663), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4663), - [anon_sym_BSLASHbibliography] = ACTIONS(4663), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4663), - [anon_sym_BSLASHincludesvg] = ACTIONS(4663), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4663), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4663), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4663), - [anon_sym_BSLASHimport] = ACTIONS(4663), - [anon_sym_BSLASHsubimport] = ACTIONS(4663), - [anon_sym_BSLASHinputfrom] = ACTIONS(4663), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4663), - [anon_sym_BSLASHincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHcaption] = ACTIONS(4663), - [anon_sym_BSLASHcite] = ACTIONS(4663), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCite] = ACTIONS(4663), - [anon_sym_BSLASHnocite] = ACTIONS(4663), - [anon_sym_BSLASHcitet] = ACTIONS(4663), - [anon_sym_BSLASHcitep] = ACTIONS(4663), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteauthor] = ACTIONS(4663), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4663), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitetitle] = ACTIONS(4663), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteyear] = ACTIONS(4663), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitedate] = ACTIONS(4663), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteurl] = ACTIONS(4663), - [anon_sym_BSLASHfullcite] = ACTIONS(4663), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4663), - [anon_sym_BSLASHcitealt] = ACTIONS(4663), - [anon_sym_BSLASHcitealp] = ACTIONS(4663), - [anon_sym_BSLASHcitetext] = ACTIONS(4663), - [anon_sym_BSLASHparencite] = ACTIONS(4663), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHParencite] = ACTIONS(4663), - [anon_sym_BSLASHfootcite] = ACTIONS(4663), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4663), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4663), - [anon_sym_BSLASHtextcite] = ACTIONS(4663), - [anon_sym_BSLASHTextcite] = ACTIONS(4663), - [anon_sym_BSLASHsmartcite] = ACTIONS(4663), - [anon_sym_BSLASHSmartcite] = ACTIONS(4663), - [anon_sym_BSLASHsupercite] = ACTIONS(4663), - [anon_sym_BSLASHautocite] = ACTIONS(4663), - [anon_sym_BSLASHAutocite] = ACTIONS(4663), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHvolcite] = ACTIONS(4663), - [anon_sym_BSLASHVolcite] = ACTIONS(4663), - [anon_sym_BSLASHpvolcite] = ACTIONS(4663), - [anon_sym_BSLASHPvolcite] = ACTIONS(4663), - [anon_sym_BSLASHfvolcite] = ACTIONS(4663), - [anon_sym_BSLASHftvolcite] = ACTIONS(4663), - [anon_sym_BSLASHsvolcite] = ACTIONS(4663), - [anon_sym_BSLASHSvolcite] = ACTIONS(4663), - [anon_sym_BSLASHtvolcite] = ACTIONS(4663), - [anon_sym_BSLASHTvolcite] = ACTIONS(4663), - [anon_sym_BSLASHavolcite] = ACTIONS(4663), - [anon_sym_BSLASHAvolcite] = ACTIONS(4663), - [anon_sym_BSLASHnotecite] = ACTIONS(4663), - [anon_sym_BSLASHNotecite] = ACTIONS(4663), - [anon_sym_BSLASHpnotecite] = ACTIONS(4663), - [anon_sym_BSLASHPnotecite] = ACTIONS(4663), - [anon_sym_BSLASHfnotecite] = ACTIONS(4663), - [anon_sym_BSLASHlabel] = ACTIONS(4663), - [anon_sym_BSLASHref] = ACTIONS(4663), - [anon_sym_BSLASHeqref] = ACTIONS(4663), - [anon_sym_BSLASHvref] = ACTIONS(4663), - [anon_sym_BSLASHVref] = ACTIONS(4663), - [anon_sym_BSLASHautoref] = ACTIONS(4663), - [anon_sym_BSLASHpageref] = ACTIONS(4663), - [anon_sym_BSLASHcref] = ACTIONS(4663), - [anon_sym_BSLASHCref] = ACTIONS(4663), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnameCref] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHlabelcref] = ACTIONS(4663), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCrefrange] = ACTIONS(4663), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnewlabel] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4663), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4663), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4663), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdef] = ACTIONS(4663), - [anon_sym_BSLASHlet] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4663), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4663), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4663), - [anon_sym_BSLASHgls] = ACTIONS(4663), - [anon_sym_BSLASHGls] = ACTIONS(4663), - [anon_sym_BSLASHGLS] = ACTIONS(4663), - [anon_sym_BSLASHglspl] = ACTIONS(4663), - [anon_sym_BSLASHGlspl] = ACTIONS(4663), - [anon_sym_BSLASHGLSpl] = ACTIONS(4663), - [anon_sym_BSLASHglsdisp] = ACTIONS(4663), - [anon_sym_BSLASHglslink] = ACTIONS(4663), - [anon_sym_BSLASHglstext] = ACTIONS(4663), - [anon_sym_BSLASHGlstext] = ACTIONS(4663), - [anon_sym_BSLASHGLStext] = ACTIONS(4663), - [anon_sym_BSLASHglsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4663), - [anon_sym_BSLASHglsplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSplural] = ACTIONS(4663), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHglsname] = ACTIONS(4663), - [anon_sym_BSLASHGlsname] = ACTIONS(4663), - [anon_sym_BSLASHGLSname] = ACTIONS(4663), - [anon_sym_BSLASHglssymbol] = ACTIONS(4663), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4663), - [anon_sym_BSLASHglsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4663), - [anon_sym_BSLASHglsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4663), - [anon_sym_BSLASHglsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4663), - [anon_sym_BSLASHglsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4663), - [anon_sym_BSLASHglsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4663), - [anon_sym_BSLASHnewacronym] = ACTIONS(4663), - [anon_sym_BSLASHacrshort] = ACTIONS(4663), - [anon_sym_BSLASHAcrshort] = ACTIONS(4663), - [anon_sym_BSLASHACRshort] = ACTIONS(4663), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4663), - [anon_sym_BSLASHacrlong] = ACTIONS(4663), - [anon_sym_BSLASHAcrlong] = ACTIONS(4663), - [anon_sym_BSLASHACRlong] = ACTIONS(4663), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4663), - [anon_sym_BSLASHacrfull] = ACTIONS(4663), - [anon_sym_BSLASHAcrfull] = ACTIONS(4663), - [anon_sym_BSLASHACRfull] = ACTIONS(4663), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4663), - [anon_sym_BSLASHacs] = ACTIONS(4663), - [anon_sym_BSLASHAcs] = ACTIONS(4663), - [anon_sym_BSLASHacsp] = ACTIONS(4663), - [anon_sym_BSLASHAcsp] = ACTIONS(4663), - [anon_sym_BSLASHacl] = ACTIONS(4663), - [anon_sym_BSLASHAcl] = ACTIONS(4663), - [anon_sym_BSLASHaclp] = ACTIONS(4663), - [anon_sym_BSLASHAclp] = ACTIONS(4663), - [anon_sym_BSLASHacf] = ACTIONS(4663), - [anon_sym_BSLASHAcf] = ACTIONS(4663), - [anon_sym_BSLASHacfp] = ACTIONS(4663), - [anon_sym_BSLASHAcfp] = ACTIONS(4663), - [anon_sym_BSLASHac] = ACTIONS(4663), - [anon_sym_BSLASHAc] = ACTIONS(4663), - [anon_sym_BSLASHacp] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4663), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4663), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4663), - [anon_sym_BSLASHcolor] = ACTIONS(4663), - [anon_sym_BSLASHcolorbox] = ACTIONS(4663), - [anon_sym_BSLASHtextcolor] = ACTIONS(4663), - [anon_sym_BSLASHpagecolor] = ACTIONS(4663), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4663), - [anon_sym_BSLASHtext] = ACTIONS(4663), - [anon_sym_BSLASHintertext] = ACTIONS(4663), - [anon_sym_shortintertext] = ACTIONS(4663), - }, - [528] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_BSLASHpart] = ACTIONS(4653), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddpart] = ACTIONS(4653), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHchapter] = ACTIONS(4653), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddchap] = ACTIONS(4653), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsection] = ACTIONS(4653), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddsec] = ACTIONS(4653), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHparagraph] = ACTIONS(4887), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4890), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4653), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4651), - [anon_sym_BSLASHitem] = ACTIONS(4653), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [sym_word] = ACTIONS(4653), - [sym_placeholder] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym__] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4651), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4651), - [anon_sym_BSLASHbegin] = ACTIONS(4653), - [anon_sym_BSLASHusepackage] = ACTIONS(4653), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4653), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4653), - [anon_sym_BSLASHinclude] = ACTIONS(4653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4653), - [anon_sym_BSLASHinput] = ACTIONS(4653), - [anon_sym_BSLASHsubfile] = ACTIONS(4653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4653), - [anon_sym_BSLASHbibliography] = ACTIONS(4653), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4653), - [anon_sym_BSLASHincludesvg] = ACTIONS(4653), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4653), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4653), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4653), - [anon_sym_BSLASHimport] = ACTIONS(4653), - [anon_sym_BSLASHsubimport] = ACTIONS(4653), - [anon_sym_BSLASHinputfrom] = ACTIONS(4653), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4653), - [anon_sym_BSLASHincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHcaption] = ACTIONS(4653), - [anon_sym_BSLASHcite] = ACTIONS(4653), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCite] = ACTIONS(4653), - [anon_sym_BSLASHnocite] = ACTIONS(4653), - [anon_sym_BSLASHcitet] = ACTIONS(4653), - [anon_sym_BSLASHcitep] = ACTIONS(4653), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteauthor] = ACTIONS(4653), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4653), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitetitle] = ACTIONS(4653), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteyear] = ACTIONS(4653), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitedate] = ACTIONS(4653), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteurl] = ACTIONS(4653), - [anon_sym_BSLASHfullcite] = ACTIONS(4653), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4653), - [anon_sym_BSLASHcitealt] = ACTIONS(4653), - [anon_sym_BSLASHcitealp] = ACTIONS(4653), - [anon_sym_BSLASHcitetext] = ACTIONS(4653), - [anon_sym_BSLASHparencite] = ACTIONS(4653), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHParencite] = ACTIONS(4653), - [anon_sym_BSLASHfootcite] = ACTIONS(4653), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4653), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4653), - [anon_sym_BSLASHtextcite] = ACTIONS(4653), - [anon_sym_BSLASHTextcite] = ACTIONS(4653), - [anon_sym_BSLASHsmartcite] = ACTIONS(4653), - [anon_sym_BSLASHSmartcite] = ACTIONS(4653), - [anon_sym_BSLASHsupercite] = ACTIONS(4653), - [anon_sym_BSLASHautocite] = ACTIONS(4653), - [anon_sym_BSLASHAutocite] = ACTIONS(4653), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHvolcite] = ACTIONS(4653), - [anon_sym_BSLASHVolcite] = ACTIONS(4653), - [anon_sym_BSLASHpvolcite] = ACTIONS(4653), - [anon_sym_BSLASHPvolcite] = ACTIONS(4653), - [anon_sym_BSLASHfvolcite] = ACTIONS(4653), - [anon_sym_BSLASHftvolcite] = ACTIONS(4653), - [anon_sym_BSLASHsvolcite] = ACTIONS(4653), - [anon_sym_BSLASHSvolcite] = ACTIONS(4653), - [anon_sym_BSLASHtvolcite] = ACTIONS(4653), - [anon_sym_BSLASHTvolcite] = ACTIONS(4653), - [anon_sym_BSLASHavolcite] = ACTIONS(4653), - [anon_sym_BSLASHAvolcite] = ACTIONS(4653), - [anon_sym_BSLASHnotecite] = ACTIONS(4653), - [anon_sym_BSLASHNotecite] = ACTIONS(4653), - [anon_sym_BSLASHpnotecite] = ACTIONS(4653), - [anon_sym_BSLASHPnotecite] = ACTIONS(4653), - [anon_sym_BSLASHfnotecite] = ACTIONS(4653), - [anon_sym_BSLASHlabel] = ACTIONS(4653), - [anon_sym_BSLASHref] = ACTIONS(4653), - [anon_sym_BSLASHeqref] = ACTIONS(4653), - [anon_sym_BSLASHvref] = ACTIONS(4653), - [anon_sym_BSLASHVref] = ACTIONS(4653), - [anon_sym_BSLASHautoref] = ACTIONS(4653), - [anon_sym_BSLASHpageref] = ACTIONS(4653), - [anon_sym_BSLASHcref] = ACTIONS(4653), - [anon_sym_BSLASHCref] = ACTIONS(4653), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnameCref] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHlabelcref] = ACTIONS(4653), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCrefrange] = ACTIONS(4653), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnewlabel] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4653), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4653), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4653), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdef] = ACTIONS(4653), - [anon_sym_BSLASHlet] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4653), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4653), - [anon_sym_BSLASHgls] = ACTIONS(4653), - [anon_sym_BSLASHGls] = ACTIONS(4653), - [anon_sym_BSLASHGLS] = ACTIONS(4653), - [anon_sym_BSLASHglspl] = ACTIONS(4653), - [anon_sym_BSLASHGlspl] = ACTIONS(4653), - [anon_sym_BSLASHGLSpl] = ACTIONS(4653), - [anon_sym_BSLASHglsdisp] = ACTIONS(4653), - [anon_sym_BSLASHglslink] = ACTIONS(4653), - [anon_sym_BSLASHglstext] = ACTIONS(4653), - [anon_sym_BSLASHGlstext] = ACTIONS(4653), - [anon_sym_BSLASHGLStext] = ACTIONS(4653), - [anon_sym_BSLASHglsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4653), - [anon_sym_BSLASHglsplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSplural] = ACTIONS(4653), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHglsname] = ACTIONS(4653), - [anon_sym_BSLASHGlsname] = ACTIONS(4653), - [anon_sym_BSLASHGLSname] = ACTIONS(4653), - [anon_sym_BSLASHglssymbol] = ACTIONS(4653), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4653), - [anon_sym_BSLASHglsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4653), - [anon_sym_BSLASHglsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4653), - [anon_sym_BSLASHglsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4653), - [anon_sym_BSLASHglsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4653), - [anon_sym_BSLASHglsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4653), - [anon_sym_BSLASHnewacronym] = ACTIONS(4653), - [anon_sym_BSLASHacrshort] = ACTIONS(4653), - [anon_sym_BSLASHAcrshort] = ACTIONS(4653), - [anon_sym_BSLASHACRshort] = ACTIONS(4653), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4653), - [anon_sym_BSLASHacrlong] = ACTIONS(4653), - [anon_sym_BSLASHAcrlong] = ACTIONS(4653), - [anon_sym_BSLASHACRlong] = ACTIONS(4653), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4653), - [anon_sym_BSLASHacrfull] = ACTIONS(4653), - [anon_sym_BSLASHAcrfull] = ACTIONS(4653), - [anon_sym_BSLASHACRfull] = ACTIONS(4653), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4653), - [anon_sym_BSLASHacs] = ACTIONS(4653), - [anon_sym_BSLASHAcs] = ACTIONS(4653), - [anon_sym_BSLASHacsp] = ACTIONS(4653), - [anon_sym_BSLASHAcsp] = ACTIONS(4653), - [anon_sym_BSLASHacl] = ACTIONS(4653), - [anon_sym_BSLASHAcl] = ACTIONS(4653), - [anon_sym_BSLASHaclp] = ACTIONS(4653), - [anon_sym_BSLASHAclp] = ACTIONS(4653), - [anon_sym_BSLASHacf] = ACTIONS(4653), - [anon_sym_BSLASHAcf] = ACTIONS(4653), - [anon_sym_BSLASHacfp] = ACTIONS(4653), - [anon_sym_BSLASHAcfp] = ACTIONS(4653), - [anon_sym_BSLASHac] = ACTIONS(4653), - [anon_sym_BSLASHAc] = ACTIONS(4653), - [anon_sym_BSLASHacp] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4653), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4653), - [anon_sym_BSLASHcolor] = ACTIONS(4653), - [anon_sym_BSLASHcolorbox] = ACTIONS(4653), - [anon_sym_BSLASHtextcolor] = ACTIONS(4653), - [anon_sym_BSLASHpagecolor] = ACTIONS(4653), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4653), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4653), - [anon_sym_BSLASHtext] = ACTIONS(4653), - [anon_sym_BSLASHintertext] = ACTIONS(4653), - [anon_sym_shortintertext] = ACTIONS(4653), - }, - [529] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4643), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_BSLASHpart] = ACTIONS(4643), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddpart] = ACTIONS(4643), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHchapter] = ACTIONS(4643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddchap] = ACTIONS(4643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsection] = ACTIONS(4643), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddsec] = ACTIONS(4643), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHparagraph] = ACTIONS(4643), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4893), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4896), - [anon_sym_BSLASHitem] = ACTIONS(4643), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [sym_word] = ACTIONS(4643), - [sym_placeholder] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym__] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4641), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4641), - [anon_sym_BSLASHbegin] = ACTIONS(4643), - [anon_sym_BSLASHusepackage] = ACTIONS(4643), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4643), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4643), - [anon_sym_BSLASHinclude] = ACTIONS(4643), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4643), - [anon_sym_BSLASHinput] = ACTIONS(4643), - [anon_sym_BSLASHsubfile] = ACTIONS(4643), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4643), - [anon_sym_BSLASHbibliography] = ACTIONS(4643), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4643), - [anon_sym_BSLASHincludesvg] = ACTIONS(4643), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4643), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4643), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4643), - [anon_sym_BSLASHimport] = ACTIONS(4643), - [anon_sym_BSLASHsubimport] = ACTIONS(4643), - [anon_sym_BSLASHinputfrom] = ACTIONS(4643), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4643), - [anon_sym_BSLASHincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHcaption] = ACTIONS(4643), - [anon_sym_BSLASHcite] = ACTIONS(4643), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCite] = ACTIONS(4643), - [anon_sym_BSLASHnocite] = ACTIONS(4643), - [anon_sym_BSLASHcitet] = ACTIONS(4643), - [anon_sym_BSLASHcitep] = ACTIONS(4643), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteauthor] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitetitle] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteyear] = ACTIONS(4643), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitedate] = ACTIONS(4643), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteurl] = ACTIONS(4643), - [anon_sym_BSLASHfullcite] = ACTIONS(4643), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4643), - [anon_sym_BSLASHcitealt] = ACTIONS(4643), - [anon_sym_BSLASHcitealp] = ACTIONS(4643), - [anon_sym_BSLASHcitetext] = ACTIONS(4643), - [anon_sym_BSLASHparencite] = ACTIONS(4643), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHParencite] = ACTIONS(4643), - [anon_sym_BSLASHfootcite] = ACTIONS(4643), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4643), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4643), - [anon_sym_BSLASHtextcite] = ACTIONS(4643), - [anon_sym_BSLASHTextcite] = ACTIONS(4643), - [anon_sym_BSLASHsmartcite] = ACTIONS(4643), - [anon_sym_BSLASHSmartcite] = ACTIONS(4643), - [anon_sym_BSLASHsupercite] = ACTIONS(4643), - [anon_sym_BSLASHautocite] = ACTIONS(4643), - [anon_sym_BSLASHAutocite] = ACTIONS(4643), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHvolcite] = ACTIONS(4643), - [anon_sym_BSLASHVolcite] = ACTIONS(4643), - [anon_sym_BSLASHpvolcite] = ACTIONS(4643), - [anon_sym_BSLASHPvolcite] = ACTIONS(4643), - [anon_sym_BSLASHfvolcite] = ACTIONS(4643), - [anon_sym_BSLASHftvolcite] = ACTIONS(4643), - [anon_sym_BSLASHsvolcite] = ACTIONS(4643), - [anon_sym_BSLASHSvolcite] = ACTIONS(4643), - [anon_sym_BSLASHtvolcite] = ACTIONS(4643), - [anon_sym_BSLASHTvolcite] = ACTIONS(4643), - [anon_sym_BSLASHavolcite] = ACTIONS(4643), - [anon_sym_BSLASHAvolcite] = ACTIONS(4643), - [anon_sym_BSLASHnotecite] = ACTIONS(4643), - [anon_sym_BSLASHNotecite] = ACTIONS(4643), - [anon_sym_BSLASHpnotecite] = ACTIONS(4643), - [anon_sym_BSLASHPnotecite] = ACTIONS(4643), - [anon_sym_BSLASHfnotecite] = ACTIONS(4643), - [anon_sym_BSLASHlabel] = ACTIONS(4643), - [anon_sym_BSLASHref] = ACTIONS(4643), - [anon_sym_BSLASHeqref] = ACTIONS(4643), - [anon_sym_BSLASHvref] = ACTIONS(4643), - [anon_sym_BSLASHVref] = ACTIONS(4643), - [anon_sym_BSLASHautoref] = ACTIONS(4643), - [anon_sym_BSLASHpageref] = ACTIONS(4643), - [anon_sym_BSLASHcref] = ACTIONS(4643), - [anon_sym_BSLASHCref] = ACTIONS(4643), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnameCref] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHlabelcref] = ACTIONS(4643), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCrefrange] = ACTIONS(4643), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnewlabel] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4643), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4643), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4643), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdef] = ACTIONS(4643), - [anon_sym_BSLASHlet] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4643), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4643), - [anon_sym_BSLASHgls] = ACTIONS(4643), - [anon_sym_BSLASHGls] = ACTIONS(4643), - [anon_sym_BSLASHGLS] = ACTIONS(4643), - [anon_sym_BSLASHglspl] = ACTIONS(4643), - [anon_sym_BSLASHGlspl] = ACTIONS(4643), - [anon_sym_BSLASHGLSpl] = ACTIONS(4643), - [anon_sym_BSLASHglsdisp] = ACTIONS(4643), - [anon_sym_BSLASHglslink] = ACTIONS(4643), - [anon_sym_BSLASHglstext] = ACTIONS(4643), - [anon_sym_BSLASHGlstext] = ACTIONS(4643), - [anon_sym_BSLASHGLStext] = ACTIONS(4643), - [anon_sym_BSLASHglsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4643), - [anon_sym_BSLASHglsplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSplural] = ACTIONS(4643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHglsname] = ACTIONS(4643), - [anon_sym_BSLASHGlsname] = ACTIONS(4643), - [anon_sym_BSLASHGLSname] = ACTIONS(4643), - [anon_sym_BSLASHglssymbol] = ACTIONS(4643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4643), - [anon_sym_BSLASHglsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4643), - [anon_sym_BSLASHglsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4643), - [anon_sym_BSLASHglsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4643), - [anon_sym_BSLASHglsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4643), - [anon_sym_BSLASHglsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4643), - [anon_sym_BSLASHnewacronym] = ACTIONS(4643), - [anon_sym_BSLASHacrshort] = ACTIONS(4643), - [anon_sym_BSLASHAcrshort] = ACTIONS(4643), - [anon_sym_BSLASHACRshort] = ACTIONS(4643), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4643), - [anon_sym_BSLASHacrlong] = ACTIONS(4643), - [anon_sym_BSLASHAcrlong] = ACTIONS(4643), - [anon_sym_BSLASHACRlong] = ACTIONS(4643), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4643), - [anon_sym_BSLASHacrfull] = ACTIONS(4643), - [anon_sym_BSLASHAcrfull] = ACTIONS(4643), - [anon_sym_BSLASHACRfull] = ACTIONS(4643), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4643), - [anon_sym_BSLASHacs] = ACTIONS(4643), - [anon_sym_BSLASHAcs] = ACTIONS(4643), - [anon_sym_BSLASHacsp] = ACTIONS(4643), - [anon_sym_BSLASHAcsp] = ACTIONS(4643), - [anon_sym_BSLASHacl] = ACTIONS(4643), - [anon_sym_BSLASHAcl] = ACTIONS(4643), - [anon_sym_BSLASHaclp] = ACTIONS(4643), - [anon_sym_BSLASHAclp] = ACTIONS(4643), - [anon_sym_BSLASHacf] = ACTIONS(4643), - [anon_sym_BSLASHAcf] = ACTIONS(4643), - [anon_sym_BSLASHacfp] = ACTIONS(4643), - [anon_sym_BSLASHAcfp] = ACTIONS(4643), - [anon_sym_BSLASHac] = ACTIONS(4643), - [anon_sym_BSLASHAc] = ACTIONS(4643), - [anon_sym_BSLASHacp] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4643), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4643), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4643), - [anon_sym_BSLASHcolor] = ACTIONS(4643), - [anon_sym_BSLASHcolorbox] = ACTIONS(4643), - [anon_sym_BSLASHtextcolor] = ACTIONS(4643), - [anon_sym_BSLASHpagecolor] = ACTIONS(4643), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4643), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4643), - [anon_sym_BSLASHtext] = ACTIONS(4643), - [anon_sym_BSLASHintertext] = ACTIONS(4643), - [anon_sym_shortintertext] = ACTIONS(4643), - }, - [530] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4633), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHchapter] = ACTIONS(4633), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddchap] = ACTIONS(4633), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsection] = ACTIONS(4633), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddsec] = ACTIONS(4633), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHparagraph] = ACTIONS(4633), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4633), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHitem] = ACTIONS(4899), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4631), - [sym_word] = ACTIONS(4633), - [sym_placeholder] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym__] = ACTIONS(4633), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4631), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4633), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4631), - [anon_sym_BSLASHbegin] = ACTIONS(4633), - [anon_sym_BSLASHusepackage] = ACTIONS(4633), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4633), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4633), - [anon_sym_BSLASHinclude] = ACTIONS(4633), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), - [anon_sym_BSLASHinput] = ACTIONS(4633), - [anon_sym_BSLASHsubfile] = ACTIONS(4633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4633), - [anon_sym_BSLASHbibliography] = ACTIONS(4633), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4633), - [anon_sym_BSLASHincludesvg] = ACTIONS(4633), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4633), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4633), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4633), - [anon_sym_BSLASHimport] = ACTIONS(4633), - [anon_sym_BSLASHsubimport] = ACTIONS(4633), - [anon_sym_BSLASHinputfrom] = ACTIONS(4633), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4633), - [anon_sym_BSLASHincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHcaption] = ACTIONS(4633), - [anon_sym_BSLASHcite] = ACTIONS(4633), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCite] = ACTIONS(4633), - [anon_sym_BSLASHnocite] = ACTIONS(4633), - [anon_sym_BSLASHcitet] = ACTIONS(4633), - [anon_sym_BSLASHcitep] = ACTIONS(4633), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteauthor] = ACTIONS(4633), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4633), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitetitle] = ACTIONS(4633), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteyear] = ACTIONS(4633), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitedate] = ACTIONS(4633), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteurl] = ACTIONS(4633), - [anon_sym_BSLASHfullcite] = ACTIONS(4633), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4633), - [anon_sym_BSLASHcitealt] = ACTIONS(4633), - [anon_sym_BSLASHcitealp] = ACTIONS(4633), - [anon_sym_BSLASHcitetext] = ACTIONS(4633), - [anon_sym_BSLASHparencite] = ACTIONS(4633), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHParencite] = ACTIONS(4633), - [anon_sym_BSLASHfootcite] = ACTIONS(4633), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4633), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4633), - [anon_sym_BSLASHtextcite] = ACTIONS(4633), - [anon_sym_BSLASHTextcite] = ACTIONS(4633), - [anon_sym_BSLASHsmartcite] = ACTIONS(4633), - [anon_sym_BSLASHSmartcite] = ACTIONS(4633), - [anon_sym_BSLASHsupercite] = ACTIONS(4633), - [anon_sym_BSLASHautocite] = ACTIONS(4633), - [anon_sym_BSLASHAutocite] = ACTIONS(4633), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHvolcite] = ACTIONS(4633), - [anon_sym_BSLASHVolcite] = ACTIONS(4633), - [anon_sym_BSLASHpvolcite] = ACTIONS(4633), - [anon_sym_BSLASHPvolcite] = ACTIONS(4633), - [anon_sym_BSLASHfvolcite] = ACTIONS(4633), - [anon_sym_BSLASHftvolcite] = ACTIONS(4633), - [anon_sym_BSLASHsvolcite] = ACTIONS(4633), - [anon_sym_BSLASHSvolcite] = ACTIONS(4633), - [anon_sym_BSLASHtvolcite] = ACTIONS(4633), - [anon_sym_BSLASHTvolcite] = ACTIONS(4633), - [anon_sym_BSLASHavolcite] = ACTIONS(4633), - [anon_sym_BSLASHAvolcite] = ACTIONS(4633), - [anon_sym_BSLASHnotecite] = ACTIONS(4633), - [anon_sym_BSLASHNotecite] = ACTIONS(4633), - [anon_sym_BSLASHpnotecite] = ACTIONS(4633), - [anon_sym_BSLASHPnotecite] = ACTIONS(4633), - [anon_sym_BSLASHfnotecite] = ACTIONS(4633), - [anon_sym_BSLASHlabel] = ACTIONS(4633), - [anon_sym_BSLASHref] = ACTIONS(4633), - [anon_sym_BSLASHeqref] = ACTIONS(4633), - [anon_sym_BSLASHvref] = ACTIONS(4633), - [anon_sym_BSLASHVref] = ACTIONS(4633), - [anon_sym_BSLASHautoref] = ACTIONS(4633), - [anon_sym_BSLASHpageref] = ACTIONS(4633), - [anon_sym_BSLASHcref] = ACTIONS(4633), - [anon_sym_BSLASHCref] = ACTIONS(4633), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnameCref] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHlabelcref] = ACTIONS(4633), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCrefrange] = ACTIONS(4633), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnewlabel] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4633), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4633), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4633), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdef] = ACTIONS(4633), - [anon_sym_BSLASHlet] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4633), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4633), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4633), - [anon_sym_BSLASHgls] = ACTIONS(4633), - [anon_sym_BSLASHGls] = ACTIONS(4633), - [anon_sym_BSLASHGLS] = ACTIONS(4633), - [anon_sym_BSLASHglspl] = ACTIONS(4633), - [anon_sym_BSLASHGlspl] = ACTIONS(4633), - [anon_sym_BSLASHGLSpl] = ACTIONS(4633), - [anon_sym_BSLASHglsdisp] = ACTIONS(4633), - [anon_sym_BSLASHglslink] = ACTIONS(4633), - [anon_sym_BSLASHglstext] = ACTIONS(4633), - [anon_sym_BSLASHGlstext] = ACTIONS(4633), - [anon_sym_BSLASHGLStext] = ACTIONS(4633), - [anon_sym_BSLASHglsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4633), - [anon_sym_BSLASHglsplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSplural] = ACTIONS(4633), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHglsname] = ACTIONS(4633), - [anon_sym_BSLASHGlsname] = ACTIONS(4633), - [anon_sym_BSLASHGLSname] = ACTIONS(4633), - [anon_sym_BSLASHglssymbol] = ACTIONS(4633), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4633), - [anon_sym_BSLASHglsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4633), - [anon_sym_BSLASHglsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4633), - [anon_sym_BSLASHglsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4633), - [anon_sym_BSLASHglsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4633), - [anon_sym_BSLASHglsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4633), - [anon_sym_BSLASHnewacronym] = ACTIONS(4633), - [anon_sym_BSLASHacrshort] = ACTIONS(4633), - [anon_sym_BSLASHAcrshort] = ACTIONS(4633), - [anon_sym_BSLASHACRshort] = ACTIONS(4633), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4633), - [anon_sym_BSLASHacrlong] = ACTIONS(4633), - [anon_sym_BSLASHAcrlong] = ACTIONS(4633), - [anon_sym_BSLASHACRlong] = ACTIONS(4633), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4633), - [anon_sym_BSLASHacrfull] = ACTIONS(4633), - [anon_sym_BSLASHAcrfull] = ACTIONS(4633), - [anon_sym_BSLASHACRfull] = ACTIONS(4633), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4633), - [anon_sym_BSLASHacs] = ACTIONS(4633), - [anon_sym_BSLASHAcs] = ACTIONS(4633), - [anon_sym_BSLASHacsp] = ACTIONS(4633), - [anon_sym_BSLASHAcsp] = ACTIONS(4633), - [anon_sym_BSLASHacl] = ACTIONS(4633), - [anon_sym_BSLASHAcl] = ACTIONS(4633), - [anon_sym_BSLASHaclp] = ACTIONS(4633), - [anon_sym_BSLASHAclp] = ACTIONS(4633), - [anon_sym_BSLASHacf] = ACTIONS(4633), - [anon_sym_BSLASHAcf] = ACTIONS(4633), - [anon_sym_BSLASHacfp] = ACTIONS(4633), - [anon_sym_BSLASHAcfp] = ACTIONS(4633), - [anon_sym_BSLASHac] = ACTIONS(4633), - [anon_sym_BSLASHAc] = ACTIONS(4633), - [anon_sym_BSLASHacp] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4633), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4633), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4633), - [anon_sym_BSLASHcolor] = ACTIONS(4633), - [anon_sym_BSLASHcolorbox] = ACTIONS(4633), - [anon_sym_BSLASHtextcolor] = ACTIONS(4633), - [anon_sym_BSLASHpagecolor] = ACTIONS(4633), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4633), - [anon_sym_BSLASHtext] = ACTIONS(4633), - [anon_sym_BSLASHintertext] = ACTIONS(4633), - [anon_sym_shortintertext] = ACTIONS(4633), - }, - [531] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [532] = { - [sym_curly_group] = STATE(1139), - [sym_mixed_group] = STATE(1139), - [aux_sym_generic_command_repeat1] = STATE(389), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4905), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4905), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_BSLASHpart] = ACTIONS(4613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddpart] = ACTIONS(4613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHchapter] = ACTIONS(4613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddchap] = ACTIONS(4613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsection] = ACTIONS(4613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddsec] = ACTIONS(4613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHparagraph] = ACTIONS(4613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHitem] = ACTIONS(4613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHend] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), - }, - [533] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [534] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [535] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [536] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [537] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [538] = { - [ts_builtin_sym_end] = ACTIONS(4907), - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(4911), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_BSLASHpart] = ACTIONS(4909), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddpart] = ACTIONS(4909), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHchapter] = ACTIONS(4909), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddchap] = ACTIONS(4909), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsection] = ACTIONS(4909), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddsec] = ACTIONS(4909), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHparagraph] = ACTIONS(4909), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHitem] = ACTIONS(4909), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(4913), - }, - [539] = { - [sym__enum_itemdeclaration] = STATE(197), - [sym_enum_item] = STATE(391), - [aux_sym__section_repeat8] = STATE(391), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [540] = { - [sym_curly_group] = STATE(1181), - [sym_mixed_group] = STATE(1181), - [aux_sym_generic_command_repeat1] = STATE(540), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4915), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_BSLASHpart] = ACTIONS(4619), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddpart] = ACTIONS(4619), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHchapter] = ACTIONS(4619), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddchap] = ACTIONS(4619), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsection] = ACTIONS(4619), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddsec] = ACTIONS(4619), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHparagraph] = ACTIONS(4619), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4619), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHitem] = ACTIONS(4619), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4918), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), - }, - [541] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [542] = { - [sym__paragraph_declaration] = STATE(175), - [sym_paragraph] = STATE(394), - [aux_sym__section_repeat6] = STATE(394), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [543] = { - [sym__subsubsection_declaration] = STATE(165), - [sym_subsubsection] = STATE(395), - [aux_sym__section_repeat5] = STATE(395), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [544] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(396), - [aux_sym__section_repeat4] = STATE(396), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [545] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(398), - [aux_sym__section_repeat3] = STATE(398), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(171), - [anon_sym_BSLASHaddsec] = ACTIONS(169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(171), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [546] = { - [sym__chapter_declaration] = STATE(141), - [sym_chapter] = STATE(399), - [aux_sym__section_repeat2] = STATE(399), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(167), - [anon_sym_BSLASHaddchap] = ACTIONS(165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(167), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [547] = { - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(401), - [aux_sym__section_repeat1] = STATE(401), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHaddpart] = ACTIONS(161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(163), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHend] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [548] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [549] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [550] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [551] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [552] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(392), - [aux_sym__section_repeat7] = STATE(392), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(187), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHend] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [553] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(1891), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddchap] = ACTIONS(1891), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [554] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(448), - [aux_sym__section_repeat2] = STATE(448), - [sym_command_name] = ACTIONS(1891), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1887), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(1891), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHaddsec] = ACTIONS(1891), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1891), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1887), - [anon_sym_BSLASHparagraph] = ACTIONS(1891), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1891), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1887), - [anon_sym_BSLASHitem] = ACTIONS(1891), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [sym_word] = ACTIONS(1891), - [sym_placeholder] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1887), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1887), - [anon_sym_BSLASHbegin] = ACTIONS(1891), - [anon_sym_BSLASHusepackage] = ACTIONS(1891), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1891), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1891), - [anon_sym_BSLASHinclude] = ACTIONS(1891), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1891), - [anon_sym_BSLASHinput] = ACTIONS(1891), - [anon_sym_BSLASHsubfile] = ACTIONS(1891), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1891), - [anon_sym_BSLASHbibliography] = ACTIONS(1891), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1891), - [anon_sym_BSLASHincludesvg] = ACTIONS(1891), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1891), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1891), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1891), - [anon_sym_BSLASHimport] = ACTIONS(1891), - [anon_sym_BSLASHsubimport] = ACTIONS(1891), - [anon_sym_BSLASHinputfrom] = ACTIONS(1891), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1891), - [anon_sym_BSLASHincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1891), - [anon_sym_BSLASHcaption] = ACTIONS(1891), - [anon_sym_BSLASHcite] = ACTIONS(1891), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCite] = ACTIONS(1891), - [anon_sym_BSLASHnocite] = ACTIONS(1891), - [anon_sym_BSLASHcitet] = ACTIONS(1891), - [anon_sym_BSLASHcitep] = ACTIONS(1891), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteauthor] = ACTIONS(1891), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1891), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitetitle] = ACTIONS(1891), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteyear] = ACTIONS(1891), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1887), - [anon_sym_BSLASHcitedate] = ACTIONS(1891), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1887), - [anon_sym_BSLASHciteurl] = ACTIONS(1891), - [anon_sym_BSLASHfullcite] = ACTIONS(1891), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1891), - [anon_sym_BSLASHcitealt] = ACTIONS(1891), - [anon_sym_BSLASHcitealp] = ACTIONS(1891), - [anon_sym_BSLASHcitetext] = ACTIONS(1891), - [anon_sym_BSLASHparencite] = ACTIONS(1891), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHParencite] = ACTIONS(1891), - [anon_sym_BSLASHfootcite] = ACTIONS(1891), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1891), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1891), - [anon_sym_BSLASHtextcite] = ACTIONS(1891), - [anon_sym_BSLASHTextcite] = ACTIONS(1891), - [anon_sym_BSLASHsmartcite] = ACTIONS(1891), - [anon_sym_BSLASHSmartcite] = ACTIONS(1891), - [anon_sym_BSLASHsupercite] = ACTIONS(1891), - [anon_sym_BSLASHautocite] = ACTIONS(1891), - [anon_sym_BSLASHAutocite] = ACTIONS(1891), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1887), - [anon_sym_BSLASHvolcite] = ACTIONS(1891), - [anon_sym_BSLASHVolcite] = ACTIONS(1891), - [anon_sym_BSLASHpvolcite] = ACTIONS(1891), - [anon_sym_BSLASHPvolcite] = ACTIONS(1891), - [anon_sym_BSLASHfvolcite] = ACTIONS(1891), - [anon_sym_BSLASHftvolcite] = ACTIONS(1891), - [anon_sym_BSLASHsvolcite] = ACTIONS(1891), - [anon_sym_BSLASHSvolcite] = ACTIONS(1891), - [anon_sym_BSLASHtvolcite] = ACTIONS(1891), - [anon_sym_BSLASHTvolcite] = ACTIONS(1891), - [anon_sym_BSLASHavolcite] = ACTIONS(1891), - [anon_sym_BSLASHAvolcite] = ACTIONS(1891), - [anon_sym_BSLASHnotecite] = ACTIONS(1891), - [anon_sym_BSLASHNotecite] = ACTIONS(1891), - [anon_sym_BSLASHpnotecite] = ACTIONS(1891), - [anon_sym_BSLASHPnotecite] = ACTIONS(1891), - [anon_sym_BSLASHfnotecite] = ACTIONS(1891), - [anon_sym_BSLASHlabel] = ACTIONS(1891), - [anon_sym_BSLASHref] = ACTIONS(1891), - [anon_sym_BSLASHeqref] = ACTIONS(1891), - [anon_sym_BSLASHvref] = ACTIONS(1891), - [anon_sym_BSLASHVref] = ACTIONS(1891), - [anon_sym_BSLASHautoref] = ACTIONS(1891), - [anon_sym_BSLASHpageref] = ACTIONS(1891), - [anon_sym_BSLASHcref] = ACTIONS(1891), - [anon_sym_BSLASHCref] = ACTIONS(1891), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnameCref] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1891), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1891), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1891), - [anon_sym_BSLASHlabelcref] = ACTIONS(1891), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange] = ACTIONS(1891), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHCrefrange] = ACTIONS(1891), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1887), - [anon_sym_BSLASHnewlabel] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand] = ACTIONS(1891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1887), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdef] = ACTIONS(1891), - [anon_sym_BSLASHlet] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1891), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1891), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1891), - [anon_sym_BSLASHgls] = ACTIONS(1891), - [anon_sym_BSLASHGls] = ACTIONS(1891), - [anon_sym_BSLASHGLS] = ACTIONS(1891), - [anon_sym_BSLASHglspl] = ACTIONS(1891), - [anon_sym_BSLASHGlspl] = ACTIONS(1891), - [anon_sym_BSLASHGLSpl] = ACTIONS(1891), - [anon_sym_BSLASHglsdisp] = ACTIONS(1891), - [anon_sym_BSLASHglslink] = ACTIONS(1891), - [anon_sym_BSLASHglstext] = ACTIONS(1891), - [anon_sym_BSLASHGlstext] = ACTIONS(1891), - [anon_sym_BSLASHGLStext] = ACTIONS(1891), - [anon_sym_BSLASHglsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1891), - [anon_sym_BSLASHglsplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSplural] = ACTIONS(1891), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1891), - [anon_sym_BSLASHglsname] = ACTIONS(1891), - [anon_sym_BSLASHGlsname] = ACTIONS(1891), - [anon_sym_BSLASHGLSname] = ACTIONS(1891), - [anon_sym_BSLASHglssymbol] = ACTIONS(1891), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1891), - [anon_sym_BSLASHglsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1891), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1891), - [anon_sym_BSLASHglsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1891), - [anon_sym_BSLASHglsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1891), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1891), - [anon_sym_BSLASHglsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1891), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1891), - [anon_sym_BSLASHglsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1891), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1891), - [anon_sym_BSLASHnewacronym] = ACTIONS(1891), - [anon_sym_BSLASHacrshort] = ACTIONS(1891), - [anon_sym_BSLASHAcrshort] = ACTIONS(1891), - [anon_sym_BSLASHACRshort] = ACTIONS(1891), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1891), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1891), - [anon_sym_BSLASHacrlong] = ACTIONS(1891), - [anon_sym_BSLASHAcrlong] = ACTIONS(1891), - [anon_sym_BSLASHACRlong] = ACTIONS(1891), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1891), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1891), - [anon_sym_BSLASHacrfull] = ACTIONS(1891), - [anon_sym_BSLASHAcrfull] = ACTIONS(1891), - [anon_sym_BSLASHACRfull] = ACTIONS(1891), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1891), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1891), - [anon_sym_BSLASHacs] = ACTIONS(1891), - [anon_sym_BSLASHAcs] = ACTIONS(1891), - [anon_sym_BSLASHacsp] = ACTIONS(1891), - [anon_sym_BSLASHAcsp] = ACTIONS(1891), - [anon_sym_BSLASHacl] = ACTIONS(1891), - [anon_sym_BSLASHAcl] = ACTIONS(1891), - [anon_sym_BSLASHaclp] = ACTIONS(1891), - [anon_sym_BSLASHAclp] = ACTIONS(1891), - [anon_sym_BSLASHacf] = ACTIONS(1891), - [anon_sym_BSLASHAcf] = ACTIONS(1891), - [anon_sym_BSLASHacfp] = ACTIONS(1891), - [anon_sym_BSLASHAcfp] = ACTIONS(1891), - [anon_sym_BSLASHac] = ACTIONS(1891), - [anon_sym_BSLASHAc] = ACTIONS(1891), - [anon_sym_BSLASHacp] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1891), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1891), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1891), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1891), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1891), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1891), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1891), - [anon_sym_BSLASHcolor] = ACTIONS(1891), - [anon_sym_BSLASHcolorbox] = ACTIONS(1891), - [anon_sym_BSLASHtextcolor] = ACTIONS(1891), - [anon_sym_BSLASHpagecolor] = ACTIONS(1891), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1891), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1891), - [anon_sym_BSLASHtext] = ACTIONS(1891), - [anon_sym_BSLASHintertext] = ACTIONS(1891), - [anon_sym_shortintertext] = ACTIONS(1891), - }, - [555] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [556] = { - [sym_curly_group] = STATE(1139), - [sym_mixed_group] = STATE(1139), - [aux_sym_generic_command_repeat1] = STATE(532), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4905), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4905), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_BSLASHpart] = ACTIONS(4629), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddpart] = ACTIONS(4629), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHchapter] = ACTIONS(4629), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddchap] = ACTIONS(4629), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsection] = ACTIONS(4629), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddsec] = ACTIONS(4629), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHparagraph] = ACTIONS(4629), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4629), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHitem] = ACTIONS(4629), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHend] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), - }, - [557] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1919), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [558] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(1919), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_RBRACK] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1917), - [anon_sym_BSLASHpart] = ACTIONS(1919), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddpart] = ACTIONS(1919), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1917), - [anon_sym_BSLASHchapter] = ACTIONS(1919), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddchap] = ACTIONS(1919), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsection] = ACTIONS(1919), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHaddsec] = ACTIONS(1919), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1919), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1917), - [anon_sym_BSLASHparagraph] = ACTIONS(1919), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1919), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1917), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1917), - [sym_word] = ACTIONS(1919), - [sym_placeholder] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym__] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1917), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1917), - [anon_sym_BSLASHbegin] = ACTIONS(1919), - [anon_sym_BSLASHusepackage] = ACTIONS(1919), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1919), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1919), - [anon_sym_BSLASHinclude] = ACTIONS(1919), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1919), - [anon_sym_BSLASHinput] = ACTIONS(1919), - [anon_sym_BSLASHsubfile] = ACTIONS(1919), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1919), - [anon_sym_BSLASHbibliography] = ACTIONS(1919), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1919), - [anon_sym_BSLASHincludesvg] = ACTIONS(1919), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1919), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1919), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1919), - [anon_sym_BSLASHimport] = ACTIONS(1919), - [anon_sym_BSLASHsubimport] = ACTIONS(1919), - [anon_sym_BSLASHinputfrom] = ACTIONS(1919), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1919), - [anon_sym_BSLASHincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1919), - [anon_sym_BSLASHcaption] = ACTIONS(1919), - [anon_sym_BSLASHcite] = ACTIONS(1919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCite] = ACTIONS(1919), - [anon_sym_BSLASHnocite] = ACTIONS(1919), - [anon_sym_BSLASHcitet] = ACTIONS(1919), - [anon_sym_BSLASHcitep] = ACTIONS(1919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteauthor] = ACTIONS(1919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitetitle] = ACTIONS(1919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteyear] = ACTIONS(1919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1917), - [anon_sym_BSLASHcitedate] = ACTIONS(1919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1917), - [anon_sym_BSLASHciteurl] = ACTIONS(1919), - [anon_sym_BSLASHfullcite] = ACTIONS(1919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1919), - [anon_sym_BSLASHcitealt] = ACTIONS(1919), - [anon_sym_BSLASHcitealp] = ACTIONS(1919), - [anon_sym_BSLASHcitetext] = ACTIONS(1919), - [anon_sym_BSLASHparencite] = ACTIONS(1919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHParencite] = ACTIONS(1919), - [anon_sym_BSLASHfootcite] = ACTIONS(1919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1919), - [anon_sym_BSLASHtextcite] = ACTIONS(1919), - [anon_sym_BSLASHTextcite] = ACTIONS(1919), - [anon_sym_BSLASHsmartcite] = ACTIONS(1919), - [anon_sym_BSLASHSmartcite] = ACTIONS(1919), - [anon_sym_BSLASHsupercite] = ACTIONS(1919), - [anon_sym_BSLASHautocite] = ACTIONS(1919), - [anon_sym_BSLASHAutocite] = ACTIONS(1919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1917), - [anon_sym_BSLASHvolcite] = ACTIONS(1919), - [anon_sym_BSLASHVolcite] = ACTIONS(1919), - [anon_sym_BSLASHpvolcite] = ACTIONS(1919), - [anon_sym_BSLASHPvolcite] = ACTIONS(1919), - [anon_sym_BSLASHfvolcite] = ACTIONS(1919), - [anon_sym_BSLASHftvolcite] = ACTIONS(1919), - [anon_sym_BSLASHsvolcite] = ACTIONS(1919), - [anon_sym_BSLASHSvolcite] = ACTIONS(1919), - [anon_sym_BSLASHtvolcite] = ACTIONS(1919), - [anon_sym_BSLASHTvolcite] = ACTIONS(1919), - [anon_sym_BSLASHavolcite] = ACTIONS(1919), - [anon_sym_BSLASHAvolcite] = ACTIONS(1919), - [anon_sym_BSLASHnotecite] = ACTIONS(1919), - [anon_sym_BSLASHNotecite] = ACTIONS(1919), - [anon_sym_BSLASHpnotecite] = ACTIONS(1919), - [anon_sym_BSLASHPnotecite] = ACTIONS(1919), - [anon_sym_BSLASHfnotecite] = ACTIONS(1919), - [anon_sym_BSLASHlabel] = ACTIONS(1919), - [anon_sym_BSLASHref] = ACTIONS(1919), - [anon_sym_BSLASHeqref] = ACTIONS(1919), - [anon_sym_BSLASHvref] = ACTIONS(1919), - [anon_sym_BSLASHVref] = ACTIONS(1919), - [anon_sym_BSLASHautoref] = ACTIONS(1919), - [anon_sym_BSLASHpageref] = ACTIONS(1919), - [anon_sym_BSLASHcref] = ACTIONS(1919), - [anon_sym_BSLASHCref] = ACTIONS(1919), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnameCref] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1919), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1919), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1919), - [anon_sym_BSLASHlabelcref] = ACTIONS(1919), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange] = ACTIONS(1919), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHCrefrange] = ACTIONS(1919), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1917), - [anon_sym_BSLASHnewlabel] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand] = ACTIONS(1919), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1919), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1919), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1917), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1919), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdef] = ACTIONS(1919), - [anon_sym_BSLASHlet] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1919), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1919), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1919), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1919), - [anon_sym_BSLASHgls] = ACTIONS(1919), - [anon_sym_BSLASHGls] = ACTIONS(1919), - [anon_sym_BSLASHGLS] = ACTIONS(1919), - [anon_sym_BSLASHglspl] = ACTIONS(1919), - [anon_sym_BSLASHGlspl] = ACTIONS(1919), - [anon_sym_BSLASHGLSpl] = ACTIONS(1919), - [anon_sym_BSLASHglsdisp] = ACTIONS(1919), - [anon_sym_BSLASHglslink] = ACTIONS(1919), - [anon_sym_BSLASHglstext] = ACTIONS(1919), - [anon_sym_BSLASHGlstext] = ACTIONS(1919), - [anon_sym_BSLASHGLStext] = ACTIONS(1919), - [anon_sym_BSLASHglsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1919), - [anon_sym_BSLASHglsplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSplural] = ACTIONS(1919), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1919), - [anon_sym_BSLASHglsname] = ACTIONS(1919), - [anon_sym_BSLASHGlsname] = ACTIONS(1919), - [anon_sym_BSLASHGLSname] = ACTIONS(1919), - [anon_sym_BSLASHglssymbol] = ACTIONS(1919), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1919), - [anon_sym_BSLASHglsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1919), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1919), - [anon_sym_BSLASHglsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1919), - [anon_sym_BSLASHglsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1919), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1919), - [anon_sym_BSLASHglsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1919), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1919), - [anon_sym_BSLASHglsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1919), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1919), - [anon_sym_BSLASHnewacronym] = ACTIONS(1919), - [anon_sym_BSLASHacrshort] = ACTIONS(1919), - [anon_sym_BSLASHAcrshort] = ACTIONS(1919), - [anon_sym_BSLASHACRshort] = ACTIONS(1919), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1919), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1919), - [anon_sym_BSLASHacrlong] = ACTIONS(1919), - [anon_sym_BSLASHAcrlong] = ACTIONS(1919), - [anon_sym_BSLASHACRlong] = ACTIONS(1919), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1919), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1919), - [anon_sym_BSLASHacrfull] = ACTIONS(1919), - [anon_sym_BSLASHAcrfull] = ACTIONS(1919), - [anon_sym_BSLASHACRfull] = ACTIONS(1919), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1919), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1919), - [anon_sym_BSLASHacs] = ACTIONS(1919), - [anon_sym_BSLASHAcs] = ACTIONS(1919), - [anon_sym_BSLASHacsp] = ACTIONS(1919), - [anon_sym_BSLASHAcsp] = ACTIONS(1919), - [anon_sym_BSLASHacl] = ACTIONS(1919), - [anon_sym_BSLASHAcl] = ACTIONS(1919), - [anon_sym_BSLASHaclp] = ACTIONS(1919), - [anon_sym_BSLASHAclp] = ACTIONS(1919), - [anon_sym_BSLASHacf] = ACTIONS(1919), - [anon_sym_BSLASHAcf] = ACTIONS(1919), - [anon_sym_BSLASHacfp] = ACTIONS(1919), - [anon_sym_BSLASHAcfp] = ACTIONS(1919), - [anon_sym_BSLASHac] = ACTIONS(1919), - [anon_sym_BSLASHAc] = ACTIONS(1919), - [anon_sym_BSLASHacp] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1919), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1919), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1919), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1919), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1919), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1917), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1919), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1919), - [anon_sym_BSLASHcolor] = ACTIONS(1919), - [anon_sym_BSLASHcolorbox] = ACTIONS(1919), - [anon_sym_BSLASHtextcolor] = ACTIONS(1919), - [anon_sym_BSLASHpagecolor] = ACTIONS(1919), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1919), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1919), - [anon_sym_BSLASHtext] = ACTIONS(1919), - [anon_sym_BSLASHintertext] = ACTIONS(1919), - [anon_sym_shortintertext] = ACTIONS(1919), - }, - [559] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [560] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [561] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [562] = { - [sym__chapter_declaration] = STATE(138), - [sym_chapter] = STATE(524), - [aux_sym__section_repeat2] = STATE(524), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(533), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(535), - [anon_sym_BSLASHaddchap] = ACTIONS(533), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(535), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [563] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [564] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [565] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [566] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [567] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [568] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [569] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1943), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [570] = { - [sym__section_declaration] = STATE(147), - [sym_section] = STATE(525), - [aux_sym__section_repeat3] = STATE(525), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(537), - [anon_sym_BSLASHsection_STAR] = ACTIONS(539), - [anon_sym_BSLASHaddsec] = ACTIONS(537), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(539), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [571] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [572] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [573] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [574] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [575] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [576] = { - [sym__subsection_declaration] = STATE(157), - [sym_subsection] = STATE(526), - [aux_sym__section_repeat4] = STATE(526), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(541), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(543), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [577] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [578] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [579] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [580] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [581] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(527), - [aux_sym__section_repeat5] = STATE(527), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(545), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(547), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [582] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [583] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [584] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [585] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(528), - [aux_sym__section_repeat6] = STATE(528), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(551), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [586] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [587] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [588] = { - [sym__subparagraph_declaration] = STATE(189), - [sym_subparagraph] = STATE(529), - [aux_sym__section_repeat7] = STATE(529), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(553), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(555), - [anon_sym_BSLASHitem] = ACTIONS(4703), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [589] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4703), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [590] = { - [sym__enum_itemdeclaration] = STATE(195), - [sym_enum_item] = STATE(530), - [aux_sym__section_repeat8] = STATE(530), - [sym_command_name] = ACTIONS(4707), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym_RPAREN] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_RBRACK] = ACTIONS(4705), - [anon_sym_COMMA] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_BSLASHpart] = ACTIONS(4707), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddpart] = ACTIONS(4707), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHchapter] = ACTIONS(4707), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddchap] = ACTIONS(4707), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHparagraph] = ACTIONS(4707), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4707), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHitem] = ACTIONS(557), - [anon_sym_BSLASHitem_STAR] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(4705), - [sym_word] = ACTIONS(4707), - [sym_placeholder] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_CARET] = ACTIONS(4707), - [anon_sym__] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4707), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4705), - [anon_sym_BSLASHbegin] = ACTIONS(4707), - [anon_sym_BSLASHusepackage] = ACTIONS(4707), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4707), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4707), - [anon_sym_BSLASHinclude] = ACTIONS(4707), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4707), - [anon_sym_BSLASHinput] = ACTIONS(4707), - [anon_sym_BSLASHsubfile] = ACTIONS(4707), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4707), - [anon_sym_BSLASHbibliography] = ACTIONS(4707), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4707), - [anon_sym_BSLASHincludesvg] = ACTIONS(4707), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4707), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4707), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4707), - [anon_sym_BSLASHimport] = ACTIONS(4707), - [anon_sym_BSLASHsubimport] = ACTIONS(4707), - [anon_sym_BSLASHinputfrom] = ACTIONS(4707), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4707), - [anon_sym_BSLASHincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHcaption] = ACTIONS(4707), - [anon_sym_BSLASHcite] = ACTIONS(4707), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCite] = ACTIONS(4707), - [anon_sym_BSLASHnocite] = ACTIONS(4707), - [anon_sym_BSLASHcitet] = ACTIONS(4707), - [anon_sym_BSLASHcitep] = ACTIONS(4707), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteauthor] = ACTIONS(4707), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4707), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitetitle] = ACTIONS(4707), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteyear] = ACTIONS(4707), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitedate] = ACTIONS(4707), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteurl] = ACTIONS(4707), - [anon_sym_BSLASHfullcite] = ACTIONS(4707), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4707), - [anon_sym_BSLASHcitealt] = ACTIONS(4707), - [anon_sym_BSLASHcitealp] = ACTIONS(4707), - [anon_sym_BSLASHcitetext] = ACTIONS(4707), - [anon_sym_BSLASHparencite] = ACTIONS(4707), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHParencite] = ACTIONS(4707), - [anon_sym_BSLASHfootcite] = ACTIONS(4707), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4707), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4707), - [anon_sym_BSLASHtextcite] = ACTIONS(4707), - [anon_sym_BSLASHTextcite] = ACTIONS(4707), - [anon_sym_BSLASHsmartcite] = ACTIONS(4707), - [anon_sym_BSLASHSmartcite] = ACTIONS(4707), - [anon_sym_BSLASHsupercite] = ACTIONS(4707), - [anon_sym_BSLASHautocite] = ACTIONS(4707), - [anon_sym_BSLASHAutocite] = ACTIONS(4707), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHvolcite] = ACTIONS(4707), - [anon_sym_BSLASHVolcite] = ACTIONS(4707), - [anon_sym_BSLASHpvolcite] = ACTIONS(4707), - [anon_sym_BSLASHPvolcite] = ACTIONS(4707), - [anon_sym_BSLASHfvolcite] = ACTIONS(4707), - [anon_sym_BSLASHftvolcite] = ACTIONS(4707), - [anon_sym_BSLASHsvolcite] = ACTIONS(4707), - [anon_sym_BSLASHSvolcite] = ACTIONS(4707), - [anon_sym_BSLASHtvolcite] = ACTIONS(4707), - [anon_sym_BSLASHTvolcite] = ACTIONS(4707), - [anon_sym_BSLASHavolcite] = ACTIONS(4707), - [anon_sym_BSLASHAvolcite] = ACTIONS(4707), - [anon_sym_BSLASHnotecite] = ACTIONS(4707), - [anon_sym_BSLASHNotecite] = ACTIONS(4707), - [anon_sym_BSLASHpnotecite] = ACTIONS(4707), - [anon_sym_BSLASHPnotecite] = ACTIONS(4707), - [anon_sym_BSLASHfnotecite] = ACTIONS(4707), - [anon_sym_BSLASHlabel] = ACTIONS(4707), - [anon_sym_BSLASHref] = ACTIONS(4707), - [anon_sym_BSLASHeqref] = ACTIONS(4707), - [anon_sym_BSLASHvref] = ACTIONS(4707), - [anon_sym_BSLASHVref] = ACTIONS(4707), - [anon_sym_BSLASHautoref] = ACTIONS(4707), - [anon_sym_BSLASHpageref] = ACTIONS(4707), - [anon_sym_BSLASHcref] = ACTIONS(4707), - [anon_sym_BSLASHCref] = ACTIONS(4707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnameCref] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHlabelcref] = ACTIONS(4707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCrefrange] = ACTIONS(4707), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnewlabel] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdef] = ACTIONS(4707), - [anon_sym_BSLASHlet] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4707), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4707), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), - [anon_sym_BSLASHgls] = ACTIONS(4707), - [anon_sym_BSLASHGls] = ACTIONS(4707), - [anon_sym_BSLASHGLS] = ACTIONS(4707), - [anon_sym_BSLASHglspl] = ACTIONS(4707), - [anon_sym_BSLASHGlspl] = ACTIONS(4707), - [anon_sym_BSLASHGLSpl] = ACTIONS(4707), - [anon_sym_BSLASHglsdisp] = ACTIONS(4707), - [anon_sym_BSLASHglslink] = ACTIONS(4707), - [anon_sym_BSLASHglstext] = ACTIONS(4707), - [anon_sym_BSLASHGlstext] = ACTIONS(4707), - [anon_sym_BSLASHGLStext] = ACTIONS(4707), - [anon_sym_BSLASHglsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4707), - [anon_sym_BSLASHglsplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSplural] = ACTIONS(4707), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHglsname] = ACTIONS(4707), - [anon_sym_BSLASHGlsname] = ACTIONS(4707), - [anon_sym_BSLASHGLSname] = ACTIONS(4707), - [anon_sym_BSLASHglssymbol] = ACTIONS(4707), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4707), - [anon_sym_BSLASHglsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4707), - [anon_sym_BSLASHglsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4707), - [anon_sym_BSLASHglsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4707), - [anon_sym_BSLASHglsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4707), - [anon_sym_BSLASHglsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4707), - [anon_sym_BSLASHnewacronym] = ACTIONS(4707), - [anon_sym_BSLASHacrshort] = ACTIONS(4707), - [anon_sym_BSLASHAcrshort] = ACTIONS(4707), - [anon_sym_BSLASHACRshort] = ACTIONS(4707), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4707), - [anon_sym_BSLASHacrlong] = ACTIONS(4707), - [anon_sym_BSLASHAcrlong] = ACTIONS(4707), - [anon_sym_BSLASHACRlong] = ACTIONS(4707), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4707), - [anon_sym_BSLASHacrfull] = ACTIONS(4707), - [anon_sym_BSLASHAcrfull] = ACTIONS(4707), - [anon_sym_BSLASHACRfull] = ACTIONS(4707), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4707), - [anon_sym_BSLASHacs] = ACTIONS(4707), - [anon_sym_BSLASHAcs] = ACTIONS(4707), - [anon_sym_BSLASHacsp] = ACTIONS(4707), - [anon_sym_BSLASHAcsp] = ACTIONS(4707), - [anon_sym_BSLASHacl] = ACTIONS(4707), - [anon_sym_BSLASHAcl] = ACTIONS(4707), - [anon_sym_BSLASHaclp] = ACTIONS(4707), - [anon_sym_BSLASHAclp] = ACTIONS(4707), - [anon_sym_BSLASHacf] = ACTIONS(4707), - [anon_sym_BSLASHAcf] = ACTIONS(4707), - [anon_sym_BSLASHacfp] = ACTIONS(4707), - [anon_sym_BSLASHAcfp] = ACTIONS(4707), - [anon_sym_BSLASHac] = ACTIONS(4707), - [anon_sym_BSLASHAc] = ACTIONS(4707), - [anon_sym_BSLASHacp] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4707), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4707), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4707), - [anon_sym_BSLASHcolor] = ACTIONS(4707), - [anon_sym_BSLASHcolorbox] = ACTIONS(4707), - [anon_sym_BSLASHtextcolor] = ACTIONS(4707), - [anon_sym_BSLASHpagecolor] = ACTIONS(4707), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4707), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4707), - [anon_sym_BSLASHtext] = ACTIONS(4707), - [anon_sym_BSLASHintertext] = ACTIONS(4707), - [anon_sym_shortintertext] = ACTIONS(4707), - }, - [591] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(1943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_BSLASHpart] = ACTIONS(1943), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddpart] = ACTIONS(1943), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1941), - [anon_sym_BSLASHchapter] = ACTIONS(1943), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddchap] = ACTIONS(1943), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsection] = ACTIONS(1943), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHaddsec] = ACTIONS(1943), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1941), - [anon_sym_BSLASHparagraph] = ACTIONS(1943), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1943), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1941), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [sym_placeholder] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1941), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1941), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1941), - [anon_sym_BSLASHbegin] = ACTIONS(1943), - [anon_sym_BSLASHusepackage] = ACTIONS(1943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1943), - [anon_sym_BSLASHinclude] = ACTIONS(1943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1943), - [anon_sym_BSLASHinput] = ACTIONS(1943), - [anon_sym_BSLASHsubfile] = ACTIONS(1943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1943), - [anon_sym_BSLASHbibliography] = ACTIONS(1943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1943), - [anon_sym_BSLASHincludesvg] = ACTIONS(1943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1943), - [anon_sym_BSLASHimport] = ACTIONS(1943), - [anon_sym_BSLASHsubimport] = ACTIONS(1943), - [anon_sym_BSLASHinputfrom] = ACTIONS(1943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1943), - [anon_sym_BSLASHincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1943), - [anon_sym_BSLASHcaption] = ACTIONS(1943), - [anon_sym_BSLASHcite] = ACTIONS(1943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCite] = ACTIONS(1943), - [anon_sym_BSLASHnocite] = ACTIONS(1943), - [anon_sym_BSLASHcitet] = ACTIONS(1943), - [anon_sym_BSLASHcitep] = ACTIONS(1943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteauthor] = ACTIONS(1943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitetitle] = ACTIONS(1943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteyear] = ACTIONS(1943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1941), - [anon_sym_BSLASHcitedate] = ACTIONS(1943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1941), - [anon_sym_BSLASHciteurl] = ACTIONS(1943), - [anon_sym_BSLASHfullcite] = ACTIONS(1943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1943), - [anon_sym_BSLASHcitealt] = ACTIONS(1943), - [anon_sym_BSLASHcitealp] = ACTIONS(1943), - [anon_sym_BSLASHcitetext] = ACTIONS(1943), - [anon_sym_BSLASHparencite] = ACTIONS(1943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHParencite] = ACTIONS(1943), - [anon_sym_BSLASHfootcite] = ACTIONS(1943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1943), - [anon_sym_BSLASHtextcite] = ACTIONS(1943), - [anon_sym_BSLASHTextcite] = ACTIONS(1943), - [anon_sym_BSLASHsmartcite] = ACTIONS(1943), - [anon_sym_BSLASHSmartcite] = ACTIONS(1943), - [anon_sym_BSLASHsupercite] = ACTIONS(1943), - [anon_sym_BSLASHautocite] = ACTIONS(1943), - [anon_sym_BSLASHAutocite] = ACTIONS(1943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1941), - [anon_sym_BSLASHvolcite] = ACTIONS(1943), - [anon_sym_BSLASHVolcite] = ACTIONS(1943), - [anon_sym_BSLASHpvolcite] = ACTIONS(1943), - [anon_sym_BSLASHPvolcite] = ACTIONS(1943), - [anon_sym_BSLASHfvolcite] = ACTIONS(1943), - [anon_sym_BSLASHftvolcite] = ACTIONS(1943), - [anon_sym_BSLASHsvolcite] = ACTIONS(1943), - [anon_sym_BSLASHSvolcite] = ACTIONS(1943), - [anon_sym_BSLASHtvolcite] = ACTIONS(1943), - [anon_sym_BSLASHTvolcite] = ACTIONS(1943), - [anon_sym_BSLASHavolcite] = ACTIONS(1943), - [anon_sym_BSLASHAvolcite] = ACTIONS(1943), - [anon_sym_BSLASHnotecite] = ACTIONS(1943), - [anon_sym_BSLASHNotecite] = ACTIONS(1943), - [anon_sym_BSLASHpnotecite] = ACTIONS(1943), - [anon_sym_BSLASHPnotecite] = ACTIONS(1943), - [anon_sym_BSLASHfnotecite] = ACTIONS(1943), - [anon_sym_BSLASHlabel] = ACTIONS(1943), - [anon_sym_BSLASHref] = ACTIONS(1943), - [anon_sym_BSLASHeqref] = ACTIONS(1943), - [anon_sym_BSLASHvref] = ACTIONS(1943), - [anon_sym_BSLASHVref] = ACTIONS(1943), - [anon_sym_BSLASHautoref] = ACTIONS(1943), - [anon_sym_BSLASHpageref] = ACTIONS(1943), - [anon_sym_BSLASHcref] = ACTIONS(1943), - [anon_sym_BSLASHCref] = ACTIONS(1943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnameCref] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1943), - [anon_sym_BSLASHlabelcref] = ACTIONS(1943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange] = ACTIONS(1943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHCrefrange] = ACTIONS(1943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1941), - [anon_sym_BSLASHnewlabel] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand] = ACTIONS(1943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1941), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdef] = ACTIONS(1943), - [anon_sym_BSLASHlet] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1943), - [anon_sym_BSLASHgls] = ACTIONS(1943), - [anon_sym_BSLASHGls] = ACTIONS(1943), - [anon_sym_BSLASHGLS] = ACTIONS(1943), - [anon_sym_BSLASHglspl] = ACTIONS(1943), - [anon_sym_BSLASHGlspl] = ACTIONS(1943), - [anon_sym_BSLASHGLSpl] = ACTIONS(1943), - [anon_sym_BSLASHglsdisp] = ACTIONS(1943), - [anon_sym_BSLASHglslink] = ACTIONS(1943), - [anon_sym_BSLASHglstext] = ACTIONS(1943), - [anon_sym_BSLASHGlstext] = ACTIONS(1943), - [anon_sym_BSLASHGLStext] = ACTIONS(1943), - [anon_sym_BSLASHglsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1943), - [anon_sym_BSLASHglsplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSplural] = ACTIONS(1943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1943), - [anon_sym_BSLASHglsname] = ACTIONS(1943), - [anon_sym_BSLASHGlsname] = ACTIONS(1943), - [anon_sym_BSLASHGLSname] = ACTIONS(1943), - [anon_sym_BSLASHglssymbol] = ACTIONS(1943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1943), - [anon_sym_BSLASHglsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1943), - [anon_sym_BSLASHglsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1943), - [anon_sym_BSLASHglsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1943), - [anon_sym_BSLASHglsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1943), - [anon_sym_BSLASHglsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1943), - [anon_sym_BSLASHnewacronym] = ACTIONS(1943), - [anon_sym_BSLASHacrshort] = ACTIONS(1943), - [anon_sym_BSLASHAcrshort] = ACTIONS(1943), - [anon_sym_BSLASHACRshort] = ACTIONS(1943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1943), - [anon_sym_BSLASHacrlong] = ACTIONS(1943), - [anon_sym_BSLASHAcrlong] = ACTIONS(1943), - [anon_sym_BSLASHACRlong] = ACTIONS(1943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1943), - [anon_sym_BSLASHacrfull] = ACTIONS(1943), - [anon_sym_BSLASHAcrfull] = ACTIONS(1943), - [anon_sym_BSLASHACRfull] = ACTIONS(1943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1943), - [anon_sym_BSLASHacs] = ACTIONS(1943), - [anon_sym_BSLASHAcs] = ACTIONS(1943), - [anon_sym_BSLASHacsp] = ACTIONS(1943), - [anon_sym_BSLASHAcsp] = ACTIONS(1943), - [anon_sym_BSLASHacl] = ACTIONS(1943), - [anon_sym_BSLASHAcl] = ACTIONS(1943), - [anon_sym_BSLASHaclp] = ACTIONS(1943), - [anon_sym_BSLASHAclp] = ACTIONS(1943), - [anon_sym_BSLASHacf] = ACTIONS(1943), - [anon_sym_BSLASHAcf] = ACTIONS(1943), - [anon_sym_BSLASHacfp] = ACTIONS(1943), - [anon_sym_BSLASHAcfp] = ACTIONS(1943), - [anon_sym_BSLASHac] = ACTIONS(1943), - [anon_sym_BSLASHAc] = ACTIONS(1943), - [anon_sym_BSLASHacp] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1943), - [anon_sym_BSLASHcolor] = ACTIONS(1943), - [anon_sym_BSLASHcolorbox] = ACTIONS(1943), - [anon_sym_BSLASHtextcolor] = ACTIONS(1943), - [anon_sym_BSLASHpagecolor] = ACTIONS(1943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1943), - [anon_sym_BSLASHtext] = ACTIONS(1943), - [anon_sym_BSLASHintertext] = ACTIONS(1943), - [anon_sym_shortintertext] = ACTIONS(1943), - }, - [592] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [593] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), - }, - [594] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [595] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(1961), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1959), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1959), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1959), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1959), - [sym_word] = ACTIONS(1961), - [sym_placeholder] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1959), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1959), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1959), - [anon_sym_BSLASHbegin] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(1961), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1961), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1961), - [anon_sym_BSLASHinclude] = ACTIONS(1961), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1961), - [anon_sym_BSLASHinput] = ACTIONS(1961), - [anon_sym_BSLASHsubfile] = ACTIONS(1961), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1961), - [anon_sym_BSLASHbibliography] = ACTIONS(1961), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1961), - [anon_sym_BSLASHincludesvg] = ACTIONS(1961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1961), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1961), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1961), - [anon_sym_BSLASHimport] = ACTIONS(1961), - [anon_sym_BSLASHsubimport] = ACTIONS(1961), - [anon_sym_BSLASHinputfrom] = ACTIONS(1961), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1961), - [anon_sym_BSLASHincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1961), - [anon_sym_BSLASHcaption] = ACTIONS(1961), - [anon_sym_BSLASHcite] = ACTIONS(1961), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCite] = ACTIONS(1961), - [anon_sym_BSLASHnocite] = ACTIONS(1961), - [anon_sym_BSLASHcitet] = ACTIONS(1961), - [anon_sym_BSLASHcitep] = ACTIONS(1961), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteauthor] = ACTIONS(1961), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1961), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitetitle] = ACTIONS(1961), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteyear] = ACTIONS(1961), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1959), - [anon_sym_BSLASHcitedate] = ACTIONS(1961), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1959), - [anon_sym_BSLASHciteurl] = ACTIONS(1961), - [anon_sym_BSLASHfullcite] = ACTIONS(1961), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1961), - [anon_sym_BSLASHcitealt] = ACTIONS(1961), - [anon_sym_BSLASHcitealp] = ACTIONS(1961), - [anon_sym_BSLASHcitetext] = ACTIONS(1961), - [anon_sym_BSLASHparencite] = ACTIONS(1961), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHParencite] = ACTIONS(1961), - [anon_sym_BSLASHfootcite] = ACTIONS(1961), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1961), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1961), - [anon_sym_BSLASHtextcite] = ACTIONS(1961), - [anon_sym_BSLASHTextcite] = ACTIONS(1961), - [anon_sym_BSLASHsmartcite] = ACTIONS(1961), - [anon_sym_BSLASHSmartcite] = ACTIONS(1961), - [anon_sym_BSLASHsupercite] = ACTIONS(1961), - [anon_sym_BSLASHautocite] = ACTIONS(1961), - [anon_sym_BSLASHAutocite] = ACTIONS(1961), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1959), - [anon_sym_BSLASHvolcite] = ACTIONS(1961), - [anon_sym_BSLASHVolcite] = ACTIONS(1961), - [anon_sym_BSLASHpvolcite] = ACTIONS(1961), - [anon_sym_BSLASHPvolcite] = ACTIONS(1961), - [anon_sym_BSLASHfvolcite] = ACTIONS(1961), - [anon_sym_BSLASHftvolcite] = ACTIONS(1961), - [anon_sym_BSLASHsvolcite] = ACTIONS(1961), - [anon_sym_BSLASHSvolcite] = ACTIONS(1961), - [anon_sym_BSLASHtvolcite] = ACTIONS(1961), - [anon_sym_BSLASHTvolcite] = ACTIONS(1961), - [anon_sym_BSLASHavolcite] = ACTIONS(1961), - [anon_sym_BSLASHAvolcite] = ACTIONS(1961), - [anon_sym_BSLASHnotecite] = ACTIONS(1961), - [anon_sym_BSLASHNotecite] = ACTIONS(1961), - [anon_sym_BSLASHpnotecite] = ACTIONS(1961), - [anon_sym_BSLASHPnotecite] = ACTIONS(1961), - [anon_sym_BSLASHfnotecite] = ACTIONS(1961), - [anon_sym_BSLASHlabel] = ACTIONS(1961), - [anon_sym_BSLASHref] = ACTIONS(1961), - [anon_sym_BSLASHeqref] = ACTIONS(1961), - [anon_sym_BSLASHvref] = ACTIONS(1961), - [anon_sym_BSLASHVref] = ACTIONS(1961), - [anon_sym_BSLASHautoref] = ACTIONS(1961), - [anon_sym_BSLASHpageref] = ACTIONS(1961), - [anon_sym_BSLASHcref] = ACTIONS(1961), - [anon_sym_BSLASHCref] = ACTIONS(1961), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnameCref] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1961), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1961), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1961), - [anon_sym_BSLASHlabelcref] = ACTIONS(1961), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange] = ACTIONS(1961), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHCrefrange] = ACTIONS(1961), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1959), - [anon_sym_BSLASHnewlabel] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand] = ACTIONS(1961), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1961), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1961), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1959), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1961), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdef] = ACTIONS(1961), - [anon_sym_BSLASHlet] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1961), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1961), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1961), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1961), - [anon_sym_BSLASHgls] = ACTIONS(1961), - [anon_sym_BSLASHGls] = ACTIONS(1961), - [anon_sym_BSLASHGLS] = ACTIONS(1961), - [anon_sym_BSLASHglspl] = ACTIONS(1961), - [anon_sym_BSLASHGlspl] = ACTIONS(1961), - [anon_sym_BSLASHGLSpl] = ACTIONS(1961), - [anon_sym_BSLASHglsdisp] = ACTIONS(1961), - [anon_sym_BSLASHglslink] = ACTIONS(1961), - [anon_sym_BSLASHglstext] = ACTIONS(1961), - [anon_sym_BSLASHGlstext] = ACTIONS(1961), - [anon_sym_BSLASHGLStext] = ACTIONS(1961), - [anon_sym_BSLASHglsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1961), - [anon_sym_BSLASHglsplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSplural] = ACTIONS(1961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1961), - [anon_sym_BSLASHglsname] = ACTIONS(1961), - [anon_sym_BSLASHGlsname] = ACTIONS(1961), - [anon_sym_BSLASHGLSname] = ACTIONS(1961), - [anon_sym_BSLASHglssymbol] = ACTIONS(1961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1961), - [anon_sym_BSLASHglsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1961), - [anon_sym_BSLASHglsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1961), - [anon_sym_BSLASHglsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1961), - [anon_sym_BSLASHglsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1961), - [anon_sym_BSLASHglsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1961), - [anon_sym_BSLASHnewacronym] = ACTIONS(1961), - [anon_sym_BSLASHacrshort] = ACTIONS(1961), - [anon_sym_BSLASHAcrshort] = ACTIONS(1961), - [anon_sym_BSLASHACRshort] = ACTIONS(1961), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1961), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1961), - [anon_sym_BSLASHacrlong] = ACTIONS(1961), - [anon_sym_BSLASHAcrlong] = ACTIONS(1961), - [anon_sym_BSLASHACRlong] = ACTIONS(1961), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1961), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1961), - [anon_sym_BSLASHacrfull] = ACTIONS(1961), - [anon_sym_BSLASHAcrfull] = ACTIONS(1961), - [anon_sym_BSLASHACRfull] = ACTIONS(1961), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1961), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1961), - [anon_sym_BSLASHacs] = ACTIONS(1961), - [anon_sym_BSLASHAcs] = ACTIONS(1961), - [anon_sym_BSLASHacsp] = ACTIONS(1961), - [anon_sym_BSLASHAcsp] = ACTIONS(1961), - [anon_sym_BSLASHacl] = ACTIONS(1961), - [anon_sym_BSLASHAcl] = ACTIONS(1961), - [anon_sym_BSLASHaclp] = ACTIONS(1961), - [anon_sym_BSLASHAclp] = ACTIONS(1961), - [anon_sym_BSLASHacf] = ACTIONS(1961), - [anon_sym_BSLASHAcf] = ACTIONS(1961), - [anon_sym_BSLASHacfp] = ACTIONS(1961), - [anon_sym_BSLASHAcfp] = ACTIONS(1961), - [anon_sym_BSLASHac] = ACTIONS(1961), - [anon_sym_BSLASHAc] = ACTIONS(1961), - [anon_sym_BSLASHacp] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1961), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1961), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1961), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1961), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1961), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1961), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1961), - [anon_sym_BSLASHcolor] = ACTIONS(1961), - [anon_sym_BSLASHcolorbox] = ACTIONS(1961), - [anon_sym_BSLASHtextcolor] = ACTIONS(1961), - [anon_sym_BSLASHpagecolor] = ACTIONS(1961), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1961), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1961), - [anon_sym_BSLASHtext] = ACTIONS(1961), - [anon_sym_BSLASHintertext] = ACTIONS(1961), - [anon_sym_shortintertext] = ACTIONS(1961), + [380] = { + [sym__subsection_declaration] = STATE(164), + [sym_subsection] = STATE(326), + [aux_sym__section_repeat4] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [596] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), + [381] = { + [sym__subparagraph_declaration] = STATE(194), + [sym_subparagraph] = STATE(330), + [aux_sym__section_repeat7] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -200906,13 +144386,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -200935,23 +144416,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -200959,7 +144440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -200971,8 +144452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -200999,8 +144480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -201010,18 +144491,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -201119,9 +144600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -201134,324 +144615,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(1979), [anon_sym_shortintertext] = ACTIONS(1979), }, - [597] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1979), + [382] = { + [sym_curly_group] = STATE(732), + [sym_mixed_group] = STATE(732), + [aux_sym_generic_command_repeat1] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(5335), + [sym_command_name] = ACTIONS(5337), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(5319), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5319), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_BSLASHpart] = ACTIONS(5337), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddpart] = ACTIONS(5337), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHchapter] = ACTIONS(5337), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddchap] = ACTIONS(5337), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsection] = ACTIONS(5337), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddsec] = ACTIONS(5337), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHparagraph] = ACTIONS(5337), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHitem] = ACTIONS(5337), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5335), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHbegin] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), + }, + [383] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(5339), + [sym_command_name] = ACTIONS(5341), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), - [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), - [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1979), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym__] = ACTIONS(1979), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1977), - [anon_sym_BSLASHbegin] = ACTIONS(1979), - [anon_sym_BSLASHusepackage] = ACTIONS(1979), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), - [anon_sym_BSLASHinclude] = ACTIONS(1979), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), - [anon_sym_BSLASHinput] = ACTIONS(1979), - [anon_sym_BSLASHsubfile] = ACTIONS(1979), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), - [anon_sym_BSLASHbibliography] = ACTIONS(1979), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), - [anon_sym_BSLASHincludesvg] = ACTIONS(1979), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), - [anon_sym_BSLASHimport] = ACTIONS(1979), - [anon_sym_BSLASHsubimport] = ACTIONS(1979), - [anon_sym_BSLASHinputfrom] = ACTIONS(1979), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), - [anon_sym_BSLASHincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), - [anon_sym_BSLASHcaption] = ACTIONS(1979), - [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCite] = ACTIONS(1979), - [anon_sym_BSLASHnocite] = ACTIONS(1979), - [anon_sym_BSLASHcitet] = ACTIONS(1979), - [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), - [anon_sym_BSLASHciteurl] = ACTIONS(1979), - [anon_sym_BSLASHfullcite] = ACTIONS(1979), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), - [anon_sym_BSLASHcitealt] = ACTIONS(1979), - [anon_sym_BSLASHcitealp] = ACTIONS(1979), - [anon_sym_BSLASHcitetext] = ACTIONS(1979), - [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHParencite] = ACTIONS(1979), - [anon_sym_BSLASHfootcite] = ACTIONS(1979), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), - [anon_sym_BSLASHtextcite] = ACTIONS(1979), - [anon_sym_BSLASHTextcite] = ACTIONS(1979), - [anon_sym_BSLASHsmartcite] = ACTIONS(1979), - [anon_sym_BSLASHSmartcite] = ACTIONS(1979), - [anon_sym_BSLASHsupercite] = ACTIONS(1979), - [anon_sym_BSLASHautocite] = ACTIONS(1979), - [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHvolcite] = ACTIONS(1979), - [anon_sym_BSLASHVolcite] = ACTIONS(1979), - [anon_sym_BSLASHpvolcite] = ACTIONS(1979), - [anon_sym_BSLASHPvolcite] = ACTIONS(1979), - [anon_sym_BSLASHfvolcite] = ACTIONS(1979), - [anon_sym_BSLASHftvolcite] = ACTIONS(1979), - [anon_sym_BSLASHsvolcite] = ACTIONS(1979), - [anon_sym_BSLASHSvolcite] = ACTIONS(1979), - [anon_sym_BSLASHtvolcite] = ACTIONS(1979), - [anon_sym_BSLASHTvolcite] = ACTIONS(1979), - [anon_sym_BSLASHavolcite] = ACTIONS(1979), - [anon_sym_BSLASHAvolcite] = ACTIONS(1979), - [anon_sym_BSLASHnotecite] = ACTIONS(1979), - [anon_sym_BSLASHNotecite] = ACTIONS(1979), - [anon_sym_BSLASHpnotecite] = ACTIONS(1979), - [anon_sym_BSLASHPnotecite] = ACTIONS(1979), - [anon_sym_BSLASHfnotecite] = ACTIONS(1979), - [anon_sym_BSLASHlabel] = ACTIONS(1979), - [anon_sym_BSLASHref] = ACTIONS(1979), - [anon_sym_BSLASHeqref] = ACTIONS(1979), - [anon_sym_BSLASHvref] = ACTIONS(1979), - [anon_sym_BSLASHVref] = ACTIONS(1979), - [anon_sym_BSLASHautoref] = ACTIONS(1979), - [anon_sym_BSLASHpageref] = ACTIONS(1979), - [anon_sym_BSLASHcref] = ACTIONS(1979), - [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnameCref] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), - [anon_sym_BSLASHlabelcref] = ACTIONS(1979), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdef] = ACTIONS(1979), - [anon_sym_BSLASHlet] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), - [anon_sym_BSLASHgls] = ACTIONS(1979), - [anon_sym_BSLASHGls] = ACTIONS(1979), - [anon_sym_BSLASHGLS] = ACTIONS(1979), - [anon_sym_BSLASHglspl] = ACTIONS(1979), - [anon_sym_BSLASHGlspl] = ACTIONS(1979), - [anon_sym_BSLASHGLSpl] = ACTIONS(1979), - [anon_sym_BSLASHglsdisp] = ACTIONS(1979), - [anon_sym_BSLASHglslink] = ACTIONS(1979), - [anon_sym_BSLASHglstext] = ACTIONS(1979), - [anon_sym_BSLASHGlstext] = ACTIONS(1979), - [anon_sym_BSLASHGLStext] = ACTIONS(1979), - [anon_sym_BSLASHglsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), - [anon_sym_BSLASHglsplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSplural] = ACTIONS(1979), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), - [anon_sym_BSLASHglsname] = ACTIONS(1979), - [anon_sym_BSLASHGlsname] = ACTIONS(1979), - [anon_sym_BSLASHGLSname] = ACTIONS(1979), - [anon_sym_BSLASHglssymbol] = ACTIONS(1979), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), - [anon_sym_BSLASHglsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), - [anon_sym_BSLASHglsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), - [anon_sym_BSLASHglsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), - [anon_sym_BSLASHglsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), - [anon_sym_BSLASHglsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), - [anon_sym_BSLASHnewacronym] = ACTIONS(1979), - [anon_sym_BSLASHacrshort] = ACTIONS(1979), - [anon_sym_BSLASHAcrshort] = ACTIONS(1979), - [anon_sym_BSLASHACRshort] = ACTIONS(1979), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), - [anon_sym_BSLASHacrlong] = ACTIONS(1979), - [anon_sym_BSLASHAcrlong] = ACTIONS(1979), - [anon_sym_BSLASHACRlong] = ACTIONS(1979), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), - [anon_sym_BSLASHacrfull] = ACTIONS(1979), - [anon_sym_BSLASHAcrfull] = ACTIONS(1979), - [anon_sym_BSLASHACRfull] = ACTIONS(1979), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), - [anon_sym_BSLASHacs] = ACTIONS(1979), - [anon_sym_BSLASHAcs] = ACTIONS(1979), - [anon_sym_BSLASHacsp] = ACTIONS(1979), - [anon_sym_BSLASHAcsp] = ACTIONS(1979), - [anon_sym_BSLASHacl] = ACTIONS(1979), - [anon_sym_BSLASHAcl] = ACTIONS(1979), - [anon_sym_BSLASHaclp] = ACTIONS(1979), - [anon_sym_BSLASHAclp] = ACTIONS(1979), - [anon_sym_BSLASHacf] = ACTIONS(1979), - [anon_sym_BSLASHAcf] = ACTIONS(1979), - [anon_sym_BSLASHacfp] = ACTIONS(1979), - [anon_sym_BSLASHAcfp] = ACTIONS(1979), - [anon_sym_BSLASHac] = ACTIONS(1979), - [anon_sym_BSLASHAc] = ACTIONS(1979), - [anon_sym_BSLASHacp] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), - [anon_sym_BSLASHcolor] = ACTIONS(1979), - [anon_sym_BSLASHcolorbox] = ACTIONS(1979), - [anon_sym_BSLASHtextcolor] = ACTIONS(1979), - [anon_sym_BSLASHpagecolor] = ACTIONS(1979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), - [anon_sym_BSLASHtext] = ACTIONS(1979), - [anon_sym_BSLASHintertext] = ACTIONS(1979), - [anon_sym_shortintertext] = ACTIONS(1979), + [anon_sym_BSLASHiffalse] = ACTIONS(5341), + [anon_sym_LPAREN] = ACTIONS(5339), + [anon_sym_RPAREN] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5339), + [anon_sym_RBRACK] = ACTIONS(5339), + [anon_sym_COMMA] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_BSLASHpart] = ACTIONS(5341), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddpart] = ACTIONS(5341), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHchapter] = ACTIONS(5341), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddchap] = ACTIONS(5341), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsection] = ACTIONS(5341), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddsec] = ACTIONS(5341), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHparagraph] = ACTIONS(5343), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5346), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), + [anon_sym_BSLASHitem] = ACTIONS(5341), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), + [anon_sym_LBRACE] = ACTIONS(5339), + [anon_sym_RBRACE] = ACTIONS(5339), + [sym_word] = ACTIONS(5341), + [sym_placeholder] = ACTIONS(5339), + [anon_sym_PLUS] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5341), + [anon_sym_SLASH] = ACTIONS(5341), + [anon_sym_CARET] = ACTIONS(5341), + [anon_sym__] = ACTIONS(5341), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_BANG] = ACTIONS(5341), + [anon_sym_PIPE] = ACTIONS(5341), + [anon_sym_COLON] = ACTIONS(5341), + [anon_sym_SQUOTE] = ACTIONS(5341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), + [anon_sym_DOLLAR] = ACTIONS(5341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), + [anon_sym_BSLASHbegin] = ACTIONS(5341), + [anon_sym_BSLASHtitle] = ACTIONS(5341), + [anon_sym_BSLASHauthor] = ACTIONS(5341), + [anon_sym_BSLASHusepackage] = ACTIONS(5341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), + [anon_sym_BSLASHinclude] = ACTIONS(5341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), + [anon_sym_BSLASHinput] = ACTIONS(5341), + [anon_sym_BSLASHsubfile] = ACTIONS(5341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), + [anon_sym_BSLASHbibliography] = ACTIONS(5341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), + [anon_sym_BSLASHincludesvg] = ACTIONS(5341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), + [anon_sym_BSLASHimport] = ACTIONS(5341), + [anon_sym_BSLASHsubimport] = ACTIONS(5341), + [anon_sym_BSLASHinputfrom] = ACTIONS(5341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), + [anon_sym_BSLASHincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHcaption] = ACTIONS(5341), + [anon_sym_BSLASHcite] = ACTIONS(5341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCite] = ACTIONS(5341), + [anon_sym_BSLASHnocite] = ACTIONS(5341), + [anon_sym_BSLASHcitet] = ACTIONS(5341), + [anon_sym_BSLASHcitep] = ACTIONS(5341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteauthor] = ACTIONS(5341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitetitle] = ACTIONS(5341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteyear] = ACTIONS(5341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitedate] = ACTIONS(5341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteurl] = ACTIONS(5341), + [anon_sym_BSLASHfullcite] = ACTIONS(5341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), + [anon_sym_BSLASHcitealt] = ACTIONS(5341), + [anon_sym_BSLASHcitealp] = ACTIONS(5341), + [anon_sym_BSLASHcitetext] = ACTIONS(5341), + [anon_sym_BSLASHparencite] = ACTIONS(5341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHParencite] = ACTIONS(5341), + [anon_sym_BSLASHfootcite] = ACTIONS(5341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), + [anon_sym_BSLASHtextcite] = ACTIONS(5341), + [anon_sym_BSLASHTextcite] = ACTIONS(5341), + [anon_sym_BSLASHsmartcite] = ACTIONS(5341), + [anon_sym_BSLASHSmartcite] = ACTIONS(5341), + [anon_sym_BSLASHsupercite] = ACTIONS(5341), + [anon_sym_BSLASHautocite] = ACTIONS(5341), + [anon_sym_BSLASHAutocite] = ACTIONS(5341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHvolcite] = ACTIONS(5341), + [anon_sym_BSLASHVolcite] = ACTIONS(5341), + [anon_sym_BSLASHpvolcite] = ACTIONS(5341), + [anon_sym_BSLASHPvolcite] = ACTIONS(5341), + [anon_sym_BSLASHfvolcite] = ACTIONS(5341), + [anon_sym_BSLASHftvolcite] = ACTIONS(5341), + [anon_sym_BSLASHsvolcite] = ACTIONS(5341), + [anon_sym_BSLASHSvolcite] = ACTIONS(5341), + [anon_sym_BSLASHtvolcite] = ACTIONS(5341), + [anon_sym_BSLASHTvolcite] = ACTIONS(5341), + [anon_sym_BSLASHavolcite] = ACTIONS(5341), + [anon_sym_BSLASHAvolcite] = ACTIONS(5341), + [anon_sym_BSLASHnotecite] = ACTIONS(5341), + [anon_sym_BSLASHNotecite] = ACTIONS(5341), + [anon_sym_BSLASHpnotecite] = ACTIONS(5341), + [anon_sym_BSLASHPnotecite] = ACTIONS(5341), + [anon_sym_BSLASHfnotecite] = ACTIONS(5341), + [anon_sym_BSLASHlabel] = ACTIONS(5341), + [anon_sym_BSLASHref] = ACTIONS(5341), + [anon_sym_BSLASHeqref] = ACTIONS(5341), + [anon_sym_BSLASHvref] = ACTIONS(5341), + [anon_sym_BSLASHVref] = ACTIONS(5341), + [anon_sym_BSLASHautoref] = ACTIONS(5341), + [anon_sym_BSLASHpageref] = ACTIONS(5341), + [anon_sym_BSLASHcref] = ACTIONS(5341), + [anon_sym_BSLASHCref] = ACTIONS(5341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnameCref] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHlabelcref] = ACTIONS(5341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCrefrange] = ACTIONS(5341), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnewlabel] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdef] = ACTIONS(5341), + [anon_sym_BSLASHlet] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), + [anon_sym_BSLASHgls] = ACTIONS(5341), + [anon_sym_BSLASHGls] = ACTIONS(5341), + [anon_sym_BSLASHGLS] = ACTIONS(5341), + [anon_sym_BSLASHglspl] = ACTIONS(5341), + [anon_sym_BSLASHGlspl] = ACTIONS(5341), + [anon_sym_BSLASHGLSpl] = ACTIONS(5341), + [anon_sym_BSLASHglsdisp] = ACTIONS(5341), + [anon_sym_BSLASHglslink] = ACTIONS(5341), + [anon_sym_BSLASHglstext] = ACTIONS(5341), + [anon_sym_BSLASHGlstext] = ACTIONS(5341), + [anon_sym_BSLASHGLStext] = ACTIONS(5341), + [anon_sym_BSLASHglsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), + [anon_sym_BSLASHglsplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSplural] = ACTIONS(5341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHglsname] = ACTIONS(5341), + [anon_sym_BSLASHGlsname] = ACTIONS(5341), + [anon_sym_BSLASHGLSname] = ACTIONS(5341), + [anon_sym_BSLASHglssymbol] = ACTIONS(5341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), + [anon_sym_BSLASHglsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), + [anon_sym_BSLASHglsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), + [anon_sym_BSLASHglsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), + [anon_sym_BSLASHglsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), + [anon_sym_BSLASHglsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), + [anon_sym_BSLASHnewacronym] = ACTIONS(5341), + [anon_sym_BSLASHacrshort] = ACTIONS(5341), + [anon_sym_BSLASHAcrshort] = ACTIONS(5341), + [anon_sym_BSLASHACRshort] = ACTIONS(5341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), + [anon_sym_BSLASHacrlong] = ACTIONS(5341), + [anon_sym_BSLASHAcrlong] = ACTIONS(5341), + [anon_sym_BSLASHACRlong] = ACTIONS(5341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), + [anon_sym_BSLASHacrfull] = ACTIONS(5341), + [anon_sym_BSLASHAcrfull] = ACTIONS(5341), + [anon_sym_BSLASHACRfull] = ACTIONS(5341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), + [anon_sym_BSLASHacs] = ACTIONS(5341), + [anon_sym_BSLASHAcs] = ACTIONS(5341), + [anon_sym_BSLASHacsp] = ACTIONS(5341), + [anon_sym_BSLASHAcsp] = ACTIONS(5341), + [anon_sym_BSLASHacl] = ACTIONS(5341), + [anon_sym_BSLASHAcl] = ACTIONS(5341), + [anon_sym_BSLASHaclp] = ACTIONS(5341), + [anon_sym_BSLASHAclp] = ACTIONS(5341), + [anon_sym_BSLASHacf] = ACTIONS(5341), + [anon_sym_BSLASHAcf] = ACTIONS(5341), + [anon_sym_BSLASHacfp] = ACTIONS(5341), + [anon_sym_BSLASHAcfp] = ACTIONS(5341), + [anon_sym_BSLASHac] = ACTIONS(5341), + [anon_sym_BSLASHAc] = ACTIONS(5341), + [anon_sym_BSLASHacp] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), + [anon_sym_BSLASHcolor] = ACTIONS(5341), + [anon_sym_BSLASHcolorbox] = ACTIONS(5341), + [anon_sym_BSLASHtextcolor] = ACTIONS(5341), + [anon_sym_BSLASHpagecolor] = ACTIONS(5341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHtext] = ACTIONS(5341), + [anon_sym_BSLASHintertext] = ACTIONS(5341), + [anon_sym_shortintertext] = ACTIONS(5341), }, - [598] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), + [384] = { + [sym__paragraph_declaration] = STATE(185), + [sym_paragraph] = STATE(383), + [aux_sym__section_repeat6] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), [anon_sym_BSLASHpart] = ACTIONS(1979), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddpart] = ACTIONS(1979), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), [anon_sym_BSLASHchapter] = ACTIONS(1979), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddchap] = ACTIONS(1979), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), [anon_sym_BSLASHsection] = ACTIONS(1979), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHaddsec] = ACTIONS(1979), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1977), - [anon_sym_BSLASHparagraph] = ACTIONS(1979), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1977), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(1979), - [sym_placeholder] = ACTIONS(1977), + [sym_placeholder] = ACTIONS(1975), [anon_sym_PLUS] = ACTIONS(1979), [anon_sym_DASH] = ACTIONS(1979), [anon_sym_STAR] = ACTIONS(1979), @@ -201464,13 +145232,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1979), [anon_sym_COLON] = ACTIONS(1979), [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1977), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1977), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1977), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1977), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), [anon_sym_BSLASHusepackage] = ACTIONS(1979), [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), @@ -201493,23 +145262,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), [anon_sym_BSLASHcaption] = ACTIONS(1979), [anon_sym_BSLASHcite] = ACTIONS(1979), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), [anon_sym_BSLASHCite] = ACTIONS(1979), [anon_sym_BSLASHnocite] = ACTIONS(1979), [anon_sym_BSLASHcitet] = ACTIONS(1979), [anon_sym_BSLASHcitep] = ACTIONS(1979), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1977), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteauthor] = ACTIONS(1979), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitetitle] = ACTIONS(1979), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteyear] = ACTIONS(1979), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1977), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), [anon_sym_BSLASHcitedate] = ACTIONS(1979), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), [anon_sym_BSLASHciteurl] = ACTIONS(1979), [anon_sym_BSLASHfullcite] = ACTIONS(1979), [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), @@ -201517,7 +145286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHcitealp] = ACTIONS(1979), [anon_sym_BSLASHcitetext] = ACTIONS(1979), [anon_sym_BSLASHparencite] = ACTIONS(1979), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), [anon_sym_BSLASHParencite] = ACTIONS(1979), [anon_sym_BSLASHfootcite] = ACTIONS(1979), [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), @@ -201529,8 +145298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsupercite] = ACTIONS(1979), [anon_sym_BSLASHautocite] = ACTIONS(1979), [anon_sym_BSLASHAutocite] = ACTIONS(1979), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1977), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1977), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), [anon_sym_BSLASHvolcite] = ACTIONS(1979), [anon_sym_BSLASHVolcite] = ACTIONS(1979), [anon_sym_BSLASHpvolcite] = ACTIONS(1979), @@ -201557,8 +145326,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(1979), [anon_sym_BSLASHcref] = ACTIONS(1979), [anon_sym_BSLASHCref] = ACTIONS(1979), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1977), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), [anon_sym_BSLASHnamecref] = ACTIONS(1979), [anon_sym_BSLASHnameCref] = ACTIONS(1979), [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), @@ -201568,18 +145337,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(1979), [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), [anon_sym_BSLASHcrefrange] = ACTIONS(1979), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHCrefrange] = ACTIONS(1979), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1977), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), [anon_sym_BSLASHnewlabel] = ACTIONS(1979), [anon_sym_BSLASHnewcommand] = ACTIONS(1979), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1977), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), [anon_sym_BSLASHdef] = ACTIONS(1979), [anon_sym_BSLASHlet] = ACTIONS(1979), [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), @@ -201677,9 +145446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1977), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), [anon_sym_BSLASHcolor] = ACTIONS(1979), @@ -201692,48331 +145461,14622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(1979), [anon_sym_shortintertext] = ACTIONS(1979), }, - [599] = { - [sym_curly_group] = STATE(968), - [sym_mixed_group] = STATE(968), - [aux_sym_generic_command_repeat1] = STATE(422), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_BSLASHpart] = ACTIONS(4613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddpart] = ACTIONS(4613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4611), - [anon_sym_BSLASHchapter] = ACTIONS(4613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddchap] = ACTIONS(4613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsection] = ACTIONS(4613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHaddsec] = ACTIONS(4613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4611), - [anon_sym_BSLASHparagraph] = ACTIONS(4613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4611), - [anon_sym_BSLASHitem] = ACTIONS(4613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), - }, - [600] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(1997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), - }, - [601] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(1997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASHpart] = ACTIONS(1997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddpart] = ACTIONS(1997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1995), - [anon_sym_BSLASHchapter] = ACTIONS(1997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddchap] = ACTIONS(1997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsection] = ACTIONS(1997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHaddsec] = ACTIONS(1997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1995), - [anon_sym_BSLASHparagraph] = ACTIONS(1997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1995), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [sym_placeholder] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_SLASH] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_GT] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1995), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1995), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1995), - [anon_sym_BSLASHbegin] = ACTIONS(1997), - [anon_sym_BSLASHusepackage] = ACTIONS(1997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1997), - [anon_sym_BSLASHinclude] = ACTIONS(1997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1997), - [anon_sym_BSLASHinput] = ACTIONS(1997), - [anon_sym_BSLASHsubfile] = ACTIONS(1997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1997), - [anon_sym_BSLASHbibliography] = ACTIONS(1997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1997), - [anon_sym_BSLASHincludesvg] = ACTIONS(1997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1997), - [anon_sym_BSLASHimport] = ACTIONS(1997), - [anon_sym_BSLASHsubimport] = ACTIONS(1997), - [anon_sym_BSLASHinputfrom] = ACTIONS(1997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1997), - [anon_sym_BSLASHincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1997), - [anon_sym_BSLASHcaption] = ACTIONS(1997), - [anon_sym_BSLASHcite] = ACTIONS(1997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCite] = ACTIONS(1997), - [anon_sym_BSLASHnocite] = ACTIONS(1997), - [anon_sym_BSLASHcitet] = ACTIONS(1997), - [anon_sym_BSLASHcitep] = ACTIONS(1997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteauthor] = ACTIONS(1997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitetitle] = ACTIONS(1997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteyear] = ACTIONS(1997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1995), - [anon_sym_BSLASHcitedate] = ACTIONS(1997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1995), - [anon_sym_BSLASHciteurl] = ACTIONS(1997), - [anon_sym_BSLASHfullcite] = ACTIONS(1997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1997), - [anon_sym_BSLASHcitealt] = ACTIONS(1997), - [anon_sym_BSLASHcitealp] = ACTIONS(1997), - [anon_sym_BSLASHcitetext] = ACTIONS(1997), - [anon_sym_BSLASHparencite] = ACTIONS(1997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHParencite] = ACTIONS(1997), - [anon_sym_BSLASHfootcite] = ACTIONS(1997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1997), - [anon_sym_BSLASHtextcite] = ACTIONS(1997), - [anon_sym_BSLASHTextcite] = ACTIONS(1997), - [anon_sym_BSLASHsmartcite] = ACTIONS(1997), - [anon_sym_BSLASHSmartcite] = ACTIONS(1997), - [anon_sym_BSLASHsupercite] = ACTIONS(1997), - [anon_sym_BSLASHautocite] = ACTIONS(1997), - [anon_sym_BSLASHAutocite] = ACTIONS(1997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1995), - [anon_sym_BSLASHvolcite] = ACTIONS(1997), - [anon_sym_BSLASHVolcite] = ACTIONS(1997), - [anon_sym_BSLASHpvolcite] = ACTIONS(1997), - [anon_sym_BSLASHPvolcite] = ACTIONS(1997), - [anon_sym_BSLASHfvolcite] = ACTIONS(1997), - [anon_sym_BSLASHftvolcite] = ACTIONS(1997), - [anon_sym_BSLASHsvolcite] = ACTIONS(1997), - [anon_sym_BSLASHSvolcite] = ACTIONS(1997), - [anon_sym_BSLASHtvolcite] = ACTIONS(1997), - [anon_sym_BSLASHTvolcite] = ACTIONS(1997), - [anon_sym_BSLASHavolcite] = ACTIONS(1997), - [anon_sym_BSLASHAvolcite] = ACTIONS(1997), - [anon_sym_BSLASHnotecite] = ACTIONS(1997), - [anon_sym_BSLASHNotecite] = ACTIONS(1997), - [anon_sym_BSLASHpnotecite] = ACTIONS(1997), - [anon_sym_BSLASHPnotecite] = ACTIONS(1997), - [anon_sym_BSLASHfnotecite] = ACTIONS(1997), - [anon_sym_BSLASHlabel] = ACTIONS(1997), - [anon_sym_BSLASHref] = ACTIONS(1997), - [anon_sym_BSLASHeqref] = ACTIONS(1997), - [anon_sym_BSLASHvref] = ACTIONS(1997), - [anon_sym_BSLASHVref] = ACTIONS(1997), - [anon_sym_BSLASHautoref] = ACTIONS(1997), - [anon_sym_BSLASHpageref] = ACTIONS(1997), - [anon_sym_BSLASHcref] = ACTIONS(1997), - [anon_sym_BSLASHCref] = ACTIONS(1997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnameCref] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1997), - [anon_sym_BSLASHlabelcref] = ACTIONS(1997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange] = ACTIONS(1997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHCrefrange] = ACTIONS(1997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1995), - [anon_sym_BSLASHnewlabel] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand] = ACTIONS(1997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdef] = ACTIONS(1997), - [anon_sym_BSLASHlet] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1997), - [anon_sym_BSLASHgls] = ACTIONS(1997), - [anon_sym_BSLASHGls] = ACTIONS(1997), - [anon_sym_BSLASHGLS] = ACTIONS(1997), - [anon_sym_BSLASHglspl] = ACTIONS(1997), - [anon_sym_BSLASHGlspl] = ACTIONS(1997), - [anon_sym_BSLASHGLSpl] = ACTIONS(1997), - [anon_sym_BSLASHglsdisp] = ACTIONS(1997), - [anon_sym_BSLASHglslink] = ACTIONS(1997), - [anon_sym_BSLASHglstext] = ACTIONS(1997), - [anon_sym_BSLASHGlstext] = ACTIONS(1997), - [anon_sym_BSLASHGLStext] = ACTIONS(1997), - [anon_sym_BSLASHglsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1997), - [anon_sym_BSLASHglsplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSplural] = ACTIONS(1997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1997), - [anon_sym_BSLASHglsname] = ACTIONS(1997), - [anon_sym_BSLASHGlsname] = ACTIONS(1997), - [anon_sym_BSLASHGLSname] = ACTIONS(1997), - [anon_sym_BSLASHglssymbol] = ACTIONS(1997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1997), - [anon_sym_BSLASHglsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1997), - [anon_sym_BSLASHglsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1997), - [anon_sym_BSLASHglsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1997), - [anon_sym_BSLASHglsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1997), - [anon_sym_BSLASHglsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1997), - [anon_sym_BSLASHnewacronym] = ACTIONS(1997), - [anon_sym_BSLASHacrshort] = ACTIONS(1997), - [anon_sym_BSLASHAcrshort] = ACTIONS(1997), - [anon_sym_BSLASHACRshort] = ACTIONS(1997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1997), - [anon_sym_BSLASHacrlong] = ACTIONS(1997), - [anon_sym_BSLASHAcrlong] = ACTIONS(1997), - [anon_sym_BSLASHACRlong] = ACTIONS(1997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1997), - [anon_sym_BSLASHacrfull] = ACTIONS(1997), - [anon_sym_BSLASHAcrfull] = ACTIONS(1997), - [anon_sym_BSLASHACRfull] = ACTIONS(1997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1997), - [anon_sym_BSLASHacs] = ACTIONS(1997), - [anon_sym_BSLASHAcs] = ACTIONS(1997), - [anon_sym_BSLASHacsp] = ACTIONS(1997), - [anon_sym_BSLASHAcsp] = ACTIONS(1997), - [anon_sym_BSLASHacl] = ACTIONS(1997), - [anon_sym_BSLASHAcl] = ACTIONS(1997), - [anon_sym_BSLASHaclp] = ACTIONS(1997), - [anon_sym_BSLASHAclp] = ACTIONS(1997), - [anon_sym_BSLASHacf] = ACTIONS(1997), - [anon_sym_BSLASHAcf] = ACTIONS(1997), - [anon_sym_BSLASHacfp] = ACTIONS(1997), - [anon_sym_BSLASHAcfp] = ACTIONS(1997), - [anon_sym_BSLASHac] = ACTIONS(1997), - [anon_sym_BSLASHAc] = ACTIONS(1997), - [anon_sym_BSLASHacp] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1997), - [anon_sym_BSLASHcolor] = ACTIONS(1997), - [anon_sym_BSLASHcolorbox] = ACTIONS(1997), - [anon_sym_BSLASHtextcolor] = ACTIONS(1997), - [anon_sym_BSLASHpagecolor] = ACTIONS(1997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1997), - [anon_sym_BSLASHtext] = ACTIONS(1997), - [anon_sym_BSLASHintertext] = ACTIONS(1997), - [anon_sym_shortintertext] = ACTIONS(1997), - }, - [602] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(2015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_BSLASHpart] = ACTIONS(2015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddpart] = ACTIONS(2015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2013), - [anon_sym_BSLASHchapter] = ACTIONS(2015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddchap] = ACTIONS(2015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsection] = ACTIONS(2015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHaddsec] = ACTIONS(2015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2013), - [anon_sym_BSLASHparagraph] = ACTIONS(2015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2013), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(2013), - [sym_word] = ACTIONS(2015), - [sym_placeholder] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym__] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2013), - [anon_sym_BSLASHbegin] = ACTIONS(2015), - [anon_sym_BSLASHusepackage] = ACTIONS(2015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2015), - [anon_sym_BSLASHinclude] = ACTIONS(2015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2015), - [anon_sym_BSLASHinput] = ACTIONS(2015), - [anon_sym_BSLASHsubfile] = ACTIONS(2015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2015), - [anon_sym_BSLASHbibliography] = ACTIONS(2015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2015), - [anon_sym_BSLASHincludesvg] = ACTIONS(2015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2015), - [anon_sym_BSLASHimport] = ACTIONS(2015), - [anon_sym_BSLASHsubimport] = ACTIONS(2015), - [anon_sym_BSLASHinputfrom] = ACTIONS(2015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2015), - [anon_sym_BSLASHincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2015), - [anon_sym_BSLASHcaption] = ACTIONS(2015), - [anon_sym_BSLASHcite] = ACTIONS(2015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCite] = ACTIONS(2015), - [anon_sym_BSLASHnocite] = ACTIONS(2015), - [anon_sym_BSLASHcitet] = ACTIONS(2015), - [anon_sym_BSLASHcitep] = ACTIONS(2015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteauthor] = ACTIONS(2015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitetitle] = ACTIONS(2015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteyear] = ACTIONS(2015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2013), - [anon_sym_BSLASHcitedate] = ACTIONS(2015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2013), - [anon_sym_BSLASHciteurl] = ACTIONS(2015), - [anon_sym_BSLASHfullcite] = ACTIONS(2015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2015), - [anon_sym_BSLASHcitealt] = ACTIONS(2015), - [anon_sym_BSLASHcitealp] = ACTIONS(2015), - [anon_sym_BSLASHcitetext] = ACTIONS(2015), - [anon_sym_BSLASHparencite] = ACTIONS(2015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHParencite] = ACTIONS(2015), - [anon_sym_BSLASHfootcite] = ACTIONS(2015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2015), - [anon_sym_BSLASHtextcite] = ACTIONS(2015), - [anon_sym_BSLASHTextcite] = ACTIONS(2015), - [anon_sym_BSLASHsmartcite] = ACTIONS(2015), - [anon_sym_BSLASHSmartcite] = ACTIONS(2015), - [anon_sym_BSLASHsupercite] = ACTIONS(2015), - [anon_sym_BSLASHautocite] = ACTIONS(2015), - [anon_sym_BSLASHAutocite] = ACTIONS(2015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2013), - [anon_sym_BSLASHvolcite] = ACTIONS(2015), - [anon_sym_BSLASHVolcite] = ACTIONS(2015), - [anon_sym_BSLASHpvolcite] = ACTIONS(2015), - [anon_sym_BSLASHPvolcite] = ACTIONS(2015), - [anon_sym_BSLASHfvolcite] = ACTIONS(2015), - [anon_sym_BSLASHftvolcite] = ACTIONS(2015), - [anon_sym_BSLASHsvolcite] = ACTIONS(2015), - [anon_sym_BSLASHSvolcite] = ACTIONS(2015), - [anon_sym_BSLASHtvolcite] = ACTIONS(2015), - [anon_sym_BSLASHTvolcite] = ACTIONS(2015), - [anon_sym_BSLASHavolcite] = ACTIONS(2015), - [anon_sym_BSLASHAvolcite] = ACTIONS(2015), - [anon_sym_BSLASHnotecite] = ACTIONS(2015), - [anon_sym_BSLASHNotecite] = ACTIONS(2015), - [anon_sym_BSLASHpnotecite] = ACTIONS(2015), - [anon_sym_BSLASHPnotecite] = ACTIONS(2015), - [anon_sym_BSLASHfnotecite] = ACTIONS(2015), - [anon_sym_BSLASHlabel] = ACTIONS(2015), - [anon_sym_BSLASHref] = ACTIONS(2015), - [anon_sym_BSLASHeqref] = ACTIONS(2015), - [anon_sym_BSLASHvref] = ACTIONS(2015), - [anon_sym_BSLASHVref] = ACTIONS(2015), - [anon_sym_BSLASHautoref] = ACTIONS(2015), - [anon_sym_BSLASHpageref] = ACTIONS(2015), - [anon_sym_BSLASHcref] = ACTIONS(2015), - [anon_sym_BSLASHCref] = ACTIONS(2015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnameCref] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2015), - [anon_sym_BSLASHlabelcref] = ACTIONS(2015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange] = ACTIONS(2015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHCrefrange] = ACTIONS(2015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2013), - [anon_sym_BSLASHnewlabel] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand] = ACTIONS(2015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdef] = ACTIONS(2015), - [anon_sym_BSLASHlet] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2015), - [anon_sym_BSLASHgls] = ACTIONS(2015), - [anon_sym_BSLASHGls] = ACTIONS(2015), - [anon_sym_BSLASHGLS] = ACTIONS(2015), - [anon_sym_BSLASHglspl] = ACTIONS(2015), - [anon_sym_BSLASHGlspl] = ACTIONS(2015), - [anon_sym_BSLASHGLSpl] = ACTIONS(2015), - [anon_sym_BSLASHglsdisp] = ACTIONS(2015), - [anon_sym_BSLASHglslink] = ACTIONS(2015), - [anon_sym_BSLASHglstext] = ACTIONS(2015), - [anon_sym_BSLASHGlstext] = ACTIONS(2015), - [anon_sym_BSLASHGLStext] = ACTIONS(2015), - [anon_sym_BSLASHglsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2015), - [anon_sym_BSLASHglsplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSplural] = ACTIONS(2015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2015), - [anon_sym_BSLASHglsname] = ACTIONS(2015), - [anon_sym_BSLASHGlsname] = ACTIONS(2015), - [anon_sym_BSLASHGLSname] = ACTIONS(2015), - [anon_sym_BSLASHglssymbol] = ACTIONS(2015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2015), - [anon_sym_BSLASHglsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2015), - [anon_sym_BSLASHglsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2015), - [anon_sym_BSLASHglsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2015), - [anon_sym_BSLASHglsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2015), - [anon_sym_BSLASHglsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2015), - [anon_sym_BSLASHnewacronym] = ACTIONS(2015), - [anon_sym_BSLASHacrshort] = ACTIONS(2015), - [anon_sym_BSLASHAcrshort] = ACTIONS(2015), - [anon_sym_BSLASHACRshort] = ACTIONS(2015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2015), - [anon_sym_BSLASHacrlong] = ACTIONS(2015), - [anon_sym_BSLASHAcrlong] = ACTIONS(2015), - [anon_sym_BSLASHACRlong] = ACTIONS(2015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2015), - [anon_sym_BSLASHacrfull] = ACTIONS(2015), - [anon_sym_BSLASHAcrfull] = ACTIONS(2015), - [anon_sym_BSLASHACRfull] = ACTIONS(2015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2015), - [anon_sym_BSLASHacs] = ACTIONS(2015), - [anon_sym_BSLASHAcs] = ACTIONS(2015), - [anon_sym_BSLASHacsp] = ACTIONS(2015), - [anon_sym_BSLASHAcsp] = ACTIONS(2015), - [anon_sym_BSLASHacl] = ACTIONS(2015), - [anon_sym_BSLASHAcl] = ACTIONS(2015), - [anon_sym_BSLASHaclp] = ACTIONS(2015), - [anon_sym_BSLASHAclp] = ACTIONS(2015), - [anon_sym_BSLASHacf] = ACTIONS(2015), - [anon_sym_BSLASHAcf] = ACTIONS(2015), - [anon_sym_BSLASHacfp] = ACTIONS(2015), - [anon_sym_BSLASHAcfp] = ACTIONS(2015), - [anon_sym_BSLASHac] = ACTIONS(2015), - [anon_sym_BSLASHAc] = ACTIONS(2015), - [anon_sym_BSLASHacp] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2015), - [anon_sym_BSLASHcolor] = ACTIONS(2015), - [anon_sym_BSLASHcolorbox] = ACTIONS(2015), - [anon_sym_BSLASHtextcolor] = ACTIONS(2015), - [anon_sym_BSLASHpagecolor] = ACTIONS(2015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2015), - [anon_sym_BSLASHtext] = ACTIONS(2015), - [anon_sym_BSLASHintertext] = ACTIONS(2015), - [anon_sym_shortintertext] = ACTIONS(2015), - }, - [603] = { - [sym__part_declaration] = STATE(128), - [sym_part] = STATE(603), - [aux_sym__section_repeat1] = STATE(603), - [sym_command_name] = ACTIONS(4731), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_RPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_RBRACK] = ACTIONS(4729), - [anon_sym_COMMA] = ACTIONS(4729), - [anon_sym_EQ] = ACTIONS(4729), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4926), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4926), - [anon_sym_BSLASHchapter] = ACTIONS(4731), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddchap] = ACTIONS(4731), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsection] = ACTIONS(4731), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHaddsec] = ACTIONS(4731), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4731), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4729), - [anon_sym_BSLASHparagraph] = ACTIONS(4731), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4729), - [anon_sym_BSLASHitem] = ACTIONS(4731), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [sym_word] = ACTIONS(4731), - [sym_placeholder] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_CARET] = ACTIONS(4731), - [anon_sym__] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4731), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4729), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4729), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4729), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4729), - [anon_sym_BSLASHbegin] = ACTIONS(4731), - [anon_sym_BSLASHusepackage] = ACTIONS(4731), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4731), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4731), - [anon_sym_BSLASHinclude] = ACTIONS(4731), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4731), - [anon_sym_BSLASHinput] = ACTIONS(4731), - [anon_sym_BSLASHsubfile] = ACTIONS(4731), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4731), - [anon_sym_BSLASHbibliography] = ACTIONS(4731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4731), - [anon_sym_BSLASHincludesvg] = ACTIONS(4731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4731), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4731), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4731), - [anon_sym_BSLASHimport] = ACTIONS(4731), - [anon_sym_BSLASHsubimport] = ACTIONS(4731), - [anon_sym_BSLASHinputfrom] = ACTIONS(4731), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4731), - [anon_sym_BSLASHincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4731), - [anon_sym_BSLASHcaption] = ACTIONS(4731), - [anon_sym_BSLASHcite] = ACTIONS(4731), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCite] = ACTIONS(4731), - [anon_sym_BSLASHnocite] = ACTIONS(4731), - [anon_sym_BSLASHcitet] = ACTIONS(4731), - [anon_sym_BSLASHcitep] = ACTIONS(4731), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteauthor] = ACTIONS(4731), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4731), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitetitle] = ACTIONS(4731), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteyear] = ACTIONS(4731), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4729), - [anon_sym_BSLASHcitedate] = ACTIONS(4731), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4729), - [anon_sym_BSLASHciteurl] = ACTIONS(4731), - [anon_sym_BSLASHfullcite] = ACTIONS(4731), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4731), - [anon_sym_BSLASHcitealt] = ACTIONS(4731), - [anon_sym_BSLASHcitealp] = ACTIONS(4731), - [anon_sym_BSLASHcitetext] = ACTIONS(4731), - [anon_sym_BSLASHparencite] = ACTIONS(4731), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHParencite] = ACTIONS(4731), - [anon_sym_BSLASHfootcite] = ACTIONS(4731), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4731), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4731), - [anon_sym_BSLASHtextcite] = ACTIONS(4731), - [anon_sym_BSLASHTextcite] = ACTIONS(4731), - [anon_sym_BSLASHsmartcite] = ACTIONS(4731), - [anon_sym_BSLASHSmartcite] = ACTIONS(4731), - [anon_sym_BSLASHsupercite] = ACTIONS(4731), - [anon_sym_BSLASHautocite] = ACTIONS(4731), - [anon_sym_BSLASHAutocite] = ACTIONS(4731), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4729), - [anon_sym_BSLASHvolcite] = ACTIONS(4731), - [anon_sym_BSLASHVolcite] = ACTIONS(4731), - [anon_sym_BSLASHpvolcite] = ACTIONS(4731), - [anon_sym_BSLASHPvolcite] = ACTIONS(4731), - [anon_sym_BSLASHfvolcite] = ACTIONS(4731), - [anon_sym_BSLASHftvolcite] = ACTIONS(4731), - [anon_sym_BSLASHsvolcite] = ACTIONS(4731), - [anon_sym_BSLASHSvolcite] = ACTIONS(4731), - [anon_sym_BSLASHtvolcite] = ACTIONS(4731), - [anon_sym_BSLASHTvolcite] = ACTIONS(4731), - [anon_sym_BSLASHavolcite] = ACTIONS(4731), - [anon_sym_BSLASHAvolcite] = ACTIONS(4731), - [anon_sym_BSLASHnotecite] = ACTIONS(4731), - [anon_sym_BSLASHNotecite] = ACTIONS(4731), - [anon_sym_BSLASHpnotecite] = ACTIONS(4731), - [anon_sym_BSLASHPnotecite] = ACTIONS(4731), - [anon_sym_BSLASHfnotecite] = ACTIONS(4731), - [anon_sym_BSLASHlabel] = ACTIONS(4731), - [anon_sym_BSLASHref] = ACTIONS(4731), - [anon_sym_BSLASHeqref] = ACTIONS(4731), - [anon_sym_BSLASHvref] = ACTIONS(4731), - [anon_sym_BSLASHVref] = ACTIONS(4731), - [anon_sym_BSLASHautoref] = ACTIONS(4731), - [anon_sym_BSLASHpageref] = ACTIONS(4731), - [anon_sym_BSLASHcref] = ACTIONS(4731), - [anon_sym_BSLASHCref] = ACTIONS(4731), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnameCref] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4731), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4731), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4731), - [anon_sym_BSLASHlabelcref] = ACTIONS(4731), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange] = ACTIONS(4731), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHCrefrange] = ACTIONS(4731), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4729), - [anon_sym_BSLASHnewlabel] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand] = ACTIONS(4731), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4731), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4731), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4729), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4731), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdef] = ACTIONS(4731), - [anon_sym_BSLASHlet] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4731), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4731), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4731), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4731), - [anon_sym_BSLASHgls] = ACTIONS(4731), - [anon_sym_BSLASHGls] = ACTIONS(4731), - [anon_sym_BSLASHGLS] = ACTIONS(4731), - [anon_sym_BSLASHglspl] = ACTIONS(4731), - [anon_sym_BSLASHGlspl] = ACTIONS(4731), - [anon_sym_BSLASHGLSpl] = ACTIONS(4731), - [anon_sym_BSLASHglsdisp] = ACTIONS(4731), - [anon_sym_BSLASHglslink] = ACTIONS(4731), - [anon_sym_BSLASHglstext] = ACTIONS(4731), - [anon_sym_BSLASHGlstext] = ACTIONS(4731), - [anon_sym_BSLASHGLStext] = ACTIONS(4731), - [anon_sym_BSLASHglsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4731), - [anon_sym_BSLASHglsplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSplural] = ACTIONS(4731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4731), - [anon_sym_BSLASHglsname] = ACTIONS(4731), - [anon_sym_BSLASHGlsname] = ACTIONS(4731), - [anon_sym_BSLASHGLSname] = ACTIONS(4731), - [anon_sym_BSLASHglssymbol] = ACTIONS(4731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4731), - [anon_sym_BSLASHglsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4731), - [anon_sym_BSLASHglsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4731), - [anon_sym_BSLASHglsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4731), - [anon_sym_BSLASHglsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4731), - [anon_sym_BSLASHglsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4731), - [anon_sym_BSLASHnewacronym] = ACTIONS(4731), - [anon_sym_BSLASHacrshort] = ACTIONS(4731), - [anon_sym_BSLASHAcrshort] = ACTIONS(4731), - [anon_sym_BSLASHACRshort] = ACTIONS(4731), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4731), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4731), - [anon_sym_BSLASHacrlong] = ACTIONS(4731), - [anon_sym_BSLASHAcrlong] = ACTIONS(4731), - [anon_sym_BSLASHACRlong] = ACTIONS(4731), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4731), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4731), - [anon_sym_BSLASHacrfull] = ACTIONS(4731), - [anon_sym_BSLASHAcrfull] = ACTIONS(4731), - [anon_sym_BSLASHACRfull] = ACTIONS(4731), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4731), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4731), - [anon_sym_BSLASHacs] = ACTIONS(4731), - [anon_sym_BSLASHAcs] = ACTIONS(4731), - [anon_sym_BSLASHacsp] = ACTIONS(4731), - [anon_sym_BSLASHAcsp] = ACTIONS(4731), - [anon_sym_BSLASHacl] = ACTIONS(4731), - [anon_sym_BSLASHAcl] = ACTIONS(4731), - [anon_sym_BSLASHaclp] = ACTIONS(4731), - [anon_sym_BSLASHAclp] = ACTIONS(4731), - [anon_sym_BSLASHacf] = ACTIONS(4731), - [anon_sym_BSLASHAcf] = ACTIONS(4731), - [anon_sym_BSLASHacfp] = ACTIONS(4731), - [anon_sym_BSLASHAcfp] = ACTIONS(4731), - [anon_sym_BSLASHac] = ACTIONS(4731), - [anon_sym_BSLASHAc] = ACTIONS(4731), - [anon_sym_BSLASHacp] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4731), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4731), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4731), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4731), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4731), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4729), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4731), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4731), - [anon_sym_BSLASHcolor] = ACTIONS(4731), - [anon_sym_BSLASHcolorbox] = ACTIONS(4731), - [anon_sym_BSLASHtextcolor] = ACTIONS(4731), - [anon_sym_BSLASHpagecolor] = ACTIONS(4731), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4731), - [anon_sym_BSLASHtext] = ACTIONS(4731), - [anon_sym_BSLASHintertext] = ACTIONS(4731), - [anon_sym_shortintertext] = ACTIONS(4731), - }, - [604] = { - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(604), - [aux_sym__section_repeat2] = STATE(604), - [sym_command_name] = ACTIONS(4721), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_BSLASHpart] = ACTIONS(4721), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddpart] = ACTIONS(4721), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4719), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4932), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4932), - [anon_sym_BSLASHsection] = ACTIONS(4721), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHaddsec] = ACTIONS(4721), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4719), - [anon_sym_BSLASHparagraph] = ACTIONS(4721), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4721), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4719), - [anon_sym_BSLASHitem] = ACTIONS(4721), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [sym_word] = ACTIONS(4721), - [sym_placeholder] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym__] = ACTIONS(4721), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_COLON] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4721), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4719), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4719), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4719), - [anon_sym_BSLASHbegin] = ACTIONS(4721), - [anon_sym_BSLASHusepackage] = ACTIONS(4721), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4721), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4721), - [anon_sym_BSLASHinclude] = ACTIONS(4721), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4721), - [anon_sym_BSLASHinput] = ACTIONS(4721), - [anon_sym_BSLASHsubfile] = ACTIONS(4721), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4721), - [anon_sym_BSLASHbibliography] = ACTIONS(4721), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4721), - [anon_sym_BSLASHincludesvg] = ACTIONS(4721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4721), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4721), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4721), - [anon_sym_BSLASHimport] = ACTIONS(4721), - [anon_sym_BSLASHsubimport] = ACTIONS(4721), - [anon_sym_BSLASHinputfrom] = ACTIONS(4721), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4721), - [anon_sym_BSLASHincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4721), - [anon_sym_BSLASHcaption] = ACTIONS(4721), - [anon_sym_BSLASHcite] = ACTIONS(4721), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCite] = ACTIONS(4721), - [anon_sym_BSLASHnocite] = ACTIONS(4721), - [anon_sym_BSLASHcitet] = ACTIONS(4721), - [anon_sym_BSLASHcitep] = ACTIONS(4721), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteauthor] = ACTIONS(4721), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4721), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitetitle] = ACTIONS(4721), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteyear] = ACTIONS(4721), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4719), - [anon_sym_BSLASHcitedate] = ACTIONS(4721), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4719), - [anon_sym_BSLASHciteurl] = ACTIONS(4721), - [anon_sym_BSLASHfullcite] = ACTIONS(4721), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4721), - [anon_sym_BSLASHcitealt] = ACTIONS(4721), - [anon_sym_BSLASHcitealp] = ACTIONS(4721), - [anon_sym_BSLASHcitetext] = ACTIONS(4721), - [anon_sym_BSLASHparencite] = ACTIONS(4721), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHParencite] = ACTIONS(4721), - [anon_sym_BSLASHfootcite] = ACTIONS(4721), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4721), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4721), - [anon_sym_BSLASHtextcite] = ACTIONS(4721), - [anon_sym_BSLASHTextcite] = ACTIONS(4721), - [anon_sym_BSLASHsmartcite] = ACTIONS(4721), - [anon_sym_BSLASHSmartcite] = ACTIONS(4721), - [anon_sym_BSLASHsupercite] = ACTIONS(4721), - [anon_sym_BSLASHautocite] = ACTIONS(4721), - [anon_sym_BSLASHAutocite] = ACTIONS(4721), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4719), - [anon_sym_BSLASHvolcite] = ACTIONS(4721), - [anon_sym_BSLASHVolcite] = ACTIONS(4721), - [anon_sym_BSLASHpvolcite] = ACTIONS(4721), - [anon_sym_BSLASHPvolcite] = ACTIONS(4721), - [anon_sym_BSLASHfvolcite] = ACTIONS(4721), - [anon_sym_BSLASHftvolcite] = ACTIONS(4721), - [anon_sym_BSLASHsvolcite] = ACTIONS(4721), - [anon_sym_BSLASHSvolcite] = ACTIONS(4721), - [anon_sym_BSLASHtvolcite] = ACTIONS(4721), - [anon_sym_BSLASHTvolcite] = ACTIONS(4721), - [anon_sym_BSLASHavolcite] = ACTIONS(4721), - [anon_sym_BSLASHAvolcite] = ACTIONS(4721), - [anon_sym_BSLASHnotecite] = ACTIONS(4721), - [anon_sym_BSLASHNotecite] = ACTIONS(4721), - [anon_sym_BSLASHpnotecite] = ACTIONS(4721), - [anon_sym_BSLASHPnotecite] = ACTIONS(4721), - [anon_sym_BSLASHfnotecite] = ACTIONS(4721), - [anon_sym_BSLASHlabel] = ACTIONS(4721), - [anon_sym_BSLASHref] = ACTIONS(4721), - [anon_sym_BSLASHeqref] = ACTIONS(4721), - [anon_sym_BSLASHvref] = ACTIONS(4721), - [anon_sym_BSLASHVref] = ACTIONS(4721), - [anon_sym_BSLASHautoref] = ACTIONS(4721), - [anon_sym_BSLASHpageref] = ACTIONS(4721), - [anon_sym_BSLASHcref] = ACTIONS(4721), - [anon_sym_BSLASHCref] = ACTIONS(4721), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnameCref] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4721), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4721), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4721), - [anon_sym_BSLASHlabelcref] = ACTIONS(4721), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange] = ACTIONS(4721), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHCrefrange] = ACTIONS(4721), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4719), - [anon_sym_BSLASHnewlabel] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand] = ACTIONS(4721), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4721), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4721), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4721), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdef] = ACTIONS(4721), - [anon_sym_BSLASHlet] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4721), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4721), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4721), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4721), - [anon_sym_BSLASHgls] = ACTIONS(4721), - [anon_sym_BSLASHGls] = ACTIONS(4721), - [anon_sym_BSLASHGLS] = ACTIONS(4721), - [anon_sym_BSLASHglspl] = ACTIONS(4721), - [anon_sym_BSLASHGlspl] = ACTIONS(4721), - [anon_sym_BSLASHGLSpl] = ACTIONS(4721), - [anon_sym_BSLASHglsdisp] = ACTIONS(4721), - [anon_sym_BSLASHglslink] = ACTIONS(4721), - [anon_sym_BSLASHglstext] = ACTIONS(4721), - [anon_sym_BSLASHGlstext] = ACTIONS(4721), - [anon_sym_BSLASHGLStext] = ACTIONS(4721), - [anon_sym_BSLASHglsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4721), - [anon_sym_BSLASHglsplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSplural] = ACTIONS(4721), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4721), - [anon_sym_BSLASHglsname] = ACTIONS(4721), - [anon_sym_BSLASHGlsname] = ACTIONS(4721), - [anon_sym_BSLASHGLSname] = ACTIONS(4721), - [anon_sym_BSLASHglssymbol] = ACTIONS(4721), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4721), - [anon_sym_BSLASHglsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4721), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4721), - [anon_sym_BSLASHglsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4721), - [anon_sym_BSLASHglsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4721), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4721), - [anon_sym_BSLASHglsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4721), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4721), - [anon_sym_BSLASHglsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4721), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4721), - [anon_sym_BSLASHnewacronym] = ACTIONS(4721), - [anon_sym_BSLASHacrshort] = ACTIONS(4721), - [anon_sym_BSLASHAcrshort] = ACTIONS(4721), - [anon_sym_BSLASHACRshort] = ACTIONS(4721), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4721), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4721), - [anon_sym_BSLASHacrlong] = ACTIONS(4721), - [anon_sym_BSLASHAcrlong] = ACTIONS(4721), - [anon_sym_BSLASHACRlong] = ACTIONS(4721), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4721), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4721), - [anon_sym_BSLASHacrfull] = ACTIONS(4721), - [anon_sym_BSLASHAcrfull] = ACTIONS(4721), - [anon_sym_BSLASHACRfull] = ACTIONS(4721), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4721), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4721), - [anon_sym_BSLASHacs] = ACTIONS(4721), - [anon_sym_BSLASHAcs] = ACTIONS(4721), - [anon_sym_BSLASHacsp] = ACTIONS(4721), - [anon_sym_BSLASHAcsp] = ACTIONS(4721), - [anon_sym_BSLASHacl] = ACTIONS(4721), - [anon_sym_BSLASHAcl] = ACTIONS(4721), - [anon_sym_BSLASHaclp] = ACTIONS(4721), - [anon_sym_BSLASHAclp] = ACTIONS(4721), - [anon_sym_BSLASHacf] = ACTIONS(4721), - [anon_sym_BSLASHAcf] = ACTIONS(4721), - [anon_sym_BSLASHacfp] = ACTIONS(4721), - [anon_sym_BSLASHAcfp] = ACTIONS(4721), - [anon_sym_BSLASHac] = ACTIONS(4721), - [anon_sym_BSLASHAc] = ACTIONS(4721), - [anon_sym_BSLASHacp] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4721), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4721), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4721), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4721), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4721), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4719), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4721), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4721), - [anon_sym_BSLASHcolor] = ACTIONS(4721), - [anon_sym_BSLASHcolorbox] = ACTIONS(4721), - [anon_sym_BSLASHtextcolor] = ACTIONS(4721), - [anon_sym_BSLASHpagecolor] = ACTIONS(4721), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4721), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4721), - [anon_sym_BSLASHtext] = ACTIONS(4721), - [anon_sym_BSLASHintertext] = ACTIONS(4721), - [anon_sym_shortintertext] = ACTIONS(4721), - }, - [605] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4707), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym_RPAREN] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_RBRACK] = ACTIONS(4705), - [anon_sym_COMMA] = ACTIONS(4705), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_BSLASHpart] = ACTIONS(4707), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddpart] = ACTIONS(4707), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4705), - [anon_sym_BSLASHchapter] = ACTIONS(4707), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddchap] = ACTIONS(4707), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsection] = ACTIONS(4707), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHaddsec] = ACTIONS(4707), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4707), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4705), - [anon_sym_BSLASHparagraph] = ACTIONS(4707), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4707), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4705), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4705), - [sym_word] = ACTIONS(4707), - [sym_placeholder] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_CARET] = ACTIONS(4707), - [anon_sym__] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4707), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4705), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4705), - [anon_sym_BSLASHbegin] = ACTIONS(4707), - [anon_sym_BSLASHusepackage] = ACTIONS(4707), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4707), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4707), - [anon_sym_BSLASHinclude] = ACTIONS(4707), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4707), - [anon_sym_BSLASHinput] = ACTIONS(4707), - [anon_sym_BSLASHsubfile] = ACTIONS(4707), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4707), - [anon_sym_BSLASHbibliography] = ACTIONS(4707), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4707), - [anon_sym_BSLASHincludesvg] = ACTIONS(4707), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4707), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4707), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4707), - [anon_sym_BSLASHimport] = ACTIONS(4707), - [anon_sym_BSLASHsubimport] = ACTIONS(4707), - [anon_sym_BSLASHinputfrom] = ACTIONS(4707), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4707), - [anon_sym_BSLASHincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4707), - [anon_sym_BSLASHcaption] = ACTIONS(4707), - [anon_sym_BSLASHcite] = ACTIONS(4707), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCite] = ACTIONS(4707), - [anon_sym_BSLASHnocite] = ACTIONS(4707), - [anon_sym_BSLASHcitet] = ACTIONS(4707), - [anon_sym_BSLASHcitep] = ACTIONS(4707), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteauthor] = ACTIONS(4707), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4707), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitetitle] = ACTIONS(4707), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteyear] = ACTIONS(4707), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4705), - [anon_sym_BSLASHcitedate] = ACTIONS(4707), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4705), - [anon_sym_BSLASHciteurl] = ACTIONS(4707), - [anon_sym_BSLASHfullcite] = ACTIONS(4707), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4707), - [anon_sym_BSLASHcitealt] = ACTIONS(4707), - [anon_sym_BSLASHcitealp] = ACTIONS(4707), - [anon_sym_BSLASHcitetext] = ACTIONS(4707), - [anon_sym_BSLASHparencite] = ACTIONS(4707), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHParencite] = ACTIONS(4707), - [anon_sym_BSLASHfootcite] = ACTIONS(4707), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4707), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4707), - [anon_sym_BSLASHtextcite] = ACTIONS(4707), - [anon_sym_BSLASHTextcite] = ACTIONS(4707), - [anon_sym_BSLASHsmartcite] = ACTIONS(4707), - [anon_sym_BSLASHSmartcite] = ACTIONS(4707), - [anon_sym_BSLASHsupercite] = ACTIONS(4707), - [anon_sym_BSLASHautocite] = ACTIONS(4707), - [anon_sym_BSLASHAutocite] = ACTIONS(4707), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4705), - [anon_sym_BSLASHvolcite] = ACTIONS(4707), - [anon_sym_BSLASHVolcite] = ACTIONS(4707), - [anon_sym_BSLASHpvolcite] = ACTIONS(4707), - [anon_sym_BSLASHPvolcite] = ACTIONS(4707), - [anon_sym_BSLASHfvolcite] = ACTIONS(4707), - [anon_sym_BSLASHftvolcite] = ACTIONS(4707), - [anon_sym_BSLASHsvolcite] = ACTIONS(4707), - [anon_sym_BSLASHSvolcite] = ACTIONS(4707), - [anon_sym_BSLASHtvolcite] = ACTIONS(4707), - [anon_sym_BSLASHTvolcite] = ACTIONS(4707), - [anon_sym_BSLASHavolcite] = ACTIONS(4707), - [anon_sym_BSLASHAvolcite] = ACTIONS(4707), - [anon_sym_BSLASHnotecite] = ACTIONS(4707), - [anon_sym_BSLASHNotecite] = ACTIONS(4707), - [anon_sym_BSLASHpnotecite] = ACTIONS(4707), - [anon_sym_BSLASHPnotecite] = ACTIONS(4707), - [anon_sym_BSLASHfnotecite] = ACTIONS(4707), - [anon_sym_BSLASHlabel] = ACTIONS(4707), - [anon_sym_BSLASHref] = ACTIONS(4707), - [anon_sym_BSLASHeqref] = ACTIONS(4707), - [anon_sym_BSLASHvref] = ACTIONS(4707), - [anon_sym_BSLASHVref] = ACTIONS(4707), - [anon_sym_BSLASHautoref] = ACTIONS(4707), - [anon_sym_BSLASHpageref] = ACTIONS(4707), - [anon_sym_BSLASHcref] = ACTIONS(4707), - [anon_sym_BSLASHCref] = ACTIONS(4707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnameCref] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4707), - [anon_sym_BSLASHlabelcref] = ACTIONS(4707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange] = ACTIONS(4707), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHCrefrange] = ACTIONS(4707), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4705), - [anon_sym_BSLASHnewlabel] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand] = ACTIONS(4707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4705), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdef] = ACTIONS(4707), - [anon_sym_BSLASHlet] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4707), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4707), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4707), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), - [anon_sym_BSLASHgls] = ACTIONS(4707), - [anon_sym_BSLASHGls] = ACTIONS(4707), - [anon_sym_BSLASHGLS] = ACTIONS(4707), - [anon_sym_BSLASHglspl] = ACTIONS(4707), - [anon_sym_BSLASHGlspl] = ACTIONS(4707), - [anon_sym_BSLASHGLSpl] = ACTIONS(4707), - [anon_sym_BSLASHglsdisp] = ACTIONS(4707), - [anon_sym_BSLASHglslink] = ACTIONS(4707), - [anon_sym_BSLASHglstext] = ACTIONS(4707), - [anon_sym_BSLASHGlstext] = ACTIONS(4707), - [anon_sym_BSLASHGLStext] = ACTIONS(4707), - [anon_sym_BSLASHglsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4707), - [anon_sym_BSLASHglsplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSplural] = ACTIONS(4707), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4707), - [anon_sym_BSLASHglsname] = ACTIONS(4707), - [anon_sym_BSLASHGlsname] = ACTIONS(4707), - [anon_sym_BSLASHGLSname] = ACTIONS(4707), - [anon_sym_BSLASHglssymbol] = ACTIONS(4707), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4707), - [anon_sym_BSLASHglsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4707), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4707), - [anon_sym_BSLASHglsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4707), - [anon_sym_BSLASHglsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4707), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4707), - [anon_sym_BSLASHglsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4707), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4707), - [anon_sym_BSLASHglsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4707), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4707), - [anon_sym_BSLASHnewacronym] = ACTIONS(4707), - [anon_sym_BSLASHacrshort] = ACTIONS(4707), - [anon_sym_BSLASHAcrshort] = ACTIONS(4707), - [anon_sym_BSLASHACRshort] = ACTIONS(4707), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4707), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4707), - [anon_sym_BSLASHacrlong] = ACTIONS(4707), - [anon_sym_BSLASHAcrlong] = ACTIONS(4707), - [anon_sym_BSLASHACRlong] = ACTIONS(4707), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4707), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4707), - [anon_sym_BSLASHacrfull] = ACTIONS(4707), - [anon_sym_BSLASHAcrfull] = ACTIONS(4707), - [anon_sym_BSLASHACRfull] = ACTIONS(4707), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4707), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4707), - [anon_sym_BSLASHacs] = ACTIONS(4707), - [anon_sym_BSLASHAcs] = ACTIONS(4707), - [anon_sym_BSLASHacsp] = ACTIONS(4707), - [anon_sym_BSLASHAcsp] = ACTIONS(4707), - [anon_sym_BSLASHacl] = ACTIONS(4707), - [anon_sym_BSLASHAcl] = ACTIONS(4707), - [anon_sym_BSLASHaclp] = ACTIONS(4707), - [anon_sym_BSLASHAclp] = ACTIONS(4707), - [anon_sym_BSLASHacf] = ACTIONS(4707), - [anon_sym_BSLASHAcf] = ACTIONS(4707), - [anon_sym_BSLASHacfp] = ACTIONS(4707), - [anon_sym_BSLASHAcfp] = ACTIONS(4707), - [anon_sym_BSLASHac] = ACTIONS(4707), - [anon_sym_BSLASHAc] = ACTIONS(4707), - [anon_sym_BSLASHacp] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4707), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4707), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4707), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4707), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4707), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4705), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4707), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4707), - [anon_sym_BSLASHcolor] = ACTIONS(4707), - [anon_sym_BSLASHcolorbox] = ACTIONS(4707), - [anon_sym_BSLASHtextcolor] = ACTIONS(4707), - [anon_sym_BSLASHpagecolor] = ACTIONS(4707), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4707), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4707), - [anon_sym_BSLASHtext] = ACTIONS(4707), - [anon_sym_BSLASHintertext] = ACTIONS(4707), - [anon_sym_shortintertext] = ACTIONS(4707), - }, - [606] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4703), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [607] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4703), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4701), - [anon_sym_BSLASHchapter] = ACTIONS(4703), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddchap] = ACTIONS(4703), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsection] = ACTIONS(4703), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHaddsec] = ACTIONS(4703), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4703), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4701), - [anon_sym_BSLASHparagraph] = ACTIONS(4703), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4701), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4703), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [sym_word] = ACTIONS(4703), - [sym_placeholder] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym__] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4701), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4701), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4701), - [anon_sym_BSLASHbegin] = ACTIONS(4703), - [anon_sym_BSLASHusepackage] = ACTIONS(4703), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4703), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4703), - [anon_sym_BSLASHinclude] = ACTIONS(4703), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4703), - [anon_sym_BSLASHinput] = ACTIONS(4703), - [anon_sym_BSLASHsubfile] = ACTIONS(4703), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4703), - [anon_sym_BSLASHbibliography] = ACTIONS(4703), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4703), - [anon_sym_BSLASHincludesvg] = ACTIONS(4703), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4703), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4703), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4703), - [anon_sym_BSLASHimport] = ACTIONS(4703), - [anon_sym_BSLASHsubimport] = ACTIONS(4703), - [anon_sym_BSLASHinputfrom] = ACTIONS(4703), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4703), - [anon_sym_BSLASHincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4703), - [anon_sym_BSLASHcaption] = ACTIONS(4703), - [anon_sym_BSLASHcite] = ACTIONS(4703), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCite] = ACTIONS(4703), - [anon_sym_BSLASHnocite] = ACTIONS(4703), - [anon_sym_BSLASHcitet] = ACTIONS(4703), - [anon_sym_BSLASHcitep] = ACTIONS(4703), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteauthor] = ACTIONS(4703), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4703), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitetitle] = ACTIONS(4703), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteyear] = ACTIONS(4703), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4701), - [anon_sym_BSLASHcitedate] = ACTIONS(4703), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4701), - [anon_sym_BSLASHciteurl] = ACTIONS(4703), - [anon_sym_BSLASHfullcite] = ACTIONS(4703), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4703), - [anon_sym_BSLASHcitealt] = ACTIONS(4703), - [anon_sym_BSLASHcitealp] = ACTIONS(4703), - [anon_sym_BSLASHcitetext] = ACTIONS(4703), - [anon_sym_BSLASHparencite] = ACTIONS(4703), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHParencite] = ACTIONS(4703), - [anon_sym_BSLASHfootcite] = ACTIONS(4703), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4703), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4703), - [anon_sym_BSLASHtextcite] = ACTIONS(4703), - [anon_sym_BSLASHTextcite] = ACTIONS(4703), - [anon_sym_BSLASHsmartcite] = ACTIONS(4703), - [anon_sym_BSLASHSmartcite] = ACTIONS(4703), - [anon_sym_BSLASHsupercite] = ACTIONS(4703), - [anon_sym_BSLASHautocite] = ACTIONS(4703), - [anon_sym_BSLASHAutocite] = ACTIONS(4703), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4701), - [anon_sym_BSLASHvolcite] = ACTIONS(4703), - [anon_sym_BSLASHVolcite] = ACTIONS(4703), - [anon_sym_BSLASHpvolcite] = ACTIONS(4703), - [anon_sym_BSLASHPvolcite] = ACTIONS(4703), - [anon_sym_BSLASHfvolcite] = ACTIONS(4703), - [anon_sym_BSLASHftvolcite] = ACTIONS(4703), - [anon_sym_BSLASHsvolcite] = ACTIONS(4703), - [anon_sym_BSLASHSvolcite] = ACTIONS(4703), - [anon_sym_BSLASHtvolcite] = ACTIONS(4703), - [anon_sym_BSLASHTvolcite] = ACTIONS(4703), - [anon_sym_BSLASHavolcite] = ACTIONS(4703), - [anon_sym_BSLASHAvolcite] = ACTIONS(4703), - [anon_sym_BSLASHnotecite] = ACTIONS(4703), - [anon_sym_BSLASHNotecite] = ACTIONS(4703), - [anon_sym_BSLASHpnotecite] = ACTIONS(4703), - [anon_sym_BSLASHPnotecite] = ACTIONS(4703), - [anon_sym_BSLASHfnotecite] = ACTIONS(4703), - [anon_sym_BSLASHlabel] = ACTIONS(4703), - [anon_sym_BSLASHref] = ACTIONS(4703), - [anon_sym_BSLASHeqref] = ACTIONS(4703), - [anon_sym_BSLASHvref] = ACTIONS(4703), - [anon_sym_BSLASHVref] = ACTIONS(4703), - [anon_sym_BSLASHautoref] = ACTIONS(4703), - [anon_sym_BSLASHpageref] = ACTIONS(4703), - [anon_sym_BSLASHcref] = ACTIONS(4703), - [anon_sym_BSLASHCref] = ACTIONS(4703), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnameCref] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4703), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4703), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4703), - [anon_sym_BSLASHlabelcref] = ACTIONS(4703), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange] = ACTIONS(4703), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHCrefrange] = ACTIONS(4703), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4701), - [anon_sym_BSLASHnewlabel] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand] = ACTIONS(4703), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4703), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4703), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4701), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4703), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdef] = ACTIONS(4703), - [anon_sym_BSLASHlet] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4703), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4703), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4703), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4703), - [anon_sym_BSLASHgls] = ACTIONS(4703), - [anon_sym_BSLASHGls] = ACTIONS(4703), - [anon_sym_BSLASHGLS] = ACTIONS(4703), - [anon_sym_BSLASHglspl] = ACTIONS(4703), - [anon_sym_BSLASHGlspl] = ACTIONS(4703), - [anon_sym_BSLASHGLSpl] = ACTIONS(4703), - [anon_sym_BSLASHglsdisp] = ACTIONS(4703), - [anon_sym_BSLASHglslink] = ACTIONS(4703), - [anon_sym_BSLASHglstext] = ACTIONS(4703), - [anon_sym_BSLASHGlstext] = ACTIONS(4703), - [anon_sym_BSLASHGLStext] = ACTIONS(4703), - [anon_sym_BSLASHglsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4703), - [anon_sym_BSLASHglsplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSplural] = ACTIONS(4703), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4703), - [anon_sym_BSLASHglsname] = ACTIONS(4703), - [anon_sym_BSLASHGlsname] = ACTIONS(4703), - [anon_sym_BSLASHGLSname] = ACTIONS(4703), - [anon_sym_BSLASHglssymbol] = ACTIONS(4703), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4703), - [anon_sym_BSLASHglsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4703), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4703), - [anon_sym_BSLASHglsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4703), - [anon_sym_BSLASHglsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4703), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4703), - [anon_sym_BSLASHglsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4703), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4703), - [anon_sym_BSLASHglsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4703), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4703), - [anon_sym_BSLASHnewacronym] = ACTIONS(4703), - [anon_sym_BSLASHacrshort] = ACTIONS(4703), - [anon_sym_BSLASHAcrshort] = ACTIONS(4703), - [anon_sym_BSLASHACRshort] = ACTIONS(4703), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4703), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4703), - [anon_sym_BSLASHacrlong] = ACTIONS(4703), - [anon_sym_BSLASHAcrlong] = ACTIONS(4703), - [anon_sym_BSLASHACRlong] = ACTIONS(4703), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4703), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4703), - [anon_sym_BSLASHacrfull] = ACTIONS(4703), - [anon_sym_BSLASHAcrfull] = ACTIONS(4703), - [anon_sym_BSLASHACRfull] = ACTIONS(4703), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4703), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4703), - [anon_sym_BSLASHacs] = ACTIONS(4703), - [anon_sym_BSLASHAcs] = ACTIONS(4703), - [anon_sym_BSLASHacsp] = ACTIONS(4703), - [anon_sym_BSLASHAcsp] = ACTIONS(4703), - [anon_sym_BSLASHacl] = ACTIONS(4703), - [anon_sym_BSLASHAcl] = ACTIONS(4703), - [anon_sym_BSLASHaclp] = ACTIONS(4703), - [anon_sym_BSLASHAclp] = ACTIONS(4703), - [anon_sym_BSLASHacf] = ACTIONS(4703), - [anon_sym_BSLASHAcf] = ACTIONS(4703), - [anon_sym_BSLASHacfp] = ACTIONS(4703), - [anon_sym_BSLASHAcfp] = ACTIONS(4703), - [anon_sym_BSLASHac] = ACTIONS(4703), - [anon_sym_BSLASHAc] = ACTIONS(4703), - [anon_sym_BSLASHacp] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4703), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4703), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4703), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4703), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4703), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4701), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4703), - [anon_sym_BSLASHcolor] = ACTIONS(4703), - [anon_sym_BSLASHcolorbox] = ACTIONS(4703), - [anon_sym_BSLASHtextcolor] = ACTIONS(4703), - [anon_sym_BSLASHpagecolor] = ACTIONS(4703), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4703), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4703), - [anon_sym_BSLASHtext] = ACTIONS(4703), - [anon_sym_BSLASHintertext] = ACTIONS(4703), - [anon_sym_shortintertext] = ACTIONS(4703), - }, - [608] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [609] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(4699), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [610] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4699), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_BSLASHpart] = ACTIONS(4699), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddpart] = ACTIONS(4699), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4697), - [anon_sym_BSLASHchapter] = ACTIONS(4699), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddchap] = ACTIONS(4699), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsection] = ACTIONS(4699), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHaddsec] = ACTIONS(4699), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4699), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4697), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4699), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4697), - [anon_sym_BSLASHitem] = ACTIONS(4699), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [sym_word] = ACTIONS(4699), - [sym_placeholder] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_STAR] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym__] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4697), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4697), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4697), - [anon_sym_BSLASHbegin] = ACTIONS(4699), - [anon_sym_BSLASHusepackage] = ACTIONS(4699), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4699), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4699), - [anon_sym_BSLASHinclude] = ACTIONS(4699), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4699), - [anon_sym_BSLASHinput] = ACTIONS(4699), - [anon_sym_BSLASHsubfile] = ACTIONS(4699), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4699), - [anon_sym_BSLASHbibliography] = ACTIONS(4699), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4699), - [anon_sym_BSLASHincludesvg] = ACTIONS(4699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4699), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4699), - [anon_sym_BSLASHimport] = ACTIONS(4699), - [anon_sym_BSLASHsubimport] = ACTIONS(4699), - [anon_sym_BSLASHinputfrom] = ACTIONS(4699), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4699), - [anon_sym_BSLASHincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4699), - [anon_sym_BSLASHcaption] = ACTIONS(4699), - [anon_sym_BSLASHcite] = ACTIONS(4699), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCite] = ACTIONS(4699), - [anon_sym_BSLASHnocite] = ACTIONS(4699), - [anon_sym_BSLASHcitet] = ACTIONS(4699), - [anon_sym_BSLASHcitep] = ACTIONS(4699), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor] = ACTIONS(4699), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4699), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle] = ACTIONS(4699), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteyear] = ACTIONS(4699), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4697), - [anon_sym_BSLASHcitedate] = ACTIONS(4699), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4697), - [anon_sym_BSLASHciteurl] = ACTIONS(4699), - [anon_sym_BSLASHfullcite] = ACTIONS(4699), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4699), - [anon_sym_BSLASHcitealt] = ACTIONS(4699), - [anon_sym_BSLASHcitealp] = ACTIONS(4699), - [anon_sym_BSLASHcitetext] = ACTIONS(4699), - [anon_sym_BSLASHparencite] = ACTIONS(4699), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHParencite] = ACTIONS(4699), - [anon_sym_BSLASHfootcite] = ACTIONS(4699), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4699), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4699), - [anon_sym_BSLASHtextcite] = ACTIONS(4699), - [anon_sym_BSLASHTextcite] = ACTIONS(4699), - [anon_sym_BSLASHsmartcite] = ACTIONS(4699), - [anon_sym_BSLASHSmartcite] = ACTIONS(4699), - [anon_sym_BSLASHsupercite] = ACTIONS(4699), - [anon_sym_BSLASHautocite] = ACTIONS(4699), - [anon_sym_BSLASHAutocite] = ACTIONS(4699), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4697), - [anon_sym_BSLASHvolcite] = ACTIONS(4699), - [anon_sym_BSLASHVolcite] = ACTIONS(4699), - [anon_sym_BSLASHpvolcite] = ACTIONS(4699), - [anon_sym_BSLASHPvolcite] = ACTIONS(4699), - [anon_sym_BSLASHfvolcite] = ACTIONS(4699), - [anon_sym_BSLASHftvolcite] = ACTIONS(4699), - [anon_sym_BSLASHsvolcite] = ACTIONS(4699), - [anon_sym_BSLASHSvolcite] = ACTIONS(4699), - [anon_sym_BSLASHtvolcite] = ACTIONS(4699), - [anon_sym_BSLASHTvolcite] = ACTIONS(4699), - [anon_sym_BSLASHavolcite] = ACTIONS(4699), - [anon_sym_BSLASHAvolcite] = ACTIONS(4699), - [anon_sym_BSLASHnotecite] = ACTIONS(4699), - [anon_sym_BSLASHNotecite] = ACTIONS(4699), - [anon_sym_BSLASHpnotecite] = ACTIONS(4699), - [anon_sym_BSLASHPnotecite] = ACTIONS(4699), - [anon_sym_BSLASHfnotecite] = ACTIONS(4699), - [anon_sym_BSLASHlabel] = ACTIONS(4699), - [anon_sym_BSLASHref] = ACTIONS(4699), - [anon_sym_BSLASHeqref] = ACTIONS(4699), - [anon_sym_BSLASHvref] = ACTIONS(4699), - [anon_sym_BSLASHVref] = ACTIONS(4699), - [anon_sym_BSLASHautoref] = ACTIONS(4699), - [anon_sym_BSLASHpageref] = ACTIONS(4699), - [anon_sym_BSLASHcref] = ACTIONS(4699), - [anon_sym_BSLASHCref] = ACTIONS(4699), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnameCref] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4699), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4699), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4699), - [anon_sym_BSLASHlabelcref] = ACTIONS(4699), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange] = ACTIONS(4699), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange] = ACTIONS(4699), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4697), - [anon_sym_BSLASHnewlabel] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand] = ACTIONS(4699), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4699), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4699), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4699), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdef] = ACTIONS(4699), - [anon_sym_BSLASHlet] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4699), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4699), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4699), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4699), - [anon_sym_BSLASHgls] = ACTIONS(4699), - [anon_sym_BSLASHGls] = ACTIONS(4699), - [anon_sym_BSLASHGLS] = ACTIONS(4699), - [anon_sym_BSLASHglspl] = ACTIONS(4699), - [anon_sym_BSLASHGlspl] = ACTIONS(4699), - [anon_sym_BSLASHGLSpl] = ACTIONS(4699), - [anon_sym_BSLASHglsdisp] = ACTIONS(4699), - [anon_sym_BSLASHglslink] = ACTIONS(4699), - [anon_sym_BSLASHglstext] = ACTIONS(4699), - [anon_sym_BSLASHGlstext] = ACTIONS(4699), - [anon_sym_BSLASHGLStext] = ACTIONS(4699), - [anon_sym_BSLASHglsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4699), - [anon_sym_BSLASHglsplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSplural] = ACTIONS(4699), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4699), - [anon_sym_BSLASHglsname] = ACTIONS(4699), - [anon_sym_BSLASHGlsname] = ACTIONS(4699), - [anon_sym_BSLASHGLSname] = ACTIONS(4699), - [anon_sym_BSLASHglssymbol] = ACTIONS(4699), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4699), - [anon_sym_BSLASHglsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4699), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4699), - [anon_sym_BSLASHglsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4699), - [anon_sym_BSLASHglsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4699), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4699), - [anon_sym_BSLASHglsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4699), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4699), - [anon_sym_BSLASHglsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4699), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4699), - [anon_sym_BSLASHnewacronym] = ACTIONS(4699), - [anon_sym_BSLASHacrshort] = ACTIONS(4699), - [anon_sym_BSLASHAcrshort] = ACTIONS(4699), - [anon_sym_BSLASHACRshort] = ACTIONS(4699), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4699), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4699), - [anon_sym_BSLASHacrlong] = ACTIONS(4699), - [anon_sym_BSLASHAcrlong] = ACTIONS(4699), - [anon_sym_BSLASHACRlong] = ACTIONS(4699), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4699), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4699), - [anon_sym_BSLASHacrfull] = ACTIONS(4699), - [anon_sym_BSLASHAcrfull] = ACTIONS(4699), - [anon_sym_BSLASHACRfull] = ACTIONS(4699), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4699), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4699), - [anon_sym_BSLASHacs] = ACTIONS(4699), - [anon_sym_BSLASHAcs] = ACTIONS(4699), - [anon_sym_BSLASHacsp] = ACTIONS(4699), - [anon_sym_BSLASHAcsp] = ACTIONS(4699), - [anon_sym_BSLASHacl] = ACTIONS(4699), - [anon_sym_BSLASHAcl] = ACTIONS(4699), - [anon_sym_BSLASHaclp] = ACTIONS(4699), - [anon_sym_BSLASHAclp] = ACTIONS(4699), - [anon_sym_BSLASHacf] = ACTIONS(4699), - [anon_sym_BSLASHAcf] = ACTIONS(4699), - [anon_sym_BSLASHacfp] = ACTIONS(4699), - [anon_sym_BSLASHAcfp] = ACTIONS(4699), - [anon_sym_BSLASHac] = ACTIONS(4699), - [anon_sym_BSLASHAc] = ACTIONS(4699), - [anon_sym_BSLASHacp] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4699), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4699), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4699), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4699), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4699), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4699), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4699), - [anon_sym_BSLASHcolor] = ACTIONS(4699), - [anon_sym_BSLASHcolorbox] = ACTIONS(4699), - [anon_sym_BSLASHtextcolor] = ACTIONS(4699), - [anon_sym_BSLASHpagecolor] = ACTIONS(4699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4699), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4699), - [anon_sym_BSLASHtext] = ACTIONS(4699), - [anon_sym_BSLASHintertext] = ACTIONS(4699), - [anon_sym_shortintertext] = ACTIONS(4699), - }, - [611] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [612] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [613] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [614] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(4711), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_RBRACK] = ACTIONS(4709), - [anon_sym_COMMA] = ACTIONS(4709), - [anon_sym_EQ] = ACTIONS(4709), - [anon_sym_BSLASHpart] = ACTIONS(4711), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddpart] = ACTIONS(4711), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4709), - [anon_sym_BSLASHchapter] = ACTIONS(4711), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4709), - [anon_sym_BSLASHaddchap] = ACTIONS(4711), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsection] = ACTIONS(4935), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4938), - [anon_sym_BSLASHaddsec] = ACTIONS(4935), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4938), - [anon_sym_BSLASHsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4711), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4709), - [anon_sym_BSLASHparagraph] = ACTIONS(4711), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4711), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4709), - [anon_sym_BSLASHitem] = ACTIONS(4711), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [sym_word] = ACTIONS(4711), - [sym_placeholder] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_CARET] = ACTIONS(4711), - [anon_sym__] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4709), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4709), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4709), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4709), - [anon_sym_BSLASHbegin] = ACTIONS(4711), - [anon_sym_BSLASHusepackage] = ACTIONS(4711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4711), - [anon_sym_BSLASHinclude] = ACTIONS(4711), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4711), - [anon_sym_BSLASHinput] = ACTIONS(4711), - [anon_sym_BSLASHsubfile] = ACTIONS(4711), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4711), - [anon_sym_BSLASHbibliography] = ACTIONS(4711), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4711), - [anon_sym_BSLASHincludesvg] = ACTIONS(4711), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4711), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4711), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4711), - [anon_sym_BSLASHimport] = ACTIONS(4711), - [anon_sym_BSLASHsubimport] = ACTIONS(4711), - [anon_sym_BSLASHinputfrom] = ACTIONS(4711), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4711), - [anon_sym_BSLASHincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4711), - [anon_sym_BSLASHcaption] = ACTIONS(4711), - [anon_sym_BSLASHcite] = ACTIONS(4711), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCite] = ACTIONS(4711), - [anon_sym_BSLASHnocite] = ACTIONS(4711), - [anon_sym_BSLASHcitet] = ACTIONS(4711), - [anon_sym_BSLASHcitep] = ACTIONS(4711), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteauthor] = ACTIONS(4711), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4711), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitetitle] = ACTIONS(4711), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteyear] = ACTIONS(4711), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4709), - [anon_sym_BSLASHcitedate] = ACTIONS(4711), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4709), - [anon_sym_BSLASHciteurl] = ACTIONS(4711), - [anon_sym_BSLASHfullcite] = ACTIONS(4711), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4711), - [anon_sym_BSLASHcitealt] = ACTIONS(4711), - [anon_sym_BSLASHcitealp] = ACTIONS(4711), - [anon_sym_BSLASHcitetext] = ACTIONS(4711), - [anon_sym_BSLASHparencite] = ACTIONS(4711), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHParencite] = ACTIONS(4711), - [anon_sym_BSLASHfootcite] = ACTIONS(4711), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4711), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4711), - [anon_sym_BSLASHtextcite] = ACTIONS(4711), - [anon_sym_BSLASHTextcite] = ACTIONS(4711), - [anon_sym_BSLASHsmartcite] = ACTIONS(4711), - [anon_sym_BSLASHSmartcite] = ACTIONS(4711), - [anon_sym_BSLASHsupercite] = ACTIONS(4711), - [anon_sym_BSLASHautocite] = ACTIONS(4711), - [anon_sym_BSLASHAutocite] = ACTIONS(4711), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4709), - [anon_sym_BSLASHvolcite] = ACTIONS(4711), - [anon_sym_BSLASHVolcite] = ACTIONS(4711), - [anon_sym_BSLASHpvolcite] = ACTIONS(4711), - [anon_sym_BSLASHPvolcite] = ACTIONS(4711), - [anon_sym_BSLASHfvolcite] = ACTIONS(4711), - [anon_sym_BSLASHftvolcite] = ACTIONS(4711), - [anon_sym_BSLASHsvolcite] = ACTIONS(4711), - [anon_sym_BSLASHSvolcite] = ACTIONS(4711), - [anon_sym_BSLASHtvolcite] = ACTIONS(4711), - [anon_sym_BSLASHTvolcite] = ACTIONS(4711), - [anon_sym_BSLASHavolcite] = ACTIONS(4711), - [anon_sym_BSLASHAvolcite] = ACTIONS(4711), - [anon_sym_BSLASHnotecite] = ACTIONS(4711), - [anon_sym_BSLASHNotecite] = ACTIONS(4711), - [anon_sym_BSLASHpnotecite] = ACTIONS(4711), - [anon_sym_BSLASHPnotecite] = ACTIONS(4711), - [anon_sym_BSLASHfnotecite] = ACTIONS(4711), - [anon_sym_BSLASHlabel] = ACTIONS(4711), - [anon_sym_BSLASHref] = ACTIONS(4711), - [anon_sym_BSLASHeqref] = ACTIONS(4711), - [anon_sym_BSLASHvref] = ACTIONS(4711), - [anon_sym_BSLASHVref] = ACTIONS(4711), - [anon_sym_BSLASHautoref] = ACTIONS(4711), - [anon_sym_BSLASHpageref] = ACTIONS(4711), - [anon_sym_BSLASHcref] = ACTIONS(4711), - [anon_sym_BSLASHCref] = ACTIONS(4711), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnameCref] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4711), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4711), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4711), - [anon_sym_BSLASHlabelcref] = ACTIONS(4711), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange] = ACTIONS(4711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHCrefrange] = ACTIONS(4711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4709), - [anon_sym_BSLASHnewlabel] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand] = ACTIONS(4711), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4711), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4711), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4709), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4711), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdef] = ACTIONS(4711), - [anon_sym_BSLASHlet] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4711), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4711), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4711), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4711), - [anon_sym_BSLASHgls] = ACTIONS(4711), - [anon_sym_BSLASHGls] = ACTIONS(4711), - [anon_sym_BSLASHGLS] = ACTIONS(4711), - [anon_sym_BSLASHglspl] = ACTIONS(4711), - [anon_sym_BSLASHGlspl] = ACTIONS(4711), - [anon_sym_BSLASHGLSpl] = ACTIONS(4711), - [anon_sym_BSLASHglsdisp] = ACTIONS(4711), - [anon_sym_BSLASHglslink] = ACTIONS(4711), - [anon_sym_BSLASHglstext] = ACTIONS(4711), - [anon_sym_BSLASHGlstext] = ACTIONS(4711), - [anon_sym_BSLASHGLStext] = ACTIONS(4711), - [anon_sym_BSLASHglsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4711), - [anon_sym_BSLASHglsplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSplural] = ACTIONS(4711), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4711), - [anon_sym_BSLASHglsname] = ACTIONS(4711), - [anon_sym_BSLASHGlsname] = ACTIONS(4711), - [anon_sym_BSLASHGLSname] = ACTIONS(4711), - [anon_sym_BSLASHglssymbol] = ACTIONS(4711), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4711), - [anon_sym_BSLASHglsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4711), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4711), - [anon_sym_BSLASHglsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4711), - [anon_sym_BSLASHglsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4711), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4711), - [anon_sym_BSLASHglsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4711), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4711), - [anon_sym_BSLASHglsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4711), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4711), - [anon_sym_BSLASHnewacronym] = ACTIONS(4711), - [anon_sym_BSLASHacrshort] = ACTIONS(4711), - [anon_sym_BSLASHAcrshort] = ACTIONS(4711), - [anon_sym_BSLASHACRshort] = ACTIONS(4711), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4711), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4711), - [anon_sym_BSLASHacrlong] = ACTIONS(4711), - [anon_sym_BSLASHAcrlong] = ACTIONS(4711), - [anon_sym_BSLASHACRlong] = ACTIONS(4711), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4711), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4711), - [anon_sym_BSLASHacrfull] = ACTIONS(4711), - [anon_sym_BSLASHAcrfull] = ACTIONS(4711), - [anon_sym_BSLASHACRfull] = ACTIONS(4711), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4711), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4711), - [anon_sym_BSLASHacs] = ACTIONS(4711), - [anon_sym_BSLASHAcs] = ACTIONS(4711), - [anon_sym_BSLASHacsp] = ACTIONS(4711), - [anon_sym_BSLASHAcsp] = ACTIONS(4711), - [anon_sym_BSLASHacl] = ACTIONS(4711), - [anon_sym_BSLASHAcl] = ACTIONS(4711), - [anon_sym_BSLASHaclp] = ACTIONS(4711), - [anon_sym_BSLASHAclp] = ACTIONS(4711), - [anon_sym_BSLASHacf] = ACTIONS(4711), - [anon_sym_BSLASHAcf] = ACTIONS(4711), - [anon_sym_BSLASHacfp] = ACTIONS(4711), - [anon_sym_BSLASHAcfp] = ACTIONS(4711), - [anon_sym_BSLASHac] = ACTIONS(4711), - [anon_sym_BSLASHAc] = ACTIONS(4711), - [anon_sym_BSLASHacp] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4711), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4711), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4711), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4711), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4711), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4709), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4711), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4711), - [anon_sym_BSLASHcolor] = ACTIONS(4711), - [anon_sym_BSLASHcolorbox] = ACTIONS(4711), - [anon_sym_BSLASHtextcolor] = ACTIONS(4711), - [anon_sym_BSLASHpagecolor] = ACTIONS(4711), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4711), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4711), - [anon_sym_BSLASHtext] = ACTIONS(4711), - [anon_sym_BSLASHintertext] = ACTIONS(4711), - [anon_sym_shortintertext] = ACTIONS(4711), - }, - [615] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(4677), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_BSLASHpart] = ACTIONS(4677), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddpart] = ACTIONS(4677), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4675), - [anon_sym_BSLASHchapter] = ACTIONS(4677), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddchap] = ACTIONS(4677), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsection] = ACTIONS(4677), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHaddsec] = ACTIONS(4677), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4677), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4675), - [anon_sym_BSLASHparagraph] = ACTIONS(4677), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4677), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4675), - [anon_sym_BSLASHitem] = ACTIONS(4677), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [sym_word] = ACTIONS(4677), - [sym_placeholder] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym__] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4675), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4675), - [anon_sym_BSLASHbegin] = ACTIONS(4677), - [anon_sym_BSLASHusepackage] = ACTIONS(4677), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4677), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4677), - [anon_sym_BSLASHinclude] = ACTIONS(4677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4677), - [anon_sym_BSLASHinput] = ACTIONS(4677), - [anon_sym_BSLASHsubfile] = ACTIONS(4677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4677), - [anon_sym_BSLASHbibliography] = ACTIONS(4677), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4677), - [anon_sym_BSLASHincludesvg] = ACTIONS(4677), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4677), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4677), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4677), - [anon_sym_BSLASHimport] = ACTIONS(4677), - [anon_sym_BSLASHsubimport] = ACTIONS(4677), - [anon_sym_BSLASHinputfrom] = ACTIONS(4677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4677), - [anon_sym_BSLASHincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4677), - [anon_sym_BSLASHcaption] = ACTIONS(4677), - [anon_sym_BSLASHcite] = ACTIONS(4677), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCite] = ACTIONS(4677), - [anon_sym_BSLASHnocite] = ACTIONS(4677), - [anon_sym_BSLASHcitet] = ACTIONS(4677), - [anon_sym_BSLASHcitep] = ACTIONS(4677), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteauthor] = ACTIONS(4677), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4677), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitetitle] = ACTIONS(4677), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteyear] = ACTIONS(4677), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4675), - [anon_sym_BSLASHcitedate] = ACTIONS(4677), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4675), - [anon_sym_BSLASHciteurl] = ACTIONS(4677), - [anon_sym_BSLASHfullcite] = ACTIONS(4677), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4677), - [anon_sym_BSLASHcitealt] = ACTIONS(4677), - [anon_sym_BSLASHcitealp] = ACTIONS(4677), - [anon_sym_BSLASHcitetext] = ACTIONS(4677), - [anon_sym_BSLASHparencite] = ACTIONS(4677), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHParencite] = ACTIONS(4677), - [anon_sym_BSLASHfootcite] = ACTIONS(4677), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4677), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4677), - [anon_sym_BSLASHtextcite] = ACTIONS(4677), - [anon_sym_BSLASHTextcite] = ACTIONS(4677), - [anon_sym_BSLASHsmartcite] = ACTIONS(4677), - [anon_sym_BSLASHSmartcite] = ACTIONS(4677), - [anon_sym_BSLASHsupercite] = ACTIONS(4677), - [anon_sym_BSLASHautocite] = ACTIONS(4677), - [anon_sym_BSLASHAutocite] = ACTIONS(4677), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4675), - [anon_sym_BSLASHvolcite] = ACTIONS(4677), - [anon_sym_BSLASHVolcite] = ACTIONS(4677), - [anon_sym_BSLASHpvolcite] = ACTIONS(4677), - [anon_sym_BSLASHPvolcite] = ACTIONS(4677), - [anon_sym_BSLASHfvolcite] = ACTIONS(4677), - [anon_sym_BSLASHftvolcite] = ACTIONS(4677), - [anon_sym_BSLASHsvolcite] = ACTIONS(4677), - [anon_sym_BSLASHSvolcite] = ACTIONS(4677), - [anon_sym_BSLASHtvolcite] = ACTIONS(4677), - [anon_sym_BSLASHTvolcite] = ACTIONS(4677), - [anon_sym_BSLASHavolcite] = ACTIONS(4677), - [anon_sym_BSLASHAvolcite] = ACTIONS(4677), - [anon_sym_BSLASHnotecite] = ACTIONS(4677), - [anon_sym_BSLASHNotecite] = ACTIONS(4677), - [anon_sym_BSLASHpnotecite] = ACTIONS(4677), - [anon_sym_BSLASHPnotecite] = ACTIONS(4677), - [anon_sym_BSLASHfnotecite] = ACTIONS(4677), - [anon_sym_BSLASHlabel] = ACTIONS(4677), - [anon_sym_BSLASHref] = ACTIONS(4677), - [anon_sym_BSLASHeqref] = ACTIONS(4677), - [anon_sym_BSLASHvref] = ACTIONS(4677), - [anon_sym_BSLASHVref] = ACTIONS(4677), - [anon_sym_BSLASHautoref] = ACTIONS(4677), - [anon_sym_BSLASHpageref] = ACTIONS(4677), - [anon_sym_BSLASHcref] = ACTIONS(4677), - [anon_sym_BSLASHCref] = ACTIONS(4677), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnameCref] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4677), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4677), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4677), - [anon_sym_BSLASHlabelcref] = ACTIONS(4677), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange] = ACTIONS(4677), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHCrefrange] = ACTIONS(4677), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4675), - [anon_sym_BSLASHnewlabel] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand] = ACTIONS(4677), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4677), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4677), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4675), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4677), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdef] = ACTIONS(4677), - [anon_sym_BSLASHlet] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4677), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4677), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4677), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4677), - [anon_sym_BSLASHgls] = ACTIONS(4677), - [anon_sym_BSLASHGls] = ACTIONS(4677), - [anon_sym_BSLASHGLS] = ACTIONS(4677), - [anon_sym_BSLASHglspl] = ACTIONS(4677), - [anon_sym_BSLASHGlspl] = ACTIONS(4677), - [anon_sym_BSLASHGLSpl] = ACTIONS(4677), - [anon_sym_BSLASHglsdisp] = ACTIONS(4677), - [anon_sym_BSLASHglslink] = ACTIONS(4677), - [anon_sym_BSLASHglstext] = ACTIONS(4677), - [anon_sym_BSLASHGlstext] = ACTIONS(4677), - [anon_sym_BSLASHGLStext] = ACTIONS(4677), - [anon_sym_BSLASHglsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4677), - [anon_sym_BSLASHglsplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSplural] = ACTIONS(4677), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4677), - [anon_sym_BSLASHglsname] = ACTIONS(4677), - [anon_sym_BSLASHGlsname] = ACTIONS(4677), - [anon_sym_BSLASHGLSname] = ACTIONS(4677), - [anon_sym_BSLASHglssymbol] = ACTIONS(4677), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4677), - [anon_sym_BSLASHglsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4677), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4677), - [anon_sym_BSLASHglsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4677), - [anon_sym_BSLASHglsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4677), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4677), - [anon_sym_BSLASHglsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4677), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4677), - [anon_sym_BSLASHglsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4677), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4677), - [anon_sym_BSLASHnewacronym] = ACTIONS(4677), - [anon_sym_BSLASHacrshort] = ACTIONS(4677), - [anon_sym_BSLASHAcrshort] = ACTIONS(4677), - [anon_sym_BSLASHACRshort] = ACTIONS(4677), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4677), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4677), - [anon_sym_BSLASHacrlong] = ACTIONS(4677), - [anon_sym_BSLASHAcrlong] = ACTIONS(4677), - [anon_sym_BSLASHACRlong] = ACTIONS(4677), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4677), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4677), - [anon_sym_BSLASHacrfull] = ACTIONS(4677), - [anon_sym_BSLASHAcrfull] = ACTIONS(4677), - [anon_sym_BSLASHACRfull] = ACTIONS(4677), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4677), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4677), - [anon_sym_BSLASHacs] = ACTIONS(4677), - [anon_sym_BSLASHAcs] = ACTIONS(4677), - [anon_sym_BSLASHacsp] = ACTIONS(4677), - [anon_sym_BSLASHAcsp] = ACTIONS(4677), - [anon_sym_BSLASHacl] = ACTIONS(4677), - [anon_sym_BSLASHAcl] = ACTIONS(4677), - [anon_sym_BSLASHaclp] = ACTIONS(4677), - [anon_sym_BSLASHAclp] = ACTIONS(4677), - [anon_sym_BSLASHacf] = ACTIONS(4677), - [anon_sym_BSLASHAcf] = ACTIONS(4677), - [anon_sym_BSLASHacfp] = ACTIONS(4677), - [anon_sym_BSLASHAcfp] = ACTIONS(4677), - [anon_sym_BSLASHac] = ACTIONS(4677), - [anon_sym_BSLASHAc] = ACTIONS(4677), - [anon_sym_BSLASHacp] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4677), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4677), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4677), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4677), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4677), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4675), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4677), - [anon_sym_BSLASHcolor] = ACTIONS(4677), - [anon_sym_BSLASHcolorbox] = ACTIONS(4677), - [anon_sym_BSLASHtextcolor] = ACTIONS(4677), - [anon_sym_BSLASHpagecolor] = ACTIONS(4677), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4677), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4677), - [anon_sym_BSLASHtext] = ACTIONS(4677), - [anon_sym_BSLASHintertext] = ACTIONS(4677), - [anon_sym_shortintertext] = ACTIONS(4677), - }, - [616] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4695), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_BSLASHpart] = ACTIONS(4695), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddpart] = ACTIONS(4695), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4693), - [anon_sym_BSLASHchapter] = ACTIONS(4695), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddchap] = ACTIONS(4695), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsection] = ACTIONS(4695), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHaddsec] = ACTIONS(4695), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsection] = ACTIONS(4695), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(4695), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4693), - [anon_sym_BSLASHitem] = ACTIONS(4695), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [sym_word] = ACTIONS(4695), - [sym_placeholder] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym__] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4693), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4693), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4693), - [anon_sym_BSLASHbegin] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4695), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4695), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4695), - [anon_sym_BSLASHinclude] = ACTIONS(4695), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4695), - [anon_sym_BSLASHinput] = ACTIONS(4695), - [anon_sym_BSLASHsubfile] = ACTIONS(4695), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4695), - [anon_sym_BSLASHbibliography] = ACTIONS(4695), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4695), - [anon_sym_BSLASHincludesvg] = ACTIONS(4695), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4695), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4695), - [anon_sym_BSLASHimport] = ACTIONS(4695), - [anon_sym_BSLASHsubimport] = ACTIONS(4695), - [anon_sym_BSLASHinputfrom] = ACTIONS(4695), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4695), - [anon_sym_BSLASHincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4695), - [anon_sym_BSLASHcaption] = ACTIONS(4695), - [anon_sym_BSLASHcite] = ACTIONS(4695), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCite] = ACTIONS(4695), - [anon_sym_BSLASHnocite] = ACTIONS(4695), - [anon_sym_BSLASHcitet] = ACTIONS(4695), - [anon_sym_BSLASHcitep] = ACTIONS(4695), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteauthor] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitetitle] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteyear] = ACTIONS(4695), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4693), - [anon_sym_BSLASHcitedate] = ACTIONS(4695), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4693), - [anon_sym_BSLASHciteurl] = ACTIONS(4695), - [anon_sym_BSLASHfullcite] = ACTIONS(4695), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4695), - [anon_sym_BSLASHcitealt] = ACTIONS(4695), - [anon_sym_BSLASHcitealp] = ACTIONS(4695), - [anon_sym_BSLASHcitetext] = ACTIONS(4695), - [anon_sym_BSLASHparencite] = ACTIONS(4695), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHParencite] = ACTIONS(4695), - [anon_sym_BSLASHfootcite] = ACTIONS(4695), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4695), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4695), - [anon_sym_BSLASHtextcite] = ACTIONS(4695), - [anon_sym_BSLASHTextcite] = ACTIONS(4695), - [anon_sym_BSLASHsmartcite] = ACTIONS(4695), - [anon_sym_BSLASHSmartcite] = ACTIONS(4695), - [anon_sym_BSLASHsupercite] = ACTIONS(4695), - [anon_sym_BSLASHautocite] = ACTIONS(4695), - [anon_sym_BSLASHAutocite] = ACTIONS(4695), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4693), - [anon_sym_BSLASHvolcite] = ACTIONS(4695), - [anon_sym_BSLASHVolcite] = ACTIONS(4695), - [anon_sym_BSLASHpvolcite] = ACTIONS(4695), - [anon_sym_BSLASHPvolcite] = ACTIONS(4695), - [anon_sym_BSLASHfvolcite] = ACTIONS(4695), - [anon_sym_BSLASHftvolcite] = ACTIONS(4695), - [anon_sym_BSLASHsvolcite] = ACTIONS(4695), - [anon_sym_BSLASHSvolcite] = ACTIONS(4695), - [anon_sym_BSLASHtvolcite] = ACTIONS(4695), - [anon_sym_BSLASHTvolcite] = ACTIONS(4695), - [anon_sym_BSLASHavolcite] = ACTIONS(4695), - [anon_sym_BSLASHAvolcite] = ACTIONS(4695), - [anon_sym_BSLASHnotecite] = ACTIONS(4695), - [anon_sym_BSLASHNotecite] = ACTIONS(4695), - [anon_sym_BSLASHpnotecite] = ACTIONS(4695), - [anon_sym_BSLASHPnotecite] = ACTIONS(4695), - [anon_sym_BSLASHfnotecite] = ACTIONS(4695), - [anon_sym_BSLASHlabel] = ACTIONS(4695), - [anon_sym_BSLASHref] = ACTIONS(4695), - [anon_sym_BSLASHeqref] = ACTIONS(4695), - [anon_sym_BSLASHvref] = ACTIONS(4695), - [anon_sym_BSLASHVref] = ACTIONS(4695), - [anon_sym_BSLASHautoref] = ACTIONS(4695), - [anon_sym_BSLASHpageref] = ACTIONS(4695), - [anon_sym_BSLASHcref] = ACTIONS(4695), - [anon_sym_BSLASHCref] = ACTIONS(4695), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnameCref] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4695), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4695), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4695), - [anon_sym_BSLASHlabelcref] = ACTIONS(4695), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange] = ACTIONS(4695), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHCrefrange] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4693), - [anon_sym_BSLASHnewlabel] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand] = ACTIONS(4695), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4693), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdef] = ACTIONS(4695), - [anon_sym_BSLASHlet] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4695), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4695), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4695), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4695), - [anon_sym_BSLASHgls] = ACTIONS(4695), - [anon_sym_BSLASHGls] = ACTIONS(4695), - [anon_sym_BSLASHGLS] = ACTIONS(4695), - [anon_sym_BSLASHglspl] = ACTIONS(4695), - [anon_sym_BSLASHGlspl] = ACTIONS(4695), - [anon_sym_BSLASHGLSpl] = ACTIONS(4695), - [anon_sym_BSLASHglsdisp] = ACTIONS(4695), - [anon_sym_BSLASHglslink] = ACTIONS(4695), - [anon_sym_BSLASHglstext] = ACTIONS(4695), - [anon_sym_BSLASHGlstext] = ACTIONS(4695), - [anon_sym_BSLASHGLStext] = ACTIONS(4695), - [anon_sym_BSLASHglsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4695), - [anon_sym_BSLASHglsplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSplural] = ACTIONS(4695), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4695), - [anon_sym_BSLASHglsname] = ACTIONS(4695), - [anon_sym_BSLASHGlsname] = ACTIONS(4695), - [anon_sym_BSLASHGLSname] = ACTIONS(4695), - [anon_sym_BSLASHglssymbol] = ACTIONS(4695), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4695), - [anon_sym_BSLASHglsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4695), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4695), - [anon_sym_BSLASHglsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4695), - [anon_sym_BSLASHglsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4695), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4695), - [anon_sym_BSLASHglsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4695), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4695), - [anon_sym_BSLASHglsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4695), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4695), - [anon_sym_BSLASHnewacronym] = ACTIONS(4695), - [anon_sym_BSLASHacrshort] = ACTIONS(4695), - [anon_sym_BSLASHAcrshort] = ACTIONS(4695), - [anon_sym_BSLASHACRshort] = ACTIONS(4695), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4695), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4695), - [anon_sym_BSLASHacrlong] = ACTIONS(4695), - [anon_sym_BSLASHAcrlong] = ACTIONS(4695), - [anon_sym_BSLASHACRlong] = ACTIONS(4695), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4695), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4695), - [anon_sym_BSLASHacrfull] = ACTIONS(4695), - [anon_sym_BSLASHAcrfull] = ACTIONS(4695), - [anon_sym_BSLASHACRfull] = ACTIONS(4695), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4695), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4695), - [anon_sym_BSLASHacs] = ACTIONS(4695), - [anon_sym_BSLASHAcs] = ACTIONS(4695), - [anon_sym_BSLASHacsp] = ACTIONS(4695), - [anon_sym_BSLASHAcsp] = ACTIONS(4695), - [anon_sym_BSLASHacl] = ACTIONS(4695), - [anon_sym_BSLASHAcl] = ACTIONS(4695), - [anon_sym_BSLASHaclp] = ACTIONS(4695), - [anon_sym_BSLASHAclp] = ACTIONS(4695), - [anon_sym_BSLASHacf] = ACTIONS(4695), - [anon_sym_BSLASHAcf] = ACTIONS(4695), - [anon_sym_BSLASHacfp] = ACTIONS(4695), - [anon_sym_BSLASHAcfp] = ACTIONS(4695), - [anon_sym_BSLASHac] = ACTIONS(4695), - [anon_sym_BSLASHAc] = ACTIONS(4695), - [anon_sym_BSLASHacp] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4695), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4695), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4695), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4695), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4695), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4695), - [anon_sym_BSLASHcolor] = ACTIONS(4695), - [anon_sym_BSLASHcolorbox] = ACTIONS(4695), - [anon_sym_BSLASHtextcolor] = ACTIONS(4695), - [anon_sym_BSLASHpagecolor] = ACTIONS(4695), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4695), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4695), - [anon_sym_BSLASHtext] = ACTIONS(4695), - [anon_sym_BSLASHintertext] = ACTIONS(4695), - [anon_sym_shortintertext] = ACTIONS(4695), - }, - [617] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [618] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [619] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [620] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [621] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4663), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_BSLASHpart] = ACTIONS(4663), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddpart] = ACTIONS(4663), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4661), - [anon_sym_BSLASHchapter] = ACTIONS(4663), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddchap] = ACTIONS(4663), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsection] = ACTIONS(4663), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHaddsec] = ACTIONS(4663), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4950), - [anon_sym_BSLASHparagraph] = ACTIONS(4663), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4663), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4661), - [anon_sym_BSLASHitem] = ACTIONS(4663), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [sym_word] = ACTIONS(4663), - [sym_placeholder] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym__] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4661), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4661), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4661), - [anon_sym_BSLASHbegin] = ACTIONS(4663), - [anon_sym_BSLASHusepackage] = ACTIONS(4663), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4663), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4663), - [anon_sym_BSLASHinclude] = ACTIONS(4663), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4663), - [anon_sym_BSLASHinput] = ACTIONS(4663), - [anon_sym_BSLASHsubfile] = ACTIONS(4663), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4663), - [anon_sym_BSLASHbibliography] = ACTIONS(4663), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4663), - [anon_sym_BSLASHincludesvg] = ACTIONS(4663), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4663), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4663), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4663), - [anon_sym_BSLASHimport] = ACTIONS(4663), - [anon_sym_BSLASHsubimport] = ACTIONS(4663), - [anon_sym_BSLASHinputfrom] = ACTIONS(4663), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4663), - [anon_sym_BSLASHincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4663), - [anon_sym_BSLASHcaption] = ACTIONS(4663), - [anon_sym_BSLASHcite] = ACTIONS(4663), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCite] = ACTIONS(4663), - [anon_sym_BSLASHnocite] = ACTIONS(4663), - [anon_sym_BSLASHcitet] = ACTIONS(4663), - [anon_sym_BSLASHcitep] = ACTIONS(4663), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteauthor] = ACTIONS(4663), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4663), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitetitle] = ACTIONS(4663), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteyear] = ACTIONS(4663), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4661), - [anon_sym_BSLASHcitedate] = ACTIONS(4663), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4661), - [anon_sym_BSLASHciteurl] = ACTIONS(4663), - [anon_sym_BSLASHfullcite] = ACTIONS(4663), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4663), - [anon_sym_BSLASHcitealt] = ACTIONS(4663), - [anon_sym_BSLASHcitealp] = ACTIONS(4663), - [anon_sym_BSLASHcitetext] = ACTIONS(4663), - [anon_sym_BSLASHparencite] = ACTIONS(4663), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHParencite] = ACTIONS(4663), - [anon_sym_BSLASHfootcite] = ACTIONS(4663), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4663), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4663), - [anon_sym_BSLASHtextcite] = ACTIONS(4663), - [anon_sym_BSLASHTextcite] = ACTIONS(4663), - [anon_sym_BSLASHsmartcite] = ACTIONS(4663), - [anon_sym_BSLASHSmartcite] = ACTIONS(4663), - [anon_sym_BSLASHsupercite] = ACTIONS(4663), - [anon_sym_BSLASHautocite] = ACTIONS(4663), - [anon_sym_BSLASHAutocite] = ACTIONS(4663), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4661), - [anon_sym_BSLASHvolcite] = ACTIONS(4663), - [anon_sym_BSLASHVolcite] = ACTIONS(4663), - [anon_sym_BSLASHpvolcite] = ACTIONS(4663), - [anon_sym_BSLASHPvolcite] = ACTIONS(4663), - [anon_sym_BSLASHfvolcite] = ACTIONS(4663), - [anon_sym_BSLASHftvolcite] = ACTIONS(4663), - [anon_sym_BSLASHsvolcite] = ACTIONS(4663), - [anon_sym_BSLASHSvolcite] = ACTIONS(4663), - [anon_sym_BSLASHtvolcite] = ACTIONS(4663), - [anon_sym_BSLASHTvolcite] = ACTIONS(4663), - [anon_sym_BSLASHavolcite] = ACTIONS(4663), - [anon_sym_BSLASHAvolcite] = ACTIONS(4663), - [anon_sym_BSLASHnotecite] = ACTIONS(4663), - [anon_sym_BSLASHNotecite] = ACTIONS(4663), - [anon_sym_BSLASHpnotecite] = ACTIONS(4663), - [anon_sym_BSLASHPnotecite] = ACTIONS(4663), - [anon_sym_BSLASHfnotecite] = ACTIONS(4663), - [anon_sym_BSLASHlabel] = ACTIONS(4663), - [anon_sym_BSLASHref] = ACTIONS(4663), - [anon_sym_BSLASHeqref] = ACTIONS(4663), - [anon_sym_BSLASHvref] = ACTIONS(4663), - [anon_sym_BSLASHVref] = ACTIONS(4663), - [anon_sym_BSLASHautoref] = ACTIONS(4663), - [anon_sym_BSLASHpageref] = ACTIONS(4663), - [anon_sym_BSLASHcref] = ACTIONS(4663), - [anon_sym_BSLASHCref] = ACTIONS(4663), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnameCref] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4663), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4663), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4663), - [anon_sym_BSLASHlabelcref] = ACTIONS(4663), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange] = ACTIONS(4663), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHCrefrange] = ACTIONS(4663), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4661), - [anon_sym_BSLASHnewlabel] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand] = ACTIONS(4663), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4663), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4663), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4661), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4663), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdef] = ACTIONS(4663), - [anon_sym_BSLASHlet] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4663), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4663), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4663), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4663), - [anon_sym_BSLASHgls] = ACTIONS(4663), - [anon_sym_BSLASHGls] = ACTIONS(4663), - [anon_sym_BSLASHGLS] = ACTIONS(4663), - [anon_sym_BSLASHglspl] = ACTIONS(4663), - [anon_sym_BSLASHGlspl] = ACTIONS(4663), - [anon_sym_BSLASHGLSpl] = ACTIONS(4663), - [anon_sym_BSLASHglsdisp] = ACTIONS(4663), - [anon_sym_BSLASHglslink] = ACTIONS(4663), - [anon_sym_BSLASHglstext] = ACTIONS(4663), - [anon_sym_BSLASHGlstext] = ACTIONS(4663), - [anon_sym_BSLASHGLStext] = ACTIONS(4663), - [anon_sym_BSLASHglsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4663), - [anon_sym_BSLASHglsplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSplural] = ACTIONS(4663), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4663), - [anon_sym_BSLASHglsname] = ACTIONS(4663), - [anon_sym_BSLASHGlsname] = ACTIONS(4663), - [anon_sym_BSLASHGLSname] = ACTIONS(4663), - [anon_sym_BSLASHglssymbol] = ACTIONS(4663), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4663), - [anon_sym_BSLASHglsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4663), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4663), - [anon_sym_BSLASHglsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4663), - [anon_sym_BSLASHglsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4663), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4663), - [anon_sym_BSLASHglsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4663), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4663), - [anon_sym_BSLASHglsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4663), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4663), - [anon_sym_BSLASHnewacronym] = ACTIONS(4663), - [anon_sym_BSLASHacrshort] = ACTIONS(4663), - [anon_sym_BSLASHAcrshort] = ACTIONS(4663), - [anon_sym_BSLASHACRshort] = ACTIONS(4663), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4663), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4663), - [anon_sym_BSLASHacrlong] = ACTIONS(4663), - [anon_sym_BSLASHAcrlong] = ACTIONS(4663), - [anon_sym_BSLASHACRlong] = ACTIONS(4663), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4663), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4663), - [anon_sym_BSLASHacrfull] = ACTIONS(4663), - [anon_sym_BSLASHAcrfull] = ACTIONS(4663), - [anon_sym_BSLASHACRfull] = ACTIONS(4663), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4663), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4663), - [anon_sym_BSLASHacs] = ACTIONS(4663), - [anon_sym_BSLASHAcs] = ACTIONS(4663), - [anon_sym_BSLASHacsp] = ACTIONS(4663), - [anon_sym_BSLASHAcsp] = ACTIONS(4663), - [anon_sym_BSLASHacl] = ACTIONS(4663), - [anon_sym_BSLASHAcl] = ACTIONS(4663), - [anon_sym_BSLASHaclp] = ACTIONS(4663), - [anon_sym_BSLASHAclp] = ACTIONS(4663), - [anon_sym_BSLASHacf] = ACTIONS(4663), - [anon_sym_BSLASHAcf] = ACTIONS(4663), - [anon_sym_BSLASHacfp] = ACTIONS(4663), - [anon_sym_BSLASHAcfp] = ACTIONS(4663), - [anon_sym_BSLASHac] = ACTIONS(4663), - [anon_sym_BSLASHAc] = ACTIONS(4663), - [anon_sym_BSLASHacp] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4663), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4663), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4663), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4663), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4663), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4663), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4663), - [anon_sym_BSLASHcolor] = ACTIONS(4663), - [anon_sym_BSLASHcolorbox] = ACTIONS(4663), - [anon_sym_BSLASHtextcolor] = ACTIONS(4663), - [anon_sym_BSLASHpagecolor] = ACTIONS(4663), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4663), - [anon_sym_BSLASHtext] = ACTIONS(4663), - [anon_sym_BSLASHintertext] = ACTIONS(4663), - [anon_sym_shortintertext] = ACTIONS(4663), - }, - [622] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(4691), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4689), - [anon_sym_COMMA] = ACTIONS(4689), - [anon_sym_EQ] = ACTIONS(4689), - [anon_sym_BSLASHpart] = ACTIONS(4691), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddpart] = ACTIONS(4691), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), - [anon_sym_BSLASHchapter] = ACTIONS(4691), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddchap] = ACTIONS(4691), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsection] = ACTIONS(4691), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHaddsec] = ACTIONS(4691), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), - [anon_sym_BSLASHparagraph] = ACTIONS(4691), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), - [anon_sym_BSLASHitem] = ACTIONS(4691), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [sym_word] = ACTIONS(4691), - [sym_placeholder] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4691), - [anon_sym_STAR] = ACTIONS(4691), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_CARET] = ACTIONS(4691), - [anon_sym__] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4691), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), - [anon_sym_BSLASHbegin] = ACTIONS(4691), - [anon_sym_BSLASHusepackage] = ACTIONS(4691), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), - [anon_sym_BSLASHinclude] = ACTIONS(4691), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), - [anon_sym_BSLASHinput] = ACTIONS(4691), - [anon_sym_BSLASHsubfile] = ACTIONS(4691), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), - [anon_sym_BSLASHbibliography] = ACTIONS(4691), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), - [anon_sym_BSLASHincludesvg] = ACTIONS(4691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), - [anon_sym_BSLASHimport] = ACTIONS(4691), - [anon_sym_BSLASHsubimport] = ACTIONS(4691), - [anon_sym_BSLASHinputfrom] = ACTIONS(4691), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), - [anon_sym_BSLASHincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), - [anon_sym_BSLASHcaption] = ACTIONS(4691), - [anon_sym_BSLASHcite] = ACTIONS(4691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCite] = ACTIONS(4691), - [anon_sym_BSLASHnocite] = ACTIONS(4691), - [anon_sym_BSLASHcitet] = ACTIONS(4691), - [anon_sym_BSLASHcitep] = ACTIONS(4691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteauthor] = ACTIONS(4691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitetitle] = ACTIONS(4691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteyear] = ACTIONS(4691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), - [anon_sym_BSLASHcitedate] = ACTIONS(4691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), - [anon_sym_BSLASHciteurl] = ACTIONS(4691), - [anon_sym_BSLASHfullcite] = ACTIONS(4691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), - [anon_sym_BSLASHcitealt] = ACTIONS(4691), - [anon_sym_BSLASHcitealp] = ACTIONS(4691), - [anon_sym_BSLASHcitetext] = ACTIONS(4691), - [anon_sym_BSLASHparencite] = ACTIONS(4691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHParencite] = ACTIONS(4691), - [anon_sym_BSLASHfootcite] = ACTIONS(4691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), - [anon_sym_BSLASHtextcite] = ACTIONS(4691), - [anon_sym_BSLASHTextcite] = ACTIONS(4691), - [anon_sym_BSLASHsmartcite] = ACTIONS(4691), - [anon_sym_BSLASHSmartcite] = ACTIONS(4691), - [anon_sym_BSLASHsupercite] = ACTIONS(4691), - [anon_sym_BSLASHautocite] = ACTIONS(4691), - [anon_sym_BSLASHAutocite] = ACTIONS(4691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), - [anon_sym_BSLASHvolcite] = ACTIONS(4691), - [anon_sym_BSLASHVolcite] = ACTIONS(4691), - [anon_sym_BSLASHpvolcite] = ACTIONS(4691), - [anon_sym_BSLASHPvolcite] = ACTIONS(4691), - [anon_sym_BSLASHfvolcite] = ACTIONS(4691), - [anon_sym_BSLASHftvolcite] = ACTIONS(4691), - [anon_sym_BSLASHsvolcite] = ACTIONS(4691), - [anon_sym_BSLASHSvolcite] = ACTIONS(4691), - [anon_sym_BSLASHtvolcite] = ACTIONS(4691), - [anon_sym_BSLASHTvolcite] = ACTIONS(4691), - [anon_sym_BSLASHavolcite] = ACTIONS(4691), - [anon_sym_BSLASHAvolcite] = ACTIONS(4691), - [anon_sym_BSLASHnotecite] = ACTIONS(4691), - [anon_sym_BSLASHNotecite] = ACTIONS(4691), - [anon_sym_BSLASHpnotecite] = ACTIONS(4691), - [anon_sym_BSLASHPnotecite] = ACTIONS(4691), - [anon_sym_BSLASHfnotecite] = ACTIONS(4691), - [anon_sym_BSLASHlabel] = ACTIONS(4691), - [anon_sym_BSLASHref] = ACTIONS(4691), - [anon_sym_BSLASHeqref] = ACTIONS(4691), - [anon_sym_BSLASHvref] = ACTIONS(4691), - [anon_sym_BSLASHVref] = ACTIONS(4691), - [anon_sym_BSLASHautoref] = ACTIONS(4691), - [anon_sym_BSLASHpageref] = ACTIONS(4691), - [anon_sym_BSLASHcref] = ACTIONS(4691), - [anon_sym_BSLASHCref] = ACTIONS(4691), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnameCref] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), - [anon_sym_BSLASHlabelcref] = ACTIONS(4691), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange] = ACTIONS(4691), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHCrefrange] = ACTIONS(4691), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), - [anon_sym_BSLASHnewlabel] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand] = ACTIONS(4691), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdef] = ACTIONS(4691), - [anon_sym_BSLASHlet] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4691), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4691), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), - [anon_sym_BSLASHgls] = ACTIONS(4691), - [anon_sym_BSLASHGls] = ACTIONS(4691), - [anon_sym_BSLASHGLS] = ACTIONS(4691), - [anon_sym_BSLASHglspl] = ACTIONS(4691), - [anon_sym_BSLASHGlspl] = ACTIONS(4691), - [anon_sym_BSLASHGLSpl] = ACTIONS(4691), - [anon_sym_BSLASHglsdisp] = ACTIONS(4691), - [anon_sym_BSLASHglslink] = ACTIONS(4691), - [anon_sym_BSLASHglstext] = ACTIONS(4691), - [anon_sym_BSLASHGlstext] = ACTIONS(4691), - [anon_sym_BSLASHGLStext] = ACTIONS(4691), - [anon_sym_BSLASHglsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), - [anon_sym_BSLASHglsplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSplural] = ACTIONS(4691), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), - [anon_sym_BSLASHglsname] = ACTIONS(4691), - [anon_sym_BSLASHGlsname] = ACTIONS(4691), - [anon_sym_BSLASHGLSname] = ACTIONS(4691), - [anon_sym_BSLASHglssymbol] = ACTIONS(4691), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), - [anon_sym_BSLASHglsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), - [anon_sym_BSLASHglsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), - [anon_sym_BSLASHglsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), - [anon_sym_BSLASHglsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), - [anon_sym_BSLASHglsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4691), - [anon_sym_BSLASHAcrshort] = ACTIONS(4691), - [anon_sym_BSLASHACRshort] = ACTIONS(4691), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), - [anon_sym_BSLASHacrlong] = ACTIONS(4691), - [anon_sym_BSLASHAcrlong] = ACTIONS(4691), - [anon_sym_BSLASHACRlong] = ACTIONS(4691), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), - [anon_sym_BSLASHacrfull] = ACTIONS(4691), - [anon_sym_BSLASHAcrfull] = ACTIONS(4691), - [anon_sym_BSLASHACRfull] = ACTIONS(4691), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), - [anon_sym_BSLASHacs] = ACTIONS(4691), - [anon_sym_BSLASHAcs] = ACTIONS(4691), - [anon_sym_BSLASHacsp] = ACTIONS(4691), - [anon_sym_BSLASHAcsp] = ACTIONS(4691), - [anon_sym_BSLASHacl] = ACTIONS(4691), - [anon_sym_BSLASHAcl] = ACTIONS(4691), - [anon_sym_BSLASHaclp] = ACTIONS(4691), - [anon_sym_BSLASHAclp] = ACTIONS(4691), - [anon_sym_BSLASHacf] = ACTIONS(4691), - [anon_sym_BSLASHAcf] = ACTIONS(4691), - [anon_sym_BSLASHacfp] = ACTIONS(4691), - [anon_sym_BSLASHAcfp] = ACTIONS(4691), - [anon_sym_BSLASHac] = ACTIONS(4691), - [anon_sym_BSLASHAc] = ACTIONS(4691), - [anon_sym_BSLASHacp] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4689), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), - [anon_sym_BSLASHcolor] = ACTIONS(4691), - [anon_sym_BSLASHcolorbox] = ACTIONS(4691), - [anon_sym_BSLASHtextcolor] = ACTIONS(4691), - [anon_sym_BSLASHpagecolor] = ACTIONS(4691), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), - [anon_sym_BSLASHtext] = ACTIONS(4691), - [anon_sym_BSLASHintertext] = ACTIONS(4691), - [anon_sym_shortintertext] = ACTIONS(4691), - }, - [623] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [624] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [625] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [626] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(4687), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddsec] = ACTIONS(4687), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [627] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_RBRACK] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_BSLASHpart] = ACTIONS(4653), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddpart] = ACTIONS(4653), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4651), - [anon_sym_BSLASHchapter] = ACTIONS(4653), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddchap] = ACTIONS(4653), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsection] = ACTIONS(4653), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHaddsec] = ACTIONS(4653), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4653), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4651), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4956), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4653), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4651), - [anon_sym_BSLASHitem] = ACTIONS(4653), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [sym_word] = ACTIONS(4653), - [sym_placeholder] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym__] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4651), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4651), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4651), - [anon_sym_BSLASHbegin] = ACTIONS(4653), - [anon_sym_BSLASHusepackage] = ACTIONS(4653), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4653), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4653), - [anon_sym_BSLASHinclude] = ACTIONS(4653), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4653), - [anon_sym_BSLASHinput] = ACTIONS(4653), - [anon_sym_BSLASHsubfile] = ACTIONS(4653), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4653), - [anon_sym_BSLASHbibliography] = ACTIONS(4653), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4653), - [anon_sym_BSLASHincludesvg] = ACTIONS(4653), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4653), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4653), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4653), - [anon_sym_BSLASHimport] = ACTIONS(4653), - [anon_sym_BSLASHsubimport] = ACTIONS(4653), - [anon_sym_BSLASHinputfrom] = ACTIONS(4653), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4653), - [anon_sym_BSLASHincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4653), - [anon_sym_BSLASHcaption] = ACTIONS(4653), - [anon_sym_BSLASHcite] = ACTIONS(4653), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCite] = ACTIONS(4653), - [anon_sym_BSLASHnocite] = ACTIONS(4653), - [anon_sym_BSLASHcitet] = ACTIONS(4653), - [anon_sym_BSLASHcitep] = ACTIONS(4653), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteauthor] = ACTIONS(4653), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4653), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitetitle] = ACTIONS(4653), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteyear] = ACTIONS(4653), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4651), - [anon_sym_BSLASHcitedate] = ACTIONS(4653), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4651), - [anon_sym_BSLASHciteurl] = ACTIONS(4653), - [anon_sym_BSLASHfullcite] = ACTIONS(4653), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4653), - [anon_sym_BSLASHcitealt] = ACTIONS(4653), - [anon_sym_BSLASHcitealp] = ACTIONS(4653), - [anon_sym_BSLASHcitetext] = ACTIONS(4653), - [anon_sym_BSLASHparencite] = ACTIONS(4653), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHParencite] = ACTIONS(4653), - [anon_sym_BSLASHfootcite] = ACTIONS(4653), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4653), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4653), - [anon_sym_BSLASHtextcite] = ACTIONS(4653), - [anon_sym_BSLASHTextcite] = ACTIONS(4653), - [anon_sym_BSLASHsmartcite] = ACTIONS(4653), - [anon_sym_BSLASHSmartcite] = ACTIONS(4653), - [anon_sym_BSLASHsupercite] = ACTIONS(4653), - [anon_sym_BSLASHautocite] = ACTIONS(4653), - [anon_sym_BSLASHAutocite] = ACTIONS(4653), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4651), - [anon_sym_BSLASHvolcite] = ACTIONS(4653), - [anon_sym_BSLASHVolcite] = ACTIONS(4653), - [anon_sym_BSLASHpvolcite] = ACTIONS(4653), - [anon_sym_BSLASHPvolcite] = ACTIONS(4653), - [anon_sym_BSLASHfvolcite] = ACTIONS(4653), - [anon_sym_BSLASHftvolcite] = ACTIONS(4653), - [anon_sym_BSLASHsvolcite] = ACTIONS(4653), - [anon_sym_BSLASHSvolcite] = ACTIONS(4653), - [anon_sym_BSLASHtvolcite] = ACTIONS(4653), - [anon_sym_BSLASHTvolcite] = ACTIONS(4653), - [anon_sym_BSLASHavolcite] = ACTIONS(4653), - [anon_sym_BSLASHAvolcite] = ACTIONS(4653), - [anon_sym_BSLASHnotecite] = ACTIONS(4653), - [anon_sym_BSLASHNotecite] = ACTIONS(4653), - [anon_sym_BSLASHpnotecite] = ACTIONS(4653), - [anon_sym_BSLASHPnotecite] = ACTIONS(4653), - [anon_sym_BSLASHfnotecite] = ACTIONS(4653), - [anon_sym_BSLASHlabel] = ACTIONS(4653), - [anon_sym_BSLASHref] = ACTIONS(4653), - [anon_sym_BSLASHeqref] = ACTIONS(4653), - [anon_sym_BSLASHvref] = ACTIONS(4653), - [anon_sym_BSLASHVref] = ACTIONS(4653), - [anon_sym_BSLASHautoref] = ACTIONS(4653), - [anon_sym_BSLASHpageref] = ACTIONS(4653), - [anon_sym_BSLASHcref] = ACTIONS(4653), - [anon_sym_BSLASHCref] = ACTIONS(4653), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnameCref] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4653), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4653), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4653), - [anon_sym_BSLASHlabelcref] = ACTIONS(4653), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange] = ACTIONS(4653), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHCrefrange] = ACTIONS(4653), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4651), - [anon_sym_BSLASHnewlabel] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand] = ACTIONS(4653), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4653), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4653), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4651), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4653), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdef] = ACTIONS(4653), - [anon_sym_BSLASHlet] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4653), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4653), - [anon_sym_BSLASHgls] = ACTIONS(4653), - [anon_sym_BSLASHGls] = ACTIONS(4653), - [anon_sym_BSLASHGLS] = ACTIONS(4653), - [anon_sym_BSLASHglspl] = ACTIONS(4653), - [anon_sym_BSLASHGlspl] = ACTIONS(4653), - [anon_sym_BSLASHGLSpl] = ACTIONS(4653), - [anon_sym_BSLASHglsdisp] = ACTIONS(4653), - [anon_sym_BSLASHglslink] = ACTIONS(4653), - [anon_sym_BSLASHglstext] = ACTIONS(4653), - [anon_sym_BSLASHGlstext] = ACTIONS(4653), - [anon_sym_BSLASHGLStext] = ACTIONS(4653), - [anon_sym_BSLASHglsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4653), - [anon_sym_BSLASHglsplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSplural] = ACTIONS(4653), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4653), - [anon_sym_BSLASHglsname] = ACTIONS(4653), - [anon_sym_BSLASHGlsname] = ACTIONS(4653), - [anon_sym_BSLASHGLSname] = ACTIONS(4653), - [anon_sym_BSLASHglssymbol] = ACTIONS(4653), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4653), - [anon_sym_BSLASHglsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4653), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4653), - [anon_sym_BSLASHglsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4653), - [anon_sym_BSLASHglsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4653), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4653), - [anon_sym_BSLASHglsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4653), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4653), - [anon_sym_BSLASHglsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4653), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4653), - [anon_sym_BSLASHnewacronym] = ACTIONS(4653), - [anon_sym_BSLASHacrshort] = ACTIONS(4653), - [anon_sym_BSLASHAcrshort] = ACTIONS(4653), - [anon_sym_BSLASHACRshort] = ACTIONS(4653), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4653), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4653), - [anon_sym_BSLASHacrlong] = ACTIONS(4653), - [anon_sym_BSLASHAcrlong] = ACTIONS(4653), - [anon_sym_BSLASHACRlong] = ACTIONS(4653), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4653), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4653), - [anon_sym_BSLASHacrfull] = ACTIONS(4653), - [anon_sym_BSLASHAcrfull] = ACTIONS(4653), - [anon_sym_BSLASHACRfull] = ACTIONS(4653), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4653), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4653), - [anon_sym_BSLASHacs] = ACTIONS(4653), - [anon_sym_BSLASHAcs] = ACTIONS(4653), - [anon_sym_BSLASHacsp] = ACTIONS(4653), - [anon_sym_BSLASHAcsp] = ACTIONS(4653), - [anon_sym_BSLASHacl] = ACTIONS(4653), - [anon_sym_BSLASHAcl] = ACTIONS(4653), - [anon_sym_BSLASHaclp] = ACTIONS(4653), - [anon_sym_BSLASHAclp] = ACTIONS(4653), - [anon_sym_BSLASHacf] = ACTIONS(4653), - [anon_sym_BSLASHAcf] = ACTIONS(4653), - [anon_sym_BSLASHacfp] = ACTIONS(4653), - [anon_sym_BSLASHAcfp] = ACTIONS(4653), - [anon_sym_BSLASHac] = ACTIONS(4653), - [anon_sym_BSLASHAc] = ACTIONS(4653), - [anon_sym_BSLASHacp] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4653), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4653), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4653), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4653), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4653), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4651), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4653), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4653), - [anon_sym_BSLASHcolor] = ACTIONS(4653), - [anon_sym_BSLASHcolorbox] = ACTIONS(4653), - [anon_sym_BSLASHtextcolor] = ACTIONS(4653), - [anon_sym_BSLASHpagecolor] = ACTIONS(4653), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4653), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4653), - [anon_sym_BSLASHtext] = ACTIONS(4653), - [anon_sym_BSLASHintertext] = ACTIONS(4653), - [anon_sym_shortintertext] = ACTIONS(4653), - }, - [628] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(4687), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_RPAREN] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_BSLASHpart] = ACTIONS(4687), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddpart] = ACTIONS(4687), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4685), - [anon_sym_BSLASHchapter] = ACTIONS(4687), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4685), - [anon_sym_BSLASHaddchap] = ACTIONS(4687), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4687), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4685), - [anon_sym_BSLASHparagraph] = ACTIONS(4687), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4687), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4685), - [anon_sym_BSLASHitem] = ACTIONS(4687), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [sym_word] = ACTIONS(4687), - [sym_placeholder] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym__] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4685), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4685), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4685), - [anon_sym_BSLASHbegin] = ACTIONS(4687), - [anon_sym_BSLASHusepackage] = ACTIONS(4687), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4687), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4687), - [anon_sym_BSLASHinclude] = ACTIONS(4687), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4687), - [anon_sym_BSLASHinput] = ACTIONS(4687), - [anon_sym_BSLASHsubfile] = ACTIONS(4687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4687), - [anon_sym_BSLASHbibliography] = ACTIONS(4687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4687), - [anon_sym_BSLASHincludesvg] = ACTIONS(4687), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4687), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4687), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4687), - [anon_sym_BSLASHimport] = ACTIONS(4687), - [anon_sym_BSLASHsubimport] = ACTIONS(4687), - [anon_sym_BSLASHinputfrom] = ACTIONS(4687), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4687), - [anon_sym_BSLASHincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4687), - [anon_sym_BSLASHcaption] = ACTIONS(4687), - [anon_sym_BSLASHcite] = ACTIONS(4687), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCite] = ACTIONS(4687), - [anon_sym_BSLASHnocite] = ACTIONS(4687), - [anon_sym_BSLASHcitet] = ACTIONS(4687), - [anon_sym_BSLASHcitep] = ACTIONS(4687), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteauthor] = ACTIONS(4687), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4687), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitetitle] = ACTIONS(4687), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteyear] = ACTIONS(4687), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4685), - [anon_sym_BSLASHcitedate] = ACTIONS(4687), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4685), - [anon_sym_BSLASHciteurl] = ACTIONS(4687), - [anon_sym_BSLASHfullcite] = ACTIONS(4687), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4687), - [anon_sym_BSLASHcitealt] = ACTIONS(4687), - [anon_sym_BSLASHcitealp] = ACTIONS(4687), - [anon_sym_BSLASHcitetext] = ACTIONS(4687), - [anon_sym_BSLASHparencite] = ACTIONS(4687), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHParencite] = ACTIONS(4687), - [anon_sym_BSLASHfootcite] = ACTIONS(4687), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4687), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4687), - [anon_sym_BSLASHtextcite] = ACTIONS(4687), - [anon_sym_BSLASHTextcite] = ACTIONS(4687), - [anon_sym_BSLASHsmartcite] = ACTIONS(4687), - [anon_sym_BSLASHSmartcite] = ACTIONS(4687), - [anon_sym_BSLASHsupercite] = ACTIONS(4687), - [anon_sym_BSLASHautocite] = ACTIONS(4687), - [anon_sym_BSLASHAutocite] = ACTIONS(4687), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4685), - [anon_sym_BSLASHvolcite] = ACTIONS(4687), - [anon_sym_BSLASHVolcite] = ACTIONS(4687), - [anon_sym_BSLASHpvolcite] = ACTIONS(4687), - [anon_sym_BSLASHPvolcite] = ACTIONS(4687), - [anon_sym_BSLASHfvolcite] = ACTIONS(4687), - [anon_sym_BSLASHftvolcite] = ACTIONS(4687), - [anon_sym_BSLASHsvolcite] = ACTIONS(4687), - [anon_sym_BSLASHSvolcite] = ACTIONS(4687), - [anon_sym_BSLASHtvolcite] = ACTIONS(4687), - [anon_sym_BSLASHTvolcite] = ACTIONS(4687), - [anon_sym_BSLASHavolcite] = ACTIONS(4687), - [anon_sym_BSLASHAvolcite] = ACTIONS(4687), - [anon_sym_BSLASHnotecite] = ACTIONS(4687), - [anon_sym_BSLASHNotecite] = ACTIONS(4687), - [anon_sym_BSLASHpnotecite] = ACTIONS(4687), - [anon_sym_BSLASHPnotecite] = ACTIONS(4687), - [anon_sym_BSLASHfnotecite] = ACTIONS(4687), - [anon_sym_BSLASHlabel] = ACTIONS(4687), - [anon_sym_BSLASHref] = ACTIONS(4687), - [anon_sym_BSLASHeqref] = ACTIONS(4687), - [anon_sym_BSLASHvref] = ACTIONS(4687), - [anon_sym_BSLASHVref] = ACTIONS(4687), - [anon_sym_BSLASHautoref] = ACTIONS(4687), - [anon_sym_BSLASHpageref] = ACTIONS(4687), - [anon_sym_BSLASHcref] = ACTIONS(4687), - [anon_sym_BSLASHCref] = ACTIONS(4687), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnameCref] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4687), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4687), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4687), - [anon_sym_BSLASHlabelcref] = ACTIONS(4687), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange] = ACTIONS(4687), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHCrefrange] = ACTIONS(4687), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4685), - [anon_sym_BSLASHnewlabel] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand] = ACTIONS(4687), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4687), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4687), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4685), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4687), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdef] = ACTIONS(4687), - [anon_sym_BSLASHlet] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4687), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4687), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4687), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4687), - [anon_sym_BSLASHgls] = ACTIONS(4687), - [anon_sym_BSLASHGls] = ACTIONS(4687), - [anon_sym_BSLASHGLS] = ACTIONS(4687), - [anon_sym_BSLASHglspl] = ACTIONS(4687), - [anon_sym_BSLASHGlspl] = ACTIONS(4687), - [anon_sym_BSLASHGLSpl] = ACTIONS(4687), - [anon_sym_BSLASHglsdisp] = ACTIONS(4687), - [anon_sym_BSLASHglslink] = ACTIONS(4687), - [anon_sym_BSLASHglstext] = ACTIONS(4687), - [anon_sym_BSLASHGlstext] = ACTIONS(4687), - [anon_sym_BSLASHGLStext] = ACTIONS(4687), - [anon_sym_BSLASHglsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4687), - [anon_sym_BSLASHglsplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSplural] = ACTIONS(4687), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4687), - [anon_sym_BSLASHglsname] = ACTIONS(4687), - [anon_sym_BSLASHGlsname] = ACTIONS(4687), - [anon_sym_BSLASHGLSname] = ACTIONS(4687), - [anon_sym_BSLASHglssymbol] = ACTIONS(4687), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4687), - [anon_sym_BSLASHglsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4687), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4687), - [anon_sym_BSLASHglsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4687), - [anon_sym_BSLASHglsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4687), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4687), - [anon_sym_BSLASHglsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4687), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4687), - [anon_sym_BSLASHglsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4687), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4687), - [anon_sym_BSLASHnewacronym] = ACTIONS(4687), - [anon_sym_BSLASHacrshort] = ACTIONS(4687), - [anon_sym_BSLASHAcrshort] = ACTIONS(4687), - [anon_sym_BSLASHACRshort] = ACTIONS(4687), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4687), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4687), - [anon_sym_BSLASHacrlong] = ACTIONS(4687), - [anon_sym_BSLASHAcrlong] = ACTIONS(4687), - [anon_sym_BSLASHACRlong] = ACTIONS(4687), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4687), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4687), - [anon_sym_BSLASHacrfull] = ACTIONS(4687), - [anon_sym_BSLASHAcrfull] = ACTIONS(4687), - [anon_sym_BSLASHACRfull] = ACTIONS(4687), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4687), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4687), - [anon_sym_BSLASHacs] = ACTIONS(4687), - [anon_sym_BSLASHAcs] = ACTIONS(4687), - [anon_sym_BSLASHacsp] = ACTIONS(4687), - [anon_sym_BSLASHAcsp] = ACTIONS(4687), - [anon_sym_BSLASHacl] = ACTIONS(4687), - [anon_sym_BSLASHAcl] = ACTIONS(4687), - [anon_sym_BSLASHaclp] = ACTIONS(4687), - [anon_sym_BSLASHAclp] = ACTIONS(4687), - [anon_sym_BSLASHacf] = ACTIONS(4687), - [anon_sym_BSLASHAcf] = ACTIONS(4687), - [anon_sym_BSLASHacfp] = ACTIONS(4687), - [anon_sym_BSLASHAcfp] = ACTIONS(4687), - [anon_sym_BSLASHac] = ACTIONS(4687), - [anon_sym_BSLASHAc] = ACTIONS(4687), - [anon_sym_BSLASHacp] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4687), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4687), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4687), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4687), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4687), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4685), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4687), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4687), - [anon_sym_BSLASHcolor] = ACTIONS(4687), - [anon_sym_BSLASHcolorbox] = ACTIONS(4687), - [anon_sym_BSLASHtextcolor] = ACTIONS(4687), - [anon_sym_BSLASHpagecolor] = ACTIONS(4687), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4687), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4687), - [anon_sym_BSLASHtext] = ACTIONS(4687), - [anon_sym_BSLASHintertext] = ACTIONS(4687), - [anon_sym_shortintertext] = ACTIONS(4687), - }, - [629] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4643), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_BSLASHpart] = ACTIONS(4643), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddpart] = ACTIONS(4643), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4641), - [anon_sym_BSLASHchapter] = ACTIONS(4643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddchap] = ACTIONS(4643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsection] = ACTIONS(4643), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHaddsec] = ACTIONS(4643), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4643), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4641), - [anon_sym_BSLASHparagraph] = ACTIONS(4643), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4641), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4962), - [anon_sym_BSLASHitem] = ACTIONS(4643), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [sym_word] = ACTIONS(4643), - [sym_placeholder] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym__] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4641), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4641), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4641), - [anon_sym_BSLASHbegin] = ACTIONS(4643), - [anon_sym_BSLASHusepackage] = ACTIONS(4643), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4643), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4643), - [anon_sym_BSLASHinclude] = ACTIONS(4643), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4643), - [anon_sym_BSLASHinput] = ACTIONS(4643), - [anon_sym_BSLASHsubfile] = ACTIONS(4643), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4643), - [anon_sym_BSLASHbibliography] = ACTIONS(4643), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4643), - [anon_sym_BSLASHincludesvg] = ACTIONS(4643), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4643), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4643), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4643), - [anon_sym_BSLASHimport] = ACTIONS(4643), - [anon_sym_BSLASHsubimport] = ACTIONS(4643), - [anon_sym_BSLASHinputfrom] = ACTIONS(4643), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4643), - [anon_sym_BSLASHincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4643), - [anon_sym_BSLASHcaption] = ACTIONS(4643), - [anon_sym_BSLASHcite] = ACTIONS(4643), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCite] = ACTIONS(4643), - [anon_sym_BSLASHnocite] = ACTIONS(4643), - [anon_sym_BSLASHcitet] = ACTIONS(4643), - [anon_sym_BSLASHcitep] = ACTIONS(4643), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteauthor] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitetitle] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteyear] = ACTIONS(4643), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), - [anon_sym_BSLASHcitedate] = ACTIONS(4643), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), - [anon_sym_BSLASHciteurl] = ACTIONS(4643), - [anon_sym_BSLASHfullcite] = ACTIONS(4643), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4643), - [anon_sym_BSLASHcitealt] = ACTIONS(4643), - [anon_sym_BSLASHcitealp] = ACTIONS(4643), - [anon_sym_BSLASHcitetext] = ACTIONS(4643), - [anon_sym_BSLASHparencite] = ACTIONS(4643), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHParencite] = ACTIONS(4643), - [anon_sym_BSLASHfootcite] = ACTIONS(4643), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4643), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4643), - [anon_sym_BSLASHtextcite] = ACTIONS(4643), - [anon_sym_BSLASHTextcite] = ACTIONS(4643), - [anon_sym_BSLASHsmartcite] = ACTIONS(4643), - [anon_sym_BSLASHSmartcite] = ACTIONS(4643), - [anon_sym_BSLASHsupercite] = ACTIONS(4643), - [anon_sym_BSLASHautocite] = ACTIONS(4643), - [anon_sym_BSLASHAutocite] = ACTIONS(4643), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), - [anon_sym_BSLASHvolcite] = ACTIONS(4643), - [anon_sym_BSLASHVolcite] = ACTIONS(4643), - [anon_sym_BSLASHpvolcite] = ACTIONS(4643), - [anon_sym_BSLASHPvolcite] = ACTIONS(4643), - [anon_sym_BSLASHfvolcite] = ACTIONS(4643), - [anon_sym_BSLASHftvolcite] = ACTIONS(4643), - [anon_sym_BSLASHsvolcite] = ACTIONS(4643), - [anon_sym_BSLASHSvolcite] = ACTIONS(4643), - [anon_sym_BSLASHtvolcite] = ACTIONS(4643), - [anon_sym_BSLASHTvolcite] = ACTIONS(4643), - [anon_sym_BSLASHavolcite] = ACTIONS(4643), - [anon_sym_BSLASHAvolcite] = ACTIONS(4643), - [anon_sym_BSLASHnotecite] = ACTIONS(4643), - [anon_sym_BSLASHNotecite] = ACTIONS(4643), - [anon_sym_BSLASHpnotecite] = ACTIONS(4643), - [anon_sym_BSLASHPnotecite] = ACTIONS(4643), - [anon_sym_BSLASHfnotecite] = ACTIONS(4643), - [anon_sym_BSLASHlabel] = ACTIONS(4643), - [anon_sym_BSLASHref] = ACTIONS(4643), - [anon_sym_BSLASHeqref] = ACTIONS(4643), - [anon_sym_BSLASHvref] = ACTIONS(4643), - [anon_sym_BSLASHVref] = ACTIONS(4643), - [anon_sym_BSLASHautoref] = ACTIONS(4643), - [anon_sym_BSLASHpageref] = ACTIONS(4643), - [anon_sym_BSLASHcref] = ACTIONS(4643), - [anon_sym_BSLASHCref] = ACTIONS(4643), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnameCref] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4643), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4643), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4643), - [anon_sym_BSLASHlabelcref] = ACTIONS(4643), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange] = ACTIONS(4643), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHCrefrange] = ACTIONS(4643), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4641), - [anon_sym_BSLASHnewlabel] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand] = ACTIONS(4643), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4643), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4643), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4641), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4643), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdef] = ACTIONS(4643), - [anon_sym_BSLASHlet] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4643), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4643), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4643), - [anon_sym_BSLASHgls] = ACTIONS(4643), - [anon_sym_BSLASHGls] = ACTIONS(4643), - [anon_sym_BSLASHGLS] = ACTIONS(4643), - [anon_sym_BSLASHglspl] = ACTIONS(4643), - [anon_sym_BSLASHGlspl] = ACTIONS(4643), - [anon_sym_BSLASHGLSpl] = ACTIONS(4643), - [anon_sym_BSLASHglsdisp] = ACTIONS(4643), - [anon_sym_BSLASHglslink] = ACTIONS(4643), - [anon_sym_BSLASHglstext] = ACTIONS(4643), - [anon_sym_BSLASHGlstext] = ACTIONS(4643), - [anon_sym_BSLASHGLStext] = ACTIONS(4643), - [anon_sym_BSLASHglsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4643), - [anon_sym_BSLASHglsplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSplural] = ACTIONS(4643), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4643), - [anon_sym_BSLASHglsname] = ACTIONS(4643), - [anon_sym_BSLASHGlsname] = ACTIONS(4643), - [anon_sym_BSLASHGLSname] = ACTIONS(4643), - [anon_sym_BSLASHglssymbol] = ACTIONS(4643), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4643), - [anon_sym_BSLASHglsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4643), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4643), - [anon_sym_BSLASHglsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4643), - [anon_sym_BSLASHglsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4643), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4643), - [anon_sym_BSLASHglsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4643), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4643), - [anon_sym_BSLASHglsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4643), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4643), - [anon_sym_BSLASHnewacronym] = ACTIONS(4643), - [anon_sym_BSLASHacrshort] = ACTIONS(4643), - [anon_sym_BSLASHAcrshort] = ACTIONS(4643), - [anon_sym_BSLASHACRshort] = ACTIONS(4643), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4643), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4643), - [anon_sym_BSLASHacrlong] = ACTIONS(4643), - [anon_sym_BSLASHAcrlong] = ACTIONS(4643), - [anon_sym_BSLASHACRlong] = ACTIONS(4643), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4643), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4643), - [anon_sym_BSLASHacrfull] = ACTIONS(4643), - [anon_sym_BSLASHAcrfull] = ACTIONS(4643), - [anon_sym_BSLASHACRfull] = ACTIONS(4643), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4643), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4643), - [anon_sym_BSLASHacs] = ACTIONS(4643), - [anon_sym_BSLASHAcs] = ACTIONS(4643), - [anon_sym_BSLASHacsp] = ACTIONS(4643), - [anon_sym_BSLASHAcsp] = ACTIONS(4643), - [anon_sym_BSLASHacl] = ACTIONS(4643), - [anon_sym_BSLASHAcl] = ACTIONS(4643), - [anon_sym_BSLASHaclp] = ACTIONS(4643), - [anon_sym_BSLASHAclp] = ACTIONS(4643), - [anon_sym_BSLASHacf] = ACTIONS(4643), - [anon_sym_BSLASHAcf] = ACTIONS(4643), - [anon_sym_BSLASHacfp] = ACTIONS(4643), - [anon_sym_BSLASHAcfp] = ACTIONS(4643), - [anon_sym_BSLASHac] = ACTIONS(4643), - [anon_sym_BSLASHAc] = ACTIONS(4643), - [anon_sym_BSLASHacp] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4643), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4643), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4643), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4643), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4643), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4641), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4643), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4643), - [anon_sym_BSLASHcolor] = ACTIONS(4643), - [anon_sym_BSLASHcolorbox] = ACTIONS(4643), - [anon_sym_BSLASHtextcolor] = ACTIONS(4643), - [anon_sym_BSLASHpagecolor] = ACTIONS(4643), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4643), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4643), - [anon_sym_BSLASHtext] = ACTIONS(4643), - [anon_sym_BSLASHintertext] = ACTIONS(4643), - [anon_sym_shortintertext] = ACTIONS(4643), - }, - [630] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(831), - [anon_sym_BSLASHitem_STAR] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [631] = { - [sym__enum_itemdeclaration] = STATE(203), - [sym_enum_item] = STATE(431), - [aux_sym__section_repeat8] = STATE(431), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(319), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [632] = { - [sym__subparagraph_declaration] = STATE(190), - [sym_subparagraph] = STATE(629), - [aux_sym__section_repeat7] = STATE(629), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(827), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(829), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [633] = { - [sym__subparagraph_declaration] = STATE(186), - [sym_subparagraph] = STATE(435), - [aux_sym__section_repeat7] = STATE(435), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(315), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [634] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(627), - [aux_sym__section_repeat6] = STATE(627), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(823), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(825), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [635] = { - [sym__subsubsection_declaration] = STATE(167), - [sym_subsubsection] = STATE(621), - [aux_sym__section_repeat5] = STATE(621), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(819), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(821), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [636] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(615), - [aux_sym__section_repeat4] = STATE(615), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(815), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(817), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [637] = { - [sym__section_declaration] = STATE(148), - [sym_section] = STATE(614), - [aux_sym__section_repeat3] = STATE(614), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(4673), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddchap] = ACTIONS(4673), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsection] = ACTIONS(811), - [anon_sym_BSLASHsection_STAR] = ACTIONS(813), - [anon_sym_BSLASHaddsec] = ACTIONS(811), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(813), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [638] = { - [sym__chapter_declaration] = STATE(134), - [sym_chapter] = STATE(604), - [aux_sym__section_repeat2] = STATE(604), - [sym_command_name] = ACTIONS(4673), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_BSLASHpart] = ACTIONS(4673), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddpart] = ACTIONS(4673), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4671), - [anon_sym_BSLASHchapter] = ACTIONS(807), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(809), - [anon_sym_BSLASHaddchap] = ACTIONS(807), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(809), - [anon_sym_BSLASHsection] = ACTIONS(4673), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHaddsec] = ACTIONS(4673), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4673), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4671), - [anon_sym_BSLASHparagraph] = ACTIONS(4673), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4671), - [anon_sym_BSLASHitem] = ACTIONS(4673), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [sym_placeholder] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym__] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4671), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4671), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4671), - [anon_sym_BSLASHbegin] = ACTIONS(4673), - [anon_sym_BSLASHusepackage] = ACTIONS(4673), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4673), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4673), - [anon_sym_BSLASHinclude] = ACTIONS(4673), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4673), - [anon_sym_BSLASHinput] = ACTIONS(4673), - [anon_sym_BSLASHsubfile] = ACTIONS(4673), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4673), - [anon_sym_BSLASHbibliography] = ACTIONS(4673), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4673), - [anon_sym_BSLASHincludesvg] = ACTIONS(4673), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4673), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4673), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4673), - [anon_sym_BSLASHimport] = ACTIONS(4673), - [anon_sym_BSLASHsubimport] = ACTIONS(4673), - [anon_sym_BSLASHinputfrom] = ACTIONS(4673), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4673), - [anon_sym_BSLASHincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4673), - [anon_sym_BSLASHcaption] = ACTIONS(4673), - [anon_sym_BSLASHcite] = ACTIONS(4673), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCite] = ACTIONS(4673), - [anon_sym_BSLASHnocite] = ACTIONS(4673), - [anon_sym_BSLASHcitet] = ACTIONS(4673), - [anon_sym_BSLASHcitep] = ACTIONS(4673), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteauthor] = ACTIONS(4673), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4673), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitetitle] = ACTIONS(4673), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteyear] = ACTIONS(4673), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4671), - [anon_sym_BSLASHcitedate] = ACTIONS(4673), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4671), - [anon_sym_BSLASHciteurl] = ACTIONS(4673), - [anon_sym_BSLASHfullcite] = ACTIONS(4673), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4673), - [anon_sym_BSLASHcitealt] = ACTIONS(4673), - [anon_sym_BSLASHcitealp] = ACTIONS(4673), - [anon_sym_BSLASHcitetext] = ACTIONS(4673), - [anon_sym_BSLASHparencite] = ACTIONS(4673), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHParencite] = ACTIONS(4673), - [anon_sym_BSLASHfootcite] = ACTIONS(4673), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4673), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4673), - [anon_sym_BSLASHtextcite] = ACTIONS(4673), - [anon_sym_BSLASHTextcite] = ACTIONS(4673), - [anon_sym_BSLASHsmartcite] = ACTIONS(4673), - [anon_sym_BSLASHSmartcite] = ACTIONS(4673), - [anon_sym_BSLASHsupercite] = ACTIONS(4673), - [anon_sym_BSLASHautocite] = ACTIONS(4673), - [anon_sym_BSLASHAutocite] = ACTIONS(4673), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4671), - [anon_sym_BSLASHvolcite] = ACTIONS(4673), - [anon_sym_BSLASHVolcite] = ACTIONS(4673), - [anon_sym_BSLASHpvolcite] = ACTIONS(4673), - [anon_sym_BSLASHPvolcite] = ACTIONS(4673), - [anon_sym_BSLASHfvolcite] = ACTIONS(4673), - [anon_sym_BSLASHftvolcite] = ACTIONS(4673), - [anon_sym_BSLASHsvolcite] = ACTIONS(4673), - [anon_sym_BSLASHSvolcite] = ACTIONS(4673), - [anon_sym_BSLASHtvolcite] = ACTIONS(4673), - [anon_sym_BSLASHTvolcite] = ACTIONS(4673), - [anon_sym_BSLASHavolcite] = ACTIONS(4673), - [anon_sym_BSLASHAvolcite] = ACTIONS(4673), - [anon_sym_BSLASHnotecite] = ACTIONS(4673), - [anon_sym_BSLASHNotecite] = ACTIONS(4673), - [anon_sym_BSLASHpnotecite] = ACTIONS(4673), - [anon_sym_BSLASHPnotecite] = ACTIONS(4673), - [anon_sym_BSLASHfnotecite] = ACTIONS(4673), - [anon_sym_BSLASHlabel] = ACTIONS(4673), - [anon_sym_BSLASHref] = ACTIONS(4673), - [anon_sym_BSLASHeqref] = ACTIONS(4673), - [anon_sym_BSLASHvref] = ACTIONS(4673), - [anon_sym_BSLASHVref] = ACTIONS(4673), - [anon_sym_BSLASHautoref] = ACTIONS(4673), - [anon_sym_BSLASHpageref] = ACTIONS(4673), - [anon_sym_BSLASHcref] = ACTIONS(4673), - [anon_sym_BSLASHCref] = ACTIONS(4673), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnameCref] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4673), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4673), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4673), - [anon_sym_BSLASHlabelcref] = ACTIONS(4673), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange] = ACTIONS(4673), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHCrefrange] = ACTIONS(4673), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4671), - [anon_sym_BSLASHnewlabel] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand] = ACTIONS(4673), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4673), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4673), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4671), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4673), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdef] = ACTIONS(4673), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4673), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4673), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4673), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4673), - [anon_sym_BSLASHgls] = ACTIONS(4673), - [anon_sym_BSLASHGls] = ACTIONS(4673), - [anon_sym_BSLASHGLS] = ACTIONS(4673), - [anon_sym_BSLASHglspl] = ACTIONS(4673), - [anon_sym_BSLASHGlspl] = ACTIONS(4673), - [anon_sym_BSLASHGLSpl] = ACTIONS(4673), - [anon_sym_BSLASHglsdisp] = ACTIONS(4673), - [anon_sym_BSLASHglslink] = ACTIONS(4673), - [anon_sym_BSLASHglstext] = ACTIONS(4673), - [anon_sym_BSLASHGlstext] = ACTIONS(4673), - [anon_sym_BSLASHGLStext] = ACTIONS(4673), - [anon_sym_BSLASHglsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4673), - [anon_sym_BSLASHglsplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSplural] = ACTIONS(4673), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4673), - [anon_sym_BSLASHglsname] = ACTIONS(4673), - [anon_sym_BSLASHGlsname] = ACTIONS(4673), - [anon_sym_BSLASHGLSname] = ACTIONS(4673), - [anon_sym_BSLASHglssymbol] = ACTIONS(4673), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4673), - [anon_sym_BSLASHglsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4673), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4673), - [anon_sym_BSLASHglsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4673), - [anon_sym_BSLASHglsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4673), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4673), - [anon_sym_BSLASHglsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4673), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4673), - [anon_sym_BSLASHglsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4673), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4673), - [anon_sym_BSLASHnewacronym] = ACTIONS(4673), - [anon_sym_BSLASHacrshort] = ACTIONS(4673), - [anon_sym_BSLASHAcrshort] = ACTIONS(4673), - [anon_sym_BSLASHACRshort] = ACTIONS(4673), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4673), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4673), - [anon_sym_BSLASHacrlong] = ACTIONS(4673), - [anon_sym_BSLASHAcrlong] = ACTIONS(4673), - [anon_sym_BSLASHACRlong] = ACTIONS(4673), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4673), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4673), - [anon_sym_BSLASHacrfull] = ACTIONS(4673), - [anon_sym_BSLASHAcrfull] = ACTIONS(4673), - [anon_sym_BSLASHACRfull] = ACTIONS(4673), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4673), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4673), - [anon_sym_BSLASHacs] = ACTIONS(4673), - [anon_sym_BSLASHAcs] = ACTIONS(4673), - [anon_sym_BSLASHacsp] = ACTIONS(4673), - [anon_sym_BSLASHAcsp] = ACTIONS(4673), - [anon_sym_BSLASHacl] = ACTIONS(4673), - [anon_sym_BSLASHAcl] = ACTIONS(4673), - [anon_sym_BSLASHaclp] = ACTIONS(4673), - [anon_sym_BSLASHAclp] = ACTIONS(4673), - [anon_sym_BSLASHacf] = ACTIONS(4673), - [anon_sym_BSLASHAcf] = ACTIONS(4673), - [anon_sym_BSLASHacfp] = ACTIONS(4673), - [anon_sym_BSLASHAcfp] = ACTIONS(4673), - [anon_sym_BSLASHac] = ACTIONS(4673), - [anon_sym_BSLASHAc] = ACTIONS(4673), - [anon_sym_BSLASHacp] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4673), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4673), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4673), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4673), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4673), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4671), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4673), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4673), - [anon_sym_BSLASHcolor] = ACTIONS(4673), - [anon_sym_BSLASHcolorbox] = ACTIONS(4673), - [anon_sym_BSLASHtextcolor] = ACTIONS(4673), - [anon_sym_BSLASHpagecolor] = ACTIONS(4673), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4673), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - [anon_sym_BSLASHtext] = ACTIONS(4673), - [anon_sym_BSLASHintertext] = ACTIONS(4673), - [anon_sym_shortintertext] = ACTIONS(4673), - }, - [639] = { - [sym__paragraph_declaration] = STATE(177), - [sym_paragraph] = STATE(436), - [aux_sym__section_repeat6] = STATE(436), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [640] = { - [sym__subsubsection_declaration] = STATE(170), - [sym_subsubsection] = STATE(437), - [aux_sym__section_repeat5] = STATE(437), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(307), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [641] = { - [sym_curly_group] = STATE(915), - [sym_mixed_group] = STATE(915), - [aux_sym_generic_command_repeat1] = STATE(641), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_BSLASHpart] = ACTIONS(4619), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddpart] = ACTIONS(4619), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4617), - [anon_sym_BSLASHchapter] = ACTIONS(4619), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddchap] = ACTIONS(4619), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsection] = ACTIONS(4619), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHaddsec] = ACTIONS(4619), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4619), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4617), - [anon_sym_BSLASHparagraph] = ACTIONS(4619), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4619), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4617), - [anon_sym_BSLASHitem] = ACTIONS(4619), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4968), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), - }, - [642] = { - [sym__subsection_declaration] = STATE(156), - [sym_subsection] = STATE(446), - [aux_sym__section_repeat4] = STATE(446), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [643] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(447), - [aux_sym__section_repeat3] = STATE(447), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(299), - [anon_sym_BSLASHaddsec] = ACTIONS(297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(299), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [644] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(448), - [aux_sym__section_repeat2] = STATE(448), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(4609), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddpart] = ACTIONS(4609), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4607), - [anon_sym_BSLASHchapter] = ACTIONS(293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(295), - [anon_sym_BSLASHaddchap] = ACTIONS(293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(295), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [645] = { - [sym__part_declaration] = STATE(127), - [sym_part] = STATE(451), - [aux_sym__section_repeat1] = STATE(451), - [sym_command_name] = ACTIONS(4609), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_BSLASHpart] = ACTIONS(289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHaddpart] = ACTIONS(289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(291), - [anon_sym_BSLASHchapter] = ACTIONS(4609), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddchap] = ACTIONS(4609), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsection] = ACTIONS(4609), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHaddsec] = ACTIONS(4609), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4607), - [anon_sym_BSLASHparagraph] = ACTIONS(4609), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4609), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4607), - [anon_sym_BSLASHitem] = ACTIONS(4609), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [sym_word] = ACTIONS(4609), - [sym_placeholder] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym__] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_PIPE] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4609), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4607), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4607), - [anon_sym_BSLASHbegin] = ACTIONS(4609), - [anon_sym_BSLASHusepackage] = ACTIONS(4609), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4609), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4609), - [anon_sym_BSLASHinclude] = ACTIONS(4609), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4609), - [anon_sym_BSLASHinput] = ACTIONS(4609), - [anon_sym_BSLASHsubfile] = ACTIONS(4609), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4609), - [anon_sym_BSLASHbibliography] = ACTIONS(4609), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4609), - [anon_sym_BSLASHincludesvg] = ACTIONS(4609), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4609), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4609), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4609), - [anon_sym_BSLASHimport] = ACTIONS(4609), - [anon_sym_BSLASHsubimport] = ACTIONS(4609), - [anon_sym_BSLASHinputfrom] = ACTIONS(4609), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4609), - [anon_sym_BSLASHincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4609), - [anon_sym_BSLASHcaption] = ACTIONS(4609), - [anon_sym_BSLASHcite] = ACTIONS(4609), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCite] = ACTIONS(4609), - [anon_sym_BSLASHnocite] = ACTIONS(4609), - [anon_sym_BSLASHcitet] = ACTIONS(4609), - [anon_sym_BSLASHcitep] = ACTIONS(4609), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteauthor] = ACTIONS(4609), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4609), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitetitle] = ACTIONS(4609), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteyear] = ACTIONS(4609), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4607), - [anon_sym_BSLASHcitedate] = ACTIONS(4609), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4607), - [anon_sym_BSLASHciteurl] = ACTIONS(4609), - [anon_sym_BSLASHfullcite] = ACTIONS(4609), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4609), - [anon_sym_BSLASHcitealt] = ACTIONS(4609), - [anon_sym_BSLASHcitealp] = ACTIONS(4609), - [anon_sym_BSLASHcitetext] = ACTIONS(4609), - [anon_sym_BSLASHparencite] = ACTIONS(4609), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHParencite] = ACTIONS(4609), - [anon_sym_BSLASHfootcite] = ACTIONS(4609), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4609), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4609), - [anon_sym_BSLASHtextcite] = ACTIONS(4609), - [anon_sym_BSLASHTextcite] = ACTIONS(4609), - [anon_sym_BSLASHsmartcite] = ACTIONS(4609), - [anon_sym_BSLASHSmartcite] = ACTIONS(4609), - [anon_sym_BSLASHsupercite] = ACTIONS(4609), - [anon_sym_BSLASHautocite] = ACTIONS(4609), - [anon_sym_BSLASHAutocite] = ACTIONS(4609), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4607), - [anon_sym_BSLASHvolcite] = ACTIONS(4609), - [anon_sym_BSLASHVolcite] = ACTIONS(4609), - [anon_sym_BSLASHpvolcite] = ACTIONS(4609), - [anon_sym_BSLASHPvolcite] = ACTIONS(4609), - [anon_sym_BSLASHfvolcite] = ACTIONS(4609), - [anon_sym_BSLASHftvolcite] = ACTIONS(4609), - [anon_sym_BSLASHsvolcite] = ACTIONS(4609), - [anon_sym_BSLASHSvolcite] = ACTIONS(4609), - [anon_sym_BSLASHtvolcite] = ACTIONS(4609), - [anon_sym_BSLASHTvolcite] = ACTIONS(4609), - [anon_sym_BSLASHavolcite] = ACTIONS(4609), - [anon_sym_BSLASHAvolcite] = ACTIONS(4609), - [anon_sym_BSLASHnotecite] = ACTIONS(4609), - [anon_sym_BSLASHNotecite] = ACTIONS(4609), - [anon_sym_BSLASHpnotecite] = ACTIONS(4609), - [anon_sym_BSLASHPnotecite] = ACTIONS(4609), - [anon_sym_BSLASHfnotecite] = ACTIONS(4609), - [anon_sym_BSLASHlabel] = ACTIONS(4609), - [anon_sym_BSLASHref] = ACTIONS(4609), - [anon_sym_BSLASHeqref] = ACTIONS(4609), - [anon_sym_BSLASHvref] = ACTIONS(4609), - [anon_sym_BSLASHVref] = ACTIONS(4609), - [anon_sym_BSLASHautoref] = ACTIONS(4609), - [anon_sym_BSLASHpageref] = ACTIONS(4609), - [anon_sym_BSLASHcref] = ACTIONS(4609), - [anon_sym_BSLASHCref] = ACTIONS(4609), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnameCref] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4609), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4609), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4609), - [anon_sym_BSLASHlabelcref] = ACTIONS(4609), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange] = ACTIONS(4609), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHCrefrange] = ACTIONS(4609), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4607), - [anon_sym_BSLASHnewlabel] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand] = ACTIONS(4609), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4609), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4609), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4607), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4609), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdef] = ACTIONS(4609), - [anon_sym_BSLASHlet] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4609), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4609), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4609), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4609), - [anon_sym_BSLASHgls] = ACTIONS(4609), - [anon_sym_BSLASHGls] = ACTIONS(4609), - [anon_sym_BSLASHGLS] = ACTIONS(4609), - [anon_sym_BSLASHglspl] = ACTIONS(4609), - [anon_sym_BSLASHGlspl] = ACTIONS(4609), - [anon_sym_BSLASHGLSpl] = ACTIONS(4609), - [anon_sym_BSLASHglsdisp] = ACTIONS(4609), - [anon_sym_BSLASHglslink] = ACTIONS(4609), - [anon_sym_BSLASHglstext] = ACTIONS(4609), - [anon_sym_BSLASHGlstext] = ACTIONS(4609), - [anon_sym_BSLASHGLStext] = ACTIONS(4609), - [anon_sym_BSLASHglsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4609), - [anon_sym_BSLASHglsplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSplural] = ACTIONS(4609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4609), - [anon_sym_BSLASHglsname] = ACTIONS(4609), - [anon_sym_BSLASHGlsname] = ACTIONS(4609), - [anon_sym_BSLASHGLSname] = ACTIONS(4609), - [anon_sym_BSLASHglssymbol] = ACTIONS(4609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4609), - [anon_sym_BSLASHglsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4609), - [anon_sym_BSLASHglsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4609), - [anon_sym_BSLASHglsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4609), - [anon_sym_BSLASHglsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4609), - [anon_sym_BSLASHglsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4609), - [anon_sym_BSLASHnewacronym] = ACTIONS(4609), - [anon_sym_BSLASHacrshort] = ACTIONS(4609), - [anon_sym_BSLASHAcrshort] = ACTIONS(4609), - [anon_sym_BSLASHACRshort] = ACTIONS(4609), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4609), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4609), - [anon_sym_BSLASHacrlong] = ACTIONS(4609), - [anon_sym_BSLASHAcrlong] = ACTIONS(4609), - [anon_sym_BSLASHACRlong] = ACTIONS(4609), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4609), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4609), - [anon_sym_BSLASHacrfull] = ACTIONS(4609), - [anon_sym_BSLASHAcrfull] = ACTIONS(4609), - [anon_sym_BSLASHACRfull] = ACTIONS(4609), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4609), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4609), - [anon_sym_BSLASHacs] = ACTIONS(4609), - [anon_sym_BSLASHAcs] = ACTIONS(4609), - [anon_sym_BSLASHacsp] = ACTIONS(4609), - [anon_sym_BSLASHAcsp] = ACTIONS(4609), - [anon_sym_BSLASHacl] = ACTIONS(4609), - [anon_sym_BSLASHAcl] = ACTIONS(4609), - [anon_sym_BSLASHaclp] = ACTIONS(4609), - [anon_sym_BSLASHAclp] = ACTIONS(4609), - [anon_sym_BSLASHacf] = ACTIONS(4609), - [anon_sym_BSLASHAcf] = ACTIONS(4609), - [anon_sym_BSLASHacfp] = ACTIONS(4609), - [anon_sym_BSLASHAcfp] = ACTIONS(4609), - [anon_sym_BSLASHac] = ACTIONS(4609), - [anon_sym_BSLASHAc] = ACTIONS(4609), - [anon_sym_BSLASHacp] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4609), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4609), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4609), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4609), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4609), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4607), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4609), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4609), - [anon_sym_BSLASHcolor] = ACTIONS(4609), - [anon_sym_BSLASHcolorbox] = ACTIONS(4609), - [anon_sym_BSLASHtextcolor] = ACTIONS(4609), - [anon_sym_BSLASHpagecolor] = ACTIONS(4609), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4609), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4609), - [anon_sym_BSLASHtext] = ACTIONS(4609), - [anon_sym_BSLASHintertext] = ACTIONS(4609), - [anon_sym_shortintertext] = ACTIONS(4609), - }, - [646] = { - [sym_curly_group] = STATE(668), - [sym_brack_group_text] = STATE(2360), - [ts_builtin_sym_end] = ACTIONS(4971), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_BSLASHpart] = ACTIONS(4973), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddpart] = ACTIONS(4973), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHchapter] = ACTIONS(4973), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddchap] = ACTIONS(4973), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsection] = ACTIONS(4973), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddsec] = ACTIONS(4973), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHparagraph] = ACTIONS(4973), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHitem] = ACTIONS(4973), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), - }, - [647] = { - [sym_curly_group] = STATE(968), - [sym_mixed_group] = STATE(968), - [aux_sym_generic_command_repeat1] = STATE(599), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_BSLASHpart] = ACTIONS(4629), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddpart] = ACTIONS(4629), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4627), - [anon_sym_BSLASHchapter] = ACTIONS(4629), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddchap] = ACTIONS(4629), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsection] = ACTIONS(4629), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHaddsec] = ACTIONS(4629), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4629), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4627), - [anon_sym_BSLASHparagraph] = ACTIONS(4629), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4629), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4627), - [anon_sym_BSLASHitem] = ACTIONS(4629), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), - }, - [648] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(648), - [aux_sym__section_repeat8] = STATE(648), - [sym_command_name] = ACTIONS(4633), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4631), - [anon_sym_BSLASHchapter] = ACTIONS(4633), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddchap] = ACTIONS(4633), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsection] = ACTIONS(4633), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHaddsec] = ACTIONS(4633), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4633), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4631), - [anon_sym_BSLASHparagraph] = ACTIONS(4633), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4633), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4631), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4978), - [anon_sym_LBRACE] = ACTIONS(4631), - [sym_word] = ACTIONS(4633), - [sym_placeholder] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym__] = ACTIONS(4633), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4633), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4631), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4631), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4631), - [anon_sym_BSLASHbegin] = ACTIONS(4633), - [anon_sym_BSLASHusepackage] = ACTIONS(4633), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4633), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4633), - [anon_sym_BSLASHinclude] = ACTIONS(4633), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4633), - [anon_sym_BSLASHinput] = ACTIONS(4633), - [anon_sym_BSLASHsubfile] = ACTIONS(4633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4633), - [anon_sym_BSLASHbibliography] = ACTIONS(4633), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4633), - [anon_sym_BSLASHincludesvg] = ACTIONS(4633), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4633), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4633), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4633), - [anon_sym_BSLASHimport] = ACTIONS(4633), - [anon_sym_BSLASHsubimport] = ACTIONS(4633), - [anon_sym_BSLASHinputfrom] = ACTIONS(4633), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4633), - [anon_sym_BSLASHincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4633), - [anon_sym_BSLASHcaption] = ACTIONS(4633), - [anon_sym_BSLASHcite] = ACTIONS(4633), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCite] = ACTIONS(4633), - [anon_sym_BSLASHnocite] = ACTIONS(4633), - [anon_sym_BSLASHcitet] = ACTIONS(4633), - [anon_sym_BSLASHcitep] = ACTIONS(4633), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteauthor] = ACTIONS(4633), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4633), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitetitle] = ACTIONS(4633), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteyear] = ACTIONS(4633), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4631), - [anon_sym_BSLASHcitedate] = ACTIONS(4633), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4631), - [anon_sym_BSLASHciteurl] = ACTIONS(4633), - [anon_sym_BSLASHfullcite] = ACTIONS(4633), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4633), - [anon_sym_BSLASHcitealt] = ACTIONS(4633), - [anon_sym_BSLASHcitealp] = ACTIONS(4633), - [anon_sym_BSLASHcitetext] = ACTIONS(4633), - [anon_sym_BSLASHparencite] = ACTIONS(4633), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHParencite] = ACTIONS(4633), - [anon_sym_BSLASHfootcite] = ACTIONS(4633), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4633), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4633), - [anon_sym_BSLASHtextcite] = ACTIONS(4633), - [anon_sym_BSLASHTextcite] = ACTIONS(4633), - [anon_sym_BSLASHsmartcite] = ACTIONS(4633), - [anon_sym_BSLASHSmartcite] = ACTIONS(4633), - [anon_sym_BSLASHsupercite] = ACTIONS(4633), - [anon_sym_BSLASHautocite] = ACTIONS(4633), - [anon_sym_BSLASHAutocite] = ACTIONS(4633), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4631), - [anon_sym_BSLASHvolcite] = ACTIONS(4633), - [anon_sym_BSLASHVolcite] = ACTIONS(4633), - [anon_sym_BSLASHpvolcite] = ACTIONS(4633), - [anon_sym_BSLASHPvolcite] = ACTIONS(4633), - [anon_sym_BSLASHfvolcite] = ACTIONS(4633), - [anon_sym_BSLASHftvolcite] = ACTIONS(4633), - [anon_sym_BSLASHsvolcite] = ACTIONS(4633), - [anon_sym_BSLASHSvolcite] = ACTIONS(4633), - [anon_sym_BSLASHtvolcite] = ACTIONS(4633), - [anon_sym_BSLASHTvolcite] = ACTIONS(4633), - [anon_sym_BSLASHavolcite] = ACTIONS(4633), - [anon_sym_BSLASHAvolcite] = ACTIONS(4633), - [anon_sym_BSLASHnotecite] = ACTIONS(4633), - [anon_sym_BSLASHNotecite] = ACTIONS(4633), - [anon_sym_BSLASHpnotecite] = ACTIONS(4633), - [anon_sym_BSLASHPnotecite] = ACTIONS(4633), - [anon_sym_BSLASHfnotecite] = ACTIONS(4633), - [anon_sym_BSLASHlabel] = ACTIONS(4633), - [anon_sym_BSLASHref] = ACTIONS(4633), - [anon_sym_BSLASHeqref] = ACTIONS(4633), - [anon_sym_BSLASHvref] = ACTIONS(4633), - [anon_sym_BSLASHVref] = ACTIONS(4633), - [anon_sym_BSLASHautoref] = ACTIONS(4633), - [anon_sym_BSLASHpageref] = ACTIONS(4633), - [anon_sym_BSLASHcref] = ACTIONS(4633), - [anon_sym_BSLASHCref] = ACTIONS(4633), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnameCref] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4633), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4633), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4633), - [anon_sym_BSLASHlabelcref] = ACTIONS(4633), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange] = ACTIONS(4633), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHCrefrange] = ACTIONS(4633), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4631), - [anon_sym_BSLASHnewlabel] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand] = ACTIONS(4633), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4633), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4633), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4631), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4633), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdef] = ACTIONS(4633), - [anon_sym_BSLASHlet] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4633), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4633), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4633), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4633), - [anon_sym_BSLASHgls] = ACTIONS(4633), - [anon_sym_BSLASHGls] = ACTIONS(4633), - [anon_sym_BSLASHGLS] = ACTIONS(4633), - [anon_sym_BSLASHglspl] = ACTIONS(4633), - [anon_sym_BSLASHGlspl] = ACTIONS(4633), - [anon_sym_BSLASHGLSpl] = ACTIONS(4633), - [anon_sym_BSLASHglsdisp] = ACTIONS(4633), - [anon_sym_BSLASHglslink] = ACTIONS(4633), - [anon_sym_BSLASHglstext] = ACTIONS(4633), - [anon_sym_BSLASHGlstext] = ACTIONS(4633), - [anon_sym_BSLASHGLStext] = ACTIONS(4633), - [anon_sym_BSLASHglsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4633), - [anon_sym_BSLASHglsplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSplural] = ACTIONS(4633), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4633), - [anon_sym_BSLASHglsname] = ACTIONS(4633), - [anon_sym_BSLASHGlsname] = ACTIONS(4633), - [anon_sym_BSLASHGLSname] = ACTIONS(4633), - [anon_sym_BSLASHglssymbol] = ACTIONS(4633), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4633), - [anon_sym_BSLASHglsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4633), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4633), - [anon_sym_BSLASHglsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4633), - [anon_sym_BSLASHglsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4633), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4633), - [anon_sym_BSLASHglsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4633), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4633), - [anon_sym_BSLASHglsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4633), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4633), - [anon_sym_BSLASHnewacronym] = ACTIONS(4633), - [anon_sym_BSLASHacrshort] = ACTIONS(4633), - [anon_sym_BSLASHAcrshort] = ACTIONS(4633), - [anon_sym_BSLASHACRshort] = ACTIONS(4633), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4633), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4633), - [anon_sym_BSLASHacrlong] = ACTIONS(4633), - [anon_sym_BSLASHAcrlong] = ACTIONS(4633), - [anon_sym_BSLASHACRlong] = ACTIONS(4633), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4633), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4633), - [anon_sym_BSLASHacrfull] = ACTIONS(4633), - [anon_sym_BSLASHAcrfull] = ACTIONS(4633), - [anon_sym_BSLASHACRfull] = ACTIONS(4633), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4633), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4633), - [anon_sym_BSLASHacs] = ACTIONS(4633), - [anon_sym_BSLASHAcs] = ACTIONS(4633), - [anon_sym_BSLASHacsp] = ACTIONS(4633), - [anon_sym_BSLASHAcsp] = ACTIONS(4633), - [anon_sym_BSLASHacl] = ACTIONS(4633), - [anon_sym_BSLASHAcl] = ACTIONS(4633), - [anon_sym_BSLASHaclp] = ACTIONS(4633), - [anon_sym_BSLASHAclp] = ACTIONS(4633), - [anon_sym_BSLASHacf] = ACTIONS(4633), - [anon_sym_BSLASHAcf] = ACTIONS(4633), - [anon_sym_BSLASHacfp] = ACTIONS(4633), - [anon_sym_BSLASHAcfp] = ACTIONS(4633), - [anon_sym_BSLASHac] = ACTIONS(4633), - [anon_sym_BSLASHAc] = ACTIONS(4633), - [anon_sym_BSLASHacp] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4633), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4633), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4633), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4633), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4633), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4631), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4633), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4633), - [anon_sym_BSLASHcolor] = ACTIONS(4633), - [anon_sym_BSLASHcolorbox] = ACTIONS(4633), - [anon_sym_BSLASHtextcolor] = ACTIONS(4633), - [anon_sym_BSLASHpagecolor] = ACTIONS(4633), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4633), - [anon_sym_BSLASHtext] = ACTIONS(4633), - [anon_sym_BSLASHintertext] = ACTIONS(4633), - [anon_sym_shortintertext] = ACTIONS(4633), - }, - [649] = { - [sym_curly_group] = STATE(682), - [sym_brack_group_text] = STATE(2194), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_BSLASHpart] = ACTIONS(4853), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddpart] = ACTIONS(4853), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHchapter] = ACTIONS(4853), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddchap] = ACTIONS(4853), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsection] = ACTIONS(4853), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddsec] = ACTIONS(4853), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHparagraph] = ACTIONS(4853), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHitem] = ACTIONS(4853), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), - }, - [650] = { - [sym_curly_group] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(4981), - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - [anon_sym_BSLASHtext] = ACTIONS(4983), - [anon_sym_BSLASHintertext] = ACTIONS(4983), - [anon_sym_shortintertext] = ACTIONS(4983), - }, - [651] = { - [sym_curly_group] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(4985), - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - [anon_sym_BSLASHtext] = ACTIONS(4987), - [anon_sym_BSLASHintertext] = ACTIONS(4987), - [anon_sym_shortintertext] = ACTIONS(4987), - }, - [652] = { - [sym_curly_group] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(4989), - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), - [anon_sym_BSLASHtext] = ACTIONS(4991), - [anon_sym_BSLASHintertext] = ACTIONS(4991), - [anon_sym_shortintertext] = ACTIONS(4991), - }, - [653] = { - [sym_curly_group] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(4993), - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4993), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - [anon_sym_BSLASHtext] = ACTIONS(4995), - [anon_sym_BSLASHintertext] = ACTIONS(4995), - [anon_sym_shortintertext] = ACTIONS(4995), - }, - [654] = { - [sym_curly_group] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(4997), - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - [anon_sym_BSLASHtext] = ACTIONS(4999), - [anon_sym_BSLASHintertext] = ACTIONS(4999), - [anon_sym_shortintertext] = ACTIONS(4999), - }, - [655] = { - [sym_curly_group] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(5001), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - [anon_sym_BSLASHtext] = ACTIONS(5003), - [anon_sym_BSLASHintertext] = ACTIONS(5003), - [anon_sym_shortintertext] = ACTIONS(5003), - }, - [656] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_BSLASHpart] = ACTIONS(4909), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddpart] = ACTIONS(4909), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHchapter] = ACTIONS(4909), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddchap] = ACTIONS(4909), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsection] = ACTIONS(4909), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddsec] = ACTIONS(4909), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHparagraph] = ACTIONS(4909), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHitem] = ACTIONS(4909), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5007), - }, - [657] = { - [sym_curly_group] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(5009), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), - }, - [658] = { - [sym_brack_group_text] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(5013), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), - }, - [659] = { - [sym_curly_group] = STATE(750), - [sym_brack_group_text] = STATE(2026), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_BSLASHpart] = ACTIONS(4853), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddpart] = ACTIONS(4853), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHchapter] = ACTIONS(4853), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddchap] = ACTIONS(4853), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsection] = ACTIONS(4853), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddsec] = ACTIONS(4853), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHparagraph] = ACTIONS(4853), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHitem] = ACTIONS(4853), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHend] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), - }, - [660] = { - [sym_curly_group] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(5017), - [sym_command_name] = ACTIONS(5019), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_BSLASHpart] = ACTIONS(5019), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddpart] = ACTIONS(5019), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHchapter] = ACTIONS(5019), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddchap] = ACTIONS(5019), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsection] = ACTIONS(5019), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddsec] = ACTIONS(5019), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHparagraph] = ACTIONS(5019), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHitem] = ACTIONS(5019), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5017), - [sym_word] = ACTIONS(5019), - [sym_placeholder] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym__] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5017), - [anon_sym_BSLASHbegin] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5019), - [anon_sym_BSLASHinclude] = ACTIONS(5019), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5019), - [anon_sym_BSLASHinput] = ACTIONS(5019), - [anon_sym_BSLASHsubfile] = ACTIONS(5019), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5019), - [anon_sym_BSLASHbibliography] = ACTIONS(5019), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5019), - [anon_sym_BSLASHincludesvg] = ACTIONS(5019), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5019), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5019), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5019), - [anon_sym_BSLASHimport] = ACTIONS(5019), - [anon_sym_BSLASHsubimport] = ACTIONS(5019), - [anon_sym_BSLASHinputfrom] = ACTIONS(5019), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5019), - [anon_sym_BSLASHincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHcaption] = ACTIONS(5019), - [anon_sym_BSLASHcite] = ACTIONS(5019), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCite] = ACTIONS(5019), - [anon_sym_BSLASHnocite] = ACTIONS(5019), - [anon_sym_BSLASHcitet] = ACTIONS(5019), - [anon_sym_BSLASHcitep] = ACTIONS(5019), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteyear] = ACTIONS(5019), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitedate] = ACTIONS(5019), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteurl] = ACTIONS(5019), - [anon_sym_BSLASHfullcite] = ACTIONS(5019), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5019), - [anon_sym_BSLASHcitealt] = ACTIONS(5019), - [anon_sym_BSLASHcitealp] = ACTIONS(5019), - [anon_sym_BSLASHcitetext] = ACTIONS(5019), - [anon_sym_BSLASHparencite] = ACTIONS(5019), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHParencite] = ACTIONS(5019), - [anon_sym_BSLASHfootcite] = ACTIONS(5019), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5019), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5019), - [anon_sym_BSLASHtextcite] = ACTIONS(5019), - [anon_sym_BSLASHTextcite] = ACTIONS(5019), - [anon_sym_BSLASHsmartcite] = ACTIONS(5019), - [anon_sym_BSLASHSmartcite] = ACTIONS(5019), - [anon_sym_BSLASHsupercite] = ACTIONS(5019), - [anon_sym_BSLASHautocite] = ACTIONS(5019), - [anon_sym_BSLASHAutocite] = ACTIONS(5019), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHvolcite] = ACTIONS(5019), - [anon_sym_BSLASHVolcite] = ACTIONS(5019), - [anon_sym_BSLASHpvolcite] = ACTIONS(5019), - [anon_sym_BSLASHPvolcite] = ACTIONS(5019), - [anon_sym_BSLASHfvolcite] = ACTIONS(5019), - [anon_sym_BSLASHftvolcite] = ACTIONS(5019), - [anon_sym_BSLASHsvolcite] = ACTIONS(5019), - [anon_sym_BSLASHSvolcite] = ACTIONS(5019), - [anon_sym_BSLASHtvolcite] = ACTIONS(5019), - [anon_sym_BSLASHTvolcite] = ACTIONS(5019), - [anon_sym_BSLASHavolcite] = ACTIONS(5019), - [anon_sym_BSLASHAvolcite] = ACTIONS(5019), - [anon_sym_BSLASHnotecite] = ACTIONS(5019), - [anon_sym_BSLASHNotecite] = ACTIONS(5019), - [anon_sym_BSLASHpnotecite] = ACTIONS(5019), - [anon_sym_BSLASHPnotecite] = ACTIONS(5019), - [anon_sym_BSLASHfnotecite] = ACTIONS(5019), - [anon_sym_BSLASHlabel] = ACTIONS(5019), - [anon_sym_BSLASHref] = ACTIONS(5019), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [anon_sym_BSLASHvref] = ACTIONS(5019), - [anon_sym_BSLASHVref] = ACTIONS(5019), - [anon_sym_BSLASHautoref] = ACTIONS(5019), - [anon_sym_BSLASHpageref] = ACTIONS(5019), - [anon_sym_BSLASHcref] = ACTIONS(5019), - [anon_sym_BSLASHCref] = ACTIONS(5019), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnameCref] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHlabelcref] = ACTIONS(5019), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnewlabel] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdef] = ACTIONS(5019), - [anon_sym_BSLASHlet] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5019), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5019), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5019), - [anon_sym_BSLASHgls] = ACTIONS(5019), - [anon_sym_BSLASHGls] = ACTIONS(5019), - [anon_sym_BSLASHGLS] = ACTIONS(5019), - [anon_sym_BSLASHglspl] = ACTIONS(5019), - [anon_sym_BSLASHGlspl] = ACTIONS(5019), - [anon_sym_BSLASHGLSpl] = ACTIONS(5019), - [anon_sym_BSLASHglsdisp] = ACTIONS(5019), - [anon_sym_BSLASHglslink] = ACTIONS(5019), - [anon_sym_BSLASHglstext] = ACTIONS(5019), - [anon_sym_BSLASHGlstext] = ACTIONS(5019), - [anon_sym_BSLASHGLStext] = ACTIONS(5019), - [anon_sym_BSLASHglsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5019), - [anon_sym_BSLASHglsplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSplural] = ACTIONS(5019), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHglsname] = ACTIONS(5019), - [anon_sym_BSLASHGlsname] = ACTIONS(5019), - [anon_sym_BSLASHGLSname] = ACTIONS(5019), - [anon_sym_BSLASHglssymbol] = ACTIONS(5019), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5019), - [anon_sym_BSLASHglsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5019), - [anon_sym_BSLASHglsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5019), - [anon_sym_BSLASHglsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5019), - [anon_sym_BSLASHglsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5019), - [anon_sym_BSLASHglsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5019), - [anon_sym_BSLASHnewacronym] = ACTIONS(5019), - [anon_sym_BSLASHacrshort] = ACTIONS(5019), - [anon_sym_BSLASHAcrshort] = ACTIONS(5019), - [anon_sym_BSLASHACRshort] = ACTIONS(5019), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5019), - [anon_sym_BSLASHacrlong] = ACTIONS(5019), - [anon_sym_BSLASHAcrlong] = ACTIONS(5019), - [anon_sym_BSLASHACRlong] = ACTIONS(5019), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5019), - [anon_sym_BSLASHacrfull] = ACTIONS(5019), - [anon_sym_BSLASHAcrfull] = ACTIONS(5019), - [anon_sym_BSLASHACRfull] = ACTIONS(5019), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5019), - [anon_sym_BSLASHacs] = ACTIONS(5019), - [anon_sym_BSLASHAcs] = ACTIONS(5019), - [anon_sym_BSLASHacsp] = ACTIONS(5019), - [anon_sym_BSLASHAcsp] = ACTIONS(5019), - [anon_sym_BSLASHacl] = ACTIONS(5019), - [anon_sym_BSLASHAcl] = ACTIONS(5019), - [anon_sym_BSLASHaclp] = ACTIONS(5019), - [anon_sym_BSLASHAclp] = ACTIONS(5019), - [anon_sym_BSLASHacf] = ACTIONS(5019), - [anon_sym_BSLASHAcf] = ACTIONS(5019), - [anon_sym_BSLASHacfp] = ACTIONS(5019), - [anon_sym_BSLASHAcfp] = ACTIONS(5019), - [anon_sym_BSLASHac] = ACTIONS(5019), - [anon_sym_BSLASHAc] = ACTIONS(5019), - [anon_sym_BSLASHacp] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5019), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5019), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5019), - [anon_sym_BSLASHcolor] = ACTIONS(5019), - [anon_sym_BSLASHcolorbox] = ACTIONS(5019), - [anon_sym_BSLASHtextcolor] = ACTIONS(5019), - [anon_sym_BSLASHpagecolor] = ACTIONS(5019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5019), - [anon_sym_BSLASHtext] = ACTIONS(5019), - [anon_sym_BSLASHintertext] = ACTIONS(5019), - [anon_sym_shortintertext] = ACTIONS(5019), - }, - [661] = { - [sym_curly_group] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(5021), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_BSLASHpart] = ACTIONS(5023), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddpart] = ACTIONS(5023), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHchapter] = ACTIONS(5023), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddchap] = ACTIONS(5023), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsection] = ACTIONS(5023), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddsec] = ACTIONS(5023), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHparagraph] = ACTIONS(5023), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHitem] = ACTIONS(5023), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5021), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), - }, - [662] = { - [sym_curly_group] = STATE(818), - [sym_brack_group_text] = STATE(1939), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_BSLASHpart] = ACTIONS(4853), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddpart] = ACTIONS(4853), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHchapter] = ACTIONS(4853), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddchap] = ACTIONS(4853), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsection] = ACTIONS(4853), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddsec] = ACTIONS(4853), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHparagraph] = ACTIONS(4853), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHitem] = ACTIONS(4853), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), - }, - [663] = { - [sym_brack_group_text] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(5025), - [sym_command_name] = ACTIONS(5027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_BSLASHpart] = ACTIONS(5027), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddpart] = ACTIONS(5027), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHchapter] = ACTIONS(5027), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddchap] = ACTIONS(5027), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsection] = ACTIONS(5027), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddsec] = ACTIONS(5027), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHparagraph] = ACTIONS(5027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHitem] = ACTIONS(5027), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5025), - [anon_sym_RBRACE] = ACTIONS(5025), - [sym_word] = ACTIONS(5027), - [sym_placeholder] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym__] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5025), - [anon_sym_BSLASHbegin] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5027), - [anon_sym_BSLASHinclude] = ACTIONS(5027), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5027), - [anon_sym_BSLASHinput] = ACTIONS(5027), - [anon_sym_BSLASHsubfile] = ACTIONS(5027), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), - [anon_sym_BSLASHbibliography] = ACTIONS(5027), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5027), - [anon_sym_BSLASHincludesvg] = ACTIONS(5027), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5027), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5027), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5027), - [anon_sym_BSLASHimport] = ACTIONS(5027), - [anon_sym_BSLASHsubimport] = ACTIONS(5027), - [anon_sym_BSLASHinputfrom] = ACTIONS(5027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5027), - [anon_sym_BSLASHincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHcaption] = ACTIONS(5027), - [anon_sym_BSLASHcite] = ACTIONS(5027), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCite] = ACTIONS(5027), - [anon_sym_BSLASHnocite] = ACTIONS(5027), - [anon_sym_BSLASHcitet] = ACTIONS(5027), - [anon_sym_BSLASHcitep] = ACTIONS(5027), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteyear] = ACTIONS(5027), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitedate] = ACTIONS(5027), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteurl] = ACTIONS(5027), - [anon_sym_BSLASHfullcite] = ACTIONS(5027), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5027), - [anon_sym_BSLASHcitealt] = ACTIONS(5027), - [anon_sym_BSLASHcitealp] = ACTIONS(5027), - [anon_sym_BSLASHcitetext] = ACTIONS(5027), - [anon_sym_BSLASHparencite] = ACTIONS(5027), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHParencite] = ACTIONS(5027), - [anon_sym_BSLASHfootcite] = ACTIONS(5027), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5027), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5027), - [anon_sym_BSLASHtextcite] = ACTIONS(5027), - [anon_sym_BSLASHTextcite] = ACTIONS(5027), - [anon_sym_BSLASHsmartcite] = ACTIONS(5027), - [anon_sym_BSLASHSmartcite] = ACTIONS(5027), - [anon_sym_BSLASHsupercite] = ACTIONS(5027), - [anon_sym_BSLASHautocite] = ACTIONS(5027), - [anon_sym_BSLASHAutocite] = ACTIONS(5027), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHvolcite] = ACTIONS(5027), - [anon_sym_BSLASHVolcite] = ACTIONS(5027), - [anon_sym_BSLASHpvolcite] = ACTIONS(5027), - [anon_sym_BSLASHPvolcite] = ACTIONS(5027), - [anon_sym_BSLASHfvolcite] = ACTIONS(5027), - [anon_sym_BSLASHftvolcite] = ACTIONS(5027), - [anon_sym_BSLASHsvolcite] = ACTIONS(5027), - [anon_sym_BSLASHSvolcite] = ACTIONS(5027), - [anon_sym_BSLASHtvolcite] = ACTIONS(5027), - [anon_sym_BSLASHTvolcite] = ACTIONS(5027), - [anon_sym_BSLASHavolcite] = ACTIONS(5027), - [anon_sym_BSLASHAvolcite] = ACTIONS(5027), - [anon_sym_BSLASHnotecite] = ACTIONS(5027), - [anon_sym_BSLASHNotecite] = ACTIONS(5027), - [anon_sym_BSLASHpnotecite] = ACTIONS(5027), - [anon_sym_BSLASHPnotecite] = ACTIONS(5027), - [anon_sym_BSLASHfnotecite] = ACTIONS(5027), - [anon_sym_BSLASHlabel] = ACTIONS(5027), - [anon_sym_BSLASHref] = ACTIONS(5027), - [anon_sym_BSLASHeqref] = ACTIONS(5027), - [anon_sym_BSLASHvref] = ACTIONS(5027), - [anon_sym_BSLASHVref] = ACTIONS(5027), - [anon_sym_BSLASHautoref] = ACTIONS(5027), - [anon_sym_BSLASHpageref] = ACTIONS(5027), - [anon_sym_BSLASHcref] = ACTIONS(5027), - [anon_sym_BSLASHCref] = ACTIONS(5027), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnameCref] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHlabelcref] = ACTIONS(5027), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnewlabel] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdef] = ACTIONS(5027), - [anon_sym_BSLASHlet] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5027), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5027), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5027), - [anon_sym_BSLASHgls] = ACTIONS(5027), - [anon_sym_BSLASHGls] = ACTIONS(5027), - [anon_sym_BSLASHGLS] = ACTIONS(5027), - [anon_sym_BSLASHglspl] = ACTIONS(5027), - [anon_sym_BSLASHGlspl] = ACTIONS(5027), - [anon_sym_BSLASHGLSpl] = ACTIONS(5027), - [anon_sym_BSLASHglsdisp] = ACTIONS(5027), - [anon_sym_BSLASHglslink] = ACTIONS(5027), - [anon_sym_BSLASHglstext] = ACTIONS(5027), - [anon_sym_BSLASHGlstext] = ACTIONS(5027), - [anon_sym_BSLASHGLStext] = ACTIONS(5027), - [anon_sym_BSLASHglsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5027), - [anon_sym_BSLASHglsplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSplural] = ACTIONS(5027), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHglsname] = ACTIONS(5027), - [anon_sym_BSLASHGlsname] = ACTIONS(5027), - [anon_sym_BSLASHGLSname] = ACTIONS(5027), - [anon_sym_BSLASHglssymbol] = ACTIONS(5027), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5027), - [anon_sym_BSLASHglsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5027), - [anon_sym_BSLASHglsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5027), - [anon_sym_BSLASHglsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5027), - [anon_sym_BSLASHglsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5027), - [anon_sym_BSLASHglsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5027), - [anon_sym_BSLASHnewacronym] = ACTIONS(5027), - [anon_sym_BSLASHacrshort] = ACTIONS(5027), - [anon_sym_BSLASHAcrshort] = ACTIONS(5027), - [anon_sym_BSLASHACRshort] = ACTIONS(5027), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5027), - [anon_sym_BSLASHacrlong] = ACTIONS(5027), - [anon_sym_BSLASHAcrlong] = ACTIONS(5027), - [anon_sym_BSLASHACRlong] = ACTIONS(5027), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5027), - [anon_sym_BSLASHacrfull] = ACTIONS(5027), - [anon_sym_BSLASHAcrfull] = ACTIONS(5027), - [anon_sym_BSLASHACRfull] = ACTIONS(5027), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5027), - [anon_sym_BSLASHacs] = ACTIONS(5027), - [anon_sym_BSLASHAcs] = ACTIONS(5027), - [anon_sym_BSLASHacsp] = ACTIONS(5027), - [anon_sym_BSLASHAcsp] = ACTIONS(5027), - [anon_sym_BSLASHacl] = ACTIONS(5027), - [anon_sym_BSLASHAcl] = ACTIONS(5027), - [anon_sym_BSLASHaclp] = ACTIONS(5027), - [anon_sym_BSLASHAclp] = ACTIONS(5027), - [anon_sym_BSLASHacf] = ACTIONS(5027), - [anon_sym_BSLASHAcf] = ACTIONS(5027), - [anon_sym_BSLASHacfp] = ACTIONS(5027), - [anon_sym_BSLASHAcfp] = ACTIONS(5027), - [anon_sym_BSLASHac] = ACTIONS(5027), - [anon_sym_BSLASHAc] = ACTIONS(5027), - [anon_sym_BSLASHacp] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5027), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5027), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5027), - [anon_sym_BSLASHcolor] = ACTIONS(5027), - [anon_sym_BSLASHcolorbox] = ACTIONS(5027), - [anon_sym_BSLASHtextcolor] = ACTIONS(5027), - [anon_sym_BSLASHpagecolor] = ACTIONS(5027), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5027), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5027), - [anon_sym_BSLASHtext] = ACTIONS(5027), - [anon_sym_BSLASHintertext] = ACTIONS(5027), - [anon_sym_shortintertext] = ACTIONS(5027), - }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(5029), - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_BSLASHpart] = ACTIONS(5031), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddpart] = ACTIONS(5031), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHchapter] = ACTIONS(5031), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddchap] = ACTIONS(5031), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsection] = ACTIONS(5031), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddsec] = ACTIONS(5031), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHparagraph] = ACTIONS(5031), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHitem] = ACTIONS(5031), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [anon_sym_RBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), - }, - [665] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_BSLASHpart] = ACTIONS(4909), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddpart] = ACTIONS(4909), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHchapter] = ACTIONS(4909), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddchap] = ACTIONS(4909), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsection] = ACTIONS(4909), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddsec] = ACTIONS(4909), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHparagraph] = ACTIONS(4909), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHitem] = ACTIONS(4909), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5037), - }, - [666] = { - [sym_curly_group] = STATE(755), - [sym_brack_group_text] = STATE(1914), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_BSLASHpart] = ACTIONS(4973), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddpart] = ACTIONS(4973), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHchapter] = ACTIONS(4973), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddchap] = ACTIONS(4973), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsection] = ACTIONS(4973), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddsec] = ACTIONS(4973), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHparagraph] = ACTIONS(4973), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHitem] = ACTIONS(4973), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), - }, - [667] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_BSLASHpart] = ACTIONS(4909), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddpart] = ACTIONS(4909), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHchapter] = ACTIONS(4909), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddchap] = ACTIONS(4909), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsection] = ACTIONS(4909), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddsec] = ACTIONS(4909), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHparagraph] = ACTIONS(4909), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHitem] = ACTIONS(4909), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5041), - }, - [668] = { - [sym_brack_group_text] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(5043), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_BSLASHpart] = ACTIONS(5045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddpart] = ACTIONS(5045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHchapter] = ACTIONS(5045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddchap] = ACTIONS(5045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsection] = ACTIONS(5045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddsec] = ACTIONS(5045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHparagraph] = ACTIONS(5045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHitem] = ACTIONS(5045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), - }, - [669] = { - [sym_curly_group] = STATE(698), - [sym_brack_group_text] = STATE(1929), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_BSLASHpart] = ACTIONS(4853), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddpart] = ACTIONS(4853), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), - [anon_sym_BSLASHchapter] = ACTIONS(4853), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddchap] = ACTIONS(4853), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsection] = ACTIONS(4853), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHaddsec] = ACTIONS(4853), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), - [anon_sym_BSLASHparagraph] = ACTIONS(4853), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), - [anon_sym_BSLASHitem] = ACTIONS(4853), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), - }, - [670] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_BSLASHpart] = ACTIONS(4909), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddpart] = ACTIONS(4909), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), - [anon_sym_BSLASHchapter] = ACTIONS(4909), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddchap] = ACTIONS(4909), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsection] = ACTIONS(4909), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHaddsec] = ACTIONS(4909), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), - [anon_sym_BSLASHparagraph] = ACTIONS(4909), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), - [anon_sym_BSLASHitem] = ACTIONS(4909), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHend] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5049), - }, - [671] = { - [sym_curly_group] = STATE(798), - [sym_brack_group_text] = STATE(2011), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_BSLASHpart] = ACTIONS(4973), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddpart] = ACTIONS(4973), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHchapter] = ACTIONS(4973), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddchap] = ACTIONS(4973), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsection] = ACTIONS(4973), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddsec] = ACTIONS(4973), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHparagraph] = ACTIONS(4973), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHitem] = ACTIONS(4973), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHend] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), - }, - [672] = { - [sym_curly_group] = STATE(708), - [sym_brack_group_text] = STATE(2220), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_BSLASHpart] = ACTIONS(4973), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddpart] = ACTIONS(4973), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHchapter] = ACTIONS(4973), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddchap] = ACTIONS(4973), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsection] = ACTIONS(4973), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddsec] = ACTIONS(4973), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHparagraph] = ACTIONS(4973), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHitem] = ACTIONS(4973), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), - }, - [673] = { - [sym_curly_group] = STATE(786), - [sym_brack_group_text] = STATE(1974), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_BSLASHpart] = ACTIONS(4973), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddpart] = ACTIONS(4973), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), - [anon_sym_BSLASHchapter] = ACTIONS(4973), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddchap] = ACTIONS(4973), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsection] = ACTIONS(4973), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHaddsec] = ACTIONS(4973), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), - [anon_sym_BSLASHparagraph] = ACTIONS(4973), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), - [anon_sym_BSLASHitem] = ACTIONS(4973), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), - }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(5051), - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), - }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(5055), - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), - }, - [676] = { - [sym_curly_group] = STATE(1011), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_BSLASHpart] = ACTIONS(5023), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddpart] = ACTIONS(5023), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHchapter] = ACTIONS(5023), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddchap] = ACTIONS(5023), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsection] = ACTIONS(5023), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddsec] = ACTIONS(5023), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHparagraph] = ACTIONS(5023), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHitem] = ACTIONS(5023), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), - }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(5059), - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), - }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(5063), - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), - }, - [679] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_BSLASHpart] = ACTIONS(5031), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddpart] = ACTIONS(5031), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHchapter] = ACTIONS(5031), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddchap] = ACTIONS(5031), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsection] = ACTIONS(5031), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddsec] = ACTIONS(5031), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHparagraph] = ACTIONS(5031), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHitem] = ACTIONS(5031), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), - }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(5069), - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_BSLASHpart] = ACTIONS(5071), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddpart] = ACTIONS(5071), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHchapter] = ACTIONS(5071), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddchap] = ACTIONS(5071), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsection] = ACTIONS(5071), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddsec] = ACTIONS(5071), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHparagraph] = ACTIONS(5071), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), - }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(5073), - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_BSLASHpart] = ACTIONS(5075), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddpart] = ACTIONS(5075), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHchapter] = ACTIONS(5075), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddchap] = ACTIONS(5075), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsection] = ACTIONS(5075), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddsec] = ACTIONS(5075), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHparagraph] = ACTIONS(5075), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHitem] = ACTIONS(5075), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), - }, - [682] = { - [sym_brack_group_text] = STATE(1015), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), - }, - [683] = { - [sym_curly_group] = STATE(1019), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), - }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(5079), - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), - }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(5083), - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), - }, - [686] = { - [sym_curly_group] = STATE(1082), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), - }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(5087), - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), - }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(5091), - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), - }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(5095), - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), - }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(5099), - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), - }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(5103), - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), - }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(5107), - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), - }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(5111), - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), - }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(5115), - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), - }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(5119), - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), - }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(5123), - [sym_command_name] = ACTIONS(5125), + [385] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), - }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(5127), - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), - }, - [698] = { - [sym_brack_group_text] = STATE(1087), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), - }, - [699] = { - [sym_curly_group] = STATE(1091), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_BSLASHpart] = ACTIONS(5023), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddpart] = ACTIONS(5023), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHchapter] = ACTIONS(5023), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddchap] = ACTIONS(5023), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsection] = ACTIONS(5023), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddsec] = ACTIONS(5023), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHparagraph] = ACTIONS(5023), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHitem] = ACTIONS(5023), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(5133), - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), - }, - [701] = { - [sym_curly_group] = STATE(1125), - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHend] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - [anon_sym_BSLASHtext] = ACTIONS(4983), - [anon_sym_BSLASHintertext] = ACTIONS(4983), - [anon_sym_shortintertext] = ACTIONS(4983), - }, - [702] = { - [sym_curly_group] = STATE(1126), - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHend] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - [anon_sym_BSLASHtext] = ACTIONS(4987), - [anon_sym_BSLASHintertext] = ACTIONS(4987), - [anon_sym_shortintertext] = ACTIONS(4987), - }, - [703] = { - [sym_curly_group] = STATE(1127), - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHend] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), - [anon_sym_BSLASHtext] = ACTIONS(4991), - [anon_sym_BSLASHintertext] = ACTIONS(4991), - [anon_sym_shortintertext] = ACTIONS(4991), - }, - [704] = { - [sym_curly_group] = STATE(1128), - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHend] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - [anon_sym_BSLASHtext] = ACTIONS(4995), - [anon_sym_BSLASHintertext] = ACTIONS(4995), - [anon_sym_shortintertext] = ACTIONS(4995), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(5137), - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), - }, - [706] = { - [sym_curly_group] = STATE(1129), - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHend] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - [anon_sym_BSLASHtext] = ACTIONS(4999), - [anon_sym_BSLASHintertext] = ACTIONS(4999), - [anon_sym_shortintertext] = ACTIONS(4999), - }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(5141), - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), - }, - [708] = { - [sym_brack_group_text] = STATE(1030), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_BSLASHpart] = ACTIONS(5045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddpart] = ACTIONS(5045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHchapter] = ACTIONS(5045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddchap] = ACTIONS(5045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsection] = ACTIONS(5045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddsec] = ACTIONS(5045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHparagraph] = ACTIONS(5045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHitem] = ACTIONS(5045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), - }, - [709] = { - [sym_curly_group] = STATE(1130), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHend] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - [anon_sym_BSLASHtext] = ACTIONS(5003), - [anon_sym_BSLASHintertext] = ACTIONS(5003), - [anon_sym_shortintertext] = ACTIONS(5003), - }, - [710] = { - [sym_brack_group] = STATE(1262), - [sym_command_name] = ACTIONS(5145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_BSLASHpart] = ACTIONS(5145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddpart] = ACTIONS(5145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), - [anon_sym_BSLASHchapter] = ACTIONS(5145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddchap] = ACTIONS(5145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsection] = ACTIONS(5145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHaddsec] = ACTIONS(5145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), - [anon_sym_BSLASHparagraph] = ACTIONS(5145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), - [anon_sym_BSLASHitem] = ACTIONS(5145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [sym_word] = ACTIONS(5145), - [sym_placeholder] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_STAR] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym__] = ACTIONS(5145), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5145), - [anon_sym_BANG] = ACTIONS(5145), - [anon_sym_PIPE] = ACTIONS(5145), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), - [anon_sym_BSLASHbegin] = ACTIONS(5145), - [anon_sym_BSLASHend] = ACTIONS(5145), - [anon_sym_BSLASHusepackage] = ACTIONS(5145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), - [anon_sym_BSLASHinclude] = ACTIONS(5145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), - [anon_sym_BSLASHinput] = ACTIONS(5145), - [anon_sym_BSLASHsubfile] = ACTIONS(5145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), - [anon_sym_BSLASHbibliography] = ACTIONS(5145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), - [anon_sym_BSLASHincludesvg] = ACTIONS(5145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), - [anon_sym_BSLASHimport] = ACTIONS(5145), - [anon_sym_BSLASHsubimport] = ACTIONS(5145), - [anon_sym_BSLASHinputfrom] = ACTIONS(5145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), - [anon_sym_BSLASHincludefrom] = ACTIONS(5145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), - [anon_sym_BSLASHcaption] = ACTIONS(5145), - [anon_sym_BSLASHcite] = ACTIONS(5145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCite] = ACTIONS(5145), - [anon_sym_BSLASHnocite] = ACTIONS(5145), - [anon_sym_BSLASHcitet] = ACTIONS(5145), - [anon_sym_BSLASHcitep] = ACTIONS(5145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteyear] = ACTIONS(5145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), - [anon_sym_BSLASHcitedate] = ACTIONS(5145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), - [anon_sym_BSLASHciteurl] = ACTIONS(5145), - [anon_sym_BSLASHfullcite] = ACTIONS(5145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), - [anon_sym_BSLASHcitealt] = ACTIONS(5145), - [anon_sym_BSLASHcitealp] = ACTIONS(5145), - [anon_sym_BSLASHcitetext] = ACTIONS(5145), - [anon_sym_BSLASHparencite] = ACTIONS(5145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHParencite] = ACTIONS(5145), - [anon_sym_BSLASHfootcite] = ACTIONS(5145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), - [anon_sym_BSLASHtextcite] = ACTIONS(5145), - [anon_sym_BSLASHTextcite] = ACTIONS(5145), - [anon_sym_BSLASHsmartcite] = ACTIONS(5145), - [anon_sym_BSLASHSmartcite] = ACTIONS(5145), - [anon_sym_BSLASHsupercite] = ACTIONS(5145), - [anon_sym_BSLASHautocite] = ACTIONS(5145), - [anon_sym_BSLASHAutocite] = ACTIONS(5145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), - [anon_sym_BSLASHvolcite] = ACTIONS(5145), - [anon_sym_BSLASHVolcite] = ACTIONS(5145), - [anon_sym_BSLASHpvolcite] = ACTIONS(5145), - [anon_sym_BSLASHPvolcite] = ACTIONS(5145), - [anon_sym_BSLASHfvolcite] = ACTIONS(5145), - [anon_sym_BSLASHftvolcite] = ACTIONS(5145), - [anon_sym_BSLASHsvolcite] = ACTIONS(5145), - [anon_sym_BSLASHSvolcite] = ACTIONS(5145), - [anon_sym_BSLASHtvolcite] = ACTIONS(5145), - [anon_sym_BSLASHTvolcite] = ACTIONS(5145), - [anon_sym_BSLASHavolcite] = ACTIONS(5145), - [anon_sym_BSLASHAvolcite] = ACTIONS(5145), - [anon_sym_BSLASHnotecite] = ACTIONS(5145), - [anon_sym_BSLASHNotecite] = ACTIONS(5145), - [anon_sym_BSLASHpnotecite] = ACTIONS(5145), - [anon_sym_BSLASHPnotecite] = ACTIONS(5145), - [anon_sym_BSLASHfnotecite] = ACTIONS(5145), - [anon_sym_BSLASHlabel] = ACTIONS(5145), - [anon_sym_BSLASHref] = ACTIONS(5145), - [anon_sym_BSLASHeqref] = ACTIONS(5145), - [anon_sym_BSLASHvref] = ACTIONS(5145), - [anon_sym_BSLASHVref] = ACTIONS(5145), - [anon_sym_BSLASHautoref] = ACTIONS(5145), - [anon_sym_BSLASHpageref] = ACTIONS(5145), - [anon_sym_BSLASHcref] = ACTIONS(5145), - [anon_sym_BSLASHCref] = ACTIONS(5145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnamecref] = ACTIONS(5145), - [anon_sym_BSLASHnameCref] = ACTIONS(5145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), - [anon_sym_BSLASHlabelcref] = ACTIONS(5145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), - [anon_sym_BSLASHcrefrange] = ACTIONS(5145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), - [anon_sym_BSLASHnewlabel] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand] = ACTIONS(5145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdef] = ACTIONS(5145), - [anon_sym_BSLASHlet] = ACTIONS(5145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), - [anon_sym_BSLASHgls] = ACTIONS(5145), - [anon_sym_BSLASHGls] = ACTIONS(5145), - [anon_sym_BSLASHGLS] = ACTIONS(5145), - [anon_sym_BSLASHglspl] = ACTIONS(5145), - [anon_sym_BSLASHGlspl] = ACTIONS(5145), - [anon_sym_BSLASHGLSpl] = ACTIONS(5145), - [anon_sym_BSLASHglsdisp] = ACTIONS(5145), - [anon_sym_BSLASHglslink] = ACTIONS(5145), - [anon_sym_BSLASHglstext] = ACTIONS(5145), - [anon_sym_BSLASHGlstext] = ACTIONS(5145), - [anon_sym_BSLASHGLStext] = ACTIONS(5145), - [anon_sym_BSLASHglsfirst] = ACTIONS(5145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), - [anon_sym_BSLASHglsplural] = ACTIONS(5145), - [anon_sym_BSLASHGlsplural] = ACTIONS(5145), - [anon_sym_BSLASHGLSplural] = ACTIONS(5145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), - [anon_sym_BSLASHglsname] = ACTIONS(5145), - [anon_sym_BSLASHGlsname] = ACTIONS(5145), - [anon_sym_BSLASHGLSname] = ACTIONS(5145), - [anon_sym_BSLASHglssymbol] = ACTIONS(5145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), - [anon_sym_BSLASHglsdesc] = ACTIONS(5145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), - [anon_sym_BSLASHglsuseri] = ACTIONS(5145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), - [anon_sym_BSLASHglsuserii] = ACTIONS(5145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), - [anon_sym_BSLASHglsuserv] = ACTIONS(5145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), - [anon_sym_BSLASHglsuservi] = ACTIONS(5145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), - [anon_sym_BSLASHnewacronym] = ACTIONS(5145), - [anon_sym_BSLASHacrshort] = ACTIONS(5145), - [anon_sym_BSLASHAcrshort] = ACTIONS(5145), - [anon_sym_BSLASHACRshort] = ACTIONS(5145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), - [anon_sym_BSLASHacrlong] = ACTIONS(5145), - [anon_sym_BSLASHAcrlong] = ACTIONS(5145), - [anon_sym_BSLASHACRlong] = ACTIONS(5145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), - [anon_sym_BSLASHacrfull] = ACTIONS(5145), - [anon_sym_BSLASHAcrfull] = ACTIONS(5145), - [anon_sym_BSLASHACRfull] = ACTIONS(5145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), - [anon_sym_BSLASHacs] = ACTIONS(5145), - [anon_sym_BSLASHAcs] = ACTIONS(5145), - [anon_sym_BSLASHacsp] = ACTIONS(5145), - [anon_sym_BSLASHAcsp] = ACTIONS(5145), - [anon_sym_BSLASHacl] = ACTIONS(5145), - [anon_sym_BSLASHAcl] = ACTIONS(5145), - [anon_sym_BSLASHaclp] = ACTIONS(5145), - [anon_sym_BSLASHAclp] = ACTIONS(5145), - [anon_sym_BSLASHacf] = ACTIONS(5145), - [anon_sym_BSLASHAcf] = ACTIONS(5145), - [anon_sym_BSLASHacfp] = ACTIONS(5145), - [anon_sym_BSLASHAcfp] = ACTIONS(5145), - [anon_sym_BSLASHac] = ACTIONS(5145), - [anon_sym_BSLASHAc] = ACTIONS(5145), - [anon_sym_BSLASHacp] = ACTIONS(5145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), - [anon_sym_BSLASHcolor] = ACTIONS(5145), - [anon_sym_BSLASHcolorbox] = ACTIONS(5145), - [anon_sym_BSLASHtextcolor] = ACTIONS(5145), - [anon_sym_BSLASHpagecolor] = ACTIONS(5145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), - [anon_sym_BSLASHtext] = ACTIONS(5145), - [anon_sym_BSLASHintertext] = ACTIONS(5145), - [anon_sym_shortintertext] = ACTIONS(5145), - }, - [711] = { - [sym_curly_group] = STATE(1131), - [sym_command_name] = ACTIONS(5019), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_BSLASHpart] = ACTIONS(5019), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddpart] = ACTIONS(5019), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHchapter] = ACTIONS(5019), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddchap] = ACTIONS(5019), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsection] = ACTIONS(5019), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddsec] = ACTIONS(5019), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHparagraph] = ACTIONS(5019), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHitem] = ACTIONS(5019), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(5019), - [sym_placeholder] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym__] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5017), - [anon_sym_BSLASHbegin] = ACTIONS(5019), - [anon_sym_BSLASHend] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5019), - [anon_sym_BSLASHinclude] = ACTIONS(5019), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5019), - [anon_sym_BSLASHinput] = ACTIONS(5019), - [anon_sym_BSLASHsubfile] = ACTIONS(5019), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5019), - [anon_sym_BSLASHbibliography] = ACTIONS(5019), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5019), - [anon_sym_BSLASHincludesvg] = ACTIONS(5019), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5019), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5019), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5019), - [anon_sym_BSLASHimport] = ACTIONS(5019), - [anon_sym_BSLASHsubimport] = ACTIONS(5019), - [anon_sym_BSLASHinputfrom] = ACTIONS(5019), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5019), - [anon_sym_BSLASHincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHcaption] = ACTIONS(5019), - [anon_sym_BSLASHcite] = ACTIONS(5019), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCite] = ACTIONS(5019), - [anon_sym_BSLASHnocite] = ACTIONS(5019), - [anon_sym_BSLASHcitet] = ACTIONS(5019), - [anon_sym_BSLASHcitep] = ACTIONS(5019), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteyear] = ACTIONS(5019), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitedate] = ACTIONS(5019), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteurl] = ACTIONS(5019), - [anon_sym_BSLASHfullcite] = ACTIONS(5019), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5019), - [anon_sym_BSLASHcitealt] = ACTIONS(5019), - [anon_sym_BSLASHcitealp] = ACTIONS(5019), - [anon_sym_BSLASHcitetext] = ACTIONS(5019), - [anon_sym_BSLASHparencite] = ACTIONS(5019), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHParencite] = ACTIONS(5019), - [anon_sym_BSLASHfootcite] = ACTIONS(5019), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5019), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5019), - [anon_sym_BSLASHtextcite] = ACTIONS(5019), - [anon_sym_BSLASHTextcite] = ACTIONS(5019), - [anon_sym_BSLASHsmartcite] = ACTIONS(5019), - [anon_sym_BSLASHSmartcite] = ACTIONS(5019), - [anon_sym_BSLASHsupercite] = ACTIONS(5019), - [anon_sym_BSLASHautocite] = ACTIONS(5019), - [anon_sym_BSLASHAutocite] = ACTIONS(5019), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHvolcite] = ACTIONS(5019), - [anon_sym_BSLASHVolcite] = ACTIONS(5019), - [anon_sym_BSLASHpvolcite] = ACTIONS(5019), - [anon_sym_BSLASHPvolcite] = ACTIONS(5019), - [anon_sym_BSLASHfvolcite] = ACTIONS(5019), - [anon_sym_BSLASHftvolcite] = ACTIONS(5019), - [anon_sym_BSLASHsvolcite] = ACTIONS(5019), - [anon_sym_BSLASHSvolcite] = ACTIONS(5019), - [anon_sym_BSLASHtvolcite] = ACTIONS(5019), - [anon_sym_BSLASHTvolcite] = ACTIONS(5019), - [anon_sym_BSLASHavolcite] = ACTIONS(5019), - [anon_sym_BSLASHAvolcite] = ACTIONS(5019), - [anon_sym_BSLASHnotecite] = ACTIONS(5019), - [anon_sym_BSLASHNotecite] = ACTIONS(5019), - [anon_sym_BSLASHpnotecite] = ACTIONS(5019), - [anon_sym_BSLASHPnotecite] = ACTIONS(5019), - [anon_sym_BSLASHfnotecite] = ACTIONS(5019), - [anon_sym_BSLASHlabel] = ACTIONS(5019), - [anon_sym_BSLASHref] = ACTIONS(5019), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [anon_sym_BSLASHvref] = ACTIONS(5019), - [anon_sym_BSLASHVref] = ACTIONS(5019), - [anon_sym_BSLASHautoref] = ACTIONS(5019), - [anon_sym_BSLASHpageref] = ACTIONS(5019), - [anon_sym_BSLASHcref] = ACTIONS(5019), - [anon_sym_BSLASHCref] = ACTIONS(5019), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnameCref] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHlabelcref] = ACTIONS(5019), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnewlabel] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdef] = ACTIONS(5019), - [anon_sym_BSLASHlet] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5019), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5019), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5019), - [anon_sym_BSLASHgls] = ACTIONS(5019), - [anon_sym_BSLASHGls] = ACTIONS(5019), - [anon_sym_BSLASHGLS] = ACTIONS(5019), - [anon_sym_BSLASHglspl] = ACTIONS(5019), - [anon_sym_BSLASHGlspl] = ACTIONS(5019), - [anon_sym_BSLASHGLSpl] = ACTIONS(5019), - [anon_sym_BSLASHglsdisp] = ACTIONS(5019), - [anon_sym_BSLASHglslink] = ACTIONS(5019), - [anon_sym_BSLASHglstext] = ACTIONS(5019), - [anon_sym_BSLASHGlstext] = ACTIONS(5019), - [anon_sym_BSLASHGLStext] = ACTIONS(5019), - [anon_sym_BSLASHglsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5019), - [anon_sym_BSLASHglsplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSplural] = ACTIONS(5019), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHglsname] = ACTIONS(5019), - [anon_sym_BSLASHGlsname] = ACTIONS(5019), - [anon_sym_BSLASHGLSname] = ACTIONS(5019), - [anon_sym_BSLASHglssymbol] = ACTIONS(5019), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5019), - [anon_sym_BSLASHglsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5019), - [anon_sym_BSLASHglsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5019), - [anon_sym_BSLASHglsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5019), - [anon_sym_BSLASHglsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5019), - [anon_sym_BSLASHglsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5019), - [anon_sym_BSLASHnewacronym] = ACTIONS(5019), - [anon_sym_BSLASHacrshort] = ACTIONS(5019), - [anon_sym_BSLASHAcrshort] = ACTIONS(5019), - [anon_sym_BSLASHACRshort] = ACTIONS(5019), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5019), - [anon_sym_BSLASHacrlong] = ACTIONS(5019), - [anon_sym_BSLASHAcrlong] = ACTIONS(5019), - [anon_sym_BSLASHACRlong] = ACTIONS(5019), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5019), - [anon_sym_BSLASHacrfull] = ACTIONS(5019), - [anon_sym_BSLASHAcrfull] = ACTIONS(5019), - [anon_sym_BSLASHACRfull] = ACTIONS(5019), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5019), - [anon_sym_BSLASHacs] = ACTIONS(5019), - [anon_sym_BSLASHAcs] = ACTIONS(5019), - [anon_sym_BSLASHacsp] = ACTIONS(5019), - [anon_sym_BSLASHAcsp] = ACTIONS(5019), - [anon_sym_BSLASHacl] = ACTIONS(5019), - [anon_sym_BSLASHAcl] = ACTIONS(5019), - [anon_sym_BSLASHaclp] = ACTIONS(5019), - [anon_sym_BSLASHAclp] = ACTIONS(5019), - [anon_sym_BSLASHacf] = ACTIONS(5019), - [anon_sym_BSLASHAcf] = ACTIONS(5019), - [anon_sym_BSLASHacfp] = ACTIONS(5019), - [anon_sym_BSLASHAcfp] = ACTIONS(5019), - [anon_sym_BSLASHac] = ACTIONS(5019), - [anon_sym_BSLASHAc] = ACTIONS(5019), - [anon_sym_BSLASHacp] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5019), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5019), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5019), - [anon_sym_BSLASHcolor] = ACTIONS(5019), - [anon_sym_BSLASHcolorbox] = ACTIONS(5019), - [anon_sym_BSLASHtextcolor] = ACTIONS(5019), - [anon_sym_BSLASHpagecolor] = ACTIONS(5019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5019), - [anon_sym_BSLASHtext] = ACTIONS(5019), - [anon_sym_BSLASHintertext] = ACTIONS(5019), - [anon_sym_shortintertext] = ACTIONS(5019), - }, - [712] = { - [sym_brack_group_text] = STATE(1132), - [sym_command_name] = ACTIONS(5027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_BSLASHpart] = ACTIONS(5027), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddpart] = ACTIONS(5027), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHchapter] = ACTIONS(5027), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddchap] = ACTIONS(5027), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsection] = ACTIONS(5027), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddsec] = ACTIONS(5027), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHparagraph] = ACTIONS(5027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHitem] = ACTIONS(5027), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5025), - [sym_word] = ACTIONS(5027), - [sym_placeholder] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym__] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5025), - [anon_sym_BSLASHbegin] = ACTIONS(5027), - [anon_sym_BSLASHend] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5027), - [anon_sym_BSLASHinclude] = ACTIONS(5027), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5027), - [anon_sym_BSLASHinput] = ACTIONS(5027), - [anon_sym_BSLASHsubfile] = ACTIONS(5027), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), - [anon_sym_BSLASHbibliography] = ACTIONS(5027), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5027), - [anon_sym_BSLASHincludesvg] = ACTIONS(5027), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5027), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5027), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5027), - [anon_sym_BSLASHimport] = ACTIONS(5027), - [anon_sym_BSLASHsubimport] = ACTIONS(5027), - [anon_sym_BSLASHinputfrom] = ACTIONS(5027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5027), - [anon_sym_BSLASHincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHcaption] = ACTIONS(5027), - [anon_sym_BSLASHcite] = ACTIONS(5027), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCite] = ACTIONS(5027), - [anon_sym_BSLASHnocite] = ACTIONS(5027), - [anon_sym_BSLASHcitet] = ACTIONS(5027), - [anon_sym_BSLASHcitep] = ACTIONS(5027), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteyear] = ACTIONS(5027), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitedate] = ACTIONS(5027), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteurl] = ACTIONS(5027), - [anon_sym_BSLASHfullcite] = ACTIONS(5027), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5027), - [anon_sym_BSLASHcitealt] = ACTIONS(5027), - [anon_sym_BSLASHcitealp] = ACTIONS(5027), - [anon_sym_BSLASHcitetext] = ACTIONS(5027), - [anon_sym_BSLASHparencite] = ACTIONS(5027), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHParencite] = ACTIONS(5027), - [anon_sym_BSLASHfootcite] = ACTIONS(5027), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5027), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5027), - [anon_sym_BSLASHtextcite] = ACTIONS(5027), - [anon_sym_BSLASHTextcite] = ACTIONS(5027), - [anon_sym_BSLASHsmartcite] = ACTIONS(5027), - [anon_sym_BSLASHSmartcite] = ACTIONS(5027), - [anon_sym_BSLASHsupercite] = ACTIONS(5027), - [anon_sym_BSLASHautocite] = ACTIONS(5027), - [anon_sym_BSLASHAutocite] = ACTIONS(5027), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHvolcite] = ACTIONS(5027), - [anon_sym_BSLASHVolcite] = ACTIONS(5027), - [anon_sym_BSLASHpvolcite] = ACTIONS(5027), - [anon_sym_BSLASHPvolcite] = ACTIONS(5027), - [anon_sym_BSLASHfvolcite] = ACTIONS(5027), - [anon_sym_BSLASHftvolcite] = ACTIONS(5027), - [anon_sym_BSLASHsvolcite] = ACTIONS(5027), - [anon_sym_BSLASHSvolcite] = ACTIONS(5027), - [anon_sym_BSLASHtvolcite] = ACTIONS(5027), - [anon_sym_BSLASHTvolcite] = ACTIONS(5027), - [anon_sym_BSLASHavolcite] = ACTIONS(5027), - [anon_sym_BSLASHAvolcite] = ACTIONS(5027), - [anon_sym_BSLASHnotecite] = ACTIONS(5027), - [anon_sym_BSLASHNotecite] = ACTIONS(5027), - [anon_sym_BSLASHpnotecite] = ACTIONS(5027), - [anon_sym_BSLASHPnotecite] = ACTIONS(5027), - [anon_sym_BSLASHfnotecite] = ACTIONS(5027), - [anon_sym_BSLASHlabel] = ACTIONS(5027), - [anon_sym_BSLASHref] = ACTIONS(5027), - [anon_sym_BSLASHeqref] = ACTIONS(5027), - [anon_sym_BSLASHvref] = ACTIONS(5027), - [anon_sym_BSLASHVref] = ACTIONS(5027), - [anon_sym_BSLASHautoref] = ACTIONS(5027), - [anon_sym_BSLASHpageref] = ACTIONS(5027), - [anon_sym_BSLASHcref] = ACTIONS(5027), - [anon_sym_BSLASHCref] = ACTIONS(5027), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnameCref] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHlabelcref] = ACTIONS(5027), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnewlabel] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdef] = ACTIONS(5027), - [anon_sym_BSLASHlet] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5027), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5027), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5027), - [anon_sym_BSLASHgls] = ACTIONS(5027), - [anon_sym_BSLASHGls] = ACTIONS(5027), - [anon_sym_BSLASHGLS] = ACTIONS(5027), - [anon_sym_BSLASHglspl] = ACTIONS(5027), - [anon_sym_BSLASHGlspl] = ACTIONS(5027), - [anon_sym_BSLASHGLSpl] = ACTIONS(5027), - [anon_sym_BSLASHglsdisp] = ACTIONS(5027), - [anon_sym_BSLASHglslink] = ACTIONS(5027), - [anon_sym_BSLASHglstext] = ACTIONS(5027), - [anon_sym_BSLASHGlstext] = ACTIONS(5027), - [anon_sym_BSLASHGLStext] = ACTIONS(5027), - [anon_sym_BSLASHglsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5027), - [anon_sym_BSLASHglsplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSplural] = ACTIONS(5027), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHglsname] = ACTIONS(5027), - [anon_sym_BSLASHGlsname] = ACTIONS(5027), - [anon_sym_BSLASHGLSname] = ACTIONS(5027), - [anon_sym_BSLASHglssymbol] = ACTIONS(5027), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5027), - [anon_sym_BSLASHglsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5027), - [anon_sym_BSLASHglsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5027), - [anon_sym_BSLASHglsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5027), - [anon_sym_BSLASHglsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5027), - [anon_sym_BSLASHglsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5027), - [anon_sym_BSLASHnewacronym] = ACTIONS(5027), - [anon_sym_BSLASHacrshort] = ACTIONS(5027), - [anon_sym_BSLASHAcrshort] = ACTIONS(5027), - [anon_sym_BSLASHACRshort] = ACTIONS(5027), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5027), - [anon_sym_BSLASHacrlong] = ACTIONS(5027), - [anon_sym_BSLASHAcrlong] = ACTIONS(5027), - [anon_sym_BSLASHACRlong] = ACTIONS(5027), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5027), - [anon_sym_BSLASHacrfull] = ACTIONS(5027), - [anon_sym_BSLASHAcrfull] = ACTIONS(5027), - [anon_sym_BSLASHACRfull] = ACTIONS(5027), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5027), - [anon_sym_BSLASHacs] = ACTIONS(5027), - [anon_sym_BSLASHAcs] = ACTIONS(5027), - [anon_sym_BSLASHacsp] = ACTIONS(5027), - [anon_sym_BSLASHAcsp] = ACTIONS(5027), - [anon_sym_BSLASHacl] = ACTIONS(5027), - [anon_sym_BSLASHAcl] = ACTIONS(5027), - [anon_sym_BSLASHaclp] = ACTIONS(5027), - [anon_sym_BSLASHAclp] = ACTIONS(5027), - [anon_sym_BSLASHacf] = ACTIONS(5027), - [anon_sym_BSLASHAcf] = ACTIONS(5027), - [anon_sym_BSLASHacfp] = ACTIONS(5027), - [anon_sym_BSLASHAcfp] = ACTIONS(5027), - [anon_sym_BSLASHac] = ACTIONS(5027), - [anon_sym_BSLASHAc] = ACTIONS(5027), - [anon_sym_BSLASHacp] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5027), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5027), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5027), - [anon_sym_BSLASHcolor] = ACTIONS(5027), - [anon_sym_BSLASHcolorbox] = ACTIONS(5027), - [anon_sym_BSLASHtextcolor] = ACTIONS(5027), - [anon_sym_BSLASHpagecolor] = ACTIONS(5027), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5027), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5027), - [anon_sym_BSLASHtext] = ACTIONS(5027), - [anon_sym_BSLASHintertext] = ACTIONS(5027), - [anon_sym_shortintertext] = ACTIONS(5027), - }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(151), - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), - }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(147), - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(5153), - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_RBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), - }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(5157), - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_RBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(5161), - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [anon_sym_RBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), - }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(5165), - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(5169), - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(5173), - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(5177), - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [722] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_BSLASHpart] = ACTIONS(5031), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddpart] = ACTIONS(5031), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHchapter] = ACTIONS(5031), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddchap] = ACTIONS(5031), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsection] = ACTIONS(5031), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddsec] = ACTIONS(5031), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHparagraph] = ACTIONS(5031), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHitem] = ACTIONS(5031), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHend] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(5183), - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), + [386] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(5187), - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), + [387] = { + [sym_curly_group] = STATE(941), + [sym_mixed_group] = STATE(941), + [aux_sym_generic_command_repeat1] = STATE(397), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5349), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(5349), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_BSLASHpart] = ACTIONS(5317), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddpart] = ACTIONS(5317), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHchapter] = ACTIONS(5317), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddchap] = ACTIONS(5317), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsection] = ACTIONS(5317), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddsec] = ACTIONS(5317), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHparagraph] = ACTIONS(5317), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHitem] = ACTIONS(5317), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(5191), - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), + [388] = { + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(463), + [aux_sym__section_repeat1] = STATE(463), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(587), + [anon_sym_BSLASHpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHaddpart] = ACTIONS(587), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(589), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(5195), - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), + [389] = { + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(464), + [aux_sym__section_repeat2] = STATE(464), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(5199), - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), + [390] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(141), - [sym_command_name] = ACTIONS(143), + [391] = { + [sym_curly_group] = STATE(690), + [sym_brack_group_text] = STATE(2553), + [ts_builtin_sym_end] = ACTIONS(5351), + [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(5203), - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(5207), - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(5211), - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_BSLASHpart] = ACTIONS(5213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddpart] = ACTIONS(5213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHchapter] = ACTIONS(5213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddchap] = ACTIONS(5213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsection] = ACTIONS(5213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddsec] = ACTIONS(5213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHparagraph] = ACTIONS(5213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHitem] = ACTIONS(5213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(5215), - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(135), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(5219), - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_BSLASHpart] = ACTIONS(5353), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddpart] = ACTIONS(5353), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHchapter] = ACTIONS(5353), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddchap] = ACTIONS(5353), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsection] = ACTIONS(5353), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddsec] = ACTIONS(5353), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHparagraph] = ACTIONS(5353), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHitem] = ACTIONS(5353), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5351), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(5223), - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), + [392] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(5227), - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_BSLASHpart] = ACTIONS(5229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddpart] = ACTIONS(5229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHchapter] = ACTIONS(5229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddchap] = ACTIONS(5229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsection] = ACTIONS(5229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddsec] = ACTIONS(5229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHparagraph] = ACTIONS(5229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHitem] = ACTIONS(5229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_RBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), + [393] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(5231), - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_BSLASHpart] = ACTIONS(5233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddpart] = ACTIONS(5233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHchapter] = ACTIONS(5233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddchap] = ACTIONS(5233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsection] = ACTIONS(5233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddsec] = ACTIONS(5233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHparagraph] = ACTIONS(5233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHitem] = ACTIONS(5233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), + [394] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(5235), - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_BSLASHpart] = ACTIONS(5237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddpart] = ACTIONS(5237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHchapter] = ACTIONS(5237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddchap] = ACTIONS(5237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsection] = ACTIONS(5237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddsec] = ACTIONS(5237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHparagraph] = ACTIONS(5237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHitem] = ACTIONS(5237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), + [395] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(5239), - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_BSLASHpart] = ACTIONS(5241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddpart] = ACTIONS(5241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHchapter] = ACTIONS(5241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddchap] = ACTIONS(5241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsection] = ACTIONS(5241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddsec] = ACTIONS(5241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHparagraph] = ACTIONS(5241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHitem] = ACTIONS(5241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [anon_sym_RBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), + [396] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(5243), - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_RPAREN] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_BSLASHpart] = ACTIONS(5245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddpart] = ACTIONS(5245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHchapter] = ACTIONS(5245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddchap] = ACTIONS(5245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsection] = ACTIONS(5245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddsec] = ACTIONS(5245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHparagraph] = ACTIONS(5245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHitem] = ACTIONS(5245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5243), - [anon_sym_RBRACE] = ACTIONS(5243), - [sym_word] = ACTIONS(5245), - [sym_placeholder] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5245), - [anon_sym_SLASH] = ACTIONS(5245), - [anon_sym_CARET] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5245), - [anon_sym_GT] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5245), - [anon_sym_PIPE] = ACTIONS(5245), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), - [anon_sym_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), - [anon_sym_BSLASHbegin] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), - [anon_sym_BSLASHinclude] = ACTIONS(5245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), - [anon_sym_BSLASHinput] = ACTIONS(5245), - [anon_sym_BSLASHsubfile] = ACTIONS(5245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), - [anon_sym_BSLASHbibliography] = ACTIONS(5245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), - [anon_sym_BSLASHincludesvg] = ACTIONS(5245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), - [anon_sym_BSLASHimport] = ACTIONS(5245), - [anon_sym_BSLASHsubimport] = ACTIONS(5245), - [anon_sym_BSLASHinputfrom] = ACTIONS(5245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), - [anon_sym_BSLASHincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHcaption] = ACTIONS(5245), - [anon_sym_BSLASHcite] = ACTIONS(5245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCite] = ACTIONS(5245), - [anon_sym_BSLASHnocite] = ACTIONS(5245), - [anon_sym_BSLASHcitet] = ACTIONS(5245), - [anon_sym_BSLASHcitep] = ACTIONS(5245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteyear] = ACTIONS(5245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitedate] = ACTIONS(5245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteurl] = ACTIONS(5245), - [anon_sym_BSLASHfullcite] = ACTIONS(5245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), - [anon_sym_BSLASHcitealt] = ACTIONS(5245), - [anon_sym_BSLASHcitealp] = ACTIONS(5245), - [anon_sym_BSLASHcitetext] = ACTIONS(5245), - [anon_sym_BSLASHparencite] = ACTIONS(5245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHParencite] = ACTIONS(5245), - [anon_sym_BSLASHfootcite] = ACTIONS(5245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), - [anon_sym_BSLASHtextcite] = ACTIONS(5245), - [anon_sym_BSLASHTextcite] = ACTIONS(5245), - [anon_sym_BSLASHsmartcite] = ACTIONS(5245), - [anon_sym_BSLASHSmartcite] = ACTIONS(5245), - [anon_sym_BSLASHsupercite] = ACTIONS(5245), - [anon_sym_BSLASHautocite] = ACTIONS(5245), - [anon_sym_BSLASHAutocite] = ACTIONS(5245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHvolcite] = ACTIONS(5245), - [anon_sym_BSLASHVolcite] = ACTIONS(5245), - [anon_sym_BSLASHpvolcite] = ACTIONS(5245), - [anon_sym_BSLASHPvolcite] = ACTIONS(5245), - [anon_sym_BSLASHfvolcite] = ACTIONS(5245), - [anon_sym_BSLASHftvolcite] = ACTIONS(5245), - [anon_sym_BSLASHsvolcite] = ACTIONS(5245), - [anon_sym_BSLASHSvolcite] = ACTIONS(5245), - [anon_sym_BSLASHtvolcite] = ACTIONS(5245), - [anon_sym_BSLASHTvolcite] = ACTIONS(5245), - [anon_sym_BSLASHavolcite] = ACTIONS(5245), - [anon_sym_BSLASHAvolcite] = ACTIONS(5245), - [anon_sym_BSLASHnotecite] = ACTIONS(5245), - [anon_sym_BSLASHNotecite] = ACTIONS(5245), - [anon_sym_BSLASHpnotecite] = ACTIONS(5245), - [anon_sym_BSLASHPnotecite] = ACTIONS(5245), - [anon_sym_BSLASHfnotecite] = ACTIONS(5245), - [anon_sym_BSLASHlabel] = ACTIONS(5245), - [anon_sym_BSLASHref] = ACTIONS(5245), - [anon_sym_BSLASHeqref] = ACTIONS(5245), - [anon_sym_BSLASHvref] = ACTIONS(5245), - [anon_sym_BSLASHVref] = ACTIONS(5245), - [anon_sym_BSLASHautoref] = ACTIONS(5245), - [anon_sym_BSLASHpageref] = ACTIONS(5245), - [anon_sym_BSLASHcref] = ACTIONS(5245), - [anon_sym_BSLASHCref] = ACTIONS(5245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnameCref] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHlabelcref] = ACTIONS(5245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnewlabel] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdef] = ACTIONS(5245), - [anon_sym_BSLASHlet] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), - [anon_sym_BSLASHgls] = ACTIONS(5245), - [anon_sym_BSLASHGls] = ACTIONS(5245), - [anon_sym_BSLASHGLS] = ACTIONS(5245), - [anon_sym_BSLASHglspl] = ACTIONS(5245), - [anon_sym_BSLASHGlspl] = ACTIONS(5245), - [anon_sym_BSLASHGLSpl] = ACTIONS(5245), - [anon_sym_BSLASHglsdisp] = ACTIONS(5245), - [anon_sym_BSLASHglslink] = ACTIONS(5245), - [anon_sym_BSLASHglstext] = ACTIONS(5245), - [anon_sym_BSLASHGlstext] = ACTIONS(5245), - [anon_sym_BSLASHGLStext] = ACTIONS(5245), - [anon_sym_BSLASHglsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), - [anon_sym_BSLASHglsplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSplural] = ACTIONS(5245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHglsname] = ACTIONS(5245), - [anon_sym_BSLASHGlsname] = ACTIONS(5245), - [anon_sym_BSLASHGLSname] = ACTIONS(5245), - [anon_sym_BSLASHglssymbol] = ACTIONS(5245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), - [anon_sym_BSLASHglsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), - [anon_sym_BSLASHglsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), - [anon_sym_BSLASHglsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), - [anon_sym_BSLASHglsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), - [anon_sym_BSLASHglsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), - [anon_sym_BSLASHnewacronym] = ACTIONS(5245), - [anon_sym_BSLASHacrshort] = ACTIONS(5245), - [anon_sym_BSLASHAcrshort] = ACTIONS(5245), - [anon_sym_BSLASHACRshort] = ACTIONS(5245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), - [anon_sym_BSLASHacrlong] = ACTIONS(5245), - [anon_sym_BSLASHAcrlong] = ACTIONS(5245), - [anon_sym_BSLASHACRlong] = ACTIONS(5245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), - [anon_sym_BSLASHacrfull] = ACTIONS(5245), - [anon_sym_BSLASHAcrfull] = ACTIONS(5245), - [anon_sym_BSLASHACRfull] = ACTIONS(5245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), - [anon_sym_BSLASHacs] = ACTIONS(5245), - [anon_sym_BSLASHAcs] = ACTIONS(5245), - [anon_sym_BSLASHacsp] = ACTIONS(5245), - [anon_sym_BSLASHAcsp] = ACTIONS(5245), - [anon_sym_BSLASHacl] = ACTIONS(5245), - [anon_sym_BSLASHAcl] = ACTIONS(5245), - [anon_sym_BSLASHaclp] = ACTIONS(5245), - [anon_sym_BSLASHAclp] = ACTIONS(5245), - [anon_sym_BSLASHacf] = ACTIONS(5245), - [anon_sym_BSLASHAcf] = ACTIONS(5245), - [anon_sym_BSLASHacfp] = ACTIONS(5245), - [anon_sym_BSLASHAcfp] = ACTIONS(5245), - [anon_sym_BSLASHac] = ACTIONS(5245), - [anon_sym_BSLASHAc] = ACTIONS(5245), - [anon_sym_BSLASHacp] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), - [anon_sym_BSLASHcolor] = ACTIONS(5245), - [anon_sym_BSLASHcolorbox] = ACTIONS(5245), - [anon_sym_BSLASHtextcolor] = ACTIONS(5245), - [anon_sym_BSLASHpagecolor] = ACTIONS(5245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), - [anon_sym_BSLASHtext] = ACTIONS(5245), - [anon_sym_BSLASHintertext] = ACTIONS(5245), - [anon_sym_shortintertext] = ACTIONS(5245), + [397] = { + [sym_curly_group] = STATE(941), + [sym_mixed_group] = STATE(941), + [aux_sym_generic_command_repeat1] = STATE(548), + [sym_command_name] = ACTIONS(5337), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(5349), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5349), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_BSLASHpart] = ACTIONS(5337), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddpart] = ACTIONS(5337), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHchapter] = ACTIONS(5337), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddchap] = ACTIONS(5337), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsection] = ACTIONS(5337), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddsec] = ACTIONS(5337), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHparagraph] = ACTIONS(5337), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHitem] = ACTIONS(5337), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5335), + [anon_sym_BSLASHbegin] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), }, - [741] = { - [sym_curly_group] = STATE(977), - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - [anon_sym_BSLASHtext] = ACTIONS(4999), - [anon_sym_BSLASHintertext] = ACTIONS(4999), - [anon_sym_shortintertext] = ACTIONS(4999), + [398] = { + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(464), + [aux_sym__section_repeat2] = STATE(464), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(5247), - [sym_command_name] = ACTIONS(5249), + [399] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_BSLASHpart] = ACTIONS(5249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddpart] = ACTIONS(5249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHchapter] = ACTIONS(5249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddchap] = ACTIONS(5249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsection] = ACTIONS(5249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddsec] = ACTIONS(5249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHparagraph] = ACTIONS(5249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHitem] = ACTIONS(5249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [anon_sym_RBRACE] = ACTIONS(5247), - [sym_word] = ACTIONS(5249), - [sym_placeholder] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5249), - [anon_sym_STAR] = ACTIONS(5249), - [anon_sym_SLASH] = ACTIONS(5249), - [anon_sym_CARET] = ACTIONS(5249), - [anon_sym__] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5249), - [anon_sym_PIPE] = ACTIONS(5249), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_SQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASHbegin] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), - [anon_sym_BSLASHinclude] = ACTIONS(5249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), - [anon_sym_BSLASHinput] = ACTIONS(5249), - [anon_sym_BSLASHsubfile] = ACTIONS(5249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), - [anon_sym_BSLASHbibliography] = ACTIONS(5249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), - [anon_sym_BSLASHincludesvg] = ACTIONS(5249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), - [anon_sym_BSLASHimport] = ACTIONS(5249), - [anon_sym_BSLASHsubimport] = ACTIONS(5249), - [anon_sym_BSLASHinputfrom] = ACTIONS(5249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), - [anon_sym_BSLASHincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [anon_sym_BSLASHcite] = ACTIONS(5249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCite] = ACTIONS(5249), - [anon_sym_BSLASHnocite] = ACTIONS(5249), - [anon_sym_BSLASHcitet] = ACTIONS(5249), - [anon_sym_BSLASHcitep] = ACTIONS(5249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteyear] = ACTIONS(5249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitedate] = ACTIONS(5249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteurl] = ACTIONS(5249), - [anon_sym_BSLASHfullcite] = ACTIONS(5249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), - [anon_sym_BSLASHcitealt] = ACTIONS(5249), - [anon_sym_BSLASHcitealp] = ACTIONS(5249), - [anon_sym_BSLASHcitetext] = ACTIONS(5249), - [anon_sym_BSLASHparencite] = ACTIONS(5249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHParencite] = ACTIONS(5249), - [anon_sym_BSLASHfootcite] = ACTIONS(5249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), - [anon_sym_BSLASHtextcite] = ACTIONS(5249), - [anon_sym_BSLASHTextcite] = ACTIONS(5249), - [anon_sym_BSLASHsmartcite] = ACTIONS(5249), - [anon_sym_BSLASHSmartcite] = ACTIONS(5249), - [anon_sym_BSLASHsupercite] = ACTIONS(5249), - [anon_sym_BSLASHautocite] = ACTIONS(5249), - [anon_sym_BSLASHAutocite] = ACTIONS(5249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHvolcite] = ACTIONS(5249), - [anon_sym_BSLASHVolcite] = ACTIONS(5249), - [anon_sym_BSLASHpvolcite] = ACTIONS(5249), - [anon_sym_BSLASHPvolcite] = ACTIONS(5249), - [anon_sym_BSLASHfvolcite] = ACTIONS(5249), - [anon_sym_BSLASHftvolcite] = ACTIONS(5249), - [anon_sym_BSLASHsvolcite] = ACTIONS(5249), - [anon_sym_BSLASHSvolcite] = ACTIONS(5249), - [anon_sym_BSLASHtvolcite] = ACTIONS(5249), - [anon_sym_BSLASHTvolcite] = ACTIONS(5249), - [anon_sym_BSLASHavolcite] = ACTIONS(5249), - [anon_sym_BSLASHAvolcite] = ACTIONS(5249), - [anon_sym_BSLASHnotecite] = ACTIONS(5249), - [anon_sym_BSLASHNotecite] = ACTIONS(5249), - [anon_sym_BSLASHpnotecite] = ACTIONS(5249), - [anon_sym_BSLASHPnotecite] = ACTIONS(5249), - [anon_sym_BSLASHfnotecite] = ACTIONS(5249), - [anon_sym_BSLASHlabel] = ACTIONS(5249), - [anon_sym_BSLASHref] = ACTIONS(5249), - [anon_sym_BSLASHeqref] = ACTIONS(5249), - [anon_sym_BSLASHvref] = ACTIONS(5249), - [anon_sym_BSLASHVref] = ACTIONS(5249), - [anon_sym_BSLASHautoref] = ACTIONS(5249), - [anon_sym_BSLASHpageref] = ACTIONS(5249), - [anon_sym_BSLASHcref] = ACTIONS(5249), - [anon_sym_BSLASHCref] = ACTIONS(5249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnameCref] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHlabelcref] = ACTIONS(5249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(5251), - [sym_command_name] = ACTIONS(5253), + [400] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_RPAREN] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_RBRACK] = ACTIONS(5251), - [anon_sym_COMMA] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_BSLASHpart] = ACTIONS(5253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddpart] = ACTIONS(5253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHchapter] = ACTIONS(5253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddchap] = ACTIONS(5253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsection] = ACTIONS(5253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddsec] = ACTIONS(5253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHparagraph] = ACTIONS(5253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHitem] = ACTIONS(5253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5251), - [anon_sym_RBRACE] = ACTIONS(5251), - [sym_word] = ACTIONS(5253), - [sym_placeholder] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym__] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5253), - [anon_sym_SQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), - [anon_sym_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), - [anon_sym_BSLASHbegin] = ACTIONS(5253), - [anon_sym_BSLASHusepackage] = ACTIONS(5253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), - [anon_sym_BSLASHinclude] = ACTIONS(5253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), - [anon_sym_BSLASHinput] = ACTIONS(5253), - [anon_sym_BSLASHsubfile] = ACTIONS(5253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), - [anon_sym_BSLASHbibliography] = ACTIONS(5253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), - [anon_sym_BSLASHincludesvg] = ACTIONS(5253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), - [anon_sym_BSLASHimport] = ACTIONS(5253), - [anon_sym_BSLASHsubimport] = ACTIONS(5253), - [anon_sym_BSLASHinputfrom] = ACTIONS(5253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), - [anon_sym_BSLASHincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHcaption] = ACTIONS(5253), - [anon_sym_BSLASHcite] = ACTIONS(5253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCite] = ACTIONS(5253), - [anon_sym_BSLASHnocite] = ACTIONS(5253), - [anon_sym_BSLASHcitet] = ACTIONS(5253), - [anon_sym_BSLASHcitep] = ACTIONS(5253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteyear] = ACTIONS(5253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitedate] = ACTIONS(5253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteurl] = ACTIONS(5253), - [anon_sym_BSLASHfullcite] = ACTIONS(5253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), - [anon_sym_BSLASHcitealt] = ACTIONS(5253), - [anon_sym_BSLASHcitealp] = ACTIONS(5253), - [anon_sym_BSLASHcitetext] = ACTIONS(5253), - [anon_sym_BSLASHparencite] = ACTIONS(5253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHParencite] = ACTIONS(5253), - [anon_sym_BSLASHfootcite] = ACTIONS(5253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), - [anon_sym_BSLASHtextcite] = ACTIONS(5253), - [anon_sym_BSLASHTextcite] = ACTIONS(5253), - [anon_sym_BSLASHsmartcite] = ACTIONS(5253), - [anon_sym_BSLASHSmartcite] = ACTIONS(5253), - [anon_sym_BSLASHsupercite] = ACTIONS(5253), - [anon_sym_BSLASHautocite] = ACTIONS(5253), - [anon_sym_BSLASHAutocite] = ACTIONS(5253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHvolcite] = ACTIONS(5253), - [anon_sym_BSLASHVolcite] = ACTIONS(5253), - [anon_sym_BSLASHpvolcite] = ACTIONS(5253), - [anon_sym_BSLASHPvolcite] = ACTIONS(5253), - [anon_sym_BSLASHfvolcite] = ACTIONS(5253), - [anon_sym_BSLASHftvolcite] = ACTIONS(5253), - [anon_sym_BSLASHsvolcite] = ACTIONS(5253), - [anon_sym_BSLASHSvolcite] = ACTIONS(5253), - [anon_sym_BSLASHtvolcite] = ACTIONS(5253), - [anon_sym_BSLASHTvolcite] = ACTIONS(5253), - [anon_sym_BSLASHavolcite] = ACTIONS(5253), - [anon_sym_BSLASHAvolcite] = ACTIONS(5253), - [anon_sym_BSLASHnotecite] = ACTIONS(5253), - [anon_sym_BSLASHNotecite] = ACTIONS(5253), - [anon_sym_BSLASHpnotecite] = ACTIONS(5253), - [anon_sym_BSLASHPnotecite] = ACTIONS(5253), - [anon_sym_BSLASHfnotecite] = ACTIONS(5253), - [anon_sym_BSLASHlabel] = ACTIONS(5253), - [anon_sym_BSLASHref] = ACTIONS(5253), - [anon_sym_BSLASHeqref] = ACTIONS(5253), - [anon_sym_BSLASHvref] = ACTIONS(5253), - [anon_sym_BSLASHVref] = ACTIONS(5253), - [anon_sym_BSLASHautoref] = ACTIONS(5253), - [anon_sym_BSLASHpageref] = ACTIONS(5253), - [anon_sym_BSLASHcref] = ACTIONS(5253), - [anon_sym_BSLASHCref] = ACTIONS(5253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnameCref] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHlabelcref] = ACTIONS(5253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnewlabel] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdef] = ACTIONS(5253), - [anon_sym_BSLASHlet] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), - [anon_sym_BSLASHgls] = ACTIONS(5253), - [anon_sym_BSLASHGls] = ACTIONS(5253), - [anon_sym_BSLASHGLS] = ACTIONS(5253), - [anon_sym_BSLASHglspl] = ACTIONS(5253), - [anon_sym_BSLASHGlspl] = ACTIONS(5253), - [anon_sym_BSLASHGLSpl] = ACTIONS(5253), - [anon_sym_BSLASHglsdisp] = ACTIONS(5253), - [anon_sym_BSLASHglslink] = ACTIONS(5253), - [anon_sym_BSLASHglstext] = ACTIONS(5253), - [anon_sym_BSLASHGlstext] = ACTIONS(5253), - [anon_sym_BSLASHGLStext] = ACTIONS(5253), - [anon_sym_BSLASHglsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), - [anon_sym_BSLASHglsplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSplural] = ACTIONS(5253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHglsname] = ACTIONS(5253), - [anon_sym_BSLASHGlsname] = ACTIONS(5253), - [anon_sym_BSLASHGLSname] = ACTIONS(5253), - [anon_sym_BSLASHglssymbol] = ACTIONS(5253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), - [anon_sym_BSLASHglsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), - [anon_sym_BSLASHglsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), - [anon_sym_BSLASHglsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), - [anon_sym_BSLASHglsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), - [anon_sym_BSLASHglsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), - [anon_sym_BSLASHnewacronym] = ACTIONS(5253), - [anon_sym_BSLASHacrshort] = ACTIONS(5253), - [anon_sym_BSLASHAcrshort] = ACTIONS(5253), - [anon_sym_BSLASHACRshort] = ACTIONS(5253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), - [anon_sym_BSLASHacrlong] = ACTIONS(5253), - [anon_sym_BSLASHAcrlong] = ACTIONS(5253), - [anon_sym_BSLASHACRlong] = ACTIONS(5253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), - [anon_sym_BSLASHacrfull] = ACTIONS(5253), - [anon_sym_BSLASHAcrfull] = ACTIONS(5253), - [anon_sym_BSLASHACRfull] = ACTIONS(5253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), - [anon_sym_BSLASHacs] = ACTIONS(5253), - [anon_sym_BSLASHAcs] = ACTIONS(5253), - [anon_sym_BSLASHacsp] = ACTIONS(5253), - [anon_sym_BSLASHAcsp] = ACTIONS(5253), - [anon_sym_BSLASHacl] = ACTIONS(5253), - [anon_sym_BSLASHAcl] = ACTIONS(5253), - [anon_sym_BSLASHaclp] = ACTIONS(5253), - [anon_sym_BSLASHAclp] = ACTIONS(5253), - [anon_sym_BSLASHacf] = ACTIONS(5253), - [anon_sym_BSLASHAcf] = ACTIONS(5253), - [anon_sym_BSLASHacfp] = ACTIONS(5253), - [anon_sym_BSLASHAcfp] = ACTIONS(5253), - [anon_sym_BSLASHac] = ACTIONS(5253), - [anon_sym_BSLASHAc] = ACTIONS(5253), - [anon_sym_BSLASHacp] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), - [anon_sym_BSLASHcolor] = ACTIONS(5253), - [anon_sym_BSLASHcolorbox] = ACTIONS(5253), - [anon_sym_BSLASHtextcolor] = ACTIONS(5253), - [anon_sym_BSLASHpagecolor] = ACTIONS(5253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), - [anon_sym_BSLASHtext] = ACTIONS(5253), - [anon_sym_BSLASHintertext] = ACTIONS(5253), - [anon_sym_shortintertext] = ACTIONS(5253), - }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(5255), - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_BSLASHpart] = ACTIONS(5257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddpart] = ACTIONS(5257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHchapter] = ACTIONS(5257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddchap] = ACTIONS(5257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsection] = ACTIONS(5257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddsec] = ACTIONS(5257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHparagraph] = ACTIONS(5257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHitem] = ACTIONS(5257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [anon_sym_RBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(5259), - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5259), - [anon_sym_BSLASHpart] = ACTIONS(5261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddpart] = ACTIONS(5261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHchapter] = ACTIONS(5261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddchap] = ACTIONS(5261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsection] = ACTIONS(5261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddsec] = ACTIONS(5261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHparagraph] = ACTIONS(5261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHitem] = ACTIONS(5261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), - [anon_sym_LBRACE] = ACTIONS(5259), - [anon_sym_RBRACE] = ACTIONS(5259), - [sym_word] = ACTIONS(5261), - [sym_placeholder] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym__] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5261), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), - [anon_sym_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), - [anon_sym_BSLASHbegin] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), - [anon_sym_BSLASHinclude] = ACTIONS(5261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), - [anon_sym_BSLASHinput] = ACTIONS(5261), - [anon_sym_BSLASHsubfile] = ACTIONS(5261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), - [anon_sym_BSLASHbibliography] = ACTIONS(5261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), - [anon_sym_BSLASHincludesvg] = ACTIONS(5261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), - [anon_sym_BSLASHimport] = ACTIONS(5261), - [anon_sym_BSLASHsubimport] = ACTIONS(5261), - [anon_sym_BSLASHinputfrom] = ACTIONS(5261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), - [anon_sym_BSLASHincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHcaption] = ACTIONS(5261), - [anon_sym_BSLASHcite] = ACTIONS(5261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCite] = ACTIONS(5261), - [anon_sym_BSLASHnocite] = ACTIONS(5261), - [anon_sym_BSLASHcitet] = ACTIONS(5261), - [anon_sym_BSLASHcitep] = ACTIONS(5261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteyear] = ACTIONS(5261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitedate] = ACTIONS(5261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteurl] = ACTIONS(5261), - [anon_sym_BSLASHfullcite] = ACTIONS(5261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), - [anon_sym_BSLASHcitealt] = ACTIONS(5261), - [anon_sym_BSLASHcitealp] = ACTIONS(5261), - [anon_sym_BSLASHcitetext] = ACTIONS(5261), - [anon_sym_BSLASHparencite] = ACTIONS(5261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHParencite] = ACTIONS(5261), - [anon_sym_BSLASHfootcite] = ACTIONS(5261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), - [anon_sym_BSLASHtextcite] = ACTIONS(5261), - [anon_sym_BSLASHTextcite] = ACTIONS(5261), - [anon_sym_BSLASHsmartcite] = ACTIONS(5261), - [anon_sym_BSLASHSmartcite] = ACTIONS(5261), - [anon_sym_BSLASHsupercite] = ACTIONS(5261), - [anon_sym_BSLASHautocite] = ACTIONS(5261), - [anon_sym_BSLASHAutocite] = ACTIONS(5261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHvolcite] = ACTIONS(5261), - [anon_sym_BSLASHVolcite] = ACTIONS(5261), - [anon_sym_BSLASHpvolcite] = ACTIONS(5261), - [anon_sym_BSLASHPvolcite] = ACTIONS(5261), - [anon_sym_BSLASHfvolcite] = ACTIONS(5261), - [anon_sym_BSLASHftvolcite] = ACTIONS(5261), - [anon_sym_BSLASHsvolcite] = ACTIONS(5261), - [anon_sym_BSLASHSvolcite] = ACTIONS(5261), - [anon_sym_BSLASHtvolcite] = ACTIONS(5261), - [anon_sym_BSLASHTvolcite] = ACTIONS(5261), - [anon_sym_BSLASHavolcite] = ACTIONS(5261), - [anon_sym_BSLASHAvolcite] = ACTIONS(5261), - [anon_sym_BSLASHnotecite] = ACTIONS(5261), - [anon_sym_BSLASHNotecite] = ACTIONS(5261), - [anon_sym_BSLASHpnotecite] = ACTIONS(5261), - [anon_sym_BSLASHPnotecite] = ACTIONS(5261), - [anon_sym_BSLASHfnotecite] = ACTIONS(5261), - [anon_sym_BSLASHlabel] = ACTIONS(5261), - [anon_sym_BSLASHref] = ACTIONS(5261), - [anon_sym_BSLASHeqref] = ACTIONS(5261), - [anon_sym_BSLASHvref] = ACTIONS(5261), - [anon_sym_BSLASHVref] = ACTIONS(5261), - [anon_sym_BSLASHautoref] = ACTIONS(5261), - [anon_sym_BSLASHpageref] = ACTIONS(5261), - [anon_sym_BSLASHcref] = ACTIONS(5261), - [anon_sym_BSLASHCref] = ACTIONS(5261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnameCref] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHlabelcref] = ACTIONS(5261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnewlabel] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdef] = ACTIONS(5261), - [anon_sym_BSLASHlet] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), - [anon_sym_BSLASHgls] = ACTIONS(5261), - [anon_sym_BSLASHGls] = ACTIONS(5261), - [anon_sym_BSLASHGLS] = ACTIONS(5261), - [anon_sym_BSLASHglspl] = ACTIONS(5261), - [anon_sym_BSLASHGlspl] = ACTIONS(5261), - [anon_sym_BSLASHGLSpl] = ACTIONS(5261), - [anon_sym_BSLASHglsdisp] = ACTIONS(5261), - [anon_sym_BSLASHglslink] = ACTIONS(5261), - [anon_sym_BSLASHglstext] = ACTIONS(5261), - [anon_sym_BSLASHGlstext] = ACTIONS(5261), - [anon_sym_BSLASHGLStext] = ACTIONS(5261), - [anon_sym_BSLASHglsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), - [anon_sym_BSLASHglsplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSplural] = ACTIONS(5261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHglsname] = ACTIONS(5261), - [anon_sym_BSLASHGlsname] = ACTIONS(5261), - [anon_sym_BSLASHGLSname] = ACTIONS(5261), - [anon_sym_BSLASHglssymbol] = ACTIONS(5261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), - [anon_sym_BSLASHglsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), - [anon_sym_BSLASHglsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), - [anon_sym_BSLASHglsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), - [anon_sym_BSLASHglsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), - [anon_sym_BSLASHglsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), - [anon_sym_BSLASHnewacronym] = ACTIONS(5261), - [anon_sym_BSLASHacrshort] = ACTIONS(5261), - [anon_sym_BSLASHAcrshort] = ACTIONS(5261), - [anon_sym_BSLASHACRshort] = ACTIONS(5261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), - [anon_sym_BSLASHacrlong] = ACTIONS(5261), - [anon_sym_BSLASHAcrlong] = ACTIONS(5261), - [anon_sym_BSLASHACRlong] = ACTIONS(5261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), - [anon_sym_BSLASHacrfull] = ACTIONS(5261), - [anon_sym_BSLASHAcrfull] = ACTIONS(5261), - [anon_sym_BSLASHACRfull] = ACTIONS(5261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), - [anon_sym_BSLASHacs] = ACTIONS(5261), - [anon_sym_BSLASHAcs] = ACTIONS(5261), - [anon_sym_BSLASHacsp] = ACTIONS(5261), - [anon_sym_BSLASHAcsp] = ACTIONS(5261), - [anon_sym_BSLASHacl] = ACTIONS(5261), - [anon_sym_BSLASHAcl] = ACTIONS(5261), - [anon_sym_BSLASHaclp] = ACTIONS(5261), - [anon_sym_BSLASHAclp] = ACTIONS(5261), - [anon_sym_BSLASHacf] = ACTIONS(5261), - [anon_sym_BSLASHAcf] = ACTIONS(5261), - [anon_sym_BSLASHacfp] = ACTIONS(5261), - [anon_sym_BSLASHAcfp] = ACTIONS(5261), - [anon_sym_BSLASHac] = ACTIONS(5261), - [anon_sym_BSLASHAc] = ACTIONS(5261), - [anon_sym_BSLASHacp] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), - [anon_sym_BSLASHcolor] = ACTIONS(5261), - [anon_sym_BSLASHcolorbox] = ACTIONS(5261), - [anon_sym_BSLASHtextcolor] = ACTIONS(5261), - [anon_sym_BSLASHpagecolor] = ACTIONS(5261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), - [anon_sym_BSLASHtext] = ACTIONS(5261), - [anon_sym_BSLASHintertext] = ACTIONS(5261), - [anon_sym_shortintertext] = ACTIONS(5261), + [401] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(5263), - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5263), - [anon_sym_BSLASHpart] = ACTIONS(5265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddpart] = ACTIONS(5265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHchapter] = ACTIONS(5265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddchap] = ACTIONS(5265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsection] = ACTIONS(5265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddsec] = ACTIONS(5265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHparagraph] = ACTIONS(5265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHitem] = ACTIONS(5265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_RBRACE] = ACTIONS(5263), - [sym_word] = ACTIONS(5265), - [sym_placeholder] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(5265), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_STAR] = ACTIONS(5265), - [anon_sym_SLASH] = ACTIONS(5265), - [anon_sym_CARET] = ACTIONS(5265), - [anon_sym__] = ACTIONS(5265), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_BANG] = ACTIONS(5265), - [anon_sym_PIPE] = ACTIONS(5265), - [anon_sym_COLON] = ACTIONS(5265), - [anon_sym_SQUOTE] = ACTIONS(5265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), - [anon_sym_BSLASHbegin] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), - [anon_sym_BSLASHinclude] = ACTIONS(5265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), - [anon_sym_BSLASHinput] = ACTIONS(5265), - [anon_sym_BSLASHsubfile] = ACTIONS(5265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), - [anon_sym_BSLASHbibliography] = ACTIONS(5265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), - [anon_sym_BSLASHincludesvg] = ACTIONS(5265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), - [anon_sym_BSLASHimport] = ACTIONS(5265), - [anon_sym_BSLASHsubimport] = ACTIONS(5265), - [anon_sym_BSLASHinputfrom] = ACTIONS(5265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), - [anon_sym_BSLASHincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHcaption] = ACTIONS(5265), - [anon_sym_BSLASHcite] = ACTIONS(5265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCite] = ACTIONS(5265), - [anon_sym_BSLASHnocite] = ACTIONS(5265), - [anon_sym_BSLASHcitet] = ACTIONS(5265), - [anon_sym_BSLASHcitep] = ACTIONS(5265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteyear] = ACTIONS(5265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitedate] = ACTIONS(5265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteurl] = ACTIONS(5265), - [anon_sym_BSLASHfullcite] = ACTIONS(5265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), - [anon_sym_BSLASHcitealt] = ACTIONS(5265), - [anon_sym_BSLASHcitealp] = ACTIONS(5265), - [anon_sym_BSLASHcitetext] = ACTIONS(5265), - [anon_sym_BSLASHparencite] = ACTIONS(5265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHParencite] = ACTIONS(5265), - [anon_sym_BSLASHfootcite] = ACTIONS(5265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), - [anon_sym_BSLASHtextcite] = ACTIONS(5265), - [anon_sym_BSLASHTextcite] = ACTIONS(5265), - [anon_sym_BSLASHsmartcite] = ACTIONS(5265), - [anon_sym_BSLASHSmartcite] = ACTIONS(5265), - [anon_sym_BSLASHsupercite] = ACTIONS(5265), - [anon_sym_BSLASHautocite] = ACTIONS(5265), - [anon_sym_BSLASHAutocite] = ACTIONS(5265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHvolcite] = ACTIONS(5265), - [anon_sym_BSLASHVolcite] = ACTIONS(5265), - [anon_sym_BSLASHpvolcite] = ACTIONS(5265), - [anon_sym_BSLASHPvolcite] = ACTIONS(5265), - [anon_sym_BSLASHfvolcite] = ACTIONS(5265), - [anon_sym_BSLASHftvolcite] = ACTIONS(5265), - [anon_sym_BSLASHsvolcite] = ACTIONS(5265), - [anon_sym_BSLASHSvolcite] = ACTIONS(5265), - [anon_sym_BSLASHtvolcite] = ACTIONS(5265), - [anon_sym_BSLASHTvolcite] = ACTIONS(5265), - [anon_sym_BSLASHavolcite] = ACTIONS(5265), - [anon_sym_BSLASHAvolcite] = ACTIONS(5265), - [anon_sym_BSLASHnotecite] = ACTIONS(5265), - [anon_sym_BSLASHNotecite] = ACTIONS(5265), - [anon_sym_BSLASHpnotecite] = ACTIONS(5265), - [anon_sym_BSLASHPnotecite] = ACTIONS(5265), - [anon_sym_BSLASHfnotecite] = ACTIONS(5265), - [anon_sym_BSLASHlabel] = ACTIONS(5265), - [anon_sym_BSLASHref] = ACTIONS(5265), - [anon_sym_BSLASHeqref] = ACTIONS(5265), - [anon_sym_BSLASHvref] = ACTIONS(5265), - [anon_sym_BSLASHVref] = ACTIONS(5265), - [anon_sym_BSLASHautoref] = ACTIONS(5265), - [anon_sym_BSLASHpageref] = ACTIONS(5265), - [anon_sym_BSLASHcref] = ACTIONS(5265), - [anon_sym_BSLASHCref] = ACTIONS(5265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnameCref] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHlabelcref] = ACTIONS(5265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnewlabel] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdef] = ACTIONS(5265), - [anon_sym_BSLASHlet] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), - [anon_sym_BSLASHgls] = ACTIONS(5265), - [anon_sym_BSLASHGls] = ACTIONS(5265), - [anon_sym_BSLASHGLS] = ACTIONS(5265), - [anon_sym_BSLASHglspl] = ACTIONS(5265), - [anon_sym_BSLASHGlspl] = ACTIONS(5265), - [anon_sym_BSLASHGLSpl] = ACTIONS(5265), - [anon_sym_BSLASHglsdisp] = ACTIONS(5265), - [anon_sym_BSLASHglslink] = ACTIONS(5265), - [anon_sym_BSLASHglstext] = ACTIONS(5265), - [anon_sym_BSLASHGlstext] = ACTIONS(5265), - [anon_sym_BSLASHGLStext] = ACTIONS(5265), - [anon_sym_BSLASHglsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), - [anon_sym_BSLASHglsplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSplural] = ACTIONS(5265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHglsname] = ACTIONS(5265), - [anon_sym_BSLASHGlsname] = ACTIONS(5265), - [anon_sym_BSLASHGLSname] = ACTIONS(5265), - [anon_sym_BSLASHglssymbol] = ACTIONS(5265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), - [anon_sym_BSLASHglsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), - [anon_sym_BSLASHglsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), - [anon_sym_BSLASHglsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), - [anon_sym_BSLASHglsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), - [anon_sym_BSLASHglsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), - [anon_sym_BSLASHnewacronym] = ACTIONS(5265), - [anon_sym_BSLASHacrshort] = ACTIONS(5265), - [anon_sym_BSLASHAcrshort] = ACTIONS(5265), - [anon_sym_BSLASHACRshort] = ACTIONS(5265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), - [anon_sym_BSLASHacrlong] = ACTIONS(5265), - [anon_sym_BSLASHAcrlong] = ACTIONS(5265), - [anon_sym_BSLASHACRlong] = ACTIONS(5265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), - [anon_sym_BSLASHacrfull] = ACTIONS(5265), - [anon_sym_BSLASHAcrfull] = ACTIONS(5265), - [anon_sym_BSLASHACRfull] = ACTIONS(5265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), - [anon_sym_BSLASHacs] = ACTIONS(5265), - [anon_sym_BSLASHAcs] = ACTIONS(5265), - [anon_sym_BSLASHacsp] = ACTIONS(5265), - [anon_sym_BSLASHAcsp] = ACTIONS(5265), - [anon_sym_BSLASHacl] = ACTIONS(5265), - [anon_sym_BSLASHAcl] = ACTIONS(5265), - [anon_sym_BSLASHaclp] = ACTIONS(5265), - [anon_sym_BSLASHAclp] = ACTIONS(5265), - [anon_sym_BSLASHacf] = ACTIONS(5265), - [anon_sym_BSLASHAcf] = ACTIONS(5265), - [anon_sym_BSLASHacfp] = ACTIONS(5265), - [anon_sym_BSLASHAcfp] = ACTIONS(5265), - [anon_sym_BSLASHac] = ACTIONS(5265), - [anon_sym_BSLASHAc] = ACTIONS(5265), - [anon_sym_BSLASHacp] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), - [anon_sym_BSLASHcolor] = ACTIONS(5265), - [anon_sym_BSLASHcolorbox] = ACTIONS(5265), - [anon_sym_BSLASHtextcolor] = ACTIONS(5265), - [anon_sym_BSLASHpagecolor] = ACTIONS(5265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), - [anon_sym_BSLASHtext] = ACTIONS(5265), - [anon_sym_BSLASHintertext] = ACTIONS(5265), - [anon_sym_shortintertext] = ACTIONS(5265), + [402] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(5267), - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_BSLASHpart] = ACTIONS(5269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddpart] = ACTIONS(5269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHchapter] = ACTIONS(5269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddchap] = ACTIONS(5269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsection] = ACTIONS(5269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddsec] = ACTIONS(5269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHparagraph] = ACTIONS(5269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHitem] = ACTIONS(5269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [anon_sym_RBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), + [403] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(5271), - [sym_command_name] = ACTIONS(5273), + [404] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5273), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_RPAREN] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5271), - [anon_sym_RBRACK] = ACTIONS(5271), - [anon_sym_COMMA] = ACTIONS(5271), - [anon_sym_EQ] = ACTIONS(5271), - [anon_sym_BSLASHpart] = ACTIONS(5273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddpart] = ACTIONS(5273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHchapter] = ACTIONS(5273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddchap] = ACTIONS(5273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsection] = ACTIONS(5273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddsec] = ACTIONS(5273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHparagraph] = ACTIONS(5273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHitem] = ACTIONS(5273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), - [anon_sym_LBRACE] = ACTIONS(5271), - [anon_sym_RBRACE] = ACTIONS(5271), - [sym_word] = ACTIONS(5273), - [sym_placeholder] = ACTIONS(5271), - [anon_sym_PLUS] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(5273), - [anon_sym_STAR] = ACTIONS(5273), - [anon_sym_SLASH] = ACTIONS(5273), - [anon_sym_CARET] = ACTIONS(5273), - [anon_sym__] = ACTIONS(5273), - [anon_sym_LT] = ACTIONS(5273), - [anon_sym_GT] = ACTIONS(5273), - [anon_sym_BANG] = ACTIONS(5273), - [anon_sym_PIPE] = ACTIONS(5273), - [anon_sym_COLON] = ACTIONS(5273), - [anon_sym_SQUOTE] = ACTIONS(5273), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), - [anon_sym_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), - [anon_sym_BSLASHbegin] = ACTIONS(5273), - [anon_sym_BSLASHusepackage] = ACTIONS(5273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), - [anon_sym_BSLASHinclude] = ACTIONS(5273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), - [anon_sym_BSLASHinput] = ACTIONS(5273), - [anon_sym_BSLASHsubfile] = ACTIONS(5273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), - [anon_sym_BSLASHbibliography] = ACTIONS(5273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), - [anon_sym_BSLASHincludesvg] = ACTIONS(5273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), - [anon_sym_BSLASHimport] = ACTIONS(5273), - [anon_sym_BSLASHsubimport] = ACTIONS(5273), - [anon_sym_BSLASHinputfrom] = ACTIONS(5273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), - [anon_sym_BSLASHincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHcaption] = ACTIONS(5273), - [anon_sym_BSLASHcite] = ACTIONS(5273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCite] = ACTIONS(5273), - [anon_sym_BSLASHnocite] = ACTIONS(5273), - [anon_sym_BSLASHcitet] = ACTIONS(5273), - [anon_sym_BSLASHcitep] = ACTIONS(5273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteyear] = ACTIONS(5273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitedate] = ACTIONS(5273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteurl] = ACTIONS(5273), - [anon_sym_BSLASHfullcite] = ACTIONS(5273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), - [anon_sym_BSLASHcitealt] = ACTIONS(5273), - [anon_sym_BSLASHcitealp] = ACTIONS(5273), - [anon_sym_BSLASHcitetext] = ACTIONS(5273), - [anon_sym_BSLASHparencite] = ACTIONS(5273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHParencite] = ACTIONS(5273), - [anon_sym_BSLASHfootcite] = ACTIONS(5273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), - [anon_sym_BSLASHtextcite] = ACTIONS(5273), - [anon_sym_BSLASHTextcite] = ACTIONS(5273), - [anon_sym_BSLASHsmartcite] = ACTIONS(5273), - [anon_sym_BSLASHSmartcite] = ACTIONS(5273), - [anon_sym_BSLASHsupercite] = ACTIONS(5273), - [anon_sym_BSLASHautocite] = ACTIONS(5273), - [anon_sym_BSLASHAutocite] = ACTIONS(5273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHvolcite] = ACTIONS(5273), - [anon_sym_BSLASHVolcite] = ACTIONS(5273), - [anon_sym_BSLASHpvolcite] = ACTIONS(5273), - [anon_sym_BSLASHPvolcite] = ACTIONS(5273), - [anon_sym_BSLASHfvolcite] = ACTIONS(5273), - [anon_sym_BSLASHftvolcite] = ACTIONS(5273), - [anon_sym_BSLASHsvolcite] = ACTIONS(5273), - [anon_sym_BSLASHSvolcite] = ACTIONS(5273), - [anon_sym_BSLASHtvolcite] = ACTIONS(5273), - [anon_sym_BSLASHTvolcite] = ACTIONS(5273), - [anon_sym_BSLASHavolcite] = ACTIONS(5273), - [anon_sym_BSLASHAvolcite] = ACTIONS(5273), - [anon_sym_BSLASHnotecite] = ACTIONS(5273), - [anon_sym_BSLASHNotecite] = ACTIONS(5273), - [anon_sym_BSLASHpnotecite] = ACTIONS(5273), - [anon_sym_BSLASHPnotecite] = ACTIONS(5273), - [anon_sym_BSLASHfnotecite] = ACTIONS(5273), - [anon_sym_BSLASHlabel] = ACTIONS(5273), - [anon_sym_BSLASHref] = ACTIONS(5273), - [anon_sym_BSLASHeqref] = ACTIONS(5273), - [anon_sym_BSLASHvref] = ACTIONS(5273), - [anon_sym_BSLASHVref] = ACTIONS(5273), - [anon_sym_BSLASHautoref] = ACTIONS(5273), - [anon_sym_BSLASHpageref] = ACTIONS(5273), - [anon_sym_BSLASHcref] = ACTIONS(5273), - [anon_sym_BSLASHCref] = ACTIONS(5273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnameCref] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHlabelcref] = ACTIONS(5273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnewlabel] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdef] = ACTIONS(5273), - [anon_sym_BSLASHlet] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), - [anon_sym_BSLASHgls] = ACTIONS(5273), - [anon_sym_BSLASHGls] = ACTIONS(5273), - [anon_sym_BSLASHGLS] = ACTIONS(5273), - [anon_sym_BSLASHglspl] = ACTIONS(5273), - [anon_sym_BSLASHGlspl] = ACTIONS(5273), - [anon_sym_BSLASHGLSpl] = ACTIONS(5273), - [anon_sym_BSLASHglsdisp] = ACTIONS(5273), - [anon_sym_BSLASHglslink] = ACTIONS(5273), - [anon_sym_BSLASHglstext] = ACTIONS(5273), - [anon_sym_BSLASHGlstext] = ACTIONS(5273), - [anon_sym_BSLASHGLStext] = ACTIONS(5273), - [anon_sym_BSLASHglsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), - [anon_sym_BSLASHglsplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSplural] = ACTIONS(5273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHglsname] = ACTIONS(5273), - [anon_sym_BSLASHGlsname] = ACTIONS(5273), - [anon_sym_BSLASHGLSname] = ACTIONS(5273), - [anon_sym_BSLASHglssymbol] = ACTIONS(5273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), - [anon_sym_BSLASHglsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), - [anon_sym_BSLASHglsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), - [anon_sym_BSLASHglsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), - [anon_sym_BSLASHglsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), - [anon_sym_BSLASHglsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), - [anon_sym_BSLASHnewacronym] = ACTIONS(5273), - [anon_sym_BSLASHacrshort] = ACTIONS(5273), - [anon_sym_BSLASHAcrshort] = ACTIONS(5273), - [anon_sym_BSLASHACRshort] = ACTIONS(5273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), - [anon_sym_BSLASHacrlong] = ACTIONS(5273), - [anon_sym_BSLASHAcrlong] = ACTIONS(5273), - [anon_sym_BSLASHACRlong] = ACTIONS(5273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), - [anon_sym_BSLASHacrfull] = ACTIONS(5273), - [anon_sym_BSLASHAcrfull] = ACTIONS(5273), - [anon_sym_BSLASHACRfull] = ACTIONS(5273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), - [anon_sym_BSLASHacs] = ACTIONS(5273), - [anon_sym_BSLASHAcs] = ACTIONS(5273), - [anon_sym_BSLASHacsp] = ACTIONS(5273), - [anon_sym_BSLASHAcsp] = ACTIONS(5273), - [anon_sym_BSLASHacl] = ACTIONS(5273), - [anon_sym_BSLASHAcl] = ACTIONS(5273), - [anon_sym_BSLASHaclp] = ACTIONS(5273), - [anon_sym_BSLASHAclp] = ACTIONS(5273), - [anon_sym_BSLASHacf] = ACTIONS(5273), - [anon_sym_BSLASHAcf] = ACTIONS(5273), - [anon_sym_BSLASHacfp] = ACTIONS(5273), - [anon_sym_BSLASHAcfp] = ACTIONS(5273), - [anon_sym_BSLASHac] = ACTIONS(5273), - [anon_sym_BSLASHAc] = ACTIONS(5273), - [anon_sym_BSLASHacp] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), - [anon_sym_BSLASHcolor] = ACTIONS(5273), - [anon_sym_BSLASHcolorbox] = ACTIONS(5273), - [anon_sym_BSLASHtextcolor] = ACTIONS(5273), - [anon_sym_BSLASHpagecolor] = ACTIONS(5273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), - [anon_sym_BSLASHtext] = ACTIONS(5273), - [anon_sym_BSLASHintertext] = ACTIONS(5273), - [anon_sym_shortintertext] = ACTIONS(5273), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [749] = { - [ts_builtin_sym_end] = ACTIONS(5275), - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASHpart] = ACTIONS(5277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddpart] = ACTIONS(5277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHchapter] = ACTIONS(5277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddchap] = ACTIONS(5277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsection] = ACTIONS(5277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddsec] = ACTIONS(5277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHparagraph] = ACTIONS(5277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHitem] = ACTIONS(5277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [anon_sym_RBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), + [405] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [750] = { - [sym_brack_group_text] = STATE(1210), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHend] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), + [406] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [751] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_BSLASHpart] = ACTIONS(5031), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddpart] = ACTIONS(5031), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHchapter] = ACTIONS(5031), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddchap] = ACTIONS(5031), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsection] = ACTIONS(5031), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddsec] = ACTIONS(5031), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHparagraph] = ACTIONS(5031), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHitem] = ACTIONS(5031), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), + [407] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(5281), - [sym_command_name] = ACTIONS(5283), + [408] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [anon_sym_RBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [753] = { - [sym_curly_group] = STATE(1236), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHend] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), + [409] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(5285), - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [anon_sym_RBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), + [410] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [755] = { - [sym_brack_group_text] = STATE(1069), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_BSLASHpart] = ACTIONS(5045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddpart] = ACTIONS(5045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHchapter] = ACTIONS(5045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddchap] = ACTIONS(5045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsection] = ACTIONS(5045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddsec] = ACTIONS(5045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHparagraph] = ACTIONS(5045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHitem] = ACTIONS(5045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), + [411] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(5289), - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [anon_sym_RBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), + [412] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(5293), - [sym_command_name] = ACTIONS(5295), + [413] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [anon_sym_RBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - [anon_sym_BSLASHtext] = ACTIONS(5295), - [anon_sym_BSLASHintertext] = ACTIONS(5295), - [anon_sym_shortintertext] = ACTIONS(5295), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(5297), - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), + [414] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [759] = { - [sym_brack_group_text] = STATE(1186), - [sym_command_name] = ACTIONS(5027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_BSLASHpart] = ACTIONS(5027), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddpart] = ACTIONS(5027), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHchapter] = ACTIONS(5027), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddchap] = ACTIONS(5027), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsection] = ACTIONS(5027), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddsec] = ACTIONS(5027), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHparagraph] = ACTIONS(5027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHitem] = ACTIONS(5027), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5025), - [sym_word] = ACTIONS(5027), - [sym_placeholder] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym__] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5025), - [anon_sym_BSLASHbegin] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5027), - [anon_sym_BSLASHinclude] = ACTIONS(5027), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5027), - [anon_sym_BSLASHinput] = ACTIONS(5027), - [anon_sym_BSLASHsubfile] = ACTIONS(5027), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), - [anon_sym_BSLASHbibliography] = ACTIONS(5027), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5027), - [anon_sym_BSLASHincludesvg] = ACTIONS(5027), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5027), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5027), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5027), - [anon_sym_BSLASHimport] = ACTIONS(5027), - [anon_sym_BSLASHsubimport] = ACTIONS(5027), - [anon_sym_BSLASHinputfrom] = ACTIONS(5027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5027), - [anon_sym_BSLASHincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHcaption] = ACTIONS(5027), - [anon_sym_BSLASHcite] = ACTIONS(5027), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCite] = ACTIONS(5027), - [anon_sym_BSLASHnocite] = ACTIONS(5027), - [anon_sym_BSLASHcitet] = ACTIONS(5027), - [anon_sym_BSLASHcitep] = ACTIONS(5027), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteyear] = ACTIONS(5027), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitedate] = ACTIONS(5027), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteurl] = ACTIONS(5027), - [anon_sym_BSLASHfullcite] = ACTIONS(5027), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5027), - [anon_sym_BSLASHcitealt] = ACTIONS(5027), - [anon_sym_BSLASHcitealp] = ACTIONS(5027), - [anon_sym_BSLASHcitetext] = ACTIONS(5027), - [anon_sym_BSLASHparencite] = ACTIONS(5027), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHParencite] = ACTIONS(5027), - [anon_sym_BSLASHfootcite] = ACTIONS(5027), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5027), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5027), - [anon_sym_BSLASHtextcite] = ACTIONS(5027), - [anon_sym_BSLASHTextcite] = ACTIONS(5027), - [anon_sym_BSLASHsmartcite] = ACTIONS(5027), - [anon_sym_BSLASHSmartcite] = ACTIONS(5027), - [anon_sym_BSLASHsupercite] = ACTIONS(5027), - [anon_sym_BSLASHautocite] = ACTIONS(5027), - [anon_sym_BSLASHAutocite] = ACTIONS(5027), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHvolcite] = ACTIONS(5027), - [anon_sym_BSLASHVolcite] = ACTIONS(5027), - [anon_sym_BSLASHpvolcite] = ACTIONS(5027), - [anon_sym_BSLASHPvolcite] = ACTIONS(5027), - [anon_sym_BSLASHfvolcite] = ACTIONS(5027), - [anon_sym_BSLASHftvolcite] = ACTIONS(5027), - [anon_sym_BSLASHsvolcite] = ACTIONS(5027), - [anon_sym_BSLASHSvolcite] = ACTIONS(5027), - [anon_sym_BSLASHtvolcite] = ACTIONS(5027), - [anon_sym_BSLASHTvolcite] = ACTIONS(5027), - [anon_sym_BSLASHavolcite] = ACTIONS(5027), - [anon_sym_BSLASHAvolcite] = ACTIONS(5027), - [anon_sym_BSLASHnotecite] = ACTIONS(5027), - [anon_sym_BSLASHNotecite] = ACTIONS(5027), - [anon_sym_BSLASHpnotecite] = ACTIONS(5027), - [anon_sym_BSLASHPnotecite] = ACTIONS(5027), - [anon_sym_BSLASHfnotecite] = ACTIONS(5027), - [anon_sym_BSLASHlabel] = ACTIONS(5027), - [anon_sym_BSLASHref] = ACTIONS(5027), - [anon_sym_BSLASHeqref] = ACTIONS(5027), - [anon_sym_BSLASHvref] = ACTIONS(5027), - [anon_sym_BSLASHVref] = ACTIONS(5027), - [anon_sym_BSLASHautoref] = ACTIONS(5027), - [anon_sym_BSLASHpageref] = ACTIONS(5027), - [anon_sym_BSLASHcref] = ACTIONS(5027), - [anon_sym_BSLASHCref] = ACTIONS(5027), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnameCref] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHlabelcref] = ACTIONS(5027), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnewlabel] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdef] = ACTIONS(5027), - [anon_sym_BSLASHlet] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5027), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5027), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5027), - [anon_sym_BSLASHgls] = ACTIONS(5027), - [anon_sym_BSLASHGls] = ACTIONS(5027), - [anon_sym_BSLASHGLS] = ACTIONS(5027), - [anon_sym_BSLASHglspl] = ACTIONS(5027), - [anon_sym_BSLASHGlspl] = ACTIONS(5027), - [anon_sym_BSLASHGLSpl] = ACTIONS(5027), - [anon_sym_BSLASHglsdisp] = ACTIONS(5027), - [anon_sym_BSLASHglslink] = ACTIONS(5027), - [anon_sym_BSLASHglstext] = ACTIONS(5027), - [anon_sym_BSLASHGlstext] = ACTIONS(5027), - [anon_sym_BSLASHGLStext] = ACTIONS(5027), - [anon_sym_BSLASHglsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5027), - [anon_sym_BSLASHglsplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSplural] = ACTIONS(5027), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHglsname] = ACTIONS(5027), - [anon_sym_BSLASHGlsname] = ACTIONS(5027), - [anon_sym_BSLASHGLSname] = ACTIONS(5027), - [anon_sym_BSLASHglssymbol] = ACTIONS(5027), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5027), - [anon_sym_BSLASHglsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5027), - [anon_sym_BSLASHglsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5027), - [anon_sym_BSLASHglsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5027), - [anon_sym_BSLASHglsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5027), - [anon_sym_BSLASHglsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5027), - [anon_sym_BSLASHnewacronym] = ACTIONS(5027), - [anon_sym_BSLASHacrshort] = ACTIONS(5027), - [anon_sym_BSLASHAcrshort] = ACTIONS(5027), - [anon_sym_BSLASHACRshort] = ACTIONS(5027), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5027), - [anon_sym_BSLASHacrlong] = ACTIONS(5027), - [anon_sym_BSLASHAcrlong] = ACTIONS(5027), - [anon_sym_BSLASHACRlong] = ACTIONS(5027), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5027), - [anon_sym_BSLASHacrfull] = ACTIONS(5027), - [anon_sym_BSLASHAcrfull] = ACTIONS(5027), - [anon_sym_BSLASHACRfull] = ACTIONS(5027), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5027), - [anon_sym_BSLASHacs] = ACTIONS(5027), - [anon_sym_BSLASHAcs] = ACTIONS(5027), - [anon_sym_BSLASHacsp] = ACTIONS(5027), - [anon_sym_BSLASHAcsp] = ACTIONS(5027), - [anon_sym_BSLASHacl] = ACTIONS(5027), - [anon_sym_BSLASHAcl] = ACTIONS(5027), - [anon_sym_BSLASHaclp] = ACTIONS(5027), - [anon_sym_BSLASHAclp] = ACTIONS(5027), - [anon_sym_BSLASHacf] = ACTIONS(5027), - [anon_sym_BSLASHAcf] = ACTIONS(5027), - [anon_sym_BSLASHacfp] = ACTIONS(5027), - [anon_sym_BSLASHAcfp] = ACTIONS(5027), - [anon_sym_BSLASHac] = ACTIONS(5027), - [anon_sym_BSLASHAc] = ACTIONS(5027), - [anon_sym_BSLASHacp] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5027), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5027), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5027), - [anon_sym_BSLASHcolor] = ACTIONS(5027), - [anon_sym_BSLASHcolorbox] = ACTIONS(5027), - [anon_sym_BSLASHtextcolor] = ACTIONS(5027), - [anon_sym_BSLASHpagecolor] = ACTIONS(5027), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5027), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5027), - [anon_sym_BSLASHtext] = ACTIONS(5027), - [anon_sym_BSLASHintertext] = ACTIONS(5027), - [anon_sym_shortintertext] = ACTIONS(5027), + [415] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(5301), - [sym_command_name] = ACTIONS(5303), + [416] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5249), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5303), - [anon_sym_LPAREN] = ACTIONS(5301), - [anon_sym_RPAREN] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5301), - [anon_sym_COMMA] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_BSLASHpart] = ACTIONS(5303), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddpart] = ACTIONS(5303), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHchapter] = ACTIONS(5303), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddchap] = ACTIONS(5303), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsection] = ACTIONS(5303), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddsec] = ACTIONS(5303), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHparagraph] = ACTIONS(5303), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHitem] = ACTIONS(5303), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), - [anon_sym_LBRACE] = ACTIONS(5301), - [anon_sym_RBRACE] = ACTIONS(5301), - [sym_word] = ACTIONS(5303), - [sym_placeholder] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_SLASH] = ACTIONS(5303), - [anon_sym_CARET] = ACTIONS(5303), - [anon_sym__] = ACTIONS(5303), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_BANG] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_SQUOTE] = ACTIONS(5303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), - [anon_sym_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), - [anon_sym_BSLASHbegin] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5303), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), - [anon_sym_BSLASHinclude] = ACTIONS(5303), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), - [anon_sym_BSLASHinput] = ACTIONS(5303), - [anon_sym_BSLASHsubfile] = ACTIONS(5303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), - [anon_sym_BSLASHbibliography] = ACTIONS(5303), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), - [anon_sym_BSLASHincludesvg] = ACTIONS(5303), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), - [anon_sym_BSLASHimport] = ACTIONS(5303), - [anon_sym_BSLASHsubimport] = ACTIONS(5303), - [anon_sym_BSLASHinputfrom] = ACTIONS(5303), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), - [anon_sym_BSLASHincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHcaption] = ACTIONS(5303), - [anon_sym_BSLASHcite] = ACTIONS(5303), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCite] = ACTIONS(5303), - [anon_sym_BSLASHnocite] = ACTIONS(5303), - [anon_sym_BSLASHcitet] = ACTIONS(5303), - [anon_sym_BSLASHcitep] = ACTIONS(5303), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteyear] = ACTIONS(5303), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitedate] = ACTIONS(5303), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteurl] = ACTIONS(5303), - [anon_sym_BSLASHfullcite] = ACTIONS(5303), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), - [anon_sym_BSLASHcitealt] = ACTIONS(5303), - [anon_sym_BSLASHcitealp] = ACTIONS(5303), - [anon_sym_BSLASHcitetext] = ACTIONS(5303), - [anon_sym_BSLASHparencite] = ACTIONS(5303), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHParencite] = ACTIONS(5303), - [anon_sym_BSLASHfootcite] = ACTIONS(5303), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), - [anon_sym_BSLASHtextcite] = ACTIONS(5303), - [anon_sym_BSLASHTextcite] = ACTIONS(5303), - [anon_sym_BSLASHsmartcite] = ACTIONS(5303), - [anon_sym_BSLASHSmartcite] = ACTIONS(5303), - [anon_sym_BSLASHsupercite] = ACTIONS(5303), - [anon_sym_BSLASHautocite] = ACTIONS(5303), - [anon_sym_BSLASHAutocite] = ACTIONS(5303), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHvolcite] = ACTIONS(5303), - [anon_sym_BSLASHVolcite] = ACTIONS(5303), - [anon_sym_BSLASHpvolcite] = ACTIONS(5303), - [anon_sym_BSLASHPvolcite] = ACTIONS(5303), - [anon_sym_BSLASHfvolcite] = ACTIONS(5303), - [anon_sym_BSLASHftvolcite] = ACTIONS(5303), - [anon_sym_BSLASHsvolcite] = ACTIONS(5303), - [anon_sym_BSLASHSvolcite] = ACTIONS(5303), - [anon_sym_BSLASHtvolcite] = ACTIONS(5303), - [anon_sym_BSLASHTvolcite] = ACTIONS(5303), - [anon_sym_BSLASHavolcite] = ACTIONS(5303), - [anon_sym_BSLASHAvolcite] = ACTIONS(5303), - [anon_sym_BSLASHnotecite] = ACTIONS(5303), - [anon_sym_BSLASHNotecite] = ACTIONS(5303), - [anon_sym_BSLASHpnotecite] = ACTIONS(5303), - [anon_sym_BSLASHPnotecite] = ACTIONS(5303), - [anon_sym_BSLASHfnotecite] = ACTIONS(5303), - [anon_sym_BSLASHlabel] = ACTIONS(5303), - [anon_sym_BSLASHref] = ACTIONS(5303), - [anon_sym_BSLASHeqref] = ACTIONS(5303), - [anon_sym_BSLASHvref] = ACTIONS(5303), - [anon_sym_BSLASHVref] = ACTIONS(5303), - [anon_sym_BSLASHautoref] = ACTIONS(5303), - [anon_sym_BSLASHpageref] = ACTIONS(5303), - [anon_sym_BSLASHcref] = ACTIONS(5303), - [anon_sym_BSLASHCref] = ACTIONS(5303), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnameCref] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHlabelcref] = ACTIONS(5303), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnewlabel] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdef] = ACTIONS(5303), - [anon_sym_BSLASHlet] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), - [anon_sym_BSLASHgls] = ACTIONS(5303), - [anon_sym_BSLASHGls] = ACTIONS(5303), - [anon_sym_BSLASHGLS] = ACTIONS(5303), - [anon_sym_BSLASHglspl] = ACTIONS(5303), - [anon_sym_BSLASHGlspl] = ACTIONS(5303), - [anon_sym_BSLASHGLSpl] = ACTIONS(5303), - [anon_sym_BSLASHglsdisp] = ACTIONS(5303), - [anon_sym_BSLASHglslink] = ACTIONS(5303), - [anon_sym_BSLASHglstext] = ACTIONS(5303), - [anon_sym_BSLASHGlstext] = ACTIONS(5303), - [anon_sym_BSLASHGLStext] = ACTIONS(5303), - [anon_sym_BSLASHglsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), - [anon_sym_BSLASHglsplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSplural] = ACTIONS(5303), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHglsname] = ACTIONS(5303), - [anon_sym_BSLASHGlsname] = ACTIONS(5303), - [anon_sym_BSLASHGLSname] = ACTIONS(5303), - [anon_sym_BSLASHglssymbol] = ACTIONS(5303), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), - [anon_sym_BSLASHglsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), - [anon_sym_BSLASHglsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), - [anon_sym_BSLASHglsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), - [anon_sym_BSLASHglsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), - [anon_sym_BSLASHglsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), - [anon_sym_BSLASHnewacronym] = ACTIONS(5303), - [anon_sym_BSLASHacrshort] = ACTIONS(5303), - [anon_sym_BSLASHAcrshort] = ACTIONS(5303), - [anon_sym_BSLASHACRshort] = ACTIONS(5303), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), - [anon_sym_BSLASHacrlong] = ACTIONS(5303), - [anon_sym_BSLASHAcrlong] = ACTIONS(5303), - [anon_sym_BSLASHACRlong] = ACTIONS(5303), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), - [anon_sym_BSLASHacrfull] = ACTIONS(5303), - [anon_sym_BSLASHAcrfull] = ACTIONS(5303), - [anon_sym_BSLASHACRfull] = ACTIONS(5303), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), - [anon_sym_BSLASHacs] = ACTIONS(5303), - [anon_sym_BSLASHAcs] = ACTIONS(5303), - [anon_sym_BSLASHacsp] = ACTIONS(5303), - [anon_sym_BSLASHAcsp] = ACTIONS(5303), - [anon_sym_BSLASHacl] = ACTIONS(5303), - [anon_sym_BSLASHAcl] = ACTIONS(5303), - [anon_sym_BSLASHaclp] = ACTIONS(5303), - [anon_sym_BSLASHAclp] = ACTIONS(5303), - [anon_sym_BSLASHacf] = ACTIONS(5303), - [anon_sym_BSLASHAcf] = ACTIONS(5303), - [anon_sym_BSLASHacfp] = ACTIONS(5303), - [anon_sym_BSLASHAcfp] = ACTIONS(5303), - [anon_sym_BSLASHac] = ACTIONS(5303), - [anon_sym_BSLASHAc] = ACTIONS(5303), - [anon_sym_BSLASHacp] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), - [anon_sym_BSLASHcolor] = ACTIONS(5303), - [anon_sym_BSLASHcolorbox] = ACTIONS(5303), - [anon_sym_BSLASHtextcolor] = ACTIONS(5303), - [anon_sym_BSLASHpagecolor] = ACTIONS(5303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), - [anon_sym_BSLASHtext] = ACTIONS(5303), - [anon_sym_BSLASHintertext] = ACTIONS(5303), - [anon_sym_shortintertext] = ACTIONS(5303), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHtitle] = ACTIONS(5249), + [anon_sym_BSLASHauthor] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(5305), - [sym_command_name] = ACTIONS(5307), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5307), - [anon_sym_LPAREN] = ACTIONS(5305), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5305), - [anon_sym_COMMA] = ACTIONS(5305), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_BSLASHpart] = ACTIONS(5307), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddpart] = ACTIONS(5307), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHchapter] = ACTIONS(5307), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddchap] = ACTIONS(5307), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsection] = ACTIONS(5307), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddsec] = ACTIONS(5307), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHparagraph] = ACTIONS(5307), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHitem] = ACTIONS(5307), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5305), - [anon_sym_LBRACE] = ACTIONS(5305), - [anon_sym_RBRACE] = ACTIONS(5305), - [sym_word] = ACTIONS(5307), - [sym_placeholder] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5307), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_STAR] = ACTIONS(5307), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_CARET] = ACTIONS(5307), - [anon_sym__] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5307), - [anon_sym_GT] = ACTIONS(5307), - [anon_sym_BANG] = ACTIONS(5307), - [anon_sym_PIPE] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_SQUOTE] = ACTIONS(5307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5305), - [anon_sym_BSLASHbegin] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5307), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5307), - [anon_sym_BSLASHinclude] = ACTIONS(5307), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5307), - [anon_sym_BSLASHinput] = ACTIONS(5307), - [anon_sym_BSLASHsubfile] = ACTIONS(5307), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5307), - [anon_sym_BSLASHbibliography] = ACTIONS(5307), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5307), - [anon_sym_BSLASHincludesvg] = ACTIONS(5307), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5307), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5307), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5307), - [anon_sym_BSLASHimport] = ACTIONS(5307), - [anon_sym_BSLASHsubimport] = ACTIONS(5307), - [anon_sym_BSLASHinputfrom] = ACTIONS(5307), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5307), - [anon_sym_BSLASHincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHcaption] = ACTIONS(5307), - [anon_sym_BSLASHcite] = ACTIONS(5307), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCite] = ACTIONS(5307), - [anon_sym_BSLASHnocite] = ACTIONS(5307), - [anon_sym_BSLASHcitet] = ACTIONS(5307), - [anon_sym_BSLASHcitep] = ACTIONS(5307), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteyear] = ACTIONS(5307), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitedate] = ACTIONS(5307), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteurl] = ACTIONS(5307), - [anon_sym_BSLASHfullcite] = ACTIONS(5307), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5307), - [anon_sym_BSLASHcitealt] = ACTIONS(5307), - [anon_sym_BSLASHcitealp] = ACTIONS(5307), - [anon_sym_BSLASHcitetext] = ACTIONS(5307), - [anon_sym_BSLASHparencite] = ACTIONS(5307), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHParencite] = ACTIONS(5307), - [anon_sym_BSLASHfootcite] = ACTIONS(5307), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5307), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5307), - [anon_sym_BSLASHtextcite] = ACTIONS(5307), - [anon_sym_BSLASHTextcite] = ACTIONS(5307), - [anon_sym_BSLASHsmartcite] = ACTIONS(5307), - [anon_sym_BSLASHSmartcite] = ACTIONS(5307), - [anon_sym_BSLASHsupercite] = ACTIONS(5307), - [anon_sym_BSLASHautocite] = ACTIONS(5307), - [anon_sym_BSLASHAutocite] = ACTIONS(5307), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHvolcite] = ACTIONS(5307), - [anon_sym_BSLASHVolcite] = ACTIONS(5307), - [anon_sym_BSLASHpvolcite] = ACTIONS(5307), - [anon_sym_BSLASHPvolcite] = ACTIONS(5307), - [anon_sym_BSLASHfvolcite] = ACTIONS(5307), - [anon_sym_BSLASHftvolcite] = ACTIONS(5307), - [anon_sym_BSLASHsvolcite] = ACTIONS(5307), - [anon_sym_BSLASHSvolcite] = ACTIONS(5307), - [anon_sym_BSLASHtvolcite] = ACTIONS(5307), - [anon_sym_BSLASHTvolcite] = ACTIONS(5307), - [anon_sym_BSLASHavolcite] = ACTIONS(5307), - [anon_sym_BSLASHAvolcite] = ACTIONS(5307), - [anon_sym_BSLASHnotecite] = ACTIONS(5307), - [anon_sym_BSLASHNotecite] = ACTIONS(5307), - [anon_sym_BSLASHpnotecite] = ACTIONS(5307), - [anon_sym_BSLASHPnotecite] = ACTIONS(5307), - [anon_sym_BSLASHfnotecite] = ACTIONS(5307), - [anon_sym_BSLASHlabel] = ACTIONS(5307), - [anon_sym_BSLASHref] = ACTIONS(5307), - [anon_sym_BSLASHeqref] = ACTIONS(5307), - [anon_sym_BSLASHvref] = ACTIONS(5307), - [anon_sym_BSLASHVref] = ACTIONS(5307), - [anon_sym_BSLASHautoref] = ACTIONS(5307), - [anon_sym_BSLASHpageref] = ACTIONS(5307), - [anon_sym_BSLASHcref] = ACTIONS(5307), - [anon_sym_BSLASHCref] = ACTIONS(5307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnameCref] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHlabelcref] = ACTIONS(5307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnewlabel] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdef] = ACTIONS(5307), - [anon_sym_BSLASHlet] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5307), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5307), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5307), - [anon_sym_BSLASHgls] = ACTIONS(5307), - [anon_sym_BSLASHGls] = ACTIONS(5307), - [anon_sym_BSLASHGLS] = ACTIONS(5307), - [anon_sym_BSLASHglspl] = ACTIONS(5307), - [anon_sym_BSLASHGlspl] = ACTIONS(5307), - [anon_sym_BSLASHGLSpl] = ACTIONS(5307), - [anon_sym_BSLASHglsdisp] = ACTIONS(5307), - [anon_sym_BSLASHglslink] = ACTIONS(5307), - [anon_sym_BSLASHglstext] = ACTIONS(5307), - [anon_sym_BSLASHGlstext] = ACTIONS(5307), - [anon_sym_BSLASHGLStext] = ACTIONS(5307), - [anon_sym_BSLASHglsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5307), - [anon_sym_BSLASHglsplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSplural] = ACTIONS(5307), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHglsname] = ACTIONS(5307), - [anon_sym_BSLASHGlsname] = ACTIONS(5307), - [anon_sym_BSLASHGLSname] = ACTIONS(5307), - [anon_sym_BSLASHglssymbol] = ACTIONS(5307), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5307), - [anon_sym_BSLASHglsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5307), - [anon_sym_BSLASHglsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5307), - [anon_sym_BSLASHglsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5307), - [anon_sym_BSLASHglsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5307), - [anon_sym_BSLASHglsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5307), - [anon_sym_BSLASHnewacronym] = ACTIONS(5307), - [anon_sym_BSLASHacrshort] = ACTIONS(5307), - [anon_sym_BSLASHAcrshort] = ACTIONS(5307), - [anon_sym_BSLASHACRshort] = ACTIONS(5307), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5307), - [anon_sym_BSLASHacrlong] = ACTIONS(5307), - [anon_sym_BSLASHAcrlong] = ACTIONS(5307), - [anon_sym_BSLASHACRlong] = ACTIONS(5307), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5307), - [anon_sym_BSLASHacrfull] = ACTIONS(5307), - [anon_sym_BSLASHAcrfull] = ACTIONS(5307), - [anon_sym_BSLASHACRfull] = ACTIONS(5307), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5307), - [anon_sym_BSLASHacs] = ACTIONS(5307), - [anon_sym_BSLASHAcs] = ACTIONS(5307), - [anon_sym_BSLASHacsp] = ACTIONS(5307), - [anon_sym_BSLASHAcsp] = ACTIONS(5307), - [anon_sym_BSLASHacl] = ACTIONS(5307), - [anon_sym_BSLASHAcl] = ACTIONS(5307), - [anon_sym_BSLASHaclp] = ACTIONS(5307), - [anon_sym_BSLASHAclp] = ACTIONS(5307), - [anon_sym_BSLASHacf] = ACTIONS(5307), - [anon_sym_BSLASHAcf] = ACTIONS(5307), - [anon_sym_BSLASHacfp] = ACTIONS(5307), - [anon_sym_BSLASHAcfp] = ACTIONS(5307), - [anon_sym_BSLASHac] = ACTIONS(5307), - [anon_sym_BSLASHAc] = ACTIONS(5307), - [anon_sym_BSLASHacp] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5307), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5307), - [anon_sym_BSLASHcolor] = ACTIONS(5307), - [anon_sym_BSLASHcolorbox] = ACTIONS(5307), - [anon_sym_BSLASHtextcolor] = ACTIONS(5307), - [anon_sym_BSLASHpagecolor] = ACTIONS(5307), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5307), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), - [anon_sym_BSLASHtext] = ACTIONS(5307), - [anon_sym_BSLASHintertext] = ACTIONS(5307), - [anon_sym_shortintertext] = ACTIONS(5307), + [417] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(5309), - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [418] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, - [763] = { - [sym_curly_group] = STATE(1187), - [sym_command_name] = ACTIONS(5019), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_BSLASHpart] = ACTIONS(5019), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddpart] = ACTIONS(5019), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHchapter] = ACTIONS(5019), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddchap] = ACTIONS(5019), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsection] = ACTIONS(5019), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddsec] = ACTIONS(5019), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHparagraph] = ACTIONS(5019), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHitem] = ACTIONS(5019), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(5019), - [sym_placeholder] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym__] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5017), - [anon_sym_BSLASHbegin] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5019), - [anon_sym_BSLASHinclude] = ACTIONS(5019), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5019), - [anon_sym_BSLASHinput] = ACTIONS(5019), - [anon_sym_BSLASHsubfile] = ACTIONS(5019), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5019), - [anon_sym_BSLASHbibliography] = ACTIONS(5019), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5019), - [anon_sym_BSLASHincludesvg] = ACTIONS(5019), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5019), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5019), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5019), - [anon_sym_BSLASHimport] = ACTIONS(5019), - [anon_sym_BSLASHsubimport] = ACTIONS(5019), - [anon_sym_BSLASHinputfrom] = ACTIONS(5019), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5019), - [anon_sym_BSLASHincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHcaption] = ACTIONS(5019), - [anon_sym_BSLASHcite] = ACTIONS(5019), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCite] = ACTIONS(5019), - [anon_sym_BSLASHnocite] = ACTIONS(5019), - [anon_sym_BSLASHcitet] = ACTIONS(5019), - [anon_sym_BSLASHcitep] = ACTIONS(5019), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteyear] = ACTIONS(5019), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitedate] = ACTIONS(5019), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteurl] = ACTIONS(5019), - [anon_sym_BSLASHfullcite] = ACTIONS(5019), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5019), - [anon_sym_BSLASHcitealt] = ACTIONS(5019), - [anon_sym_BSLASHcitealp] = ACTIONS(5019), - [anon_sym_BSLASHcitetext] = ACTIONS(5019), - [anon_sym_BSLASHparencite] = ACTIONS(5019), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHParencite] = ACTIONS(5019), - [anon_sym_BSLASHfootcite] = ACTIONS(5019), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5019), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5019), - [anon_sym_BSLASHtextcite] = ACTIONS(5019), - [anon_sym_BSLASHTextcite] = ACTIONS(5019), - [anon_sym_BSLASHsmartcite] = ACTIONS(5019), - [anon_sym_BSLASHSmartcite] = ACTIONS(5019), - [anon_sym_BSLASHsupercite] = ACTIONS(5019), - [anon_sym_BSLASHautocite] = ACTIONS(5019), - [anon_sym_BSLASHAutocite] = ACTIONS(5019), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHvolcite] = ACTIONS(5019), - [anon_sym_BSLASHVolcite] = ACTIONS(5019), - [anon_sym_BSLASHpvolcite] = ACTIONS(5019), - [anon_sym_BSLASHPvolcite] = ACTIONS(5019), - [anon_sym_BSLASHfvolcite] = ACTIONS(5019), - [anon_sym_BSLASHftvolcite] = ACTIONS(5019), - [anon_sym_BSLASHsvolcite] = ACTIONS(5019), - [anon_sym_BSLASHSvolcite] = ACTIONS(5019), - [anon_sym_BSLASHtvolcite] = ACTIONS(5019), - [anon_sym_BSLASHTvolcite] = ACTIONS(5019), - [anon_sym_BSLASHavolcite] = ACTIONS(5019), - [anon_sym_BSLASHAvolcite] = ACTIONS(5019), - [anon_sym_BSLASHnotecite] = ACTIONS(5019), - [anon_sym_BSLASHNotecite] = ACTIONS(5019), - [anon_sym_BSLASHpnotecite] = ACTIONS(5019), - [anon_sym_BSLASHPnotecite] = ACTIONS(5019), - [anon_sym_BSLASHfnotecite] = ACTIONS(5019), - [anon_sym_BSLASHlabel] = ACTIONS(5019), - [anon_sym_BSLASHref] = ACTIONS(5019), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [anon_sym_BSLASHvref] = ACTIONS(5019), - [anon_sym_BSLASHVref] = ACTIONS(5019), - [anon_sym_BSLASHautoref] = ACTIONS(5019), - [anon_sym_BSLASHpageref] = ACTIONS(5019), - [anon_sym_BSLASHcref] = ACTIONS(5019), - [anon_sym_BSLASHCref] = ACTIONS(5019), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnameCref] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHlabelcref] = ACTIONS(5019), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnewlabel] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdef] = ACTIONS(5019), - [anon_sym_BSLASHlet] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5019), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5019), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5019), - [anon_sym_BSLASHgls] = ACTIONS(5019), - [anon_sym_BSLASHGls] = ACTIONS(5019), - [anon_sym_BSLASHGLS] = ACTIONS(5019), - [anon_sym_BSLASHglspl] = ACTIONS(5019), - [anon_sym_BSLASHGlspl] = ACTIONS(5019), - [anon_sym_BSLASHGLSpl] = ACTIONS(5019), - [anon_sym_BSLASHglsdisp] = ACTIONS(5019), - [anon_sym_BSLASHglslink] = ACTIONS(5019), - [anon_sym_BSLASHglstext] = ACTIONS(5019), - [anon_sym_BSLASHGlstext] = ACTIONS(5019), - [anon_sym_BSLASHGLStext] = ACTIONS(5019), - [anon_sym_BSLASHglsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5019), - [anon_sym_BSLASHglsplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSplural] = ACTIONS(5019), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHglsname] = ACTIONS(5019), - [anon_sym_BSLASHGlsname] = ACTIONS(5019), - [anon_sym_BSLASHGLSname] = ACTIONS(5019), - [anon_sym_BSLASHglssymbol] = ACTIONS(5019), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5019), - [anon_sym_BSLASHglsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5019), - [anon_sym_BSLASHglsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5019), - [anon_sym_BSLASHglsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5019), - [anon_sym_BSLASHglsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5019), - [anon_sym_BSLASHglsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5019), - [anon_sym_BSLASHnewacronym] = ACTIONS(5019), - [anon_sym_BSLASHacrshort] = ACTIONS(5019), - [anon_sym_BSLASHAcrshort] = ACTIONS(5019), - [anon_sym_BSLASHACRshort] = ACTIONS(5019), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5019), - [anon_sym_BSLASHacrlong] = ACTIONS(5019), - [anon_sym_BSLASHAcrlong] = ACTIONS(5019), - [anon_sym_BSLASHACRlong] = ACTIONS(5019), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5019), - [anon_sym_BSLASHacrfull] = ACTIONS(5019), - [anon_sym_BSLASHAcrfull] = ACTIONS(5019), - [anon_sym_BSLASHACRfull] = ACTIONS(5019), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5019), - [anon_sym_BSLASHacs] = ACTIONS(5019), - [anon_sym_BSLASHAcs] = ACTIONS(5019), - [anon_sym_BSLASHacsp] = ACTIONS(5019), - [anon_sym_BSLASHAcsp] = ACTIONS(5019), - [anon_sym_BSLASHacl] = ACTIONS(5019), - [anon_sym_BSLASHAcl] = ACTIONS(5019), - [anon_sym_BSLASHaclp] = ACTIONS(5019), - [anon_sym_BSLASHAclp] = ACTIONS(5019), - [anon_sym_BSLASHacf] = ACTIONS(5019), - [anon_sym_BSLASHAcf] = ACTIONS(5019), - [anon_sym_BSLASHacfp] = ACTIONS(5019), - [anon_sym_BSLASHAcfp] = ACTIONS(5019), - [anon_sym_BSLASHac] = ACTIONS(5019), - [anon_sym_BSLASHAc] = ACTIONS(5019), - [anon_sym_BSLASHacp] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5019), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5019), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5019), - [anon_sym_BSLASHcolor] = ACTIONS(5019), - [anon_sym_BSLASHcolorbox] = ACTIONS(5019), - [anon_sym_BSLASHtextcolor] = ACTIONS(5019), - [anon_sym_BSLASHpagecolor] = ACTIONS(5019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5019), - [anon_sym_BSLASHtext] = ACTIONS(5019), - [anon_sym_BSLASHintertext] = ACTIONS(5019), - [anon_sym_shortintertext] = ACTIONS(5019), + [419] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [764] = { - [sym_curly_group] = STATE(1188), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - [anon_sym_BSLASHtext] = ACTIONS(5003), - [anon_sym_BSLASHintertext] = ACTIONS(5003), - [anon_sym_shortintertext] = ACTIONS(5003), + [420] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [765] = { - [sym_curly_group] = STATE(1189), - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - [anon_sym_BSLASHtext] = ACTIONS(4999), - [anon_sym_BSLASHintertext] = ACTIONS(4999), - [anon_sym_shortintertext] = ACTIONS(4999), + [421] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [766] = { - [sym_curly_group] = STATE(1190), - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - [anon_sym_BSLASHtext] = ACTIONS(4995), - [anon_sym_BSLASHintertext] = ACTIONS(4995), - [anon_sym_shortintertext] = ACTIONS(4995), + [422] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [767] = { - [sym_curly_group] = STATE(1191), - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), - [anon_sym_BSLASHtext] = ACTIONS(4991), - [anon_sym_BSLASHintertext] = ACTIONS(4991), - [anon_sym_shortintertext] = ACTIONS(4991), + [423] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [768] = { - [sym_curly_group] = STATE(1192), - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - [anon_sym_BSLASHtext] = ACTIONS(4987), - [anon_sym_BSLASHintertext] = ACTIONS(4987), - [anon_sym_shortintertext] = ACTIONS(4987), + [424] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [769] = { - [sym_curly_group] = STATE(1193), - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(685), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - [anon_sym_BSLASHtext] = ACTIONS(4983), - [anon_sym_BSLASHintertext] = ACTIONS(4983), - [anon_sym_shortintertext] = ACTIONS(4983), + [425] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [770] = { - [sym_curly_group] = STATE(976), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - [anon_sym_BSLASHtext] = ACTIONS(5003), - [anon_sym_BSLASHintertext] = ACTIONS(5003), - [anon_sym_shortintertext] = ACTIONS(5003), + [426] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(5313), - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_BSLASHpart] = ACTIONS(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [anon_sym_RBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), + [427] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(5317), - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASHpart] = ACTIONS(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [anon_sym_RBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), + [428] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(5321), + [429] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [430] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [431] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [432] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [433] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [434] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [435] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [436] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [437] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -250047,10 +160107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHitem] = ACTIONS(5323), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), [anon_sym_LBRACE] = ACTIONS(5321), - [anon_sym_RBRACE] = ACTIONS(5321), [sym_word] = ACTIONS(5323), [sym_placeholder] = ACTIONS(5321), [anon_sym_PLUS] = ACTIONS(5323), @@ -250069,8 +160128,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), [anon_sym_DOLLAR] = ACTIONS(5323), [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), [anon_sym_BSLASHusepackage] = ACTIONS(5323), [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), @@ -250292,21877 +160354,15187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(5323), [anon_sym_shortintertext] = ACTIONS(5323), }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(5325), - [sym_command_name] = ACTIONS(5327), + [438] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_BSLASHpart] = ACTIONS(5327), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5327), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5327), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5327), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5327), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5327), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5327), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5327), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [anon_sym_RBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), - }, - [775] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_BSLASHpart] = ACTIONS(5031), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddpart] = ACTIONS(5031), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5029), - [anon_sym_BSLASHchapter] = ACTIONS(5031), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddchap] = ACTIONS(5031), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsection] = ACTIONS(5031), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHaddsec] = ACTIONS(5031), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5029), - [anon_sym_BSLASHparagraph] = ACTIONS(5031), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5029), - [anon_sym_BSLASHitem] = ACTIONS(5031), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(5331), - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(5335), - [sym_command_name] = ACTIONS(5337), + [439] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [anon_sym_RBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [778] = { - [ts_builtin_sym_end] = ACTIONS(5339), - [sym_command_name] = ACTIONS(5341), + [440] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(5343), - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(5347), - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(5351), - [sym_command_name] = ACTIONS(5353), + [441] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(5355), - [sym_command_name] = ACTIONS(5357), + [442] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(5359), - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(5363), - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_BSLASHpart] = ACTIONS(5365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddpart] = ACTIONS(5365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHchapter] = ACTIONS(5365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddchap] = ACTIONS(5365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsection] = ACTIONS(5365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddsec] = ACTIONS(5365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHparagraph] = ACTIONS(5365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHitem] = ACTIONS(5365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [anon_sym_RBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), - }, - [785] = { - [sym_curly_group] = STATE(981), - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - [anon_sym_BSLASHtext] = ACTIONS(4983), - [anon_sym_BSLASHintertext] = ACTIONS(4983), - [anon_sym_shortintertext] = ACTIONS(4983), - }, - [786] = { - [sym_brack_group_text] = STATE(845), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5367), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_BSLASHpart] = ACTIONS(5045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddpart] = ACTIONS(5045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHchapter] = ACTIONS(5045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddchap] = ACTIONS(5045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsection] = ACTIONS(5045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddsec] = ACTIONS(5045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHparagraph] = ACTIONS(5045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHitem] = ACTIONS(5045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(5369), - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(5373), - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_BSLASHpart] = ACTIONS(5375), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddpart] = ACTIONS(5375), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHchapter] = ACTIONS(5375), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddchap] = ACTIONS(5375), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsection] = ACTIONS(5375), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddsec] = ACTIONS(5375), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHparagraph] = ACTIONS(5375), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHitem] = ACTIONS(5375), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [anon_sym_RBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(5377), - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_BSLASHpart] = ACTIONS(5379), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddpart] = ACTIONS(5379), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHchapter] = ACTIONS(5379), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddchap] = ACTIONS(5379), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsection] = ACTIONS(5379), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddsec] = ACTIONS(5379), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHparagraph] = ACTIONS(5379), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHitem] = ACTIONS(5379), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [anon_sym_RBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), - }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(5381), - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_BSLASHpart] = ACTIONS(5383), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddpart] = ACTIONS(5383), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHchapter] = ACTIONS(5383), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddchap] = ACTIONS(5383), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsection] = ACTIONS(5383), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddsec] = ACTIONS(5383), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHparagraph] = ACTIONS(5383), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHitem] = ACTIONS(5383), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_RBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), - }, - [791] = { - [sym_curly_group] = STATE(1204), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_BSLASHpart] = ACTIONS(5023), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddpart] = ACTIONS(5023), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHchapter] = ACTIONS(5023), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddchap] = ACTIONS(5023), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsection] = ACTIONS(5023), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddsec] = ACTIONS(5023), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHparagraph] = ACTIONS(5023), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHitem] = ACTIONS(5023), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(193), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHend] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(5385), - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_BSLASHpart] = ACTIONS(5387), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddpart] = ACTIONS(5387), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHchapter] = ACTIONS(5387), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddchap] = ACTIONS(5387), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsection] = ACTIONS(5387), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddsec] = ACTIONS(5387), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHparagraph] = ACTIONS(5387), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5387), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHitem] = ACTIONS(5387), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [anon_sym_RBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(5389), - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_BSLASHpart] = ACTIONS(5391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddpart] = ACTIONS(5391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHchapter] = ACTIONS(5391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddchap] = ACTIONS(5391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsection] = ACTIONS(5391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddsec] = ACTIONS(5391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHparagraph] = ACTIONS(5391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHitem] = ACTIONS(5391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(5393), - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_BSLASHpart] = ACTIONS(5395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddpart] = ACTIONS(5395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHchapter] = ACTIONS(5395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddchap] = ACTIONS(5395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsection] = ACTIONS(5395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddsec] = ACTIONS(5395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHparagraph] = ACTIONS(5395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHitem] = ACTIONS(5395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(5397), - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_BSLASHpart] = ACTIONS(5399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddpart] = ACTIONS(5399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHchapter] = ACTIONS(5399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddchap] = ACTIONS(5399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsection] = ACTIONS(5399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddsec] = ACTIONS(5399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHparagraph] = ACTIONS(5399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHitem] = ACTIONS(5399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [anon_sym_RBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), + [443] = { + [sym_curly_group] = STATE(1293), + [sym_mixed_group] = STATE(1293), + [aux_sym_generic_command_repeat1] = STATE(478), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(5357), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_BSLASHpart] = ACTIONS(5317), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddpart] = ACTIONS(5317), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHchapter] = ACTIONS(5317), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddchap] = ACTIONS(5317), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsection] = ACTIONS(5317), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddsec] = ACTIONS(5317), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHparagraph] = ACTIONS(5317), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHitem] = ACTIONS(5317), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(5401), - [sym_command_name] = ACTIONS(5403), + [444] = { + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(537), + [aux_sym__section_repeat2] = STATE(537), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5403), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_RPAREN] = ACTIONS(5401), - [anon_sym_LBRACK] = ACTIONS(5401), - [anon_sym_RBRACK] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(5401), - [anon_sym_BSLASHpart] = ACTIONS(5403), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddpart] = ACTIONS(5403), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHchapter] = ACTIONS(5403), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddchap] = ACTIONS(5403), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsection] = ACTIONS(5403), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddsec] = ACTIONS(5403), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHparagraph] = ACTIONS(5403), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHitem] = ACTIONS(5403), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), - [anon_sym_LBRACE] = ACTIONS(5401), - [anon_sym_RBRACE] = ACTIONS(5401), - [sym_word] = ACTIONS(5403), - [sym_placeholder] = ACTIONS(5401), - [anon_sym_PLUS] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5403), - [anon_sym_STAR] = ACTIONS(5403), - [anon_sym_SLASH] = ACTIONS(5403), - [anon_sym_CARET] = ACTIONS(5403), - [anon_sym__] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5403), - [anon_sym_BANG] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5403), - [anon_sym_COLON] = ACTIONS(5403), - [anon_sym_SQUOTE] = ACTIONS(5403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), - [anon_sym_DOLLAR] = ACTIONS(5403), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), - [anon_sym_BSLASHbegin] = ACTIONS(5403), - [anon_sym_BSLASHusepackage] = ACTIONS(5403), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), - [anon_sym_BSLASHinclude] = ACTIONS(5403), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), - [anon_sym_BSLASHinput] = ACTIONS(5403), - [anon_sym_BSLASHsubfile] = ACTIONS(5403), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), - [anon_sym_BSLASHbibliography] = ACTIONS(5403), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), - [anon_sym_BSLASHincludesvg] = ACTIONS(5403), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), - [anon_sym_BSLASHimport] = ACTIONS(5403), - [anon_sym_BSLASHsubimport] = ACTIONS(5403), - [anon_sym_BSLASHinputfrom] = ACTIONS(5403), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), - [anon_sym_BSLASHincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHcaption] = ACTIONS(5403), - [anon_sym_BSLASHcite] = ACTIONS(5403), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCite] = ACTIONS(5403), - [anon_sym_BSLASHnocite] = ACTIONS(5403), - [anon_sym_BSLASHcitet] = ACTIONS(5403), - [anon_sym_BSLASHcitep] = ACTIONS(5403), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteauthor] = ACTIONS(5403), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitetitle] = ACTIONS(5403), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteyear] = ACTIONS(5403), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitedate] = ACTIONS(5403), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteurl] = ACTIONS(5403), - [anon_sym_BSLASHfullcite] = ACTIONS(5403), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), - [anon_sym_BSLASHcitealt] = ACTIONS(5403), - [anon_sym_BSLASHcitealp] = ACTIONS(5403), - [anon_sym_BSLASHcitetext] = ACTIONS(5403), - [anon_sym_BSLASHparencite] = ACTIONS(5403), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHParencite] = ACTIONS(5403), - [anon_sym_BSLASHfootcite] = ACTIONS(5403), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), - [anon_sym_BSLASHtextcite] = ACTIONS(5403), - [anon_sym_BSLASHTextcite] = ACTIONS(5403), - [anon_sym_BSLASHsmartcite] = ACTIONS(5403), - [anon_sym_BSLASHSmartcite] = ACTIONS(5403), - [anon_sym_BSLASHsupercite] = ACTIONS(5403), - [anon_sym_BSLASHautocite] = ACTIONS(5403), - [anon_sym_BSLASHAutocite] = ACTIONS(5403), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHvolcite] = ACTIONS(5403), - [anon_sym_BSLASHVolcite] = ACTIONS(5403), - [anon_sym_BSLASHpvolcite] = ACTIONS(5403), - [anon_sym_BSLASHPvolcite] = ACTIONS(5403), - [anon_sym_BSLASHfvolcite] = ACTIONS(5403), - [anon_sym_BSLASHftvolcite] = ACTIONS(5403), - [anon_sym_BSLASHsvolcite] = ACTIONS(5403), - [anon_sym_BSLASHSvolcite] = ACTIONS(5403), - [anon_sym_BSLASHtvolcite] = ACTIONS(5403), - [anon_sym_BSLASHTvolcite] = ACTIONS(5403), - [anon_sym_BSLASHavolcite] = ACTIONS(5403), - [anon_sym_BSLASHAvolcite] = ACTIONS(5403), - [anon_sym_BSLASHnotecite] = ACTIONS(5403), - [anon_sym_BSLASHNotecite] = ACTIONS(5403), - [anon_sym_BSLASHpnotecite] = ACTIONS(5403), - [anon_sym_BSLASHPnotecite] = ACTIONS(5403), - [anon_sym_BSLASHfnotecite] = ACTIONS(5403), - [anon_sym_BSLASHlabel] = ACTIONS(5403), - [anon_sym_BSLASHref] = ACTIONS(5403), - [anon_sym_BSLASHeqref] = ACTIONS(5403), - [anon_sym_BSLASHvref] = ACTIONS(5403), - [anon_sym_BSLASHVref] = ACTIONS(5403), - [anon_sym_BSLASHautoref] = ACTIONS(5403), - [anon_sym_BSLASHpageref] = ACTIONS(5403), - [anon_sym_BSLASHcref] = ACTIONS(5403), - [anon_sym_BSLASHCref] = ACTIONS(5403), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnameCref] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHlabelcref] = ACTIONS(5403), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCrefrange] = ACTIONS(5403), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnewlabel] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdef] = ACTIONS(5403), - [anon_sym_BSLASHlet] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), - [anon_sym_BSLASHgls] = ACTIONS(5403), - [anon_sym_BSLASHGls] = ACTIONS(5403), - [anon_sym_BSLASHGLS] = ACTIONS(5403), - [anon_sym_BSLASHglspl] = ACTIONS(5403), - [anon_sym_BSLASHGlspl] = ACTIONS(5403), - [anon_sym_BSLASHGLSpl] = ACTIONS(5403), - [anon_sym_BSLASHglsdisp] = ACTIONS(5403), - [anon_sym_BSLASHglslink] = ACTIONS(5403), - [anon_sym_BSLASHglstext] = ACTIONS(5403), - [anon_sym_BSLASHGlstext] = ACTIONS(5403), - [anon_sym_BSLASHGLStext] = ACTIONS(5403), - [anon_sym_BSLASHglsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), - [anon_sym_BSLASHglsplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSplural] = ACTIONS(5403), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHglsname] = ACTIONS(5403), - [anon_sym_BSLASHGlsname] = ACTIONS(5403), - [anon_sym_BSLASHGLSname] = ACTIONS(5403), - [anon_sym_BSLASHglssymbol] = ACTIONS(5403), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), - [anon_sym_BSLASHglsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), - [anon_sym_BSLASHglsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), - [anon_sym_BSLASHglsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), - [anon_sym_BSLASHglsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), - [anon_sym_BSLASHglsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), - [anon_sym_BSLASHnewacronym] = ACTIONS(5403), - [anon_sym_BSLASHacrshort] = ACTIONS(5403), - [anon_sym_BSLASHAcrshort] = ACTIONS(5403), - [anon_sym_BSLASHACRshort] = ACTIONS(5403), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), - [anon_sym_BSLASHacrlong] = ACTIONS(5403), - [anon_sym_BSLASHAcrlong] = ACTIONS(5403), - [anon_sym_BSLASHACRlong] = ACTIONS(5403), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), - [anon_sym_BSLASHacrfull] = ACTIONS(5403), - [anon_sym_BSLASHAcrfull] = ACTIONS(5403), - [anon_sym_BSLASHACRfull] = ACTIONS(5403), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), - [anon_sym_BSLASHacs] = ACTIONS(5403), - [anon_sym_BSLASHAcs] = ACTIONS(5403), - [anon_sym_BSLASHacsp] = ACTIONS(5403), - [anon_sym_BSLASHAcsp] = ACTIONS(5403), - [anon_sym_BSLASHacl] = ACTIONS(5403), - [anon_sym_BSLASHAcl] = ACTIONS(5403), - [anon_sym_BSLASHaclp] = ACTIONS(5403), - [anon_sym_BSLASHAclp] = ACTIONS(5403), - [anon_sym_BSLASHacf] = ACTIONS(5403), - [anon_sym_BSLASHAcf] = ACTIONS(5403), - [anon_sym_BSLASHacfp] = ACTIONS(5403), - [anon_sym_BSLASHAcfp] = ACTIONS(5403), - [anon_sym_BSLASHac] = ACTIONS(5403), - [anon_sym_BSLASHAc] = ACTIONS(5403), - [anon_sym_BSLASHacp] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), - [anon_sym_BSLASHcolor] = ACTIONS(5403), - [anon_sym_BSLASHcolorbox] = ACTIONS(5403), - [anon_sym_BSLASHtextcolor] = ACTIONS(5403), - [anon_sym_BSLASHpagecolor] = ACTIONS(5403), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), - [anon_sym_BSLASHtext] = ACTIONS(5403), - [anon_sym_BSLASHintertext] = ACTIONS(5403), - [anon_sym_shortintertext] = ACTIONS(5403), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(5405), - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [anon_sym_RBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), + [445] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [798] = { - [sym_brack_group_text] = STATE(1249), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_BSLASHpart] = ACTIONS(5045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddpart] = ACTIONS(5045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), - [anon_sym_BSLASHchapter] = ACTIONS(5045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddchap] = ACTIONS(5045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsection] = ACTIONS(5045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHaddsec] = ACTIONS(5045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), - [anon_sym_BSLASHparagraph] = ACTIONS(5045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), - [anon_sym_BSLASHitem] = ACTIONS(5045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHend] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), + [446] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(5409), - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [447] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [800] = { - [ts_builtin_sym_end] = ACTIONS(5413), - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5415), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5415), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5415), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5415), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5415), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5415), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5415), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5415), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5415), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), + [448] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(5417), - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_BSLASHpart] = ACTIONS(5419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddpart] = ACTIONS(5419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHchapter] = ACTIONS(5419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddchap] = ACTIONS(5419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsection] = ACTIONS(5419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddsec] = ACTIONS(5419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHparagraph] = ACTIONS(5419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHitem] = ACTIONS(5419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [anon_sym_RBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [449] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(5421), - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_BSLASHpart] = ACTIONS(5423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddpart] = ACTIONS(5423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHchapter] = ACTIONS(5423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddchap] = ACTIONS(5423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsection] = ACTIONS(5423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddsec] = ACTIONS(5423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHparagraph] = ACTIONS(5423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHitem] = ACTIONS(5423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [anon_sym_RBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), + [450] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(5425), - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_BSLASHpart] = ACTIONS(5427), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddpart] = ACTIONS(5427), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHchapter] = ACTIONS(5427), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddchap] = ACTIONS(5427), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsection] = ACTIONS(5427), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddsec] = ACTIONS(5427), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHparagraph] = ACTIONS(5427), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5427), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHitem] = ACTIONS(5427), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [anon_sym_RBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [451] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(5429), - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_BSLASHpart] = ACTIONS(5431), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddpart] = ACTIONS(5431), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHchapter] = ACTIONS(5431), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddchap] = ACTIONS(5431), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsection] = ACTIONS(5431), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddsec] = ACTIONS(5431), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHparagraph] = ACTIONS(5431), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHitem] = ACTIONS(5431), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [anon_sym_RBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), + [452] = { + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(539), + [aux_sym__section_repeat1] = STATE(539), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(5433), - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASHpart] = ACTIONS(5435), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddpart] = ACTIONS(5435), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHchapter] = ACTIONS(5435), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddchap] = ACTIONS(5435), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsection] = ACTIONS(5435), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddsec] = ACTIONS(5435), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHparagraph] = ACTIONS(5435), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5435), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHitem] = ACTIONS(5435), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [anon_sym_RBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), + [453] = { + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(540), + [aux_sym__section_repeat2] = STATE(540), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(5437), - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_BSLASHpart] = ACTIONS(5439), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddpart] = ACTIONS(5439), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHchapter] = ACTIONS(5439), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddchap] = ACTIONS(5439), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsection] = ACTIONS(5439), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddsec] = ACTIONS(5439), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHparagraph] = ACTIONS(5439), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5439), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHitem] = ACTIONS(5439), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [anon_sym_RBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), + [454] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [455] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [456] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [457] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [458] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [459] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [460] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(2073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), + }, + [461] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), + }, + [462] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(2097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(2097), + [sym_placeholder] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym__] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2095), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(2097), + [anon_sym_BSLASHauthor] = ACTIONS(2097), + [anon_sym_BSLASHusepackage] = ACTIONS(2097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2097), + [anon_sym_BSLASHinclude] = ACTIONS(2097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2097), + [anon_sym_BSLASHinput] = ACTIONS(2097), + [anon_sym_BSLASHsubfile] = ACTIONS(2097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [anon_sym_BSLASHbibliography] = ACTIONS(2097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2097), + [anon_sym_BSLASHincludesvg] = ACTIONS(2097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2097), + [anon_sym_BSLASHimport] = ACTIONS(2097), + [anon_sym_BSLASHsubimport] = ACTIONS(2097), + [anon_sym_BSLASHinputfrom] = ACTIONS(2097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2097), + [anon_sym_BSLASHincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHcaption] = ACTIONS(2097), + [anon_sym_BSLASHcite] = ACTIONS(2097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCite] = ACTIONS(2097), + [anon_sym_BSLASHnocite] = ACTIONS(2097), + [anon_sym_BSLASHcitet] = ACTIONS(2097), + [anon_sym_BSLASHcitep] = ACTIONS(2097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteauthor] = ACTIONS(2097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitetitle] = ACTIONS(2097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteyear] = ACTIONS(2097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitedate] = ACTIONS(2097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteurl] = ACTIONS(2097), + [anon_sym_BSLASHfullcite] = ACTIONS(2097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2097), + [anon_sym_BSLASHcitealt] = ACTIONS(2097), + [anon_sym_BSLASHcitealp] = ACTIONS(2097), + [anon_sym_BSLASHcitetext] = ACTIONS(2097), + [anon_sym_BSLASHparencite] = ACTIONS(2097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHParencite] = ACTIONS(2097), + [anon_sym_BSLASHfootcite] = ACTIONS(2097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2097), + [anon_sym_BSLASHtextcite] = ACTIONS(2097), + [anon_sym_BSLASHTextcite] = ACTIONS(2097), + [anon_sym_BSLASHsmartcite] = ACTIONS(2097), + [anon_sym_BSLASHSmartcite] = ACTIONS(2097), + [anon_sym_BSLASHsupercite] = ACTIONS(2097), + [anon_sym_BSLASHautocite] = ACTIONS(2097), + [anon_sym_BSLASHAutocite] = ACTIONS(2097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHvolcite] = ACTIONS(2097), + [anon_sym_BSLASHVolcite] = ACTIONS(2097), + [anon_sym_BSLASHpvolcite] = ACTIONS(2097), + [anon_sym_BSLASHPvolcite] = ACTIONS(2097), + [anon_sym_BSLASHfvolcite] = ACTIONS(2097), + [anon_sym_BSLASHftvolcite] = ACTIONS(2097), + [anon_sym_BSLASHsvolcite] = ACTIONS(2097), + [anon_sym_BSLASHSvolcite] = ACTIONS(2097), + [anon_sym_BSLASHtvolcite] = ACTIONS(2097), + [anon_sym_BSLASHTvolcite] = ACTIONS(2097), + [anon_sym_BSLASHavolcite] = ACTIONS(2097), + [anon_sym_BSLASHAvolcite] = ACTIONS(2097), + [anon_sym_BSLASHnotecite] = ACTIONS(2097), + [anon_sym_BSLASHNotecite] = ACTIONS(2097), + [anon_sym_BSLASHpnotecite] = ACTIONS(2097), + [anon_sym_BSLASHPnotecite] = ACTIONS(2097), + [anon_sym_BSLASHfnotecite] = ACTIONS(2097), + [anon_sym_BSLASHlabel] = ACTIONS(2097), + [anon_sym_BSLASHref] = ACTIONS(2097), + [anon_sym_BSLASHeqref] = ACTIONS(2097), + [anon_sym_BSLASHvref] = ACTIONS(2097), + [anon_sym_BSLASHVref] = ACTIONS(2097), + [anon_sym_BSLASHautoref] = ACTIONS(2097), + [anon_sym_BSLASHpageref] = ACTIONS(2097), + [anon_sym_BSLASHcref] = ACTIONS(2097), + [anon_sym_BSLASHCref] = ACTIONS(2097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnameCref] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHlabelcref] = ACTIONS(2097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdef] = ACTIONS(2097), + [anon_sym_BSLASHlet] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2097), + [anon_sym_BSLASHgls] = ACTIONS(2097), + [anon_sym_BSLASHGls] = ACTIONS(2097), + [anon_sym_BSLASHGLS] = ACTIONS(2097), + [anon_sym_BSLASHglspl] = ACTIONS(2097), + [anon_sym_BSLASHGlspl] = ACTIONS(2097), + [anon_sym_BSLASHGLSpl] = ACTIONS(2097), + [anon_sym_BSLASHglsdisp] = ACTIONS(2097), + [anon_sym_BSLASHglslink] = ACTIONS(2097), + [anon_sym_BSLASHglstext] = ACTIONS(2097), + [anon_sym_BSLASHGlstext] = ACTIONS(2097), + [anon_sym_BSLASHGLStext] = ACTIONS(2097), + [anon_sym_BSLASHglsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2097), + [anon_sym_BSLASHglsplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSplural] = ACTIONS(2097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHglsname] = ACTIONS(2097), + [anon_sym_BSLASHGlsname] = ACTIONS(2097), + [anon_sym_BSLASHGLSname] = ACTIONS(2097), + [anon_sym_BSLASHglssymbol] = ACTIONS(2097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2097), + [anon_sym_BSLASHglsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2097), + [anon_sym_BSLASHglsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2097), + [anon_sym_BSLASHglsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2097), + [anon_sym_BSLASHglsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2097), + [anon_sym_BSLASHglsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2097), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2097), + [anon_sym_BSLASHAcrshort] = ACTIONS(2097), + [anon_sym_BSLASHACRshort] = ACTIONS(2097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2097), + [anon_sym_BSLASHacrlong] = ACTIONS(2097), + [anon_sym_BSLASHAcrlong] = ACTIONS(2097), + [anon_sym_BSLASHACRlong] = ACTIONS(2097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2097), + [anon_sym_BSLASHacrfull] = ACTIONS(2097), + [anon_sym_BSLASHAcrfull] = ACTIONS(2097), + [anon_sym_BSLASHACRfull] = ACTIONS(2097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2097), + [anon_sym_BSLASHacs] = ACTIONS(2097), + [anon_sym_BSLASHAcs] = ACTIONS(2097), + [anon_sym_BSLASHacsp] = ACTIONS(2097), + [anon_sym_BSLASHAcsp] = ACTIONS(2097), + [anon_sym_BSLASHacl] = ACTIONS(2097), + [anon_sym_BSLASHAcl] = ACTIONS(2097), + [anon_sym_BSLASHaclp] = ACTIONS(2097), + [anon_sym_BSLASHAclp] = ACTIONS(2097), + [anon_sym_BSLASHacf] = ACTIONS(2097), + [anon_sym_BSLASHAcf] = ACTIONS(2097), + [anon_sym_BSLASHacfp] = ACTIONS(2097), + [anon_sym_BSLASHAcfp] = ACTIONS(2097), + [anon_sym_BSLASHac] = ACTIONS(2097), + [anon_sym_BSLASHAc] = ACTIONS(2097), + [anon_sym_BSLASHacp] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2097), + [anon_sym_BSLASHcolor] = ACTIONS(2097), + [anon_sym_BSLASHcolorbox] = ACTIONS(2097), + [anon_sym_BSLASHtextcolor] = ACTIONS(2097), + [anon_sym_BSLASHpagecolor] = ACTIONS(2097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2097), + [anon_sym_BSLASHtext] = ACTIONS(2097), + [anon_sym_BSLASHintertext] = ACTIONS(2097), + [anon_sym_shortintertext] = ACTIONS(2097), + }, + [463] = { + [sym__part_declaration] = STATE(136), + [sym_part] = STATE(463), + [aux_sym__section_repeat1] = STATE(463), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5359), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHaddpart] = ACTIONS(5359), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5362), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHtitle] = ACTIONS(5293), + [anon_sym_BSLASHauthor] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [464] = { + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(464), + [aux_sym__section_repeat2] = STATE(464), + [sym_command_name] = ACTIONS(5283), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5283), + [anon_sym_LPAREN] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_BSLASHpart] = ACTIONS(5283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddpart] = ACTIONS(5283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHchapter] = ACTIONS(5365), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5368), + [anon_sym_BSLASHaddchap] = ACTIONS(5365), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5368), + [anon_sym_BSLASHsection] = ACTIONS(5283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddsec] = ACTIONS(5283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHparagraph] = ACTIONS(5283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHitem] = ACTIONS(5283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(5281), + [sym_word] = ACTIONS(5283), + [sym_placeholder] = ACTIONS(5281), + [anon_sym_PLUS] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_SLASH] = ACTIONS(5283), + [anon_sym_CARET] = ACTIONS(5283), + [anon_sym__] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(5283), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym_BANG] = ACTIONS(5283), + [anon_sym_PIPE] = ACTIONS(5283), + [anon_sym_COLON] = ACTIONS(5283), + [anon_sym_SQUOTE] = ACTIONS(5283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), + [anon_sym_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5281), + [anon_sym_BSLASHbegin] = ACTIONS(5283), + [anon_sym_BSLASHtitle] = ACTIONS(5283), + [anon_sym_BSLASHauthor] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), + [anon_sym_BSLASHinclude] = ACTIONS(5283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), + [anon_sym_BSLASHinput] = ACTIONS(5283), + [anon_sym_BSLASHsubfile] = ACTIONS(5283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), + [anon_sym_BSLASHbibliography] = ACTIONS(5283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), + [anon_sym_BSLASHincludesvg] = ACTIONS(5283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), + [anon_sym_BSLASHimport] = ACTIONS(5283), + [anon_sym_BSLASHsubimport] = ACTIONS(5283), + [anon_sym_BSLASHinputfrom] = ACTIONS(5283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), + [anon_sym_BSLASHincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHcaption] = ACTIONS(5283), + [anon_sym_BSLASHcite] = ACTIONS(5283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCite] = ACTIONS(5283), + [anon_sym_BSLASHnocite] = ACTIONS(5283), + [anon_sym_BSLASHcitet] = ACTIONS(5283), + [anon_sym_BSLASHcitep] = ACTIONS(5283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteyear] = ACTIONS(5283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitedate] = ACTIONS(5283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteurl] = ACTIONS(5283), + [anon_sym_BSLASHfullcite] = ACTIONS(5283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), + [anon_sym_BSLASHcitealt] = ACTIONS(5283), + [anon_sym_BSLASHcitealp] = ACTIONS(5283), + [anon_sym_BSLASHcitetext] = ACTIONS(5283), + [anon_sym_BSLASHparencite] = ACTIONS(5283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHParencite] = ACTIONS(5283), + [anon_sym_BSLASHfootcite] = ACTIONS(5283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), + [anon_sym_BSLASHtextcite] = ACTIONS(5283), + [anon_sym_BSLASHTextcite] = ACTIONS(5283), + [anon_sym_BSLASHsmartcite] = ACTIONS(5283), + [anon_sym_BSLASHSmartcite] = ACTIONS(5283), + [anon_sym_BSLASHsupercite] = ACTIONS(5283), + [anon_sym_BSLASHautocite] = ACTIONS(5283), + [anon_sym_BSLASHAutocite] = ACTIONS(5283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHvolcite] = ACTIONS(5283), + [anon_sym_BSLASHVolcite] = ACTIONS(5283), + [anon_sym_BSLASHpvolcite] = ACTIONS(5283), + [anon_sym_BSLASHPvolcite] = ACTIONS(5283), + [anon_sym_BSLASHfvolcite] = ACTIONS(5283), + [anon_sym_BSLASHftvolcite] = ACTIONS(5283), + [anon_sym_BSLASHsvolcite] = ACTIONS(5283), + [anon_sym_BSLASHSvolcite] = ACTIONS(5283), + [anon_sym_BSLASHtvolcite] = ACTIONS(5283), + [anon_sym_BSLASHTvolcite] = ACTIONS(5283), + [anon_sym_BSLASHavolcite] = ACTIONS(5283), + [anon_sym_BSLASHAvolcite] = ACTIONS(5283), + [anon_sym_BSLASHnotecite] = ACTIONS(5283), + [anon_sym_BSLASHNotecite] = ACTIONS(5283), + [anon_sym_BSLASHpnotecite] = ACTIONS(5283), + [anon_sym_BSLASHPnotecite] = ACTIONS(5283), + [anon_sym_BSLASHfnotecite] = ACTIONS(5283), + [anon_sym_BSLASHlabel] = ACTIONS(5283), + [anon_sym_BSLASHref] = ACTIONS(5283), + [anon_sym_BSLASHeqref] = ACTIONS(5283), + [anon_sym_BSLASHvref] = ACTIONS(5283), + [anon_sym_BSLASHVref] = ACTIONS(5283), + [anon_sym_BSLASHautoref] = ACTIONS(5283), + [anon_sym_BSLASHpageref] = ACTIONS(5283), + [anon_sym_BSLASHcref] = ACTIONS(5283), + [anon_sym_BSLASHCref] = ACTIONS(5283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnameCref] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHlabelcref] = ACTIONS(5283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnewlabel] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdef] = ACTIONS(5283), + [anon_sym_BSLASHlet] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5283), + [anon_sym_BSLASHacrshort] = ACTIONS(5283), + [anon_sym_BSLASHAcrshort] = ACTIONS(5283), + [anon_sym_BSLASHACRshort] = ACTIONS(5283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), + [anon_sym_BSLASHacrlong] = ACTIONS(5283), + [anon_sym_BSLASHAcrlong] = ACTIONS(5283), + [anon_sym_BSLASHACRlong] = ACTIONS(5283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), + [anon_sym_BSLASHacrfull] = ACTIONS(5283), + [anon_sym_BSLASHAcrfull] = ACTIONS(5283), + [anon_sym_BSLASHACRfull] = ACTIONS(5283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), + [anon_sym_BSLASHacs] = ACTIONS(5283), + [anon_sym_BSLASHAcs] = ACTIONS(5283), + [anon_sym_BSLASHacsp] = ACTIONS(5283), + [anon_sym_BSLASHAcsp] = ACTIONS(5283), + [anon_sym_BSLASHacl] = ACTIONS(5283), + [anon_sym_BSLASHAcl] = ACTIONS(5283), + [anon_sym_BSLASHaclp] = ACTIONS(5283), + [anon_sym_BSLASHAclp] = ACTIONS(5283), + [anon_sym_BSLASHacf] = ACTIONS(5283), + [anon_sym_BSLASHAcf] = ACTIONS(5283), + [anon_sym_BSLASHacfp] = ACTIONS(5283), + [anon_sym_BSLASHAcfp] = ACTIONS(5283), + [anon_sym_BSLASHac] = ACTIONS(5283), + [anon_sym_BSLASHAc] = ACTIONS(5283), + [anon_sym_BSLASHacp] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), + [anon_sym_BSLASHcolor] = ACTIONS(5283), + [anon_sym_BSLASHcolorbox] = ACTIONS(5283), + [anon_sym_BSLASHtextcolor] = ACTIONS(5283), + [anon_sym_BSLASHpagecolor] = ACTIONS(5283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHtext] = ACTIONS(5283), + [anon_sym_BSLASHintertext] = ACTIONS(5283), + [anon_sym_shortintertext] = ACTIONS(5283), + }, + [465] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5371), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5374), + [anon_sym_BSLASHaddsec] = ACTIONS(5371), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5374), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHtitle] = ACTIONS(5273), + [anon_sym_BSLASHauthor] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(5441), - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASHpart] = ACTIONS(5443), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddpart] = ACTIONS(5443), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHchapter] = ACTIONS(5443), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddchap] = ACTIONS(5443), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsection] = ACTIONS(5443), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddsec] = ACTIONS(5443), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHparagraph] = ACTIONS(5443), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5443), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHitem] = ACTIONS(5443), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [anon_sym_RBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), + [466] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(5263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5263), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_BSLASHpart] = ACTIONS(5263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddpart] = ACTIONS(5263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHchapter] = ACTIONS(5263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddchap] = ACTIONS(5263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsection] = ACTIONS(5263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddsec] = ACTIONS(5263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubsection] = ACTIONS(5377), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5380), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHparagraph] = ACTIONS(5263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHitem] = ACTIONS(5263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), + [anon_sym_LBRACE] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [sym_placeholder] = ACTIONS(5261), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5263), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5263), + [anon_sym__] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_BANG] = ACTIONS(5263), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_SQUOTE] = ACTIONS(5263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), + [anon_sym_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5261), + [anon_sym_BSLASHbegin] = ACTIONS(5263), + [anon_sym_BSLASHtitle] = ACTIONS(5263), + [anon_sym_BSLASHauthor] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), + [anon_sym_BSLASHinclude] = ACTIONS(5263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), + [anon_sym_BSLASHinput] = ACTIONS(5263), + [anon_sym_BSLASHsubfile] = ACTIONS(5263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), + [anon_sym_BSLASHbibliography] = ACTIONS(5263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), + [anon_sym_BSLASHincludesvg] = ACTIONS(5263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), + [anon_sym_BSLASHimport] = ACTIONS(5263), + [anon_sym_BSLASHsubimport] = ACTIONS(5263), + [anon_sym_BSLASHinputfrom] = ACTIONS(5263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), + [anon_sym_BSLASHincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHcaption] = ACTIONS(5263), + [anon_sym_BSLASHcite] = ACTIONS(5263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCite] = ACTIONS(5263), + [anon_sym_BSLASHnocite] = ACTIONS(5263), + [anon_sym_BSLASHcitet] = ACTIONS(5263), + [anon_sym_BSLASHcitep] = ACTIONS(5263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteyear] = ACTIONS(5263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitedate] = ACTIONS(5263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteurl] = ACTIONS(5263), + [anon_sym_BSLASHfullcite] = ACTIONS(5263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), + [anon_sym_BSLASHcitealt] = ACTIONS(5263), + [anon_sym_BSLASHcitealp] = ACTIONS(5263), + [anon_sym_BSLASHcitetext] = ACTIONS(5263), + [anon_sym_BSLASHparencite] = ACTIONS(5263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHParencite] = ACTIONS(5263), + [anon_sym_BSLASHfootcite] = ACTIONS(5263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), + [anon_sym_BSLASHtextcite] = ACTIONS(5263), + [anon_sym_BSLASHTextcite] = ACTIONS(5263), + [anon_sym_BSLASHsmartcite] = ACTIONS(5263), + [anon_sym_BSLASHSmartcite] = ACTIONS(5263), + [anon_sym_BSLASHsupercite] = ACTIONS(5263), + [anon_sym_BSLASHautocite] = ACTIONS(5263), + [anon_sym_BSLASHAutocite] = ACTIONS(5263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHvolcite] = ACTIONS(5263), + [anon_sym_BSLASHVolcite] = ACTIONS(5263), + [anon_sym_BSLASHpvolcite] = ACTIONS(5263), + [anon_sym_BSLASHPvolcite] = ACTIONS(5263), + [anon_sym_BSLASHfvolcite] = ACTIONS(5263), + [anon_sym_BSLASHftvolcite] = ACTIONS(5263), + [anon_sym_BSLASHsvolcite] = ACTIONS(5263), + [anon_sym_BSLASHSvolcite] = ACTIONS(5263), + [anon_sym_BSLASHtvolcite] = ACTIONS(5263), + [anon_sym_BSLASHTvolcite] = ACTIONS(5263), + [anon_sym_BSLASHavolcite] = ACTIONS(5263), + [anon_sym_BSLASHAvolcite] = ACTIONS(5263), + [anon_sym_BSLASHnotecite] = ACTIONS(5263), + [anon_sym_BSLASHNotecite] = ACTIONS(5263), + [anon_sym_BSLASHpnotecite] = ACTIONS(5263), + [anon_sym_BSLASHPnotecite] = ACTIONS(5263), + [anon_sym_BSLASHfnotecite] = ACTIONS(5263), + [anon_sym_BSLASHlabel] = ACTIONS(5263), + [anon_sym_BSLASHref] = ACTIONS(5263), + [anon_sym_BSLASHeqref] = ACTIONS(5263), + [anon_sym_BSLASHvref] = ACTIONS(5263), + [anon_sym_BSLASHVref] = ACTIONS(5263), + [anon_sym_BSLASHautoref] = ACTIONS(5263), + [anon_sym_BSLASHpageref] = ACTIONS(5263), + [anon_sym_BSLASHcref] = ACTIONS(5263), + [anon_sym_BSLASHCref] = ACTIONS(5263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnameCref] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHlabelcref] = ACTIONS(5263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnewlabel] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdef] = ACTIONS(5263), + [anon_sym_BSLASHlet] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), + [anon_sym_BSLASHgls] = ACTIONS(5263), + [anon_sym_BSLASHGls] = ACTIONS(5263), + [anon_sym_BSLASHGLS] = ACTIONS(5263), + [anon_sym_BSLASHglspl] = ACTIONS(5263), + [anon_sym_BSLASHGlspl] = ACTIONS(5263), + [anon_sym_BSLASHGLSpl] = ACTIONS(5263), + [anon_sym_BSLASHglsdisp] = ACTIONS(5263), + [anon_sym_BSLASHglslink] = ACTIONS(5263), + [anon_sym_BSLASHglstext] = ACTIONS(5263), + [anon_sym_BSLASHGlstext] = ACTIONS(5263), + [anon_sym_BSLASHGLStext] = ACTIONS(5263), + [anon_sym_BSLASHglsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), + [anon_sym_BSLASHglsplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSplural] = ACTIONS(5263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHglsname] = ACTIONS(5263), + [anon_sym_BSLASHGlsname] = ACTIONS(5263), + [anon_sym_BSLASHGLSname] = ACTIONS(5263), + [anon_sym_BSLASHglssymbol] = ACTIONS(5263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), + [anon_sym_BSLASHglsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), + [anon_sym_BSLASHglsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), + [anon_sym_BSLASHglsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), + [anon_sym_BSLASHglsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), + [anon_sym_BSLASHglsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), + [anon_sym_BSLASHnewacronym] = ACTIONS(5263), + [anon_sym_BSLASHacrshort] = ACTIONS(5263), + [anon_sym_BSLASHAcrshort] = ACTIONS(5263), + [anon_sym_BSLASHACRshort] = ACTIONS(5263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), + [anon_sym_BSLASHacrlong] = ACTIONS(5263), + [anon_sym_BSLASHAcrlong] = ACTIONS(5263), + [anon_sym_BSLASHACRlong] = ACTIONS(5263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), + [anon_sym_BSLASHacrfull] = ACTIONS(5263), + [anon_sym_BSLASHAcrfull] = ACTIONS(5263), + [anon_sym_BSLASHACRfull] = ACTIONS(5263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), + [anon_sym_BSLASHacs] = ACTIONS(5263), + [anon_sym_BSLASHAcs] = ACTIONS(5263), + [anon_sym_BSLASHacsp] = ACTIONS(5263), + [anon_sym_BSLASHAcsp] = ACTIONS(5263), + [anon_sym_BSLASHacl] = ACTIONS(5263), + [anon_sym_BSLASHAcl] = ACTIONS(5263), + [anon_sym_BSLASHaclp] = ACTIONS(5263), + [anon_sym_BSLASHAclp] = ACTIONS(5263), + [anon_sym_BSLASHacf] = ACTIONS(5263), + [anon_sym_BSLASHAcf] = ACTIONS(5263), + [anon_sym_BSLASHacfp] = ACTIONS(5263), + [anon_sym_BSLASHAcfp] = ACTIONS(5263), + [anon_sym_BSLASHac] = ACTIONS(5263), + [anon_sym_BSLASHAc] = ACTIONS(5263), + [anon_sym_BSLASHacp] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), + [anon_sym_BSLASHcolor] = ACTIONS(5263), + [anon_sym_BSLASHcolorbox] = ACTIONS(5263), + [anon_sym_BSLASHtextcolor] = ACTIONS(5263), + [anon_sym_BSLASHpagecolor] = ACTIONS(5263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [anon_sym_BSLASHtext] = ACTIONS(5263), + [anon_sym_BSLASHintertext] = ACTIONS(5263), + [anon_sym_shortintertext] = ACTIONS(5263), }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(5445), - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_BSLASHpart] = ACTIONS(5447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddpart] = ACTIONS(5447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHchapter] = ACTIONS(5447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddchap] = ACTIONS(5447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsection] = ACTIONS(5447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddsec] = ACTIONS(5447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHparagraph] = ACTIONS(5447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHitem] = ACTIONS(5447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), + [467] = { + [sym_curly_group] = STATE(1063), + [sym_mixed_group] = STATE(1063), + [aux_sym_generic_command_repeat1] = STATE(467), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(5383), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_BSLASHpart] = ACTIONS(5239), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddpart] = ACTIONS(5239), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHchapter] = ACTIONS(5239), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddchap] = ACTIONS(5239), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsection] = ACTIONS(5239), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddsec] = ACTIONS(5239), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHparagraph] = ACTIONS(5239), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHitem] = ACTIONS(5239), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(5386), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(5449), - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASHpart] = ACTIONS(5451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddpart] = ACTIONS(5451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHchapter] = ACTIONS(5451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddchap] = ACTIONS(5451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsection] = ACTIONS(5451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddsec] = ACTIONS(5451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHparagraph] = ACTIONS(5451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHitem] = ACTIONS(5451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), + [468] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(5327), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5327), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5327), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5327), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5327), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5389), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5392), + [anon_sym_BSLASHparagraph] = ACTIONS(5327), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5327), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5327), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_STAR] = ACTIONS(5327), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_CARET] = ACTIONS(5327), + [anon_sym__] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_BANG] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_SQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5327), + [anon_sym_BSLASHtitle] = ACTIONS(5327), + [anon_sym_BSLASHauthor] = ACTIONS(5327), + [anon_sym_BSLASHusepackage] = ACTIONS(5327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), + [anon_sym_BSLASHinclude] = ACTIONS(5327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), + [anon_sym_BSLASHinput] = ACTIONS(5327), + [anon_sym_BSLASHsubfile] = ACTIONS(5327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [anon_sym_BSLASHbibliography] = ACTIONS(5327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), + [anon_sym_BSLASHincludesvg] = ACTIONS(5327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), + [anon_sym_BSLASHimport] = ACTIONS(5327), + [anon_sym_BSLASHsubimport] = ACTIONS(5327), + [anon_sym_BSLASHinputfrom] = ACTIONS(5327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), + [anon_sym_BSLASHincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHcaption] = ACTIONS(5327), + [anon_sym_BSLASHcite] = ACTIONS(5327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5327), + [anon_sym_BSLASHnocite] = ACTIONS(5327), + [anon_sym_BSLASHcitet] = ACTIONS(5327), + [anon_sym_BSLASHcitep] = ACTIONS(5327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5327), + [anon_sym_BSLASHfullcite] = ACTIONS(5327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), + [anon_sym_BSLASHcitealt] = ACTIONS(5327), + [anon_sym_BSLASHcitealp] = ACTIONS(5327), + [anon_sym_BSLASHcitetext] = ACTIONS(5327), + [anon_sym_BSLASHparencite] = ACTIONS(5327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5327), + [anon_sym_BSLASHfootcite] = ACTIONS(5327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), + [anon_sym_BSLASHtextcite] = ACTIONS(5327), + [anon_sym_BSLASHTextcite] = ACTIONS(5327), + [anon_sym_BSLASHsmartcite] = ACTIONS(5327), + [anon_sym_BSLASHSmartcite] = ACTIONS(5327), + [anon_sym_BSLASHsupercite] = ACTIONS(5327), + [anon_sym_BSLASHautocite] = ACTIONS(5327), + [anon_sym_BSLASHAutocite] = ACTIONS(5327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5327), + [anon_sym_BSLASHVolcite] = ACTIONS(5327), + [anon_sym_BSLASHpvolcite] = ACTIONS(5327), + [anon_sym_BSLASHPvolcite] = ACTIONS(5327), + [anon_sym_BSLASHfvolcite] = ACTIONS(5327), + [anon_sym_BSLASHftvolcite] = ACTIONS(5327), + [anon_sym_BSLASHsvolcite] = ACTIONS(5327), + [anon_sym_BSLASHSvolcite] = ACTIONS(5327), + [anon_sym_BSLASHtvolcite] = ACTIONS(5327), + [anon_sym_BSLASHTvolcite] = ACTIONS(5327), + [anon_sym_BSLASHavolcite] = ACTIONS(5327), + [anon_sym_BSLASHAvolcite] = ACTIONS(5327), + [anon_sym_BSLASHnotecite] = ACTIONS(5327), + [anon_sym_BSLASHNotecite] = ACTIONS(5327), + [anon_sym_BSLASHpnotecite] = ACTIONS(5327), + [anon_sym_BSLASHPnotecite] = ACTIONS(5327), + [anon_sym_BSLASHfnotecite] = ACTIONS(5327), + [anon_sym_BSLASHlabel] = ACTIONS(5327), + [anon_sym_BSLASHref] = ACTIONS(5327), + [anon_sym_BSLASHeqref] = ACTIONS(5327), + [anon_sym_BSLASHvref] = ACTIONS(5327), + [anon_sym_BSLASHVref] = ACTIONS(5327), + [anon_sym_BSLASHautoref] = ACTIONS(5327), + [anon_sym_BSLASHpageref] = ACTIONS(5327), + [anon_sym_BSLASHcref] = ACTIONS(5327), + [anon_sym_BSLASHCref] = ACTIONS(5327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnameCref] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHlabelcref] = ACTIONS(5327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5327), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5327), + [anon_sym_BSLASHlet] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), + [anon_sym_BSLASHgls] = ACTIONS(5327), + [anon_sym_BSLASHGls] = ACTIONS(5327), + [anon_sym_BSLASHGLS] = ACTIONS(5327), + [anon_sym_BSLASHglspl] = ACTIONS(5327), + [anon_sym_BSLASHGlspl] = ACTIONS(5327), + [anon_sym_BSLASHGLSpl] = ACTIONS(5327), + [anon_sym_BSLASHglsdisp] = ACTIONS(5327), + [anon_sym_BSLASHglslink] = ACTIONS(5327), + [anon_sym_BSLASHglstext] = ACTIONS(5327), + [anon_sym_BSLASHGlstext] = ACTIONS(5327), + [anon_sym_BSLASHGLStext] = ACTIONS(5327), + [anon_sym_BSLASHglsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), + [anon_sym_BSLASHglsplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSplural] = ACTIONS(5327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHglsname] = ACTIONS(5327), + [anon_sym_BSLASHGlsname] = ACTIONS(5327), + [anon_sym_BSLASHGLSname] = ACTIONS(5327), + [anon_sym_BSLASHglssymbol] = ACTIONS(5327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), + [anon_sym_BSLASHglsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), + [anon_sym_BSLASHglsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), + [anon_sym_BSLASHglsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), + [anon_sym_BSLASHglsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), + [anon_sym_BSLASHglsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), + [anon_sym_BSLASHnewacronym] = ACTIONS(5327), + [anon_sym_BSLASHacrshort] = ACTIONS(5327), + [anon_sym_BSLASHAcrshort] = ACTIONS(5327), + [anon_sym_BSLASHACRshort] = ACTIONS(5327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), + [anon_sym_BSLASHacrlong] = ACTIONS(5327), + [anon_sym_BSLASHAcrlong] = ACTIONS(5327), + [anon_sym_BSLASHACRlong] = ACTIONS(5327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), + [anon_sym_BSLASHacrfull] = ACTIONS(5327), + [anon_sym_BSLASHAcrfull] = ACTIONS(5327), + [anon_sym_BSLASHACRfull] = ACTIONS(5327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), + [anon_sym_BSLASHacs] = ACTIONS(5327), + [anon_sym_BSLASHAcs] = ACTIONS(5327), + [anon_sym_BSLASHacsp] = ACTIONS(5327), + [anon_sym_BSLASHAcsp] = ACTIONS(5327), + [anon_sym_BSLASHacl] = ACTIONS(5327), + [anon_sym_BSLASHAcl] = ACTIONS(5327), + [anon_sym_BSLASHaclp] = ACTIONS(5327), + [anon_sym_BSLASHAclp] = ACTIONS(5327), + [anon_sym_BSLASHacf] = ACTIONS(5327), + [anon_sym_BSLASHAcf] = ACTIONS(5327), + [anon_sym_BSLASHacfp] = ACTIONS(5327), + [anon_sym_BSLASHAcfp] = ACTIONS(5327), + [anon_sym_BSLASHac] = ACTIONS(5327), + [anon_sym_BSLASHAc] = ACTIONS(5327), + [anon_sym_BSLASHacp] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), + [anon_sym_BSLASHcolor] = ACTIONS(5327), + [anon_sym_BSLASHcolorbox] = ACTIONS(5327), + [anon_sym_BSLASHtextcolor] = ACTIONS(5327), + [anon_sym_BSLASHpagecolor] = ACTIONS(5327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [anon_sym_BSLASHtext] = ACTIONS(5327), + [anon_sym_BSLASHintertext] = ACTIONS(5327), + [anon_sym_shortintertext] = ACTIONS(5327), }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(5453), - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_BSLASHpart] = ACTIONS(5455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddpart] = ACTIONS(5455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHchapter] = ACTIONS(5455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddchap] = ACTIONS(5455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsection] = ACTIONS(5455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddsec] = ACTIONS(5455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHparagraph] = ACTIONS(5455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHitem] = ACTIONS(5455), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [anon_sym_RBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), + [469] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHend] = ACTIONS(5249), + [anon_sym_BSLASHtitle] = ACTIONS(5249), + [anon_sym_BSLASHauthor] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(5457), - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_BSLASHpart] = ACTIONS(5459), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddpart] = ACTIONS(5459), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHchapter] = ACTIONS(5459), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddchap] = ACTIONS(5459), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsection] = ACTIONS(5459), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddsec] = ACTIONS(5459), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHparagraph] = ACTIONS(5459), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5459), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHitem] = ACTIONS(5459), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), + [470] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHend] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(5461), - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_BSLASHpart] = ACTIONS(5463), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddpart] = ACTIONS(5463), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHchapter] = ACTIONS(5463), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddchap] = ACTIONS(5463), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsection] = ACTIONS(5463), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddsec] = ACTIONS(5463), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHparagraph] = ACTIONS(5463), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5463), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHitem] = ACTIONS(5463), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [anon_sym_RBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), + [471] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHend] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(5465), - [sym_command_name] = ACTIONS(5467), + [472] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5341), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_BSLASHpart] = ACTIONS(5467), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddpart] = ACTIONS(5467), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHchapter] = ACTIONS(5467), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddchap] = ACTIONS(5467), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsection] = ACTIONS(5467), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddsec] = ACTIONS(5467), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHparagraph] = ACTIONS(5467), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5467), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHitem] = ACTIONS(5467), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [anon_sym_RBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), - }, - [814] = { - [ts_builtin_sym_end] = ACTIONS(5469), - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_BSLASHpart] = ACTIONS(5471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddpart] = ACTIONS(5471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHchapter] = ACTIONS(5471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddchap] = ACTIONS(5471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsection] = ACTIONS(5471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddsec] = ACTIONS(5471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHparagraph] = ACTIONS(5471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHitem] = ACTIONS(5471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), - }, - [815] = { - [ts_builtin_sym_end] = ACTIONS(5473), - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_BSLASHpart] = ACTIONS(5475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddpart] = ACTIONS(5475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHchapter] = ACTIONS(5475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddchap] = ACTIONS(5475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsection] = ACTIONS(5475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddsec] = ACTIONS(5475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHparagraph] = ACTIONS(5475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHitem] = ACTIONS(5475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [anon_sym_RBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), - }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(5477), - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASHpart] = ACTIONS(5479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddpart] = ACTIONS(5479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHchapter] = ACTIONS(5479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddchap] = ACTIONS(5479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsection] = ACTIONS(5479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddsec] = ACTIONS(5479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHparagraph] = ACTIONS(5479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHitem] = ACTIONS(5479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [anon_sym_RBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), - }, - [817] = { - [sym_curly_group] = STATE(858), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), - }, - [818] = { - [sym_brack_group_text] = STATE(863), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5367), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), - }, - [819] = { - [sym_curly_group] = STATE(867), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_BSLASHpart] = ACTIONS(5023), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddpart] = ACTIONS(5023), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5021), - [anon_sym_BSLASHchapter] = ACTIONS(5023), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddchap] = ACTIONS(5023), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsection] = ACTIONS(5023), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHaddsec] = ACTIONS(5023), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5021), - [anon_sym_BSLASHparagraph] = ACTIONS(5023), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5021), - [anon_sym_BSLASHitem] = ACTIONS(5023), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), - }, - [820] = { - [ts_builtin_sym_end] = ACTIONS(5481), - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASHpart] = ACTIONS(5483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddpart] = ACTIONS(5483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHchapter] = ACTIONS(5483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddchap] = ACTIONS(5483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsection] = ACTIONS(5483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddsec] = ACTIONS(5483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHparagraph] = ACTIONS(5483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHitem] = ACTIONS(5483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_RBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), - }, - [821] = { - [sym_curly_group] = STATE(901), - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - [anon_sym_BSLASHtext] = ACTIONS(4983), - [anon_sym_BSLASHintertext] = ACTIONS(4983), - [anon_sym_shortintertext] = ACTIONS(4983), - }, - [822] = { - [sym_curly_group] = STATE(902), - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - [anon_sym_BSLASHtext] = ACTIONS(4987), - [anon_sym_BSLASHintertext] = ACTIONS(4987), - [anon_sym_shortintertext] = ACTIONS(4987), - }, - [823] = { - [sym_curly_group] = STATE(903), - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), - [anon_sym_BSLASHtext] = ACTIONS(4991), - [anon_sym_BSLASHintertext] = ACTIONS(4991), - [anon_sym_shortintertext] = ACTIONS(4991), - }, - [824] = { - [sym_curly_group] = STATE(904), - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - [anon_sym_BSLASHtext] = ACTIONS(4995), - [anon_sym_BSLASHintertext] = ACTIONS(4995), - [anon_sym_shortintertext] = ACTIONS(4995), - }, - [825] = { - [sym_curly_group] = STATE(905), - [sym_command_name] = ACTIONS(4999), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4999), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - [anon_sym_BSLASHtext] = ACTIONS(4999), - [anon_sym_BSLASHintertext] = ACTIONS(4999), - [anon_sym_shortintertext] = ACTIONS(4999), - }, - [826] = { - [sym_curly_group] = STATE(906), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - [anon_sym_BSLASHtext] = ACTIONS(5003), - [anon_sym_BSLASHintertext] = ACTIONS(5003), - [anon_sym_shortintertext] = ACTIONS(5003), - }, - [827] = { - [sym_curly_group] = STATE(907), - [sym_command_name] = ACTIONS(5019), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_BSLASHpart] = ACTIONS(5019), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddpart] = ACTIONS(5019), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHchapter] = ACTIONS(5019), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddchap] = ACTIONS(5019), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsection] = ACTIONS(5019), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddsec] = ACTIONS(5019), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHparagraph] = ACTIONS(5019), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHitem] = ACTIONS(5019), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(835), - [sym_word] = ACTIONS(5019), - [sym_placeholder] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym__] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5017), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5017), - [anon_sym_BSLASHbegin] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5019), - [anon_sym_BSLASHinclude] = ACTIONS(5019), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5019), - [anon_sym_BSLASHinput] = ACTIONS(5019), - [anon_sym_BSLASHsubfile] = ACTIONS(5019), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5019), - [anon_sym_BSLASHbibliography] = ACTIONS(5019), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5019), - [anon_sym_BSLASHincludesvg] = ACTIONS(5019), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5019), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5019), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5019), - [anon_sym_BSLASHimport] = ACTIONS(5019), - [anon_sym_BSLASHsubimport] = ACTIONS(5019), - [anon_sym_BSLASHinputfrom] = ACTIONS(5019), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5019), - [anon_sym_BSLASHincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHcaption] = ACTIONS(5019), - [anon_sym_BSLASHcite] = ACTIONS(5019), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCite] = ACTIONS(5019), - [anon_sym_BSLASHnocite] = ACTIONS(5019), - [anon_sym_BSLASHcitet] = ACTIONS(5019), - [anon_sym_BSLASHcitep] = ACTIONS(5019), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteyear] = ACTIONS(5019), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitedate] = ACTIONS(5019), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteurl] = ACTIONS(5019), - [anon_sym_BSLASHfullcite] = ACTIONS(5019), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5019), - [anon_sym_BSLASHcitealt] = ACTIONS(5019), - [anon_sym_BSLASHcitealp] = ACTIONS(5019), - [anon_sym_BSLASHcitetext] = ACTIONS(5019), - [anon_sym_BSLASHparencite] = ACTIONS(5019), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHParencite] = ACTIONS(5019), - [anon_sym_BSLASHfootcite] = ACTIONS(5019), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5019), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5019), - [anon_sym_BSLASHtextcite] = ACTIONS(5019), - [anon_sym_BSLASHTextcite] = ACTIONS(5019), - [anon_sym_BSLASHsmartcite] = ACTIONS(5019), - [anon_sym_BSLASHSmartcite] = ACTIONS(5019), - [anon_sym_BSLASHsupercite] = ACTIONS(5019), - [anon_sym_BSLASHautocite] = ACTIONS(5019), - [anon_sym_BSLASHAutocite] = ACTIONS(5019), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHvolcite] = ACTIONS(5019), - [anon_sym_BSLASHVolcite] = ACTIONS(5019), - [anon_sym_BSLASHpvolcite] = ACTIONS(5019), - [anon_sym_BSLASHPvolcite] = ACTIONS(5019), - [anon_sym_BSLASHfvolcite] = ACTIONS(5019), - [anon_sym_BSLASHftvolcite] = ACTIONS(5019), - [anon_sym_BSLASHsvolcite] = ACTIONS(5019), - [anon_sym_BSLASHSvolcite] = ACTIONS(5019), - [anon_sym_BSLASHtvolcite] = ACTIONS(5019), - [anon_sym_BSLASHTvolcite] = ACTIONS(5019), - [anon_sym_BSLASHavolcite] = ACTIONS(5019), - [anon_sym_BSLASHAvolcite] = ACTIONS(5019), - [anon_sym_BSLASHnotecite] = ACTIONS(5019), - [anon_sym_BSLASHNotecite] = ACTIONS(5019), - [anon_sym_BSLASHpnotecite] = ACTIONS(5019), - [anon_sym_BSLASHPnotecite] = ACTIONS(5019), - [anon_sym_BSLASHfnotecite] = ACTIONS(5019), - [anon_sym_BSLASHlabel] = ACTIONS(5019), - [anon_sym_BSLASHref] = ACTIONS(5019), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [anon_sym_BSLASHvref] = ACTIONS(5019), - [anon_sym_BSLASHVref] = ACTIONS(5019), - [anon_sym_BSLASHautoref] = ACTIONS(5019), - [anon_sym_BSLASHpageref] = ACTIONS(5019), - [anon_sym_BSLASHcref] = ACTIONS(5019), - [anon_sym_BSLASHCref] = ACTIONS(5019), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnameCref] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHlabelcref] = ACTIONS(5019), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnewlabel] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdef] = ACTIONS(5019), - [anon_sym_BSLASHlet] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5019), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5019), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5019), - [anon_sym_BSLASHgls] = ACTIONS(5019), - [anon_sym_BSLASHGls] = ACTIONS(5019), - [anon_sym_BSLASHGLS] = ACTIONS(5019), - [anon_sym_BSLASHglspl] = ACTIONS(5019), - [anon_sym_BSLASHGlspl] = ACTIONS(5019), - [anon_sym_BSLASHGLSpl] = ACTIONS(5019), - [anon_sym_BSLASHglsdisp] = ACTIONS(5019), - [anon_sym_BSLASHglslink] = ACTIONS(5019), - [anon_sym_BSLASHglstext] = ACTIONS(5019), - [anon_sym_BSLASHGlstext] = ACTIONS(5019), - [anon_sym_BSLASHGLStext] = ACTIONS(5019), - [anon_sym_BSLASHglsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5019), - [anon_sym_BSLASHglsplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSplural] = ACTIONS(5019), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHglsname] = ACTIONS(5019), - [anon_sym_BSLASHGlsname] = ACTIONS(5019), - [anon_sym_BSLASHGLSname] = ACTIONS(5019), - [anon_sym_BSLASHglssymbol] = ACTIONS(5019), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5019), - [anon_sym_BSLASHglsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5019), - [anon_sym_BSLASHglsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5019), - [anon_sym_BSLASHglsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5019), - [anon_sym_BSLASHglsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5019), - [anon_sym_BSLASHglsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5019), - [anon_sym_BSLASHnewacronym] = ACTIONS(5019), - [anon_sym_BSLASHacrshort] = ACTIONS(5019), - [anon_sym_BSLASHAcrshort] = ACTIONS(5019), - [anon_sym_BSLASHACRshort] = ACTIONS(5019), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5019), - [anon_sym_BSLASHacrlong] = ACTIONS(5019), - [anon_sym_BSLASHAcrlong] = ACTIONS(5019), - [anon_sym_BSLASHACRlong] = ACTIONS(5019), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5019), - [anon_sym_BSLASHacrfull] = ACTIONS(5019), - [anon_sym_BSLASHAcrfull] = ACTIONS(5019), - [anon_sym_BSLASHACRfull] = ACTIONS(5019), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5019), - [anon_sym_BSLASHacs] = ACTIONS(5019), - [anon_sym_BSLASHAcs] = ACTIONS(5019), - [anon_sym_BSLASHacsp] = ACTIONS(5019), - [anon_sym_BSLASHAcsp] = ACTIONS(5019), - [anon_sym_BSLASHacl] = ACTIONS(5019), - [anon_sym_BSLASHAcl] = ACTIONS(5019), - [anon_sym_BSLASHaclp] = ACTIONS(5019), - [anon_sym_BSLASHAclp] = ACTIONS(5019), - [anon_sym_BSLASHacf] = ACTIONS(5019), - [anon_sym_BSLASHAcf] = ACTIONS(5019), - [anon_sym_BSLASHacfp] = ACTIONS(5019), - [anon_sym_BSLASHAcfp] = ACTIONS(5019), - [anon_sym_BSLASHac] = ACTIONS(5019), - [anon_sym_BSLASHAc] = ACTIONS(5019), - [anon_sym_BSLASHacp] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5019), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5019), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5019), - [anon_sym_BSLASHcolor] = ACTIONS(5019), - [anon_sym_BSLASHcolorbox] = ACTIONS(5019), - [anon_sym_BSLASHtextcolor] = ACTIONS(5019), - [anon_sym_BSLASHpagecolor] = ACTIONS(5019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5019), - [anon_sym_BSLASHtext] = ACTIONS(5019), - [anon_sym_BSLASHintertext] = ACTIONS(5019), - [anon_sym_shortintertext] = ACTIONS(5019), - }, - [828] = { - [sym_brack_group_text] = STATE(908), - [sym_command_name] = ACTIONS(5027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_RBRACK] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_BSLASHpart] = ACTIONS(5027), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddpart] = ACTIONS(5027), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHchapter] = ACTIONS(5027), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddchap] = ACTIONS(5027), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsection] = ACTIONS(5027), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddsec] = ACTIONS(5027), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHparagraph] = ACTIONS(5027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHitem] = ACTIONS(5027), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5025), - [sym_word] = ACTIONS(5027), - [sym_placeholder] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym__] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5025), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5025), - [anon_sym_BSLASHbegin] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5027), - [anon_sym_BSLASHinclude] = ACTIONS(5027), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5027), - [anon_sym_BSLASHinput] = ACTIONS(5027), - [anon_sym_BSLASHsubfile] = ACTIONS(5027), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), - [anon_sym_BSLASHbibliography] = ACTIONS(5027), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5027), - [anon_sym_BSLASHincludesvg] = ACTIONS(5027), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5027), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5027), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5027), - [anon_sym_BSLASHimport] = ACTIONS(5027), - [anon_sym_BSLASHsubimport] = ACTIONS(5027), - [anon_sym_BSLASHinputfrom] = ACTIONS(5027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5027), - [anon_sym_BSLASHincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHcaption] = ACTIONS(5027), - [anon_sym_BSLASHcite] = ACTIONS(5027), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCite] = ACTIONS(5027), - [anon_sym_BSLASHnocite] = ACTIONS(5027), - [anon_sym_BSLASHcitet] = ACTIONS(5027), - [anon_sym_BSLASHcitep] = ACTIONS(5027), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteyear] = ACTIONS(5027), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitedate] = ACTIONS(5027), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteurl] = ACTIONS(5027), - [anon_sym_BSLASHfullcite] = ACTIONS(5027), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5027), - [anon_sym_BSLASHcitealt] = ACTIONS(5027), - [anon_sym_BSLASHcitealp] = ACTIONS(5027), - [anon_sym_BSLASHcitetext] = ACTIONS(5027), - [anon_sym_BSLASHparencite] = ACTIONS(5027), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHParencite] = ACTIONS(5027), - [anon_sym_BSLASHfootcite] = ACTIONS(5027), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5027), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5027), - [anon_sym_BSLASHtextcite] = ACTIONS(5027), - [anon_sym_BSLASHTextcite] = ACTIONS(5027), - [anon_sym_BSLASHsmartcite] = ACTIONS(5027), - [anon_sym_BSLASHSmartcite] = ACTIONS(5027), - [anon_sym_BSLASHsupercite] = ACTIONS(5027), - [anon_sym_BSLASHautocite] = ACTIONS(5027), - [anon_sym_BSLASHAutocite] = ACTIONS(5027), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHvolcite] = ACTIONS(5027), - [anon_sym_BSLASHVolcite] = ACTIONS(5027), - [anon_sym_BSLASHpvolcite] = ACTIONS(5027), - [anon_sym_BSLASHPvolcite] = ACTIONS(5027), - [anon_sym_BSLASHfvolcite] = ACTIONS(5027), - [anon_sym_BSLASHftvolcite] = ACTIONS(5027), - [anon_sym_BSLASHsvolcite] = ACTIONS(5027), - [anon_sym_BSLASHSvolcite] = ACTIONS(5027), - [anon_sym_BSLASHtvolcite] = ACTIONS(5027), - [anon_sym_BSLASHTvolcite] = ACTIONS(5027), - [anon_sym_BSLASHavolcite] = ACTIONS(5027), - [anon_sym_BSLASHAvolcite] = ACTIONS(5027), - [anon_sym_BSLASHnotecite] = ACTIONS(5027), - [anon_sym_BSLASHNotecite] = ACTIONS(5027), - [anon_sym_BSLASHpnotecite] = ACTIONS(5027), - [anon_sym_BSLASHPnotecite] = ACTIONS(5027), - [anon_sym_BSLASHfnotecite] = ACTIONS(5027), - [anon_sym_BSLASHlabel] = ACTIONS(5027), - [anon_sym_BSLASHref] = ACTIONS(5027), - [anon_sym_BSLASHeqref] = ACTIONS(5027), - [anon_sym_BSLASHvref] = ACTIONS(5027), - [anon_sym_BSLASHVref] = ACTIONS(5027), - [anon_sym_BSLASHautoref] = ACTIONS(5027), - [anon_sym_BSLASHpageref] = ACTIONS(5027), - [anon_sym_BSLASHcref] = ACTIONS(5027), - [anon_sym_BSLASHCref] = ACTIONS(5027), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnameCref] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHlabelcref] = ACTIONS(5027), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnewlabel] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdef] = ACTIONS(5027), - [anon_sym_BSLASHlet] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5027), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5027), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5027), - [anon_sym_BSLASHgls] = ACTIONS(5027), - [anon_sym_BSLASHGls] = ACTIONS(5027), - [anon_sym_BSLASHGLS] = ACTIONS(5027), - [anon_sym_BSLASHglspl] = ACTIONS(5027), - [anon_sym_BSLASHGlspl] = ACTIONS(5027), - [anon_sym_BSLASHGLSpl] = ACTIONS(5027), - [anon_sym_BSLASHglsdisp] = ACTIONS(5027), - [anon_sym_BSLASHglslink] = ACTIONS(5027), - [anon_sym_BSLASHglstext] = ACTIONS(5027), - [anon_sym_BSLASHGlstext] = ACTIONS(5027), - [anon_sym_BSLASHGLStext] = ACTIONS(5027), - [anon_sym_BSLASHglsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5027), - [anon_sym_BSLASHglsplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSplural] = ACTIONS(5027), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHglsname] = ACTIONS(5027), - [anon_sym_BSLASHGlsname] = ACTIONS(5027), - [anon_sym_BSLASHGLSname] = ACTIONS(5027), - [anon_sym_BSLASHglssymbol] = ACTIONS(5027), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5027), - [anon_sym_BSLASHglsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5027), - [anon_sym_BSLASHglsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5027), - [anon_sym_BSLASHglsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5027), - [anon_sym_BSLASHglsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5027), - [anon_sym_BSLASHglsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5027), - [anon_sym_BSLASHnewacronym] = ACTIONS(5027), - [anon_sym_BSLASHacrshort] = ACTIONS(5027), - [anon_sym_BSLASHAcrshort] = ACTIONS(5027), - [anon_sym_BSLASHACRshort] = ACTIONS(5027), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5027), - [anon_sym_BSLASHacrlong] = ACTIONS(5027), - [anon_sym_BSLASHAcrlong] = ACTIONS(5027), - [anon_sym_BSLASHACRlong] = ACTIONS(5027), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5027), - [anon_sym_BSLASHacrfull] = ACTIONS(5027), - [anon_sym_BSLASHAcrfull] = ACTIONS(5027), - [anon_sym_BSLASHACRfull] = ACTIONS(5027), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5027), - [anon_sym_BSLASHacs] = ACTIONS(5027), - [anon_sym_BSLASHAcs] = ACTIONS(5027), - [anon_sym_BSLASHacsp] = ACTIONS(5027), - [anon_sym_BSLASHAcsp] = ACTIONS(5027), - [anon_sym_BSLASHacl] = ACTIONS(5027), - [anon_sym_BSLASHAcl] = ACTIONS(5027), - [anon_sym_BSLASHaclp] = ACTIONS(5027), - [anon_sym_BSLASHAclp] = ACTIONS(5027), - [anon_sym_BSLASHacf] = ACTIONS(5027), - [anon_sym_BSLASHAcf] = ACTIONS(5027), - [anon_sym_BSLASHacfp] = ACTIONS(5027), - [anon_sym_BSLASHAcfp] = ACTIONS(5027), - [anon_sym_BSLASHac] = ACTIONS(5027), - [anon_sym_BSLASHAc] = ACTIONS(5027), - [anon_sym_BSLASHacp] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5027), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5027), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5027), - [anon_sym_BSLASHcolor] = ACTIONS(5027), - [anon_sym_BSLASHcolorbox] = ACTIONS(5027), - [anon_sym_BSLASHtextcolor] = ACTIONS(5027), - [anon_sym_BSLASHpagecolor] = ACTIONS(5027), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5027), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5027), - [anon_sym_BSLASHtext] = ACTIONS(5027), - [anon_sym_BSLASHintertext] = ACTIONS(5027), - [anon_sym_shortintertext] = ACTIONS(5027), - }, - [829] = { - [ts_builtin_sym_end] = ACTIONS(5485), - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_BSLASHpart] = ACTIONS(5487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddpart] = ACTIONS(5487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHchapter] = ACTIONS(5487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddchap] = ACTIONS(5487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsection] = ACTIONS(5487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddsec] = ACTIONS(5487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHparagraph] = ACTIONS(5487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHitem] = ACTIONS(5487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [anon_sym_RBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), - }, - [830] = { - [sym_curly_group] = STATE(980), - [sym_command_name] = ACTIONS(4987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - [anon_sym_BSLASHtext] = ACTIONS(4987), - [anon_sym_BSLASHintertext] = ACTIONS(4987), - [anon_sym_shortintertext] = ACTIONS(4987), - }, - [831] = { - [sym_curly_group] = STATE(979), - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4991), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), - [anon_sym_BSLASHtext] = ACTIONS(4991), - [anon_sym_BSLASHintertext] = ACTIONS(4991), - [anon_sym_shortintertext] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(5341), + [anon_sym_LPAREN] = ACTIONS(5339), + [anon_sym_RPAREN] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5339), + [anon_sym_RBRACK] = ACTIONS(5339), + [anon_sym_COMMA] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_BSLASHpart] = ACTIONS(5341), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddpart] = ACTIONS(5341), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHchapter] = ACTIONS(5341), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddchap] = ACTIONS(5341), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsection] = ACTIONS(5341), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddsec] = ACTIONS(5341), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHparagraph] = ACTIONS(5395), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5398), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), + [anon_sym_BSLASHitem] = ACTIONS(5341), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), + [anon_sym_LBRACE] = ACTIONS(5339), + [sym_word] = ACTIONS(5341), + [sym_placeholder] = ACTIONS(5339), + [anon_sym_PLUS] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5341), + [anon_sym_SLASH] = ACTIONS(5341), + [anon_sym_CARET] = ACTIONS(5341), + [anon_sym__] = ACTIONS(5341), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_BANG] = ACTIONS(5341), + [anon_sym_PIPE] = ACTIONS(5341), + [anon_sym_COLON] = ACTIONS(5341), + [anon_sym_SQUOTE] = ACTIONS(5341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), + [anon_sym_DOLLAR] = ACTIONS(5341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5339), + [anon_sym_BSLASHbegin] = ACTIONS(5341), + [anon_sym_BSLASHtitle] = ACTIONS(5341), + [anon_sym_BSLASHauthor] = ACTIONS(5341), + [anon_sym_BSLASHusepackage] = ACTIONS(5341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), + [anon_sym_BSLASHinclude] = ACTIONS(5341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), + [anon_sym_BSLASHinput] = ACTIONS(5341), + [anon_sym_BSLASHsubfile] = ACTIONS(5341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), + [anon_sym_BSLASHbibliography] = ACTIONS(5341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), + [anon_sym_BSLASHincludesvg] = ACTIONS(5341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), + [anon_sym_BSLASHimport] = ACTIONS(5341), + [anon_sym_BSLASHsubimport] = ACTIONS(5341), + [anon_sym_BSLASHinputfrom] = ACTIONS(5341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), + [anon_sym_BSLASHincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHcaption] = ACTIONS(5341), + [anon_sym_BSLASHcite] = ACTIONS(5341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCite] = ACTIONS(5341), + [anon_sym_BSLASHnocite] = ACTIONS(5341), + [anon_sym_BSLASHcitet] = ACTIONS(5341), + [anon_sym_BSLASHcitep] = ACTIONS(5341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteauthor] = ACTIONS(5341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitetitle] = ACTIONS(5341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteyear] = ACTIONS(5341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitedate] = ACTIONS(5341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteurl] = ACTIONS(5341), + [anon_sym_BSLASHfullcite] = ACTIONS(5341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), + [anon_sym_BSLASHcitealt] = ACTIONS(5341), + [anon_sym_BSLASHcitealp] = ACTIONS(5341), + [anon_sym_BSLASHcitetext] = ACTIONS(5341), + [anon_sym_BSLASHparencite] = ACTIONS(5341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHParencite] = ACTIONS(5341), + [anon_sym_BSLASHfootcite] = ACTIONS(5341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), + [anon_sym_BSLASHtextcite] = ACTIONS(5341), + [anon_sym_BSLASHTextcite] = ACTIONS(5341), + [anon_sym_BSLASHsmartcite] = ACTIONS(5341), + [anon_sym_BSLASHSmartcite] = ACTIONS(5341), + [anon_sym_BSLASHsupercite] = ACTIONS(5341), + [anon_sym_BSLASHautocite] = ACTIONS(5341), + [anon_sym_BSLASHAutocite] = ACTIONS(5341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHvolcite] = ACTIONS(5341), + [anon_sym_BSLASHVolcite] = ACTIONS(5341), + [anon_sym_BSLASHpvolcite] = ACTIONS(5341), + [anon_sym_BSLASHPvolcite] = ACTIONS(5341), + [anon_sym_BSLASHfvolcite] = ACTIONS(5341), + [anon_sym_BSLASHftvolcite] = ACTIONS(5341), + [anon_sym_BSLASHsvolcite] = ACTIONS(5341), + [anon_sym_BSLASHSvolcite] = ACTIONS(5341), + [anon_sym_BSLASHtvolcite] = ACTIONS(5341), + [anon_sym_BSLASHTvolcite] = ACTIONS(5341), + [anon_sym_BSLASHavolcite] = ACTIONS(5341), + [anon_sym_BSLASHAvolcite] = ACTIONS(5341), + [anon_sym_BSLASHnotecite] = ACTIONS(5341), + [anon_sym_BSLASHNotecite] = ACTIONS(5341), + [anon_sym_BSLASHpnotecite] = ACTIONS(5341), + [anon_sym_BSLASHPnotecite] = ACTIONS(5341), + [anon_sym_BSLASHfnotecite] = ACTIONS(5341), + [anon_sym_BSLASHlabel] = ACTIONS(5341), + [anon_sym_BSLASHref] = ACTIONS(5341), + [anon_sym_BSLASHeqref] = ACTIONS(5341), + [anon_sym_BSLASHvref] = ACTIONS(5341), + [anon_sym_BSLASHVref] = ACTIONS(5341), + [anon_sym_BSLASHautoref] = ACTIONS(5341), + [anon_sym_BSLASHpageref] = ACTIONS(5341), + [anon_sym_BSLASHcref] = ACTIONS(5341), + [anon_sym_BSLASHCref] = ACTIONS(5341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnameCref] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHlabelcref] = ACTIONS(5341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCrefrange] = ACTIONS(5341), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnewlabel] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdef] = ACTIONS(5341), + [anon_sym_BSLASHlet] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), + [anon_sym_BSLASHgls] = ACTIONS(5341), + [anon_sym_BSLASHGls] = ACTIONS(5341), + [anon_sym_BSLASHGLS] = ACTIONS(5341), + [anon_sym_BSLASHglspl] = ACTIONS(5341), + [anon_sym_BSLASHGlspl] = ACTIONS(5341), + [anon_sym_BSLASHGLSpl] = ACTIONS(5341), + [anon_sym_BSLASHglsdisp] = ACTIONS(5341), + [anon_sym_BSLASHglslink] = ACTIONS(5341), + [anon_sym_BSLASHglstext] = ACTIONS(5341), + [anon_sym_BSLASHGlstext] = ACTIONS(5341), + [anon_sym_BSLASHGLStext] = ACTIONS(5341), + [anon_sym_BSLASHglsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), + [anon_sym_BSLASHglsplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSplural] = ACTIONS(5341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHglsname] = ACTIONS(5341), + [anon_sym_BSLASHGlsname] = ACTIONS(5341), + [anon_sym_BSLASHGLSname] = ACTIONS(5341), + [anon_sym_BSLASHglssymbol] = ACTIONS(5341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), + [anon_sym_BSLASHglsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), + [anon_sym_BSLASHglsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), + [anon_sym_BSLASHglsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), + [anon_sym_BSLASHglsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), + [anon_sym_BSLASHglsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), + [anon_sym_BSLASHnewacronym] = ACTIONS(5341), + [anon_sym_BSLASHacrshort] = ACTIONS(5341), + [anon_sym_BSLASHAcrshort] = ACTIONS(5341), + [anon_sym_BSLASHACRshort] = ACTIONS(5341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), + [anon_sym_BSLASHacrlong] = ACTIONS(5341), + [anon_sym_BSLASHAcrlong] = ACTIONS(5341), + [anon_sym_BSLASHACRlong] = ACTIONS(5341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), + [anon_sym_BSLASHacrfull] = ACTIONS(5341), + [anon_sym_BSLASHAcrfull] = ACTIONS(5341), + [anon_sym_BSLASHACRfull] = ACTIONS(5341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), + [anon_sym_BSLASHacs] = ACTIONS(5341), + [anon_sym_BSLASHAcs] = ACTIONS(5341), + [anon_sym_BSLASHacsp] = ACTIONS(5341), + [anon_sym_BSLASHAcsp] = ACTIONS(5341), + [anon_sym_BSLASHacl] = ACTIONS(5341), + [anon_sym_BSLASHAcl] = ACTIONS(5341), + [anon_sym_BSLASHaclp] = ACTIONS(5341), + [anon_sym_BSLASHAclp] = ACTIONS(5341), + [anon_sym_BSLASHacf] = ACTIONS(5341), + [anon_sym_BSLASHAcf] = ACTIONS(5341), + [anon_sym_BSLASHacfp] = ACTIONS(5341), + [anon_sym_BSLASHAcfp] = ACTIONS(5341), + [anon_sym_BSLASHac] = ACTIONS(5341), + [anon_sym_BSLASHAc] = ACTIONS(5341), + [anon_sym_BSLASHacp] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), + [anon_sym_BSLASHcolor] = ACTIONS(5341), + [anon_sym_BSLASHcolorbox] = ACTIONS(5341), + [anon_sym_BSLASHtextcolor] = ACTIONS(5341), + [anon_sym_BSLASHpagecolor] = ACTIONS(5341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHtext] = ACTIONS(5341), + [anon_sym_BSLASHintertext] = ACTIONS(5341), + [anon_sym_shortintertext] = ACTIONS(5341), }, - [832] = { - [sym_curly_group] = STATE(978), - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4995), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - [anon_sym_BSLASHtext] = ACTIONS(4995), - [anon_sym_BSLASHintertext] = ACTIONS(4995), - [anon_sym_shortintertext] = ACTIONS(4995), + [473] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHend] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [833] = { - [ts_builtin_sym_end] = ACTIONS(5489), - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_BSLASHpart] = ACTIONS(5491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddpart] = ACTIONS(5491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHchapter] = ACTIONS(5491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddchap] = ACTIONS(5491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsection] = ACTIONS(5491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddsec] = ACTIONS(5491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHparagraph] = ACTIONS(5491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHitem] = ACTIONS(5491), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), + [474] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHend] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [834] = { - [sym_brack_group_text] = STATE(974), - [sym_command_name] = ACTIONS(5027), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5367), - [anon_sym_RBRACK] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_BSLASHpart] = ACTIONS(5027), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddpart] = ACTIONS(5027), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5025), - [anon_sym_BSLASHchapter] = ACTIONS(5027), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddchap] = ACTIONS(5027), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsection] = ACTIONS(5027), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHaddsec] = ACTIONS(5027), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5025), - [anon_sym_BSLASHparagraph] = ACTIONS(5027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5025), - [anon_sym_BSLASHitem] = ACTIONS(5027), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5025), - [sym_word] = ACTIONS(5027), - [sym_placeholder] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym__] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5025), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5025), - [anon_sym_BSLASHbegin] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5027), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5027), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5027), - [anon_sym_BSLASHinclude] = ACTIONS(5027), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5027), - [anon_sym_BSLASHinput] = ACTIONS(5027), - [anon_sym_BSLASHsubfile] = ACTIONS(5027), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5027), - [anon_sym_BSLASHbibliography] = ACTIONS(5027), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5027), - [anon_sym_BSLASHincludesvg] = ACTIONS(5027), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5027), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5027), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5027), - [anon_sym_BSLASHimport] = ACTIONS(5027), - [anon_sym_BSLASHsubimport] = ACTIONS(5027), - [anon_sym_BSLASHinputfrom] = ACTIONS(5027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5027), - [anon_sym_BSLASHincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5027), - [anon_sym_BSLASHcaption] = ACTIONS(5027), - [anon_sym_BSLASHcite] = ACTIONS(5027), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCite] = ACTIONS(5027), - [anon_sym_BSLASHnocite] = ACTIONS(5027), - [anon_sym_BSLASHcitet] = ACTIONS(5027), - [anon_sym_BSLASHcitep] = ACTIONS(5027), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteyear] = ACTIONS(5027), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5025), - [anon_sym_BSLASHcitedate] = ACTIONS(5027), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5025), - [anon_sym_BSLASHciteurl] = ACTIONS(5027), - [anon_sym_BSLASHfullcite] = ACTIONS(5027), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5027), - [anon_sym_BSLASHcitealt] = ACTIONS(5027), - [anon_sym_BSLASHcitealp] = ACTIONS(5027), - [anon_sym_BSLASHcitetext] = ACTIONS(5027), - [anon_sym_BSLASHparencite] = ACTIONS(5027), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHParencite] = ACTIONS(5027), - [anon_sym_BSLASHfootcite] = ACTIONS(5027), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5027), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5027), - [anon_sym_BSLASHtextcite] = ACTIONS(5027), - [anon_sym_BSLASHTextcite] = ACTIONS(5027), - [anon_sym_BSLASHsmartcite] = ACTIONS(5027), - [anon_sym_BSLASHSmartcite] = ACTIONS(5027), - [anon_sym_BSLASHsupercite] = ACTIONS(5027), - [anon_sym_BSLASHautocite] = ACTIONS(5027), - [anon_sym_BSLASHAutocite] = ACTIONS(5027), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5025), - [anon_sym_BSLASHvolcite] = ACTIONS(5027), - [anon_sym_BSLASHVolcite] = ACTIONS(5027), - [anon_sym_BSLASHpvolcite] = ACTIONS(5027), - [anon_sym_BSLASHPvolcite] = ACTIONS(5027), - [anon_sym_BSLASHfvolcite] = ACTIONS(5027), - [anon_sym_BSLASHftvolcite] = ACTIONS(5027), - [anon_sym_BSLASHsvolcite] = ACTIONS(5027), - [anon_sym_BSLASHSvolcite] = ACTIONS(5027), - [anon_sym_BSLASHtvolcite] = ACTIONS(5027), - [anon_sym_BSLASHTvolcite] = ACTIONS(5027), - [anon_sym_BSLASHavolcite] = ACTIONS(5027), - [anon_sym_BSLASHAvolcite] = ACTIONS(5027), - [anon_sym_BSLASHnotecite] = ACTIONS(5027), - [anon_sym_BSLASHNotecite] = ACTIONS(5027), - [anon_sym_BSLASHpnotecite] = ACTIONS(5027), - [anon_sym_BSLASHPnotecite] = ACTIONS(5027), - [anon_sym_BSLASHfnotecite] = ACTIONS(5027), - [anon_sym_BSLASHlabel] = ACTIONS(5027), - [anon_sym_BSLASHref] = ACTIONS(5027), - [anon_sym_BSLASHeqref] = ACTIONS(5027), - [anon_sym_BSLASHvref] = ACTIONS(5027), - [anon_sym_BSLASHVref] = ACTIONS(5027), - [anon_sym_BSLASHautoref] = ACTIONS(5027), - [anon_sym_BSLASHpageref] = ACTIONS(5027), - [anon_sym_BSLASHcref] = ACTIONS(5027), - [anon_sym_BSLASHCref] = ACTIONS(5027), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnameCref] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5027), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5027), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5027), - [anon_sym_BSLASHlabelcref] = ACTIONS(5027), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange] = ACTIONS(5027), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5025), - [anon_sym_BSLASHnewlabel] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand] = ACTIONS(5027), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdef] = ACTIONS(5027), - [anon_sym_BSLASHlet] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5027), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5027), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5027), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5027), - [anon_sym_BSLASHgls] = ACTIONS(5027), - [anon_sym_BSLASHGls] = ACTIONS(5027), - [anon_sym_BSLASHGLS] = ACTIONS(5027), - [anon_sym_BSLASHglspl] = ACTIONS(5027), - [anon_sym_BSLASHGlspl] = ACTIONS(5027), - [anon_sym_BSLASHGLSpl] = ACTIONS(5027), - [anon_sym_BSLASHglsdisp] = ACTIONS(5027), - [anon_sym_BSLASHglslink] = ACTIONS(5027), - [anon_sym_BSLASHglstext] = ACTIONS(5027), - [anon_sym_BSLASHGlstext] = ACTIONS(5027), - [anon_sym_BSLASHGLStext] = ACTIONS(5027), - [anon_sym_BSLASHglsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5027), - [anon_sym_BSLASHglsplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSplural] = ACTIONS(5027), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5027), - [anon_sym_BSLASHglsname] = ACTIONS(5027), - [anon_sym_BSLASHGlsname] = ACTIONS(5027), - [anon_sym_BSLASHGLSname] = ACTIONS(5027), - [anon_sym_BSLASHglssymbol] = ACTIONS(5027), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5027), - [anon_sym_BSLASHglsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5027), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5027), - [anon_sym_BSLASHglsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5027), - [anon_sym_BSLASHglsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5027), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5027), - [anon_sym_BSLASHglsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5027), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5027), - [anon_sym_BSLASHglsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5027), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5027), - [anon_sym_BSLASHnewacronym] = ACTIONS(5027), - [anon_sym_BSLASHacrshort] = ACTIONS(5027), - [anon_sym_BSLASHAcrshort] = ACTIONS(5027), - [anon_sym_BSLASHACRshort] = ACTIONS(5027), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5027), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5027), - [anon_sym_BSLASHacrlong] = ACTIONS(5027), - [anon_sym_BSLASHAcrlong] = ACTIONS(5027), - [anon_sym_BSLASHACRlong] = ACTIONS(5027), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5027), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5027), - [anon_sym_BSLASHacrfull] = ACTIONS(5027), - [anon_sym_BSLASHAcrfull] = ACTIONS(5027), - [anon_sym_BSLASHACRfull] = ACTIONS(5027), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5027), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5027), - [anon_sym_BSLASHacs] = ACTIONS(5027), - [anon_sym_BSLASHAcs] = ACTIONS(5027), - [anon_sym_BSLASHacsp] = ACTIONS(5027), - [anon_sym_BSLASHAcsp] = ACTIONS(5027), - [anon_sym_BSLASHacl] = ACTIONS(5027), - [anon_sym_BSLASHAcl] = ACTIONS(5027), - [anon_sym_BSLASHaclp] = ACTIONS(5027), - [anon_sym_BSLASHAclp] = ACTIONS(5027), - [anon_sym_BSLASHacf] = ACTIONS(5027), - [anon_sym_BSLASHAcf] = ACTIONS(5027), - [anon_sym_BSLASHacfp] = ACTIONS(5027), - [anon_sym_BSLASHAcfp] = ACTIONS(5027), - [anon_sym_BSLASHac] = ACTIONS(5027), - [anon_sym_BSLASHAc] = ACTIONS(5027), - [anon_sym_BSLASHacp] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5027), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5027), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5027), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5027), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5027), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5027), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5027), - [anon_sym_BSLASHcolor] = ACTIONS(5027), - [anon_sym_BSLASHcolorbox] = ACTIONS(5027), - [anon_sym_BSLASHtextcolor] = ACTIONS(5027), - [anon_sym_BSLASHpagecolor] = ACTIONS(5027), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5027), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5027), - [anon_sym_BSLASHtext] = ACTIONS(5027), - [anon_sym_BSLASHintertext] = ACTIONS(5027), - [anon_sym_shortintertext] = ACTIONS(5027), + [475] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHend] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [835] = { - [sym_curly_group] = STATE(975), - [sym_command_name] = ACTIONS(5019), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(5017), - [anon_sym_BSLASHpart] = ACTIONS(5019), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddpart] = ACTIONS(5019), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5017), - [anon_sym_BSLASHchapter] = ACTIONS(5019), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddchap] = ACTIONS(5019), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsection] = ACTIONS(5019), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHaddsec] = ACTIONS(5019), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5017), - [anon_sym_BSLASHparagraph] = ACTIONS(5019), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5017), - [anon_sym_BSLASHitem] = ACTIONS(5019), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(573), - [sym_word] = ACTIONS(5019), - [sym_placeholder] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym__] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5017), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5017), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5017), - [anon_sym_BSLASHbegin] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5019), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5019), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5019), - [anon_sym_BSLASHinclude] = ACTIONS(5019), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5019), - [anon_sym_BSLASHinput] = ACTIONS(5019), - [anon_sym_BSLASHsubfile] = ACTIONS(5019), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5019), - [anon_sym_BSLASHbibliography] = ACTIONS(5019), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5019), - [anon_sym_BSLASHincludesvg] = ACTIONS(5019), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5019), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5019), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5019), - [anon_sym_BSLASHimport] = ACTIONS(5019), - [anon_sym_BSLASHsubimport] = ACTIONS(5019), - [anon_sym_BSLASHinputfrom] = ACTIONS(5019), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5019), - [anon_sym_BSLASHincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5019), - [anon_sym_BSLASHcaption] = ACTIONS(5019), - [anon_sym_BSLASHcite] = ACTIONS(5019), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCite] = ACTIONS(5019), - [anon_sym_BSLASHnocite] = ACTIONS(5019), - [anon_sym_BSLASHcitet] = ACTIONS(5019), - [anon_sym_BSLASHcitep] = ACTIONS(5019), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteauthor] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitetitle] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteyear] = ACTIONS(5019), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5017), - [anon_sym_BSLASHcitedate] = ACTIONS(5019), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5017), - [anon_sym_BSLASHciteurl] = ACTIONS(5019), - [anon_sym_BSLASHfullcite] = ACTIONS(5019), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5019), - [anon_sym_BSLASHcitealt] = ACTIONS(5019), - [anon_sym_BSLASHcitealp] = ACTIONS(5019), - [anon_sym_BSLASHcitetext] = ACTIONS(5019), - [anon_sym_BSLASHparencite] = ACTIONS(5019), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHParencite] = ACTIONS(5019), - [anon_sym_BSLASHfootcite] = ACTIONS(5019), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5019), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5019), - [anon_sym_BSLASHtextcite] = ACTIONS(5019), - [anon_sym_BSLASHTextcite] = ACTIONS(5019), - [anon_sym_BSLASHsmartcite] = ACTIONS(5019), - [anon_sym_BSLASHSmartcite] = ACTIONS(5019), - [anon_sym_BSLASHsupercite] = ACTIONS(5019), - [anon_sym_BSLASHautocite] = ACTIONS(5019), - [anon_sym_BSLASHAutocite] = ACTIONS(5019), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5017), - [anon_sym_BSLASHvolcite] = ACTIONS(5019), - [anon_sym_BSLASHVolcite] = ACTIONS(5019), - [anon_sym_BSLASHpvolcite] = ACTIONS(5019), - [anon_sym_BSLASHPvolcite] = ACTIONS(5019), - [anon_sym_BSLASHfvolcite] = ACTIONS(5019), - [anon_sym_BSLASHftvolcite] = ACTIONS(5019), - [anon_sym_BSLASHsvolcite] = ACTIONS(5019), - [anon_sym_BSLASHSvolcite] = ACTIONS(5019), - [anon_sym_BSLASHtvolcite] = ACTIONS(5019), - [anon_sym_BSLASHTvolcite] = ACTIONS(5019), - [anon_sym_BSLASHavolcite] = ACTIONS(5019), - [anon_sym_BSLASHAvolcite] = ACTIONS(5019), - [anon_sym_BSLASHnotecite] = ACTIONS(5019), - [anon_sym_BSLASHNotecite] = ACTIONS(5019), - [anon_sym_BSLASHpnotecite] = ACTIONS(5019), - [anon_sym_BSLASHPnotecite] = ACTIONS(5019), - [anon_sym_BSLASHfnotecite] = ACTIONS(5019), - [anon_sym_BSLASHlabel] = ACTIONS(5019), - [anon_sym_BSLASHref] = ACTIONS(5019), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [anon_sym_BSLASHvref] = ACTIONS(5019), - [anon_sym_BSLASHVref] = ACTIONS(5019), - [anon_sym_BSLASHautoref] = ACTIONS(5019), - [anon_sym_BSLASHpageref] = ACTIONS(5019), - [anon_sym_BSLASHcref] = ACTIONS(5019), - [anon_sym_BSLASHCref] = ACTIONS(5019), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnameCref] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5019), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5019), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5019), - [anon_sym_BSLASHlabelcref] = ACTIONS(5019), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange] = ACTIONS(5019), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHCrefrange] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5017), - [anon_sym_BSLASHnewlabel] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand] = ACTIONS(5019), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5017), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdef] = ACTIONS(5019), - [anon_sym_BSLASHlet] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5019), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5019), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5019), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5019), - [anon_sym_BSLASHgls] = ACTIONS(5019), - [anon_sym_BSLASHGls] = ACTIONS(5019), - [anon_sym_BSLASHGLS] = ACTIONS(5019), - [anon_sym_BSLASHglspl] = ACTIONS(5019), - [anon_sym_BSLASHGlspl] = ACTIONS(5019), - [anon_sym_BSLASHGLSpl] = ACTIONS(5019), - [anon_sym_BSLASHglsdisp] = ACTIONS(5019), - [anon_sym_BSLASHglslink] = ACTIONS(5019), - [anon_sym_BSLASHglstext] = ACTIONS(5019), - [anon_sym_BSLASHGlstext] = ACTIONS(5019), - [anon_sym_BSLASHGLStext] = ACTIONS(5019), - [anon_sym_BSLASHglsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5019), - [anon_sym_BSLASHglsplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSplural] = ACTIONS(5019), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5019), - [anon_sym_BSLASHglsname] = ACTIONS(5019), - [anon_sym_BSLASHGlsname] = ACTIONS(5019), - [anon_sym_BSLASHGLSname] = ACTIONS(5019), - [anon_sym_BSLASHglssymbol] = ACTIONS(5019), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5019), - [anon_sym_BSLASHglsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5019), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5019), - [anon_sym_BSLASHglsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5019), - [anon_sym_BSLASHglsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5019), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5019), - [anon_sym_BSLASHglsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5019), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5019), - [anon_sym_BSLASHglsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5019), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5019), - [anon_sym_BSLASHnewacronym] = ACTIONS(5019), - [anon_sym_BSLASHacrshort] = ACTIONS(5019), - [anon_sym_BSLASHAcrshort] = ACTIONS(5019), - [anon_sym_BSLASHACRshort] = ACTIONS(5019), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5019), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5019), - [anon_sym_BSLASHacrlong] = ACTIONS(5019), - [anon_sym_BSLASHAcrlong] = ACTIONS(5019), - [anon_sym_BSLASHACRlong] = ACTIONS(5019), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5019), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5019), - [anon_sym_BSLASHacrfull] = ACTIONS(5019), - [anon_sym_BSLASHAcrfull] = ACTIONS(5019), - [anon_sym_BSLASHACRfull] = ACTIONS(5019), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5019), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5019), - [anon_sym_BSLASHacs] = ACTIONS(5019), - [anon_sym_BSLASHAcs] = ACTIONS(5019), - [anon_sym_BSLASHacsp] = ACTIONS(5019), - [anon_sym_BSLASHAcsp] = ACTIONS(5019), - [anon_sym_BSLASHacl] = ACTIONS(5019), - [anon_sym_BSLASHAcl] = ACTIONS(5019), - [anon_sym_BSLASHaclp] = ACTIONS(5019), - [anon_sym_BSLASHAclp] = ACTIONS(5019), - [anon_sym_BSLASHacf] = ACTIONS(5019), - [anon_sym_BSLASHAcf] = ACTIONS(5019), - [anon_sym_BSLASHacfp] = ACTIONS(5019), - [anon_sym_BSLASHAcfp] = ACTIONS(5019), - [anon_sym_BSLASHac] = ACTIONS(5019), - [anon_sym_BSLASHAc] = ACTIONS(5019), - [anon_sym_BSLASHacp] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5019), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5019), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5019), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5019), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5019), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5017), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5019), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5019), - [anon_sym_BSLASHcolor] = ACTIONS(5019), - [anon_sym_BSLASHcolorbox] = ACTIONS(5019), - [anon_sym_BSLASHtextcolor] = ACTIONS(5019), - [anon_sym_BSLASHpagecolor] = ACTIONS(5019), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5019), - [anon_sym_BSLASHtext] = ACTIONS(5019), - [anon_sym_BSLASHintertext] = ACTIONS(5019), - [anon_sym_shortintertext] = ACTIONS(5019), + [476] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHend] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [836] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), + [477] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHend] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [837] = { - [sym_command_name] = ACTIONS(143), + [478] = { + [sym_curly_group] = STATE(1293), + [sym_mixed_group] = STATE(1293), + [aux_sym_generic_command_repeat1] = STATE(556), + [sym_command_name] = ACTIONS(5337), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHend] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [838] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_BSLASHpart] = ACTIONS(5463), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddpart] = ACTIONS(5463), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHchapter] = ACTIONS(5463), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddchap] = ACTIONS(5463), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsection] = ACTIONS(5463), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddsec] = ACTIONS(5463), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHparagraph] = ACTIONS(5463), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5463), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHitem] = ACTIONS(5463), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), - }, - [839] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_BSLASHpart] = ACTIONS(5459), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddpart] = ACTIONS(5459), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHchapter] = ACTIONS(5459), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddchap] = ACTIONS(5459), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsection] = ACTIONS(5459), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddsec] = ACTIONS(5459), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHparagraph] = ACTIONS(5459), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5459), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHitem] = ACTIONS(5459), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5357), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_BSLASHpart] = ACTIONS(5337), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddpart] = ACTIONS(5337), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHchapter] = ACTIONS(5337), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddchap] = ACTIONS(5337), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsection] = ACTIONS(5337), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddsec] = ACTIONS(5337), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHparagraph] = ACTIONS(5337), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHitem] = ACTIONS(5337), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHbegin] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), }, - [840] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), + [479] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHend] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [841] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_BSLASHpart] = ACTIONS(5241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddpart] = ACTIONS(5241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHchapter] = ACTIONS(5241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddchap] = ACTIONS(5241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsection] = ACTIONS(5241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddsec] = ACTIONS(5241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHparagraph] = ACTIONS(5241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHitem] = ACTIONS(5241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), + [480] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHend] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [842] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASHpart] = ACTIONS(5451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddpart] = ACTIONS(5451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHchapter] = ACTIONS(5451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddchap] = ACTIONS(5451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsection] = ACTIONS(5451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddsec] = ACTIONS(5451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHparagraph] = ACTIONS(5451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHitem] = ACTIONS(5451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), + [481] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHend] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [843] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_BSLASHpart] = ACTIONS(5447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddpart] = ACTIONS(5447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHchapter] = ACTIONS(5447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddchap] = ACTIONS(5447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsection] = ACTIONS(5447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddsec] = ACTIONS(5447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHparagraph] = ACTIONS(5447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHitem] = ACTIONS(5447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), + [482] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHend] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [844] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASHpart] = ACTIONS(5443), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddpart] = ACTIONS(5443), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHchapter] = ACTIONS(5443), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddchap] = ACTIONS(5443), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsection] = ACTIONS(5443), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddsec] = ACTIONS(5443), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHparagraph] = ACTIONS(5443), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5443), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHitem] = ACTIONS(5443), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), + [483] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHend] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [845] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_BSLASHpart] = ACTIONS(5439), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddpart] = ACTIONS(5439), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHchapter] = ACTIONS(5439), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddchap] = ACTIONS(5439), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsection] = ACTIONS(5439), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddsec] = ACTIONS(5439), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHparagraph] = ACTIONS(5439), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5439), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHitem] = ACTIONS(5439), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), + [484] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHend] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [846] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASHpart] = ACTIONS(5435), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddpart] = ACTIONS(5435), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHchapter] = ACTIONS(5435), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddchap] = ACTIONS(5435), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsection] = ACTIONS(5435), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddsec] = ACTIONS(5435), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHparagraph] = ACTIONS(5435), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5435), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHitem] = ACTIONS(5435), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), + [485] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHend] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [847] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), + [486] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [848] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_BSLASHpart] = ACTIONS(5427), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddpart] = ACTIONS(5427), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHchapter] = ACTIONS(5427), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddchap] = ACTIONS(5427), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsection] = ACTIONS(5427), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddsec] = ACTIONS(5427), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHparagraph] = ACTIONS(5427), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5427), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHitem] = ACTIONS(5427), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [487] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [849] = { - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_BSLASHpart] = ACTIONS(5423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddpart] = ACTIONS(5423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHchapter] = ACTIONS(5423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddchap] = ACTIONS(5423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsection] = ACTIONS(5423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddsec] = ACTIONS(5423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHparagraph] = ACTIONS(5423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHitem] = ACTIONS(5423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), + [488] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [850] = { - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_BSLASHpart] = ACTIONS(5419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddpart] = ACTIONS(5419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHchapter] = ACTIONS(5419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddchap] = ACTIONS(5419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsection] = ACTIONS(5419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddsec] = ACTIONS(5419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHparagraph] = ACTIONS(5419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHitem] = ACTIONS(5419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [489] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [851] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [490] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [852] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), + [491] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [853] = { + [492] = { + [ts_builtin_sym_end] = ACTIONS(5401), [sym_command_name] = ACTIONS(5403), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(5405), [anon_sym_LPAREN] = ACTIONS(5401), [anon_sym_RPAREN] = ACTIONS(5401), [anon_sym_LBRACK] = ACTIONS(5401), @@ -272192,6 +175564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(5403), [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), [anon_sym_LBRACE] = ACTIONS(5401), + [anon_sym_RBRACE] = ACTIONS(5401), [sym_word] = ACTIONS(5403), [sym_placeholder] = ACTIONS(5401), [anon_sym_PLUS] = ACTIONS(5403), @@ -272210,9 +175583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), [anon_sym_DOLLAR] = ACTIONS(5403), [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5401), [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), [anon_sym_BSLASHbegin] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), [anon_sym_BSLASHusepackage] = ACTIONS(5403), [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), @@ -272433,14636 +175807,7880 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHtext] = ACTIONS(5403), [anon_sym_BSLASHintertext] = ACTIONS(5403), [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(5407), }, - [854] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_BSLASHpart] = ACTIONS(5395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddpart] = ACTIONS(5395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHchapter] = ACTIONS(5395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddchap] = ACTIONS(5395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsection] = ACTIONS(5395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddsec] = ACTIONS(5395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHparagraph] = ACTIONS(5395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHitem] = ACTIONS(5395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), - }, - [855] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_BSLASHpart] = ACTIONS(5391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddpart] = ACTIONS(5391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHchapter] = ACTIONS(5391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddchap] = ACTIONS(5391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsection] = ACTIONS(5391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddsec] = ACTIONS(5391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHparagraph] = ACTIONS(5391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHitem] = ACTIONS(5391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), - }, - [856] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_BSLASHpart] = ACTIONS(5387), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddpart] = ACTIONS(5387), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHchapter] = ACTIONS(5387), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddchap] = ACTIONS(5387), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsection] = ACTIONS(5387), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddsec] = ACTIONS(5387), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHparagraph] = ACTIONS(5387), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5387), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHitem] = ACTIONS(5387), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), - }, - [857] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), - }, - [858] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_BSLASHpart] = ACTIONS(5383), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddpart] = ACTIONS(5383), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHchapter] = ACTIONS(5383), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddchap] = ACTIONS(5383), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsection] = ACTIONS(5383), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddsec] = ACTIONS(5383), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHparagraph] = ACTIONS(5383), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHitem] = ACTIONS(5383), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), + [493] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [859] = { - [sym_command_name] = ACTIONS(5249), + [494] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_BSLASHpart] = ACTIONS(5249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddpart] = ACTIONS(5249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHchapter] = ACTIONS(5249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddchap] = ACTIONS(5249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsection] = ACTIONS(5249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddsec] = ACTIONS(5249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHparagraph] = ACTIONS(5249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHitem] = ACTIONS(5249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [sym_word] = ACTIONS(5249), - [sym_placeholder] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5249), - [anon_sym_STAR] = ACTIONS(5249), - [anon_sym_SLASH] = ACTIONS(5249), - [anon_sym_CARET] = ACTIONS(5249), - [anon_sym__] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5249), - [anon_sym_PIPE] = ACTIONS(5249), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_SQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASHbegin] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), - [anon_sym_BSLASHinclude] = ACTIONS(5249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), - [anon_sym_BSLASHinput] = ACTIONS(5249), - [anon_sym_BSLASHsubfile] = ACTIONS(5249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), - [anon_sym_BSLASHbibliography] = ACTIONS(5249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), - [anon_sym_BSLASHincludesvg] = ACTIONS(5249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), - [anon_sym_BSLASHimport] = ACTIONS(5249), - [anon_sym_BSLASHsubimport] = ACTIONS(5249), - [anon_sym_BSLASHinputfrom] = ACTIONS(5249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), - [anon_sym_BSLASHincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [anon_sym_BSLASHcite] = ACTIONS(5249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCite] = ACTIONS(5249), - [anon_sym_BSLASHnocite] = ACTIONS(5249), - [anon_sym_BSLASHcitet] = ACTIONS(5249), - [anon_sym_BSLASHcitep] = ACTIONS(5249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteyear] = ACTIONS(5249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitedate] = ACTIONS(5249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteurl] = ACTIONS(5249), - [anon_sym_BSLASHfullcite] = ACTIONS(5249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), - [anon_sym_BSLASHcitealt] = ACTIONS(5249), - [anon_sym_BSLASHcitealp] = ACTIONS(5249), - [anon_sym_BSLASHcitetext] = ACTIONS(5249), - [anon_sym_BSLASHparencite] = ACTIONS(5249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHParencite] = ACTIONS(5249), - [anon_sym_BSLASHfootcite] = ACTIONS(5249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), - [anon_sym_BSLASHtextcite] = ACTIONS(5249), - [anon_sym_BSLASHTextcite] = ACTIONS(5249), - [anon_sym_BSLASHsmartcite] = ACTIONS(5249), - [anon_sym_BSLASHSmartcite] = ACTIONS(5249), - [anon_sym_BSLASHsupercite] = ACTIONS(5249), - [anon_sym_BSLASHautocite] = ACTIONS(5249), - [anon_sym_BSLASHAutocite] = ACTIONS(5249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHvolcite] = ACTIONS(5249), - [anon_sym_BSLASHVolcite] = ACTIONS(5249), - [anon_sym_BSLASHpvolcite] = ACTIONS(5249), - [anon_sym_BSLASHPvolcite] = ACTIONS(5249), - [anon_sym_BSLASHfvolcite] = ACTIONS(5249), - [anon_sym_BSLASHftvolcite] = ACTIONS(5249), - [anon_sym_BSLASHsvolcite] = ACTIONS(5249), - [anon_sym_BSLASHSvolcite] = ACTIONS(5249), - [anon_sym_BSLASHtvolcite] = ACTIONS(5249), - [anon_sym_BSLASHTvolcite] = ACTIONS(5249), - [anon_sym_BSLASHavolcite] = ACTIONS(5249), - [anon_sym_BSLASHAvolcite] = ACTIONS(5249), - [anon_sym_BSLASHnotecite] = ACTIONS(5249), - [anon_sym_BSLASHNotecite] = ACTIONS(5249), - [anon_sym_BSLASHpnotecite] = ACTIONS(5249), - [anon_sym_BSLASHPnotecite] = ACTIONS(5249), - [anon_sym_BSLASHfnotecite] = ACTIONS(5249), - [anon_sym_BSLASHlabel] = ACTIONS(5249), - [anon_sym_BSLASHref] = ACTIONS(5249), - [anon_sym_BSLASHeqref] = ACTIONS(5249), - [anon_sym_BSLASHvref] = ACTIONS(5249), - [anon_sym_BSLASHVref] = ACTIONS(5249), - [anon_sym_BSLASHautoref] = ACTIONS(5249), - [anon_sym_BSLASHpageref] = ACTIONS(5249), - [anon_sym_BSLASHcref] = ACTIONS(5249), - [anon_sym_BSLASHCref] = ACTIONS(5249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnameCref] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHlabelcref] = ACTIONS(5249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), - }, - [860] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_BSLASHpart] = ACTIONS(5375), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddpart] = ACTIONS(5375), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHchapter] = ACTIONS(5375), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddchap] = ACTIONS(5375), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsection] = ACTIONS(5375), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddsec] = ACTIONS(5375), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHparagraph] = ACTIONS(5375), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHitem] = ACTIONS(5375), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), - }, - [861] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_BSLASHpart] = ACTIONS(5365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddpart] = ACTIONS(5365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHchapter] = ACTIONS(5365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddchap] = ACTIONS(5365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsection] = ACTIONS(5365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddsec] = ACTIONS(5365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHparagraph] = ACTIONS(5365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHitem] = ACTIONS(5365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [862] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), + [495] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [863] = { - [sym_command_name] = ACTIONS(5357), + [496] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [864] = { - [sym_command_name] = ACTIONS(5353), + [497] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5303), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), - }, - [865] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [anon_sym_BSLASHiffalse] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_RPAREN] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5301), + [anon_sym_BSLASHpart] = ACTIONS(5303), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddpart] = ACTIONS(5303), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHchapter] = ACTIONS(5303), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddchap] = ACTIONS(5303), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsection] = ACTIONS(5303), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddsec] = ACTIONS(5303), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHparagraph] = ACTIONS(5303), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5409), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5412), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(5303), + [sym_placeholder] = ACTIONS(5301), + [anon_sym_PLUS] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_SLASH] = ACTIONS(5303), + [anon_sym_CARET] = ACTIONS(5303), + [anon_sym__] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(5303), + [anon_sym_GT] = ACTIONS(5303), + [anon_sym_BANG] = ACTIONS(5303), + [anon_sym_PIPE] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_SQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), + [anon_sym_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5301), + [anon_sym_BSLASHbegin] = ACTIONS(5303), + [anon_sym_BSLASHtitle] = ACTIONS(5303), + [anon_sym_BSLASHauthor] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), + [anon_sym_BSLASHinclude] = ACTIONS(5303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), + [anon_sym_BSLASHinput] = ACTIONS(5303), + [anon_sym_BSLASHsubfile] = ACTIONS(5303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), + [anon_sym_BSLASHbibliography] = ACTIONS(5303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), + [anon_sym_BSLASHincludesvg] = ACTIONS(5303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), + [anon_sym_BSLASHimport] = ACTIONS(5303), + [anon_sym_BSLASHsubimport] = ACTIONS(5303), + [anon_sym_BSLASHinputfrom] = ACTIONS(5303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), + [anon_sym_BSLASHincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHcaption] = ACTIONS(5303), + [anon_sym_BSLASHcite] = ACTIONS(5303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCite] = ACTIONS(5303), + [anon_sym_BSLASHnocite] = ACTIONS(5303), + [anon_sym_BSLASHcitet] = ACTIONS(5303), + [anon_sym_BSLASHcitep] = ACTIONS(5303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteyear] = ACTIONS(5303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitedate] = ACTIONS(5303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteurl] = ACTIONS(5303), + [anon_sym_BSLASHfullcite] = ACTIONS(5303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), + [anon_sym_BSLASHcitealt] = ACTIONS(5303), + [anon_sym_BSLASHcitealp] = ACTIONS(5303), + [anon_sym_BSLASHcitetext] = ACTIONS(5303), + [anon_sym_BSLASHparencite] = ACTIONS(5303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHParencite] = ACTIONS(5303), + [anon_sym_BSLASHfootcite] = ACTIONS(5303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), + [anon_sym_BSLASHtextcite] = ACTIONS(5303), + [anon_sym_BSLASHTextcite] = ACTIONS(5303), + [anon_sym_BSLASHsmartcite] = ACTIONS(5303), + [anon_sym_BSLASHSmartcite] = ACTIONS(5303), + [anon_sym_BSLASHsupercite] = ACTIONS(5303), + [anon_sym_BSLASHautocite] = ACTIONS(5303), + [anon_sym_BSLASHAutocite] = ACTIONS(5303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHvolcite] = ACTIONS(5303), + [anon_sym_BSLASHVolcite] = ACTIONS(5303), + [anon_sym_BSLASHpvolcite] = ACTIONS(5303), + [anon_sym_BSLASHPvolcite] = ACTIONS(5303), + [anon_sym_BSLASHfvolcite] = ACTIONS(5303), + [anon_sym_BSLASHftvolcite] = ACTIONS(5303), + [anon_sym_BSLASHsvolcite] = ACTIONS(5303), + [anon_sym_BSLASHSvolcite] = ACTIONS(5303), + [anon_sym_BSLASHtvolcite] = ACTIONS(5303), + [anon_sym_BSLASHTvolcite] = ACTIONS(5303), + [anon_sym_BSLASHavolcite] = ACTIONS(5303), + [anon_sym_BSLASHAvolcite] = ACTIONS(5303), + [anon_sym_BSLASHnotecite] = ACTIONS(5303), + [anon_sym_BSLASHNotecite] = ACTIONS(5303), + [anon_sym_BSLASHpnotecite] = ACTIONS(5303), + [anon_sym_BSLASHPnotecite] = ACTIONS(5303), + [anon_sym_BSLASHfnotecite] = ACTIONS(5303), + [anon_sym_BSLASHlabel] = ACTIONS(5303), + [anon_sym_BSLASHref] = ACTIONS(5303), + [anon_sym_BSLASHeqref] = ACTIONS(5303), + [anon_sym_BSLASHvref] = ACTIONS(5303), + [anon_sym_BSLASHVref] = ACTIONS(5303), + [anon_sym_BSLASHautoref] = ACTIONS(5303), + [anon_sym_BSLASHpageref] = ACTIONS(5303), + [anon_sym_BSLASHcref] = ACTIONS(5303), + [anon_sym_BSLASHCref] = ACTIONS(5303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnameCref] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHlabelcref] = ACTIONS(5303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnewlabel] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdef] = ACTIONS(5303), + [anon_sym_BSLASHlet] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), + [anon_sym_BSLASHgls] = ACTIONS(5303), + [anon_sym_BSLASHGls] = ACTIONS(5303), + [anon_sym_BSLASHGLS] = ACTIONS(5303), + [anon_sym_BSLASHglspl] = ACTIONS(5303), + [anon_sym_BSLASHGlspl] = ACTIONS(5303), + [anon_sym_BSLASHGLSpl] = ACTIONS(5303), + [anon_sym_BSLASHglsdisp] = ACTIONS(5303), + [anon_sym_BSLASHglslink] = ACTIONS(5303), + [anon_sym_BSLASHglstext] = ACTIONS(5303), + [anon_sym_BSLASHGlstext] = ACTIONS(5303), + [anon_sym_BSLASHGLStext] = ACTIONS(5303), + [anon_sym_BSLASHglsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), + [anon_sym_BSLASHglsplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSplural] = ACTIONS(5303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHglsname] = ACTIONS(5303), + [anon_sym_BSLASHGlsname] = ACTIONS(5303), + [anon_sym_BSLASHGLSname] = ACTIONS(5303), + [anon_sym_BSLASHglssymbol] = ACTIONS(5303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), + [anon_sym_BSLASHglsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), + [anon_sym_BSLASHglsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), + [anon_sym_BSLASHglsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), + [anon_sym_BSLASHglsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), + [anon_sym_BSLASHglsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), + [anon_sym_BSLASHnewacronym] = ACTIONS(5303), + [anon_sym_BSLASHacrshort] = ACTIONS(5303), + [anon_sym_BSLASHAcrshort] = ACTIONS(5303), + [anon_sym_BSLASHACRshort] = ACTIONS(5303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), + [anon_sym_BSLASHacrlong] = ACTIONS(5303), + [anon_sym_BSLASHAcrlong] = ACTIONS(5303), + [anon_sym_BSLASHACRlong] = ACTIONS(5303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), + [anon_sym_BSLASHacrfull] = ACTIONS(5303), + [anon_sym_BSLASHAcrfull] = ACTIONS(5303), + [anon_sym_BSLASHACRfull] = ACTIONS(5303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), + [anon_sym_BSLASHacs] = ACTIONS(5303), + [anon_sym_BSLASHAcs] = ACTIONS(5303), + [anon_sym_BSLASHacsp] = ACTIONS(5303), + [anon_sym_BSLASHAcsp] = ACTIONS(5303), + [anon_sym_BSLASHacl] = ACTIONS(5303), + [anon_sym_BSLASHAcl] = ACTIONS(5303), + [anon_sym_BSLASHaclp] = ACTIONS(5303), + [anon_sym_BSLASHAclp] = ACTIONS(5303), + [anon_sym_BSLASHacf] = ACTIONS(5303), + [anon_sym_BSLASHAcf] = ACTIONS(5303), + [anon_sym_BSLASHacfp] = ACTIONS(5303), + [anon_sym_BSLASHAcfp] = ACTIONS(5303), + [anon_sym_BSLASHac] = ACTIONS(5303), + [anon_sym_BSLASHAc] = ACTIONS(5303), + [anon_sym_BSLASHacp] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), + [anon_sym_BSLASHcolor] = ACTIONS(5303), + [anon_sym_BSLASHcolorbox] = ACTIONS(5303), + [anon_sym_BSLASHtextcolor] = ACTIONS(5303), + [anon_sym_BSLASHpagecolor] = ACTIONS(5303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), + [anon_sym_BSLASHtext] = ACTIONS(5303), + [anon_sym_BSLASHintertext] = ACTIONS(5303), + [anon_sym_shortintertext] = ACTIONS(5303), }, - [866] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), + [498] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [867] = { - [sym_command_name] = ACTIONS(5341), + [499] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [868] = { - [sym_command_name] = ACTIONS(5337), + [500] = { + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(560), + [aux_sym__section_repeat2] = STATE(560), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), - }, - [869] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASHpart] = ACTIONS(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), - }, - [870] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_BSLASHpart] = ACTIONS(5257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddpart] = ACTIONS(5257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHchapter] = ACTIONS(5257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddchap] = ACTIONS(5257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsection] = ACTIONS(5257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddsec] = ACTIONS(5257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHparagraph] = ACTIONS(5257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHitem] = ACTIONS(5257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), - }, - [871] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASHpart] = ACTIONS(5277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddpart] = ACTIONS(5277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHchapter] = ACTIONS(5277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddchap] = ACTIONS(5277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsection] = ACTIONS(5277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddsec] = ACTIONS(5277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHparagraph] = ACTIONS(5277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHitem] = ACTIONS(5277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [872] = { - [sym_command_name] = ACTIONS(5283), + [501] = { + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(540), + [aux_sym__section_repeat2] = STATE(540), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), - }, - [873] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), - }, - [874] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [875] = { - [sym_command_name] = ACTIONS(5125), + [502] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), - }, - [876] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), - }, - [877] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), - }, - [878] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [879] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [503] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [880] = { - [sym_command_name] = ACTIONS(5327), + [504] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_BSLASHpart] = ACTIONS(5327), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5327), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5327), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5327), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5327), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5327), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5327), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5327), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), - }, - [881] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), - }, - [882] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), - }, - [883] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), - }, - [884] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_BSLASHpart] = ACTIONS(5487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddpart] = ACTIONS(5487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHchapter] = ACTIONS(5487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddchap] = ACTIONS(5487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsection] = ACTIONS(5487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddsec] = ACTIONS(5487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHparagraph] = ACTIONS(5487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHitem] = ACTIONS(5487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), - }, - [885] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASHpart] = ACTIONS(5479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddpart] = ACTIONS(5479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHchapter] = ACTIONS(5479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddchap] = ACTIONS(5479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsection] = ACTIONS(5479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddsec] = ACTIONS(5479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHparagraph] = ACTIONS(5479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHitem] = ACTIONS(5479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), - }, - [886] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_BSLASHpart] = ACTIONS(5475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddpart] = ACTIONS(5475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHchapter] = ACTIONS(5475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddchap] = ACTIONS(5475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsection] = ACTIONS(5475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddsec] = ACTIONS(5475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHparagraph] = ACTIONS(5475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHitem] = ACTIONS(5475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), - }, - [887] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHend] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), - }, - [888] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_BSLASHpart] = ACTIONS(5471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddpart] = ACTIONS(5471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHchapter] = ACTIONS(5471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddchap] = ACTIONS(5471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsection] = ACTIONS(5471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddsec] = ACTIONS(5471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHparagraph] = ACTIONS(5471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHitem] = ACTIONS(5471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), - }, - [889] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), - }, - [890] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_BSLASHpart] = ACTIONS(5233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddpart] = ACTIONS(5233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHchapter] = ACTIONS(5233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddchap] = ACTIONS(5233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsection] = ACTIONS(5233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddsec] = ACTIONS(5233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHparagraph] = ACTIONS(5233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHitem] = ACTIONS(5233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), - }, - [891] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_BSLASHpart] = ACTIONS(5229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddpart] = ACTIONS(5229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHchapter] = ACTIONS(5229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddchap] = ACTIONS(5229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsection] = ACTIONS(5229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddsec] = ACTIONS(5229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHparagraph] = ACTIONS(5229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHitem] = ACTIONS(5229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), - }, - [892] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), - }, - [893] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), - }, - [894] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_BSLASHpart] = ACTIONS(5269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddpart] = ACTIONS(5269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHchapter] = ACTIONS(5269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddchap] = ACTIONS(5269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsection] = ACTIONS(5269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddsec] = ACTIONS(5269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHparagraph] = ACTIONS(5269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHitem] = ACTIONS(5269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), - }, - [895] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_BSLASHpart] = ACTIONS(5213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddpart] = ACTIONS(5213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHchapter] = ACTIONS(5213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddchap] = ACTIONS(5213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsection] = ACTIONS(5213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddsec] = ACTIONS(5213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHparagraph] = ACTIONS(5213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHitem] = ACTIONS(5213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [896] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [897] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [898] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), - }, - [899] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [900] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [505] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [901] = { - [sym_command_name] = ACTIONS(5307), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5307), - [anon_sym_LPAREN] = ACTIONS(5305), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5305), - [anon_sym_COMMA] = ACTIONS(5305), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_BSLASHpart] = ACTIONS(5307), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddpart] = ACTIONS(5307), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHchapter] = ACTIONS(5307), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddchap] = ACTIONS(5307), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsection] = ACTIONS(5307), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddsec] = ACTIONS(5307), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHparagraph] = ACTIONS(5307), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHitem] = ACTIONS(5307), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5305), - [anon_sym_LBRACE] = ACTIONS(5305), - [sym_word] = ACTIONS(5307), - [sym_placeholder] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5307), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_STAR] = ACTIONS(5307), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_CARET] = ACTIONS(5307), - [anon_sym__] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5307), - [anon_sym_GT] = ACTIONS(5307), - [anon_sym_BANG] = ACTIONS(5307), - [anon_sym_PIPE] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_SQUOTE] = ACTIONS(5307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5305), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5305), - [anon_sym_BSLASHbegin] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5307), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5307), - [anon_sym_BSLASHinclude] = ACTIONS(5307), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5307), - [anon_sym_BSLASHinput] = ACTIONS(5307), - [anon_sym_BSLASHsubfile] = ACTIONS(5307), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5307), - [anon_sym_BSLASHbibliography] = ACTIONS(5307), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5307), - [anon_sym_BSLASHincludesvg] = ACTIONS(5307), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5307), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5307), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5307), - [anon_sym_BSLASHimport] = ACTIONS(5307), - [anon_sym_BSLASHsubimport] = ACTIONS(5307), - [anon_sym_BSLASHinputfrom] = ACTIONS(5307), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5307), - [anon_sym_BSLASHincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHcaption] = ACTIONS(5307), - [anon_sym_BSLASHcite] = ACTIONS(5307), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCite] = ACTIONS(5307), - [anon_sym_BSLASHnocite] = ACTIONS(5307), - [anon_sym_BSLASHcitet] = ACTIONS(5307), - [anon_sym_BSLASHcitep] = ACTIONS(5307), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteyear] = ACTIONS(5307), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitedate] = ACTIONS(5307), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteurl] = ACTIONS(5307), - [anon_sym_BSLASHfullcite] = ACTIONS(5307), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5307), - [anon_sym_BSLASHcitealt] = ACTIONS(5307), - [anon_sym_BSLASHcitealp] = ACTIONS(5307), - [anon_sym_BSLASHcitetext] = ACTIONS(5307), - [anon_sym_BSLASHparencite] = ACTIONS(5307), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHParencite] = ACTIONS(5307), - [anon_sym_BSLASHfootcite] = ACTIONS(5307), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5307), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5307), - [anon_sym_BSLASHtextcite] = ACTIONS(5307), - [anon_sym_BSLASHTextcite] = ACTIONS(5307), - [anon_sym_BSLASHsmartcite] = ACTIONS(5307), - [anon_sym_BSLASHSmartcite] = ACTIONS(5307), - [anon_sym_BSLASHsupercite] = ACTIONS(5307), - [anon_sym_BSLASHautocite] = ACTIONS(5307), - [anon_sym_BSLASHAutocite] = ACTIONS(5307), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHvolcite] = ACTIONS(5307), - [anon_sym_BSLASHVolcite] = ACTIONS(5307), - [anon_sym_BSLASHpvolcite] = ACTIONS(5307), - [anon_sym_BSLASHPvolcite] = ACTIONS(5307), - [anon_sym_BSLASHfvolcite] = ACTIONS(5307), - [anon_sym_BSLASHftvolcite] = ACTIONS(5307), - [anon_sym_BSLASHsvolcite] = ACTIONS(5307), - [anon_sym_BSLASHSvolcite] = ACTIONS(5307), - [anon_sym_BSLASHtvolcite] = ACTIONS(5307), - [anon_sym_BSLASHTvolcite] = ACTIONS(5307), - [anon_sym_BSLASHavolcite] = ACTIONS(5307), - [anon_sym_BSLASHAvolcite] = ACTIONS(5307), - [anon_sym_BSLASHnotecite] = ACTIONS(5307), - [anon_sym_BSLASHNotecite] = ACTIONS(5307), - [anon_sym_BSLASHpnotecite] = ACTIONS(5307), - [anon_sym_BSLASHPnotecite] = ACTIONS(5307), - [anon_sym_BSLASHfnotecite] = ACTIONS(5307), - [anon_sym_BSLASHlabel] = ACTIONS(5307), - [anon_sym_BSLASHref] = ACTIONS(5307), - [anon_sym_BSLASHeqref] = ACTIONS(5307), - [anon_sym_BSLASHvref] = ACTIONS(5307), - [anon_sym_BSLASHVref] = ACTIONS(5307), - [anon_sym_BSLASHautoref] = ACTIONS(5307), - [anon_sym_BSLASHpageref] = ACTIONS(5307), - [anon_sym_BSLASHcref] = ACTIONS(5307), - [anon_sym_BSLASHCref] = ACTIONS(5307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnameCref] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHlabelcref] = ACTIONS(5307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnewlabel] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdef] = ACTIONS(5307), - [anon_sym_BSLASHlet] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5307), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5307), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5307), - [anon_sym_BSLASHgls] = ACTIONS(5307), - [anon_sym_BSLASHGls] = ACTIONS(5307), - [anon_sym_BSLASHGLS] = ACTIONS(5307), - [anon_sym_BSLASHglspl] = ACTIONS(5307), - [anon_sym_BSLASHGlspl] = ACTIONS(5307), - [anon_sym_BSLASHGLSpl] = ACTIONS(5307), - [anon_sym_BSLASHglsdisp] = ACTIONS(5307), - [anon_sym_BSLASHglslink] = ACTIONS(5307), - [anon_sym_BSLASHglstext] = ACTIONS(5307), - [anon_sym_BSLASHGlstext] = ACTIONS(5307), - [anon_sym_BSLASHGLStext] = ACTIONS(5307), - [anon_sym_BSLASHglsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5307), - [anon_sym_BSLASHglsplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSplural] = ACTIONS(5307), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHglsname] = ACTIONS(5307), - [anon_sym_BSLASHGlsname] = ACTIONS(5307), - [anon_sym_BSLASHGLSname] = ACTIONS(5307), - [anon_sym_BSLASHglssymbol] = ACTIONS(5307), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5307), - [anon_sym_BSLASHglsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5307), - [anon_sym_BSLASHglsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5307), - [anon_sym_BSLASHglsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5307), - [anon_sym_BSLASHglsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5307), - [anon_sym_BSLASHglsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5307), - [anon_sym_BSLASHnewacronym] = ACTIONS(5307), - [anon_sym_BSLASHacrshort] = ACTIONS(5307), - [anon_sym_BSLASHAcrshort] = ACTIONS(5307), - [anon_sym_BSLASHACRshort] = ACTIONS(5307), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5307), - [anon_sym_BSLASHacrlong] = ACTIONS(5307), - [anon_sym_BSLASHAcrlong] = ACTIONS(5307), - [anon_sym_BSLASHACRlong] = ACTIONS(5307), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5307), - [anon_sym_BSLASHacrfull] = ACTIONS(5307), - [anon_sym_BSLASHAcrfull] = ACTIONS(5307), - [anon_sym_BSLASHACRfull] = ACTIONS(5307), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5307), - [anon_sym_BSLASHacs] = ACTIONS(5307), - [anon_sym_BSLASHAcs] = ACTIONS(5307), - [anon_sym_BSLASHacsp] = ACTIONS(5307), - [anon_sym_BSLASHAcsp] = ACTIONS(5307), - [anon_sym_BSLASHacl] = ACTIONS(5307), - [anon_sym_BSLASHAcl] = ACTIONS(5307), - [anon_sym_BSLASHaclp] = ACTIONS(5307), - [anon_sym_BSLASHAclp] = ACTIONS(5307), - [anon_sym_BSLASHacf] = ACTIONS(5307), - [anon_sym_BSLASHAcf] = ACTIONS(5307), - [anon_sym_BSLASHacfp] = ACTIONS(5307), - [anon_sym_BSLASHAcfp] = ACTIONS(5307), - [anon_sym_BSLASHac] = ACTIONS(5307), - [anon_sym_BSLASHAc] = ACTIONS(5307), - [anon_sym_BSLASHacp] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5307), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5307), - [anon_sym_BSLASHcolor] = ACTIONS(5307), - [anon_sym_BSLASHcolorbox] = ACTIONS(5307), - [anon_sym_BSLASHtextcolor] = ACTIONS(5307), - [anon_sym_BSLASHpagecolor] = ACTIONS(5307), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5307), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), - [anon_sym_BSLASHtext] = ACTIONS(5307), - [anon_sym_BSLASHintertext] = ACTIONS(5307), - [anon_sym_shortintertext] = ACTIONS(5307), + [506] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [902] = { - [sym_command_name] = ACTIONS(5303), + [507] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5303), - [anon_sym_LPAREN] = ACTIONS(5301), - [anon_sym_RPAREN] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5301), - [anon_sym_COMMA] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_BSLASHpart] = ACTIONS(5303), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddpart] = ACTIONS(5303), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHchapter] = ACTIONS(5303), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddchap] = ACTIONS(5303), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsection] = ACTIONS(5303), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddsec] = ACTIONS(5303), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHparagraph] = ACTIONS(5303), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHitem] = ACTIONS(5303), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), - [anon_sym_LBRACE] = ACTIONS(5301), - [sym_word] = ACTIONS(5303), - [sym_placeholder] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_SLASH] = ACTIONS(5303), - [anon_sym_CARET] = ACTIONS(5303), - [anon_sym__] = ACTIONS(5303), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_BANG] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_SQUOTE] = ACTIONS(5303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), - [anon_sym_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5301), - [anon_sym_BSLASHbegin] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5303), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), - [anon_sym_BSLASHinclude] = ACTIONS(5303), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), - [anon_sym_BSLASHinput] = ACTIONS(5303), - [anon_sym_BSLASHsubfile] = ACTIONS(5303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), - [anon_sym_BSLASHbibliography] = ACTIONS(5303), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), - [anon_sym_BSLASHincludesvg] = ACTIONS(5303), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), - [anon_sym_BSLASHimport] = ACTIONS(5303), - [anon_sym_BSLASHsubimport] = ACTIONS(5303), - [anon_sym_BSLASHinputfrom] = ACTIONS(5303), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), - [anon_sym_BSLASHincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHcaption] = ACTIONS(5303), - [anon_sym_BSLASHcite] = ACTIONS(5303), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCite] = ACTIONS(5303), - [anon_sym_BSLASHnocite] = ACTIONS(5303), - [anon_sym_BSLASHcitet] = ACTIONS(5303), - [anon_sym_BSLASHcitep] = ACTIONS(5303), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteyear] = ACTIONS(5303), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitedate] = ACTIONS(5303), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteurl] = ACTIONS(5303), - [anon_sym_BSLASHfullcite] = ACTIONS(5303), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), - [anon_sym_BSLASHcitealt] = ACTIONS(5303), - [anon_sym_BSLASHcitealp] = ACTIONS(5303), - [anon_sym_BSLASHcitetext] = ACTIONS(5303), - [anon_sym_BSLASHparencite] = ACTIONS(5303), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHParencite] = ACTIONS(5303), - [anon_sym_BSLASHfootcite] = ACTIONS(5303), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), - [anon_sym_BSLASHtextcite] = ACTIONS(5303), - [anon_sym_BSLASHTextcite] = ACTIONS(5303), - [anon_sym_BSLASHsmartcite] = ACTIONS(5303), - [anon_sym_BSLASHSmartcite] = ACTIONS(5303), - [anon_sym_BSLASHsupercite] = ACTIONS(5303), - [anon_sym_BSLASHautocite] = ACTIONS(5303), - [anon_sym_BSLASHAutocite] = ACTIONS(5303), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHvolcite] = ACTIONS(5303), - [anon_sym_BSLASHVolcite] = ACTIONS(5303), - [anon_sym_BSLASHpvolcite] = ACTIONS(5303), - [anon_sym_BSLASHPvolcite] = ACTIONS(5303), - [anon_sym_BSLASHfvolcite] = ACTIONS(5303), - [anon_sym_BSLASHftvolcite] = ACTIONS(5303), - [anon_sym_BSLASHsvolcite] = ACTIONS(5303), - [anon_sym_BSLASHSvolcite] = ACTIONS(5303), - [anon_sym_BSLASHtvolcite] = ACTIONS(5303), - [anon_sym_BSLASHTvolcite] = ACTIONS(5303), - [anon_sym_BSLASHavolcite] = ACTIONS(5303), - [anon_sym_BSLASHAvolcite] = ACTIONS(5303), - [anon_sym_BSLASHnotecite] = ACTIONS(5303), - [anon_sym_BSLASHNotecite] = ACTIONS(5303), - [anon_sym_BSLASHpnotecite] = ACTIONS(5303), - [anon_sym_BSLASHPnotecite] = ACTIONS(5303), - [anon_sym_BSLASHfnotecite] = ACTIONS(5303), - [anon_sym_BSLASHlabel] = ACTIONS(5303), - [anon_sym_BSLASHref] = ACTIONS(5303), - [anon_sym_BSLASHeqref] = ACTIONS(5303), - [anon_sym_BSLASHvref] = ACTIONS(5303), - [anon_sym_BSLASHVref] = ACTIONS(5303), - [anon_sym_BSLASHautoref] = ACTIONS(5303), - [anon_sym_BSLASHpageref] = ACTIONS(5303), - [anon_sym_BSLASHcref] = ACTIONS(5303), - [anon_sym_BSLASHCref] = ACTIONS(5303), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnameCref] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHlabelcref] = ACTIONS(5303), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnewlabel] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdef] = ACTIONS(5303), - [anon_sym_BSLASHlet] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), - [anon_sym_BSLASHgls] = ACTIONS(5303), - [anon_sym_BSLASHGls] = ACTIONS(5303), - [anon_sym_BSLASHGLS] = ACTIONS(5303), - [anon_sym_BSLASHglspl] = ACTIONS(5303), - [anon_sym_BSLASHGlspl] = ACTIONS(5303), - [anon_sym_BSLASHGLSpl] = ACTIONS(5303), - [anon_sym_BSLASHglsdisp] = ACTIONS(5303), - [anon_sym_BSLASHglslink] = ACTIONS(5303), - [anon_sym_BSLASHglstext] = ACTIONS(5303), - [anon_sym_BSLASHGlstext] = ACTIONS(5303), - [anon_sym_BSLASHGLStext] = ACTIONS(5303), - [anon_sym_BSLASHglsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), - [anon_sym_BSLASHglsplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSplural] = ACTIONS(5303), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHglsname] = ACTIONS(5303), - [anon_sym_BSLASHGlsname] = ACTIONS(5303), - [anon_sym_BSLASHGLSname] = ACTIONS(5303), - [anon_sym_BSLASHglssymbol] = ACTIONS(5303), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), - [anon_sym_BSLASHglsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), - [anon_sym_BSLASHglsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), - [anon_sym_BSLASHglsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), - [anon_sym_BSLASHglsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), - [anon_sym_BSLASHglsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), - [anon_sym_BSLASHnewacronym] = ACTIONS(5303), - [anon_sym_BSLASHacrshort] = ACTIONS(5303), - [anon_sym_BSLASHAcrshort] = ACTIONS(5303), - [anon_sym_BSLASHACRshort] = ACTIONS(5303), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), - [anon_sym_BSLASHacrlong] = ACTIONS(5303), - [anon_sym_BSLASHAcrlong] = ACTIONS(5303), - [anon_sym_BSLASHACRlong] = ACTIONS(5303), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), - [anon_sym_BSLASHacrfull] = ACTIONS(5303), - [anon_sym_BSLASHAcrfull] = ACTIONS(5303), - [anon_sym_BSLASHACRfull] = ACTIONS(5303), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), - [anon_sym_BSLASHacs] = ACTIONS(5303), - [anon_sym_BSLASHAcs] = ACTIONS(5303), - [anon_sym_BSLASHacsp] = ACTIONS(5303), - [anon_sym_BSLASHAcsp] = ACTIONS(5303), - [anon_sym_BSLASHacl] = ACTIONS(5303), - [anon_sym_BSLASHAcl] = ACTIONS(5303), - [anon_sym_BSLASHaclp] = ACTIONS(5303), - [anon_sym_BSLASHAclp] = ACTIONS(5303), - [anon_sym_BSLASHacf] = ACTIONS(5303), - [anon_sym_BSLASHAcf] = ACTIONS(5303), - [anon_sym_BSLASHacfp] = ACTIONS(5303), - [anon_sym_BSLASHAcfp] = ACTIONS(5303), - [anon_sym_BSLASHac] = ACTIONS(5303), - [anon_sym_BSLASHAc] = ACTIONS(5303), - [anon_sym_BSLASHacp] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), - [anon_sym_BSLASHcolor] = ACTIONS(5303), - [anon_sym_BSLASHcolorbox] = ACTIONS(5303), - [anon_sym_BSLASHtextcolor] = ACTIONS(5303), - [anon_sym_BSLASHpagecolor] = ACTIONS(5303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), - [anon_sym_BSLASHtext] = ACTIONS(5303), - [anon_sym_BSLASHintertext] = ACTIONS(5303), - [anon_sym_shortintertext] = ACTIONS(5303), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [903] = { - [sym_command_name] = ACTIONS(5295), + [508] = { + [sym_curly_group] = STATE(709), + [sym_brack_group_text] = STATE(2117), + [ts_builtin_sym_end] = ACTIONS(5415), + [sym_command_name] = ACTIONS(5417), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - [anon_sym_BSLASHtext] = ACTIONS(5295), - [anon_sym_BSLASHintertext] = ACTIONS(5295), - [anon_sym_shortintertext] = ACTIONS(5295), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_BSLASHpart] = ACTIONS(5417), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddpart] = ACTIONS(5417), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHchapter] = ACTIONS(5417), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddchap] = ACTIONS(5417), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsection] = ACTIONS(5417), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddsec] = ACTIONS(5417), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHparagraph] = ACTIONS(5417), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5417), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHitem] = ACTIONS(5417), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5415), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [904] = { - [sym_command_name] = ACTIONS(5273), + [509] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5273), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_RPAREN] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5271), - [anon_sym_RBRACK] = ACTIONS(5271), - [anon_sym_COMMA] = ACTIONS(5271), - [anon_sym_EQ] = ACTIONS(5271), - [anon_sym_BSLASHpart] = ACTIONS(5273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddpart] = ACTIONS(5273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHchapter] = ACTIONS(5273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddchap] = ACTIONS(5273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsection] = ACTIONS(5273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddsec] = ACTIONS(5273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHparagraph] = ACTIONS(5273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHitem] = ACTIONS(5273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), - [anon_sym_LBRACE] = ACTIONS(5271), - [sym_word] = ACTIONS(5273), - [sym_placeholder] = ACTIONS(5271), - [anon_sym_PLUS] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(5273), - [anon_sym_STAR] = ACTIONS(5273), - [anon_sym_SLASH] = ACTIONS(5273), - [anon_sym_CARET] = ACTIONS(5273), - [anon_sym__] = ACTIONS(5273), - [anon_sym_LT] = ACTIONS(5273), - [anon_sym_GT] = ACTIONS(5273), - [anon_sym_BANG] = ACTIONS(5273), - [anon_sym_PIPE] = ACTIONS(5273), - [anon_sym_COLON] = ACTIONS(5273), - [anon_sym_SQUOTE] = ACTIONS(5273), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), - [anon_sym_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5271), - [anon_sym_BSLASHbegin] = ACTIONS(5273), - [anon_sym_BSLASHusepackage] = ACTIONS(5273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), - [anon_sym_BSLASHinclude] = ACTIONS(5273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), - [anon_sym_BSLASHinput] = ACTIONS(5273), - [anon_sym_BSLASHsubfile] = ACTIONS(5273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), - [anon_sym_BSLASHbibliography] = ACTIONS(5273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), - [anon_sym_BSLASHincludesvg] = ACTIONS(5273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), - [anon_sym_BSLASHimport] = ACTIONS(5273), - [anon_sym_BSLASHsubimport] = ACTIONS(5273), - [anon_sym_BSLASHinputfrom] = ACTIONS(5273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), - [anon_sym_BSLASHincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHcaption] = ACTIONS(5273), - [anon_sym_BSLASHcite] = ACTIONS(5273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCite] = ACTIONS(5273), - [anon_sym_BSLASHnocite] = ACTIONS(5273), - [anon_sym_BSLASHcitet] = ACTIONS(5273), - [anon_sym_BSLASHcitep] = ACTIONS(5273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteyear] = ACTIONS(5273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitedate] = ACTIONS(5273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteurl] = ACTIONS(5273), - [anon_sym_BSLASHfullcite] = ACTIONS(5273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), - [anon_sym_BSLASHcitealt] = ACTIONS(5273), - [anon_sym_BSLASHcitealp] = ACTIONS(5273), - [anon_sym_BSLASHcitetext] = ACTIONS(5273), - [anon_sym_BSLASHparencite] = ACTIONS(5273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHParencite] = ACTIONS(5273), - [anon_sym_BSLASHfootcite] = ACTIONS(5273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), - [anon_sym_BSLASHtextcite] = ACTIONS(5273), - [anon_sym_BSLASHTextcite] = ACTIONS(5273), - [anon_sym_BSLASHsmartcite] = ACTIONS(5273), - [anon_sym_BSLASHSmartcite] = ACTIONS(5273), - [anon_sym_BSLASHsupercite] = ACTIONS(5273), - [anon_sym_BSLASHautocite] = ACTIONS(5273), - [anon_sym_BSLASHAutocite] = ACTIONS(5273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHvolcite] = ACTIONS(5273), - [anon_sym_BSLASHVolcite] = ACTIONS(5273), - [anon_sym_BSLASHpvolcite] = ACTIONS(5273), - [anon_sym_BSLASHPvolcite] = ACTIONS(5273), - [anon_sym_BSLASHfvolcite] = ACTIONS(5273), - [anon_sym_BSLASHftvolcite] = ACTIONS(5273), - [anon_sym_BSLASHsvolcite] = ACTIONS(5273), - [anon_sym_BSLASHSvolcite] = ACTIONS(5273), - [anon_sym_BSLASHtvolcite] = ACTIONS(5273), - [anon_sym_BSLASHTvolcite] = ACTIONS(5273), - [anon_sym_BSLASHavolcite] = ACTIONS(5273), - [anon_sym_BSLASHAvolcite] = ACTIONS(5273), - [anon_sym_BSLASHnotecite] = ACTIONS(5273), - [anon_sym_BSLASHNotecite] = ACTIONS(5273), - [anon_sym_BSLASHpnotecite] = ACTIONS(5273), - [anon_sym_BSLASHPnotecite] = ACTIONS(5273), - [anon_sym_BSLASHfnotecite] = ACTIONS(5273), - [anon_sym_BSLASHlabel] = ACTIONS(5273), - [anon_sym_BSLASHref] = ACTIONS(5273), - [anon_sym_BSLASHeqref] = ACTIONS(5273), - [anon_sym_BSLASHvref] = ACTIONS(5273), - [anon_sym_BSLASHVref] = ACTIONS(5273), - [anon_sym_BSLASHautoref] = ACTIONS(5273), - [anon_sym_BSLASHpageref] = ACTIONS(5273), - [anon_sym_BSLASHcref] = ACTIONS(5273), - [anon_sym_BSLASHCref] = ACTIONS(5273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnameCref] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHlabelcref] = ACTIONS(5273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnewlabel] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdef] = ACTIONS(5273), - [anon_sym_BSLASHlet] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), - [anon_sym_BSLASHgls] = ACTIONS(5273), - [anon_sym_BSLASHGls] = ACTIONS(5273), - [anon_sym_BSLASHGLS] = ACTIONS(5273), - [anon_sym_BSLASHglspl] = ACTIONS(5273), - [anon_sym_BSLASHGlspl] = ACTIONS(5273), - [anon_sym_BSLASHGLSpl] = ACTIONS(5273), - [anon_sym_BSLASHglsdisp] = ACTIONS(5273), - [anon_sym_BSLASHglslink] = ACTIONS(5273), - [anon_sym_BSLASHglstext] = ACTIONS(5273), - [anon_sym_BSLASHGlstext] = ACTIONS(5273), - [anon_sym_BSLASHGLStext] = ACTIONS(5273), - [anon_sym_BSLASHglsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), - [anon_sym_BSLASHglsplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSplural] = ACTIONS(5273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHglsname] = ACTIONS(5273), - [anon_sym_BSLASHGlsname] = ACTIONS(5273), - [anon_sym_BSLASHGLSname] = ACTIONS(5273), - [anon_sym_BSLASHglssymbol] = ACTIONS(5273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), - [anon_sym_BSLASHglsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), - [anon_sym_BSLASHglsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), - [anon_sym_BSLASHglsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), - [anon_sym_BSLASHglsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), - [anon_sym_BSLASHglsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), - [anon_sym_BSLASHnewacronym] = ACTIONS(5273), - [anon_sym_BSLASHacrshort] = ACTIONS(5273), - [anon_sym_BSLASHAcrshort] = ACTIONS(5273), - [anon_sym_BSLASHACRshort] = ACTIONS(5273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), - [anon_sym_BSLASHacrlong] = ACTIONS(5273), - [anon_sym_BSLASHAcrlong] = ACTIONS(5273), - [anon_sym_BSLASHACRlong] = ACTIONS(5273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), - [anon_sym_BSLASHacrfull] = ACTIONS(5273), - [anon_sym_BSLASHAcrfull] = ACTIONS(5273), - [anon_sym_BSLASHACRfull] = ACTIONS(5273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), - [anon_sym_BSLASHacs] = ACTIONS(5273), - [anon_sym_BSLASHAcs] = ACTIONS(5273), - [anon_sym_BSLASHacsp] = ACTIONS(5273), - [anon_sym_BSLASHAcsp] = ACTIONS(5273), - [anon_sym_BSLASHacl] = ACTIONS(5273), - [anon_sym_BSLASHAcl] = ACTIONS(5273), - [anon_sym_BSLASHaclp] = ACTIONS(5273), - [anon_sym_BSLASHAclp] = ACTIONS(5273), - [anon_sym_BSLASHacf] = ACTIONS(5273), - [anon_sym_BSLASHAcf] = ACTIONS(5273), - [anon_sym_BSLASHacfp] = ACTIONS(5273), - [anon_sym_BSLASHAcfp] = ACTIONS(5273), - [anon_sym_BSLASHac] = ACTIONS(5273), - [anon_sym_BSLASHAc] = ACTIONS(5273), - [anon_sym_BSLASHacp] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), - [anon_sym_BSLASHcolor] = ACTIONS(5273), - [anon_sym_BSLASHcolorbox] = ACTIONS(5273), - [anon_sym_BSLASHtextcolor] = ACTIONS(5273), - [anon_sym_BSLASHpagecolor] = ACTIONS(5273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), - [anon_sym_BSLASHtext] = ACTIONS(5273), - [anon_sym_BSLASHintertext] = ACTIONS(5273), - [anon_sym_shortintertext] = ACTIONS(5273), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [510] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [511] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [512] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [513] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [514] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [515] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5419), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5422), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHtitle] = ACTIONS(5253), + [anon_sym_BSLASHauthor] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), }, - [905] = { - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5263), - [anon_sym_BSLASHpart] = ACTIONS(5265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddpart] = ACTIONS(5265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHchapter] = ACTIONS(5265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddchap] = ACTIONS(5265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsection] = ACTIONS(5265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddsec] = ACTIONS(5265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHparagraph] = ACTIONS(5265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHitem] = ACTIONS(5265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [sym_word] = ACTIONS(5265), - [sym_placeholder] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(5265), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_STAR] = ACTIONS(5265), - [anon_sym_SLASH] = ACTIONS(5265), - [anon_sym_CARET] = ACTIONS(5265), - [anon_sym__] = ACTIONS(5265), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_BANG] = ACTIONS(5265), - [anon_sym_PIPE] = ACTIONS(5265), - [anon_sym_COLON] = ACTIONS(5265), - [anon_sym_SQUOTE] = ACTIONS(5265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5263), - [anon_sym_BSLASHbegin] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), - [anon_sym_BSLASHinclude] = ACTIONS(5265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), - [anon_sym_BSLASHinput] = ACTIONS(5265), - [anon_sym_BSLASHsubfile] = ACTIONS(5265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), - [anon_sym_BSLASHbibliography] = ACTIONS(5265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), - [anon_sym_BSLASHincludesvg] = ACTIONS(5265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), - [anon_sym_BSLASHimport] = ACTIONS(5265), - [anon_sym_BSLASHsubimport] = ACTIONS(5265), - [anon_sym_BSLASHinputfrom] = ACTIONS(5265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), - [anon_sym_BSLASHincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHcaption] = ACTIONS(5265), - [anon_sym_BSLASHcite] = ACTIONS(5265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCite] = ACTIONS(5265), - [anon_sym_BSLASHnocite] = ACTIONS(5265), - [anon_sym_BSLASHcitet] = ACTIONS(5265), - [anon_sym_BSLASHcitep] = ACTIONS(5265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteyear] = ACTIONS(5265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitedate] = ACTIONS(5265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteurl] = ACTIONS(5265), - [anon_sym_BSLASHfullcite] = ACTIONS(5265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), - [anon_sym_BSLASHcitealt] = ACTIONS(5265), - [anon_sym_BSLASHcitealp] = ACTIONS(5265), - [anon_sym_BSLASHcitetext] = ACTIONS(5265), - [anon_sym_BSLASHparencite] = ACTIONS(5265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHParencite] = ACTIONS(5265), - [anon_sym_BSLASHfootcite] = ACTIONS(5265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), - [anon_sym_BSLASHtextcite] = ACTIONS(5265), - [anon_sym_BSLASHTextcite] = ACTIONS(5265), - [anon_sym_BSLASHsmartcite] = ACTIONS(5265), - [anon_sym_BSLASHSmartcite] = ACTIONS(5265), - [anon_sym_BSLASHsupercite] = ACTIONS(5265), - [anon_sym_BSLASHautocite] = ACTIONS(5265), - [anon_sym_BSLASHAutocite] = ACTIONS(5265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHvolcite] = ACTIONS(5265), - [anon_sym_BSLASHVolcite] = ACTIONS(5265), - [anon_sym_BSLASHpvolcite] = ACTIONS(5265), - [anon_sym_BSLASHPvolcite] = ACTIONS(5265), - [anon_sym_BSLASHfvolcite] = ACTIONS(5265), - [anon_sym_BSLASHftvolcite] = ACTIONS(5265), - [anon_sym_BSLASHsvolcite] = ACTIONS(5265), - [anon_sym_BSLASHSvolcite] = ACTIONS(5265), - [anon_sym_BSLASHtvolcite] = ACTIONS(5265), - [anon_sym_BSLASHTvolcite] = ACTIONS(5265), - [anon_sym_BSLASHavolcite] = ACTIONS(5265), - [anon_sym_BSLASHAvolcite] = ACTIONS(5265), - [anon_sym_BSLASHnotecite] = ACTIONS(5265), - [anon_sym_BSLASHNotecite] = ACTIONS(5265), - [anon_sym_BSLASHpnotecite] = ACTIONS(5265), - [anon_sym_BSLASHPnotecite] = ACTIONS(5265), - [anon_sym_BSLASHfnotecite] = ACTIONS(5265), - [anon_sym_BSLASHlabel] = ACTIONS(5265), - [anon_sym_BSLASHref] = ACTIONS(5265), - [anon_sym_BSLASHeqref] = ACTIONS(5265), - [anon_sym_BSLASHvref] = ACTIONS(5265), - [anon_sym_BSLASHVref] = ACTIONS(5265), - [anon_sym_BSLASHautoref] = ACTIONS(5265), - [anon_sym_BSLASHpageref] = ACTIONS(5265), - [anon_sym_BSLASHcref] = ACTIONS(5265), - [anon_sym_BSLASHCref] = ACTIONS(5265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnameCref] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHlabelcref] = ACTIONS(5265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnewlabel] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdef] = ACTIONS(5265), - [anon_sym_BSLASHlet] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), - [anon_sym_BSLASHgls] = ACTIONS(5265), - [anon_sym_BSLASHGls] = ACTIONS(5265), - [anon_sym_BSLASHGLS] = ACTIONS(5265), - [anon_sym_BSLASHglspl] = ACTIONS(5265), - [anon_sym_BSLASHGlspl] = ACTIONS(5265), - [anon_sym_BSLASHGLSpl] = ACTIONS(5265), - [anon_sym_BSLASHglsdisp] = ACTIONS(5265), - [anon_sym_BSLASHglslink] = ACTIONS(5265), - [anon_sym_BSLASHglstext] = ACTIONS(5265), - [anon_sym_BSLASHGlstext] = ACTIONS(5265), - [anon_sym_BSLASHGLStext] = ACTIONS(5265), - [anon_sym_BSLASHglsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), - [anon_sym_BSLASHglsplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSplural] = ACTIONS(5265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHglsname] = ACTIONS(5265), - [anon_sym_BSLASHGlsname] = ACTIONS(5265), - [anon_sym_BSLASHGLSname] = ACTIONS(5265), - [anon_sym_BSLASHglssymbol] = ACTIONS(5265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), - [anon_sym_BSLASHglsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), - [anon_sym_BSLASHglsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), - [anon_sym_BSLASHglsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), - [anon_sym_BSLASHglsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), - [anon_sym_BSLASHglsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), - [anon_sym_BSLASHnewacronym] = ACTIONS(5265), - [anon_sym_BSLASHacrshort] = ACTIONS(5265), - [anon_sym_BSLASHAcrshort] = ACTIONS(5265), - [anon_sym_BSLASHACRshort] = ACTIONS(5265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), - [anon_sym_BSLASHacrlong] = ACTIONS(5265), - [anon_sym_BSLASHAcrlong] = ACTIONS(5265), - [anon_sym_BSLASHACRlong] = ACTIONS(5265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), - [anon_sym_BSLASHacrfull] = ACTIONS(5265), - [anon_sym_BSLASHAcrfull] = ACTIONS(5265), - [anon_sym_BSLASHACRfull] = ACTIONS(5265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), - [anon_sym_BSLASHacs] = ACTIONS(5265), - [anon_sym_BSLASHAcs] = ACTIONS(5265), - [anon_sym_BSLASHacsp] = ACTIONS(5265), - [anon_sym_BSLASHAcsp] = ACTIONS(5265), - [anon_sym_BSLASHacl] = ACTIONS(5265), - [anon_sym_BSLASHAcl] = ACTIONS(5265), - [anon_sym_BSLASHaclp] = ACTIONS(5265), - [anon_sym_BSLASHAclp] = ACTIONS(5265), - [anon_sym_BSLASHacf] = ACTIONS(5265), - [anon_sym_BSLASHAcf] = ACTIONS(5265), - [anon_sym_BSLASHacfp] = ACTIONS(5265), - [anon_sym_BSLASHAcfp] = ACTIONS(5265), - [anon_sym_BSLASHac] = ACTIONS(5265), - [anon_sym_BSLASHAc] = ACTIONS(5265), - [anon_sym_BSLASHacp] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), - [anon_sym_BSLASHcolor] = ACTIONS(5265), - [anon_sym_BSLASHcolorbox] = ACTIONS(5265), - [anon_sym_BSLASHtextcolor] = ACTIONS(5265), - [anon_sym_BSLASHpagecolor] = ACTIONS(5265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), - [anon_sym_BSLASHtext] = ACTIONS(5265), - [anon_sym_BSLASHintertext] = ACTIONS(5265), - [anon_sym_shortintertext] = ACTIONS(5265), + [516] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [906] = { - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5259), - [anon_sym_BSLASHpart] = ACTIONS(5261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddpart] = ACTIONS(5261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHchapter] = ACTIONS(5261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddchap] = ACTIONS(5261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsection] = ACTIONS(5261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddsec] = ACTIONS(5261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHparagraph] = ACTIONS(5261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHitem] = ACTIONS(5261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), - [anon_sym_LBRACE] = ACTIONS(5259), - [sym_word] = ACTIONS(5261), - [sym_placeholder] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym__] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5261), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), - [anon_sym_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5259), - [anon_sym_BSLASHbegin] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), - [anon_sym_BSLASHinclude] = ACTIONS(5261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), - [anon_sym_BSLASHinput] = ACTIONS(5261), - [anon_sym_BSLASHsubfile] = ACTIONS(5261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), - [anon_sym_BSLASHbibliography] = ACTIONS(5261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), - [anon_sym_BSLASHincludesvg] = ACTIONS(5261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), - [anon_sym_BSLASHimport] = ACTIONS(5261), - [anon_sym_BSLASHsubimport] = ACTIONS(5261), - [anon_sym_BSLASHinputfrom] = ACTIONS(5261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), - [anon_sym_BSLASHincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHcaption] = ACTIONS(5261), - [anon_sym_BSLASHcite] = ACTIONS(5261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCite] = ACTIONS(5261), - [anon_sym_BSLASHnocite] = ACTIONS(5261), - [anon_sym_BSLASHcitet] = ACTIONS(5261), - [anon_sym_BSLASHcitep] = ACTIONS(5261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteyear] = ACTIONS(5261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitedate] = ACTIONS(5261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteurl] = ACTIONS(5261), - [anon_sym_BSLASHfullcite] = ACTIONS(5261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), - [anon_sym_BSLASHcitealt] = ACTIONS(5261), - [anon_sym_BSLASHcitealp] = ACTIONS(5261), - [anon_sym_BSLASHcitetext] = ACTIONS(5261), - [anon_sym_BSLASHparencite] = ACTIONS(5261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHParencite] = ACTIONS(5261), - [anon_sym_BSLASHfootcite] = ACTIONS(5261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), - [anon_sym_BSLASHtextcite] = ACTIONS(5261), - [anon_sym_BSLASHTextcite] = ACTIONS(5261), - [anon_sym_BSLASHsmartcite] = ACTIONS(5261), - [anon_sym_BSLASHSmartcite] = ACTIONS(5261), - [anon_sym_BSLASHsupercite] = ACTIONS(5261), - [anon_sym_BSLASHautocite] = ACTIONS(5261), - [anon_sym_BSLASHAutocite] = ACTIONS(5261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHvolcite] = ACTIONS(5261), - [anon_sym_BSLASHVolcite] = ACTIONS(5261), - [anon_sym_BSLASHpvolcite] = ACTIONS(5261), - [anon_sym_BSLASHPvolcite] = ACTIONS(5261), - [anon_sym_BSLASHfvolcite] = ACTIONS(5261), - [anon_sym_BSLASHftvolcite] = ACTIONS(5261), - [anon_sym_BSLASHsvolcite] = ACTIONS(5261), - [anon_sym_BSLASHSvolcite] = ACTIONS(5261), - [anon_sym_BSLASHtvolcite] = ACTIONS(5261), - [anon_sym_BSLASHTvolcite] = ACTIONS(5261), - [anon_sym_BSLASHavolcite] = ACTIONS(5261), - [anon_sym_BSLASHAvolcite] = ACTIONS(5261), - [anon_sym_BSLASHnotecite] = ACTIONS(5261), - [anon_sym_BSLASHNotecite] = ACTIONS(5261), - [anon_sym_BSLASHpnotecite] = ACTIONS(5261), - [anon_sym_BSLASHPnotecite] = ACTIONS(5261), - [anon_sym_BSLASHfnotecite] = ACTIONS(5261), - [anon_sym_BSLASHlabel] = ACTIONS(5261), - [anon_sym_BSLASHref] = ACTIONS(5261), - [anon_sym_BSLASHeqref] = ACTIONS(5261), - [anon_sym_BSLASHvref] = ACTIONS(5261), - [anon_sym_BSLASHVref] = ACTIONS(5261), - [anon_sym_BSLASHautoref] = ACTIONS(5261), - [anon_sym_BSLASHpageref] = ACTIONS(5261), - [anon_sym_BSLASHcref] = ACTIONS(5261), - [anon_sym_BSLASHCref] = ACTIONS(5261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnameCref] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHlabelcref] = ACTIONS(5261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnewlabel] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdef] = ACTIONS(5261), - [anon_sym_BSLASHlet] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), - [anon_sym_BSLASHgls] = ACTIONS(5261), - [anon_sym_BSLASHGls] = ACTIONS(5261), - [anon_sym_BSLASHGLS] = ACTIONS(5261), - [anon_sym_BSLASHglspl] = ACTIONS(5261), - [anon_sym_BSLASHGlspl] = ACTIONS(5261), - [anon_sym_BSLASHGLSpl] = ACTIONS(5261), - [anon_sym_BSLASHglsdisp] = ACTIONS(5261), - [anon_sym_BSLASHglslink] = ACTIONS(5261), - [anon_sym_BSLASHglstext] = ACTIONS(5261), - [anon_sym_BSLASHGlstext] = ACTIONS(5261), - [anon_sym_BSLASHGLStext] = ACTIONS(5261), - [anon_sym_BSLASHglsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), - [anon_sym_BSLASHglsplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSplural] = ACTIONS(5261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHglsname] = ACTIONS(5261), - [anon_sym_BSLASHGlsname] = ACTIONS(5261), - [anon_sym_BSLASHGLSname] = ACTIONS(5261), - [anon_sym_BSLASHglssymbol] = ACTIONS(5261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), - [anon_sym_BSLASHglsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), - [anon_sym_BSLASHglsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), - [anon_sym_BSLASHglsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), - [anon_sym_BSLASHglsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), - [anon_sym_BSLASHglsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), - [anon_sym_BSLASHnewacronym] = ACTIONS(5261), - [anon_sym_BSLASHacrshort] = ACTIONS(5261), - [anon_sym_BSLASHAcrshort] = ACTIONS(5261), - [anon_sym_BSLASHACRshort] = ACTIONS(5261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), - [anon_sym_BSLASHacrlong] = ACTIONS(5261), - [anon_sym_BSLASHAcrlong] = ACTIONS(5261), - [anon_sym_BSLASHACRlong] = ACTIONS(5261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), - [anon_sym_BSLASHacrfull] = ACTIONS(5261), - [anon_sym_BSLASHAcrfull] = ACTIONS(5261), - [anon_sym_BSLASHACRfull] = ACTIONS(5261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), - [anon_sym_BSLASHacs] = ACTIONS(5261), - [anon_sym_BSLASHAcs] = ACTIONS(5261), - [anon_sym_BSLASHacsp] = ACTIONS(5261), - [anon_sym_BSLASHAcsp] = ACTIONS(5261), - [anon_sym_BSLASHacl] = ACTIONS(5261), - [anon_sym_BSLASHAcl] = ACTIONS(5261), - [anon_sym_BSLASHaclp] = ACTIONS(5261), - [anon_sym_BSLASHAclp] = ACTIONS(5261), - [anon_sym_BSLASHacf] = ACTIONS(5261), - [anon_sym_BSLASHAcf] = ACTIONS(5261), - [anon_sym_BSLASHacfp] = ACTIONS(5261), - [anon_sym_BSLASHAcfp] = ACTIONS(5261), - [anon_sym_BSLASHac] = ACTIONS(5261), - [anon_sym_BSLASHAc] = ACTIONS(5261), - [anon_sym_BSLASHacp] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), - [anon_sym_BSLASHcolor] = ACTIONS(5261), - [anon_sym_BSLASHcolorbox] = ACTIONS(5261), - [anon_sym_BSLASHtextcolor] = ACTIONS(5261), - [anon_sym_BSLASHpagecolor] = ACTIONS(5261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), - [anon_sym_BSLASHtext] = ACTIONS(5261), - [anon_sym_BSLASHintertext] = ACTIONS(5261), - [anon_sym_shortintertext] = ACTIONS(5261), + [517] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [907] = { + [518] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), + }, + [519] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), + }, + [520] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), + }, + [521] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), [sym_command_name] = ACTIONS(5253), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -287093,8 +183711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHitem] = ACTIONS(5253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5425), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5428), [anon_sym_LBRACE] = ACTIONS(5251), [sym_word] = ACTIONS(5253), [sym_placeholder] = ACTIONS(5251), @@ -287114,9 +183732,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), [anon_sym_DOLLAR] = ACTIONS(5253), [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5251), [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5251), [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHtitle] = ACTIONS(5253), + [anon_sym_BSLASHauthor] = ACTIONS(5253), [anon_sym_BSLASHusepackage] = ACTIONS(5253), [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), @@ -287338,19327 +183958,10407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(5253), [anon_sym_shortintertext] = ACTIONS(5253), }, - [908] = { - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_RPAREN] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_BSLASHpart] = ACTIONS(5245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddpart] = ACTIONS(5245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHchapter] = ACTIONS(5245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddchap] = ACTIONS(5245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsection] = ACTIONS(5245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddsec] = ACTIONS(5245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHparagraph] = ACTIONS(5245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHitem] = ACTIONS(5245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5243), - [sym_word] = ACTIONS(5245), - [sym_placeholder] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5245), - [anon_sym_SLASH] = ACTIONS(5245), - [anon_sym_CARET] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5245), - [anon_sym_GT] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5245), - [anon_sym_PIPE] = ACTIONS(5245), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), - [anon_sym_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5243), - [anon_sym_BSLASHbegin] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), - [anon_sym_BSLASHinclude] = ACTIONS(5245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), - [anon_sym_BSLASHinput] = ACTIONS(5245), - [anon_sym_BSLASHsubfile] = ACTIONS(5245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), - [anon_sym_BSLASHbibliography] = ACTIONS(5245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), - [anon_sym_BSLASHincludesvg] = ACTIONS(5245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), - [anon_sym_BSLASHimport] = ACTIONS(5245), - [anon_sym_BSLASHsubimport] = ACTIONS(5245), - [anon_sym_BSLASHinputfrom] = ACTIONS(5245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), - [anon_sym_BSLASHincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHcaption] = ACTIONS(5245), - [anon_sym_BSLASHcite] = ACTIONS(5245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCite] = ACTIONS(5245), - [anon_sym_BSLASHnocite] = ACTIONS(5245), - [anon_sym_BSLASHcitet] = ACTIONS(5245), - [anon_sym_BSLASHcitep] = ACTIONS(5245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteyear] = ACTIONS(5245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitedate] = ACTIONS(5245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteurl] = ACTIONS(5245), - [anon_sym_BSLASHfullcite] = ACTIONS(5245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), - [anon_sym_BSLASHcitealt] = ACTIONS(5245), - [anon_sym_BSLASHcitealp] = ACTIONS(5245), - [anon_sym_BSLASHcitetext] = ACTIONS(5245), - [anon_sym_BSLASHparencite] = ACTIONS(5245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHParencite] = ACTIONS(5245), - [anon_sym_BSLASHfootcite] = ACTIONS(5245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), - [anon_sym_BSLASHtextcite] = ACTIONS(5245), - [anon_sym_BSLASHTextcite] = ACTIONS(5245), - [anon_sym_BSLASHsmartcite] = ACTIONS(5245), - [anon_sym_BSLASHSmartcite] = ACTIONS(5245), - [anon_sym_BSLASHsupercite] = ACTIONS(5245), - [anon_sym_BSLASHautocite] = ACTIONS(5245), - [anon_sym_BSLASHAutocite] = ACTIONS(5245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHvolcite] = ACTIONS(5245), - [anon_sym_BSLASHVolcite] = ACTIONS(5245), - [anon_sym_BSLASHpvolcite] = ACTIONS(5245), - [anon_sym_BSLASHPvolcite] = ACTIONS(5245), - [anon_sym_BSLASHfvolcite] = ACTIONS(5245), - [anon_sym_BSLASHftvolcite] = ACTIONS(5245), - [anon_sym_BSLASHsvolcite] = ACTIONS(5245), - [anon_sym_BSLASHSvolcite] = ACTIONS(5245), - [anon_sym_BSLASHtvolcite] = ACTIONS(5245), - [anon_sym_BSLASHTvolcite] = ACTIONS(5245), - [anon_sym_BSLASHavolcite] = ACTIONS(5245), - [anon_sym_BSLASHAvolcite] = ACTIONS(5245), - [anon_sym_BSLASHnotecite] = ACTIONS(5245), - [anon_sym_BSLASHNotecite] = ACTIONS(5245), - [anon_sym_BSLASHpnotecite] = ACTIONS(5245), - [anon_sym_BSLASHPnotecite] = ACTIONS(5245), - [anon_sym_BSLASHfnotecite] = ACTIONS(5245), - [anon_sym_BSLASHlabel] = ACTIONS(5245), - [anon_sym_BSLASHref] = ACTIONS(5245), - [anon_sym_BSLASHeqref] = ACTIONS(5245), - [anon_sym_BSLASHvref] = ACTIONS(5245), - [anon_sym_BSLASHVref] = ACTIONS(5245), - [anon_sym_BSLASHautoref] = ACTIONS(5245), - [anon_sym_BSLASHpageref] = ACTIONS(5245), - [anon_sym_BSLASHcref] = ACTIONS(5245), - [anon_sym_BSLASHCref] = ACTIONS(5245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnameCref] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHlabelcref] = ACTIONS(5245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnewlabel] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdef] = ACTIONS(5245), - [anon_sym_BSLASHlet] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), - [anon_sym_BSLASHgls] = ACTIONS(5245), - [anon_sym_BSLASHGls] = ACTIONS(5245), - [anon_sym_BSLASHGLS] = ACTIONS(5245), - [anon_sym_BSLASHglspl] = ACTIONS(5245), - [anon_sym_BSLASHGlspl] = ACTIONS(5245), - [anon_sym_BSLASHGLSpl] = ACTIONS(5245), - [anon_sym_BSLASHglsdisp] = ACTIONS(5245), - [anon_sym_BSLASHglslink] = ACTIONS(5245), - [anon_sym_BSLASHglstext] = ACTIONS(5245), - [anon_sym_BSLASHGlstext] = ACTIONS(5245), - [anon_sym_BSLASHGLStext] = ACTIONS(5245), - [anon_sym_BSLASHglsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), - [anon_sym_BSLASHglsplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSplural] = ACTIONS(5245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHglsname] = ACTIONS(5245), - [anon_sym_BSLASHGlsname] = ACTIONS(5245), - [anon_sym_BSLASHGLSname] = ACTIONS(5245), - [anon_sym_BSLASHglssymbol] = ACTIONS(5245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), - [anon_sym_BSLASHglsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), - [anon_sym_BSLASHglsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), - [anon_sym_BSLASHglsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), - [anon_sym_BSLASHglsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), - [anon_sym_BSLASHglsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), - [anon_sym_BSLASHnewacronym] = ACTIONS(5245), - [anon_sym_BSLASHacrshort] = ACTIONS(5245), - [anon_sym_BSLASHAcrshort] = ACTIONS(5245), - [anon_sym_BSLASHACRshort] = ACTIONS(5245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), - [anon_sym_BSLASHacrlong] = ACTIONS(5245), - [anon_sym_BSLASHAcrlong] = ACTIONS(5245), - [anon_sym_BSLASHACRlong] = ACTIONS(5245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), - [anon_sym_BSLASHacrfull] = ACTIONS(5245), - [anon_sym_BSLASHAcrfull] = ACTIONS(5245), - [anon_sym_BSLASHACRfull] = ACTIONS(5245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), - [anon_sym_BSLASHacs] = ACTIONS(5245), - [anon_sym_BSLASHAcs] = ACTIONS(5245), - [anon_sym_BSLASHacsp] = ACTIONS(5245), - [anon_sym_BSLASHAcsp] = ACTIONS(5245), - [anon_sym_BSLASHacl] = ACTIONS(5245), - [anon_sym_BSLASHAcl] = ACTIONS(5245), - [anon_sym_BSLASHaclp] = ACTIONS(5245), - [anon_sym_BSLASHAclp] = ACTIONS(5245), - [anon_sym_BSLASHacf] = ACTIONS(5245), - [anon_sym_BSLASHAcf] = ACTIONS(5245), - [anon_sym_BSLASHacfp] = ACTIONS(5245), - [anon_sym_BSLASHAcfp] = ACTIONS(5245), - [anon_sym_BSLASHac] = ACTIONS(5245), - [anon_sym_BSLASHAc] = ACTIONS(5245), - [anon_sym_BSLASHacp] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), - [anon_sym_BSLASHcolor] = ACTIONS(5245), - [anon_sym_BSLASHcolorbox] = ACTIONS(5245), - [anon_sym_BSLASHtextcolor] = ACTIONS(5245), - [anon_sym_BSLASHpagecolor] = ACTIONS(5245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), - [anon_sym_BSLASHtext] = ACTIONS(5245), - [anon_sym_BSLASHintertext] = ACTIONS(5245), - [anon_sym_shortintertext] = ACTIONS(5245), + [522] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [909] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_BSLASHpart] = ACTIONS(5237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddpart] = ACTIONS(5237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHchapter] = ACTIONS(5237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddchap] = ACTIONS(5237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsection] = ACTIONS(5237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddsec] = ACTIONS(5237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHparagraph] = ACTIONS(5237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHitem] = ACTIONS(5237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), + [523] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [910] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHend] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), + [524] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [525] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [526] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5303), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_RPAREN] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5301), + [anon_sym_BSLASHpart] = ACTIONS(5303), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddpart] = ACTIONS(5303), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHchapter] = ACTIONS(5303), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddchap] = ACTIONS(5303), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsection] = ACTIONS(5303), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddsec] = ACTIONS(5303), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHparagraph] = ACTIONS(5303), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5434), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(5303), + [sym_placeholder] = ACTIONS(5301), + [anon_sym_PLUS] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_SLASH] = ACTIONS(5303), + [anon_sym_CARET] = ACTIONS(5303), + [anon_sym__] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(5303), + [anon_sym_GT] = ACTIONS(5303), + [anon_sym_BANG] = ACTIONS(5303), + [anon_sym_PIPE] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_SQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), + [anon_sym_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), + [anon_sym_BSLASHbegin] = ACTIONS(5303), + [anon_sym_BSLASHtitle] = ACTIONS(5303), + [anon_sym_BSLASHauthor] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), + [anon_sym_BSLASHinclude] = ACTIONS(5303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), + [anon_sym_BSLASHinput] = ACTIONS(5303), + [anon_sym_BSLASHsubfile] = ACTIONS(5303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), + [anon_sym_BSLASHbibliography] = ACTIONS(5303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), + [anon_sym_BSLASHincludesvg] = ACTIONS(5303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), + [anon_sym_BSLASHimport] = ACTIONS(5303), + [anon_sym_BSLASHsubimport] = ACTIONS(5303), + [anon_sym_BSLASHinputfrom] = ACTIONS(5303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), + [anon_sym_BSLASHincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHcaption] = ACTIONS(5303), + [anon_sym_BSLASHcite] = ACTIONS(5303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCite] = ACTIONS(5303), + [anon_sym_BSLASHnocite] = ACTIONS(5303), + [anon_sym_BSLASHcitet] = ACTIONS(5303), + [anon_sym_BSLASHcitep] = ACTIONS(5303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteyear] = ACTIONS(5303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitedate] = ACTIONS(5303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteurl] = ACTIONS(5303), + [anon_sym_BSLASHfullcite] = ACTIONS(5303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), + [anon_sym_BSLASHcitealt] = ACTIONS(5303), + [anon_sym_BSLASHcitealp] = ACTIONS(5303), + [anon_sym_BSLASHcitetext] = ACTIONS(5303), + [anon_sym_BSLASHparencite] = ACTIONS(5303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHParencite] = ACTIONS(5303), + [anon_sym_BSLASHfootcite] = ACTIONS(5303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), + [anon_sym_BSLASHtextcite] = ACTIONS(5303), + [anon_sym_BSLASHTextcite] = ACTIONS(5303), + [anon_sym_BSLASHsmartcite] = ACTIONS(5303), + [anon_sym_BSLASHSmartcite] = ACTIONS(5303), + [anon_sym_BSLASHsupercite] = ACTIONS(5303), + [anon_sym_BSLASHautocite] = ACTIONS(5303), + [anon_sym_BSLASHAutocite] = ACTIONS(5303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHvolcite] = ACTIONS(5303), + [anon_sym_BSLASHVolcite] = ACTIONS(5303), + [anon_sym_BSLASHpvolcite] = ACTIONS(5303), + [anon_sym_BSLASHPvolcite] = ACTIONS(5303), + [anon_sym_BSLASHfvolcite] = ACTIONS(5303), + [anon_sym_BSLASHftvolcite] = ACTIONS(5303), + [anon_sym_BSLASHsvolcite] = ACTIONS(5303), + [anon_sym_BSLASHSvolcite] = ACTIONS(5303), + [anon_sym_BSLASHtvolcite] = ACTIONS(5303), + [anon_sym_BSLASHTvolcite] = ACTIONS(5303), + [anon_sym_BSLASHavolcite] = ACTIONS(5303), + [anon_sym_BSLASHAvolcite] = ACTIONS(5303), + [anon_sym_BSLASHnotecite] = ACTIONS(5303), + [anon_sym_BSLASHNotecite] = ACTIONS(5303), + [anon_sym_BSLASHpnotecite] = ACTIONS(5303), + [anon_sym_BSLASHPnotecite] = ACTIONS(5303), + [anon_sym_BSLASHfnotecite] = ACTIONS(5303), + [anon_sym_BSLASHlabel] = ACTIONS(5303), + [anon_sym_BSLASHref] = ACTIONS(5303), + [anon_sym_BSLASHeqref] = ACTIONS(5303), + [anon_sym_BSLASHvref] = ACTIONS(5303), + [anon_sym_BSLASHVref] = ACTIONS(5303), + [anon_sym_BSLASHautoref] = ACTIONS(5303), + [anon_sym_BSLASHpageref] = ACTIONS(5303), + [anon_sym_BSLASHcref] = ACTIONS(5303), + [anon_sym_BSLASHCref] = ACTIONS(5303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnameCref] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHlabelcref] = ACTIONS(5303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnewlabel] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdef] = ACTIONS(5303), + [anon_sym_BSLASHlet] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), + [anon_sym_BSLASHgls] = ACTIONS(5303), + [anon_sym_BSLASHGls] = ACTIONS(5303), + [anon_sym_BSLASHGLS] = ACTIONS(5303), + [anon_sym_BSLASHglspl] = ACTIONS(5303), + [anon_sym_BSLASHGlspl] = ACTIONS(5303), + [anon_sym_BSLASHGLSpl] = ACTIONS(5303), + [anon_sym_BSLASHglsdisp] = ACTIONS(5303), + [anon_sym_BSLASHglslink] = ACTIONS(5303), + [anon_sym_BSLASHglstext] = ACTIONS(5303), + [anon_sym_BSLASHGlstext] = ACTIONS(5303), + [anon_sym_BSLASHGLStext] = ACTIONS(5303), + [anon_sym_BSLASHglsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), + [anon_sym_BSLASHglsplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSplural] = ACTIONS(5303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHglsname] = ACTIONS(5303), + [anon_sym_BSLASHGlsname] = ACTIONS(5303), + [anon_sym_BSLASHGLSname] = ACTIONS(5303), + [anon_sym_BSLASHglssymbol] = ACTIONS(5303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), + [anon_sym_BSLASHglsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), + [anon_sym_BSLASHglsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), + [anon_sym_BSLASHglsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), + [anon_sym_BSLASHglsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), + [anon_sym_BSLASHglsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), + [anon_sym_BSLASHnewacronym] = ACTIONS(5303), + [anon_sym_BSLASHacrshort] = ACTIONS(5303), + [anon_sym_BSLASHAcrshort] = ACTIONS(5303), + [anon_sym_BSLASHACRshort] = ACTIONS(5303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), + [anon_sym_BSLASHacrlong] = ACTIONS(5303), + [anon_sym_BSLASHAcrlong] = ACTIONS(5303), + [anon_sym_BSLASHACRlong] = ACTIONS(5303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), + [anon_sym_BSLASHacrfull] = ACTIONS(5303), + [anon_sym_BSLASHAcrfull] = ACTIONS(5303), + [anon_sym_BSLASHACRfull] = ACTIONS(5303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), + [anon_sym_BSLASHacs] = ACTIONS(5303), + [anon_sym_BSLASHAcs] = ACTIONS(5303), + [anon_sym_BSLASHacsp] = ACTIONS(5303), + [anon_sym_BSLASHAcsp] = ACTIONS(5303), + [anon_sym_BSLASHacl] = ACTIONS(5303), + [anon_sym_BSLASHAcl] = ACTIONS(5303), + [anon_sym_BSLASHaclp] = ACTIONS(5303), + [anon_sym_BSLASHAclp] = ACTIONS(5303), + [anon_sym_BSLASHacf] = ACTIONS(5303), + [anon_sym_BSLASHAcf] = ACTIONS(5303), + [anon_sym_BSLASHacfp] = ACTIONS(5303), + [anon_sym_BSLASHAcfp] = ACTIONS(5303), + [anon_sym_BSLASHac] = ACTIONS(5303), + [anon_sym_BSLASHAc] = ACTIONS(5303), + [anon_sym_BSLASHacp] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), + [anon_sym_BSLASHcolor] = ACTIONS(5303), + [anon_sym_BSLASHcolorbox] = ACTIONS(5303), + [anon_sym_BSLASHtextcolor] = ACTIONS(5303), + [anon_sym_BSLASHpagecolor] = ACTIONS(5303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), + [anon_sym_BSLASHtext] = ACTIONS(5303), + [anon_sym_BSLASHintertext] = ACTIONS(5303), + [anon_sym_shortintertext] = ACTIONS(5303), + }, + [527] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [528] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [529] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [530] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5341), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5341), + [anon_sym_LPAREN] = ACTIONS(5339), + [anon_sym_RPAREN] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5339), + [anon_sym_RBRACK] = ACTIONS(5339), + [anon_sym_COMMA] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_BSLASHpart] = ACTIONS(5341), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddpart] = ACTIONS(5341), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHchapter] = ACTIONS(5341), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddchap] = ACTIONS(5341), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsection] = ACTIONS(5341), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddsec] = ACTIONS(5341), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHparagraph] = ACTIONS(5437), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5440), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), + [anon_sym_BSLASHitem] = ACTIONS(5341), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), + [anon_sym_LBRACE] = ACTIONS(5339), + [sym_word] = ACTIONS(5341), + [sym_placeholder] = ACTIONS(5339), + [anon_sym_PLUS] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5341), + [anon_sym_SLASH] = ACTIONS(5341), + [anon_sym_CARET] = ACTIONS(5341), + [anon_sym__] = ACTIONS(5341), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_BANG] = ACTIONS(5341), + [anon_sym_PIPE] = ACTIONS(5341), + [anon_sym_COLON] = ACTIONS(5341), + [anon_sym_SQUOTE] = ACTIONS(5341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), + [anon_sym_DOLLAR] = ACTIONS(5341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), + [anon_sym_BSLASHbegin] = ACTIONS(5341), + [anon_sym_BSLASHtitle] = ACTIONS(5341), + [anon_sym_BSLASHauthor] = ACTIONS(5341), + [anon_sym_BSLASHusepackage] = ACTIONS(5341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), + [anon_sym_BSLASHinclude] = ACTIONS(5341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), + [anon_sym_BSLASHinput] = ACTIONS(5341), + [anon_sym_BSLASHsubfile] = ACTIONS(5341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), + [anon_sym_BSLASHbibliography] = ACTIONS(5341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), + [anon_sym_BSLASHincludesvg] = ACTIONS(5341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), + [anon_sym_BSLASHimport] = ACTIONS(5341), + [anon_sym_BSLASHsubimport] = ACTIONS(5341), + [anon_sym_BSLASHinputfrom] = ACTIONS(5341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), + [anon_sym_BSLASHincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHcaption] = ACTIONS(5341), + [anon_sym_BSLASHcite] = ACTIONS(5341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCite] = ACTIONS(5341), + [anon_sym_BSLASHnocite] = ACTIONS(5341), + [anon_sym_BSLASHcitet] = ACTIONS(5341), + [anon_sym_BSLASHcitep] = ACTIONS(5341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteauthor] = ACTIONS(5341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitetitle] = ACTIONS(5341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteyear] = ACTIONS(5341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitedate] = ACTIONS(5341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteurl] = ACTIONS(5341), + [anon_sym_BSLASHfullcite] = ACTIONS(5341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), + [anon_sym_BSLASHcitealt] = ACTIONS(5341), + [anon_sym_BSLASHcitealp] = ACTIONS(5341), + [anon_sym_BSLASHcitetext] = ACTIONS(5341), + [anon_sym_BSLASHparencite] = ACTIONS(5341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHParencite] = ACTIONS(5341), + [anon_sym_BSLASHfootcite] = ACTIONS(5341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), + [anon_sym_BSLASHtextcite] = ACTIONS(5341), + [anon_sym_BSLASHTextcite] = ACTIONS(5341), + [anon_sym_BSLASHsmartcite] = ACTIONS(5341), + [anon_sym_BSLASHSmartcite] = ACTIONS(5341), + [anon_sym_BSLASHsupercite] = ACTIONS(5341), + [anon_sym_BSLASHautocite] = ACTIONS(5341), + [anon_sym_BSLASHAutocite] = ACTIONS(5341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHvolcite] = ACTIONS(5341), + [anon_sym_BSLASHVolcite] = ACTIONS(5341), + [anon_sym_BSLASHpvolcite] = ACTIONS(5341), + [anon_sym_BSLASHPvolcite] = ACTIONS(5341), + [anon_sym_BSLASHfvolcite] = ACTIONS(5341), + [anon_sym_BSLASHftvolcite] = ACTIONS(5341), + [anon_sym_BSLASHsvolcite] = ACTIONS(5341), + [anon_sym_BSLASHSvolcite] = ACTIONS(5341), + [anon_sym_BSLASHtvolcite] = ACTIONS(5341), + [anon_sym_BSLASHTvolcite] = ACTIONS(5341), + [anon_sym_BSLASHavolcite] = ACTIONS(5341), + [anon_sym_BSLASHAvolcite] = ACTIONS(5341), + [anon_sym_BSLASHnotecite] = ACTIONS(5341), + [anon_sym_BSLASHNotecite] = ACTIONS(5341), + [anon_sym_BSLASHpnotecite] = ACTIONS(5341), + [anon_sym_BSLASHPnotecite] = ACTIONS(5341), + [anon_sym_BSLASHfnotecite] = ACTIONS(5341), + [anon_sym_BSLASHlabel] = ACTIONS(5341), + [anon_sym_BSLASHref] = ACTIONS(5341), + [anon_sym_BSLASHeqref] = ACTIONS(5341), + [anon_sym_BSLASHvref] = ACTIONS(5341), + [anon_sym_BSLASHVref] = ACTIONS(5341), + [anon_sym_BSLASHautoref] = ACTIONS(5341), + [anon_sym_BSLASHpageref] = ACTIONS(5341), + [anon_sym_BSLASHcref] = ACTIONS(5341), + [anon_sym_BSLASHCref] = ACTIONS(5341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnameCref] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHlabelcref] = ACTIONS(5341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCrefrange] = ACTIONS(5341), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnewlabel] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdef] = ACTIONS(5341), + [anon_sym_BSLASHlet] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), + [anon_sym_BSLASHgls] = ACTIONS(5341), + [anon_sym_BSLASHGls] = ACTIONS(5341), + [anon_sym_BSLASHGLS] = ACTIONS(5341), + [anon_sym_BSLASHglspl] = ACTIONS(5341), + [anon_sym_BSLASHGlspl] = ACTIONS(5341), + [anon_sym_BSLASHGLSpl] = ACTIONS(5341), + [anon_sym_BSLASHglsdisp] = ACTIONS(5341), + [anon_sym_BSLASHglslink] = ACTIONS(5341), + [anon_sym_BSLASHglstext] = ACTIONS(5341), + [anon_sym_BSLASHGlstext] = ACTIONS(5341), + [anon_sym_BSLASHGLStext] = ACTIONS(5341), + [anon_sym_BSLASHglsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), + [anon_sym_BSLASHglsplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSplural] = ACTIONS(5341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHglsname] = ACTIONS(5341), + [anon_sym_BSLASHGlsname] = ACTIONS(5341), + [anon_sym_BSLASHGLSname] = ACTIONS(5341), + [anon_sym_BSLASHglssymbol] = ACTIONS(5341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), + [anon_sym_BSLASHglsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), + [anon_sym_BSLASHglsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), + [anon_sym_BSLASHglsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), + [anon_sym_BSLASHglsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), + [anon_sym_BSLASHglsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), + [anon_sym_BSLASHnewacronym] = ACTIONS(5341), + [anon_sym_BSLASHacrshort] = ACTIONS(5341), + [anon_sym_BSLASHAcrshort] = ACTIONS(5341), + [anon_sym_BSLASHACRshort] = ACTIONS(5341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), + [anon_sym_BSLASHacrlong] = ACTIONS(5341), + [anon_sym_BSLASHAcrlong] = ACTIONS(5341), + [anon_sym_BSLASHACRlong] = ACTIONS(5341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), + [anon_sym_BSLASHacrfull] = ACTIONS(5341), + [anon_sym_BSLASHAcrfull] = ACTIONS(5341), + [anon_sym_BSLASHACRfull] = ACTIONS(5341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), + [anon_sym_BSLASHacs] = ACTIONS(5341), + [anon_sym_BSLASHAcs] = ACTIONS(5341), + [anon_sym_BSLASHacsp] = ACTIONS(5341), + [anon_sym_BSLASHAcsp] = ACTIONS(5341), + [anon_sym_BSLASHacl] = ACTIONS(5341), + [anon_sym_BSLASHAcl] = ACTIONS(5341), + [anon_sym_BSLASHaclp] = ACTIONS(5341), + [anon_sym_BSLASHAclp] = ACTIONS(5341), + [anon_sym_BSLASHacf] = ACTIONS(5341), + [anon_sym_BSLASHAcf] = ACTIONS(5341), + [anon_sym_BSLASHacfp] = ACTIONS(5341), + [anon_sym_BSLASHAcfp] = ACTIONS(5341), + [anon_sym_BSLASHac] = ACTIONS(5341), + [anon_sym_BSLASHAc] = ACTIONS(5341), + [anon_sym_BSLASHacp] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), + [anon_sym_BSLASHcolor] = ACTIONS(5341), + [anon_sym_BSLASHcolorbox] = ACTIONS(5341), + [anon_sym_BSLASHtextcolor] = ACTIONS(5341), + [anon_sym_BSLASHpagecolor] = ACTIONS(5341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHtext] = ACTIONS(5341), + [anon_sym_BSLASHintertext] = ACTIONS(5341), + [anon_sym_shortintertext] = ACTIONS(5341), }, - [911] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASH_RBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [531] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(2073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [912] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), + [532] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [913] = { - [sym_command_name] = ACTIONS(143), + [533] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5327), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASH_RBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [914] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_BSLASHpart] = ACTIONS(5431), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddpart] = ACTIONS(5431), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHchapter] = ACTIONS(5431), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddchap] = ACTIONS(5431), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsection] = ACTIONS(5431), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddsec] = ACTIONS(5431), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHparagraph] = ACTIONS(5431), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHitem] = ACTIONS(5431), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), - }, - [915] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), - }, - [916] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), - }, - [917] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), - }, - [918] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), - }, - [919] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), - }, - [920] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), - }, - [921] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), - }, - [922] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), - }, - [923] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), - }, - [924] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), - }, - [925] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), - }, - [926] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), - }, - [927] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_BSLASHpart] = ACTIONS(5379), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddpart] = ACTIONS(5379), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHchapter] = ACTIONS(5379), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddchap] = ACTIONS(5379), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsection] = ACTIONS(5379), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddsec] = ACTIONS(5379), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHparagraph] = ACTIONS(5379), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHitem] = ACTIONS(5379), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), - }, - [928] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_BSLASHpart] = ACTIONS(5399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddpart] = ACTIONS(5399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHchapter] = ACTIONS(5399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddchap] = ACTIONS(5399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsection] = ACTIONS(5399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddsec] = ACTIONS(5399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHparagraph] = ACTIONS(5399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHitem] = ACTIONS(5399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), + [anon_sym_BSLASHiffalse] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5327), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5327), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5327), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5327), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5446), + [anon_sym_BSLASHparagraph] = ACTIONS(5327), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5327), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5327), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_STAR] = ACTIONS(5327), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_CARET] = ACTIONS(5327), + [anon_sym__] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_BANG] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_SQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5327), + [anon_sym_BSLASHtitle] = ACTIONS(5327), + [anon_sym_BSLASHauthor] = ACTIONS(5327), + [anon_sym_BSLASHusepackage] = ACTIONS(5327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), + [anon_sym_BSLASHinclude] = ACTIONS(5327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), + [anon_sym_BSLASHinput] = ACTIONS(5327), + [anon_sym_BSLASHsubfile] = ACTIONS(5327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [anon_sym_BSLASHbibliography] = ACTIONS(5327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), + [anon_sym_BSLASHincludesvg] = ACTIONS(5327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), + [anon_sym_BSLASHimport] = ACTIONS(5327), + [anon_sym_BSLASHsubimport] = ACTIONS(5327), + [anon_sym_BSLASHinputfrom] = ACTIONS(5327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), + [anon_sym_BSLASHincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHcaption] = ACTIONS(5327), + [anon_sym_BSLASHcite] = ACTIONS(5327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5327), + [anon_sym_BSLASHnocite] = ACTIONS(5327), + [anon_sym_BSLASHcitet] = ACTIONS(5327), + [anon_sym_BSLASHcitep] = ACTIONS(5327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5327), + [anon_sym_BSLASHfullcite] = ACTIONS(5327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), + [anon_sym_BSLASHcitealt] = ACTIONS(5327), + [anon_sym_BSLASHcitealp] = ACTIONS(5327), + [anon_sym_BSLASHcitetext] = ACTIONS(5327), + [anon_sym_BSLASHparencite] = ACTIONS(5327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5327), + [anon_sym_BSLASHfootcite] = ACTIONS(5327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), + [anon_sym_BSLASHtextcite] = ACTIONS(5327), + [anon_sym_BSLASHTextcite] = ACTIONS(5327), + [anon_sym_BSLASHsmartcite] = ACTIONS(5327), + [anon_sym_BSLASHSmartcite] = ACTIONS(5327), + [anon_sym_BSLASHsupercite] = ACTIONS(5327), + [anon_sym_BSLASHautocite] = ACTIONS(5327), + [anon_sym_BSLASHAutocite] = ACTIONS(5327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5327), + [anon_sym_BSLASHVolcite] = ACTIONS(5327), + [anon_sym_BSLASHpvolcite] = ACTIONS(5327), + [anon_sym_BSLASHPvolcite] = ACTIONS(5327), + [anon_sym_BSLASHfvolcite] = ACTIONS(5327), + [anon_sym_BSLASHftvolcite] = ACTIONS(5327), + [anon_sym_BSLASHsvolcite] = ACTIONS(5327), + [anon_sym_BSLASHSvolcite] = ACTIONS(5327), + [anon_sym_BSLASHtvolcite] = ACTIONS(5327), + [anon_sym_BSLASHTvolcite] = ACTIONS(5327), + [anon_sym_BSLASHavolcite] = ACTIONS(5327), + [anon_sym_BSLASHAvolcite] = ACTIONS(5327), + [anon_sym_BSLASHnotecite] = ACTIONS(5327), + [anon_sym_BSLASHNotecite] = ACTIONS(5327), + [anon_sym_BSLASHpnotecite] = ACTIONS(5327), + [anon_sym_BSLASHPnotecite] = ACTIONS(5327), + [anon_sym_BSLASHfnotecite] = ACTIONS(5327), + [anon_sym_BSLASHlabel] = ACTIONS(5327), + [anon_sym_BSLASHref] = ACTIONS(5327), + [anon_sym_BSLASHeqref] = ACTIONS(5327), + [anon_sym_BSLASHvref] = ACTIONS(5327), + [anon_sym_BSLASHVref] = ACTIONS(5327), + [anon_sym_BSLASHautoref] = ACTIONS(5327), + [anon_sym_BSLASHpageref] = ACTIONS(5327), + [anon_sym_BSLASHcref] = ACTIONS(5327), + [anon_sym_BSLASHCref] = ACTIONS(5327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnameCref] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHlabelcref] = ACTIONS(5327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5327), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5327), + [anon_sym_BSLASHlet] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), + [anon_sym_BSLASHgls] = ACTIONS(5327), + [anon_sym_BSLASHGls] = ACTIONS(5327), + [anon_sym_BSLASHGLS] = ACTIONS(5327), + [anon_sym_BSLASHglspl] = ACTIONS(5327), + [anon_sym_BSLASHGlspl] = ACTIONS(5327), + [anon_sym_BSLASHGLSpl] = ACTIONS(5327), + [anon_sym_BSLASHglsdisp] = ACTIONS(5327), + [anon_sym_BSLASHglslink] = ACTIONS(5327), + [anon_sym_BSLASHglstext] = ACTIONS(5327), + [anon_sym_BSLASHGlstext] = ACTIONS(5327), + [anon_sym_BSLASHGLStext] = ACTIONS(5327), + [anon_sym_BSLASHglsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), + [anon_sym_BSLASHglsplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSplural] = ACTIONS(5327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHglsname] = ACTIONS(5327), + [anon_sym_BSLASHGlsname] = ACTIONS(5327), + [anon_sym_BSLASHGLSname] = ACTIONS(5327), + [anon_sym_BSLASHglssymbol] = ACTIONS(5327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), + [anon_sym_BSLASHglsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), + [anon_sym_BSLASHglsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), + [anon_sym_BSLASHglsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), + [anon_sym_BSLASHglsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), + [anon_sym_BSLASHglsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), + [anon_sym_BSLASHnewacronym] = ACTIONS(5327), + [anon_sym_BSLASHacrshort] = ACTIONS(5327), + [anon_sym_BSLASHAcrshort] = ACTIONS(5327), + [anon_sym_BSLASHACRshort] = ACTIONS(5327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), + [anon_sym_BSLASHacrlong] = ACTIONS(5327), + [anon_sym_BSLASHAcrlong] = ACTIONS(5327), + [anon_sym_BSLASHACRlong] = ACTIONS(5327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), + [anon_sym_BSLASHacrfull] = ACTIONS(5327), + [anon_sym_BSLASHAcrfull] = ACTIONS(5327), + [anon_sym_BSLASHACRfull] = ACTIONS(5327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), + [anon_sym_BSLASHacs] = ACTIONS(5327), + [anon_sym_BSLASHAcs] = ACTIONS(5327), + [anon_sym_BSLASHacsp] = ACTIONS(5327), + [anon_sym_BSLASHAcsp] = ACTIONS(5327), + [anon_sym_BSLASHacl] = ACTIONS(5327), + [anon_sym_BSLASHAcl] = ACTIONS(5327), + [anon_sym_BSLASHaclp] = ACTIONS(5327), + [anon_sym_BSLASHAclp] = ACTIONS(5327), + [anon_sym_BSLASHacf] = ACTIONS(5327), + [anon_sym_BSLASHAcf] = ACTIONS(5327), + [anon_sym_BSLASHacfp] = ACTIONS(5327), + [anon_sym_BSLASHAcfp] = ACTIONS(5327), + [anon_sym_BSLASHac] = ACTIONS(5327), + [anon_sym_BSLASHAc] = ACTIONS(5327), + [anon_sym_BSLASHacp] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), + [anon_sym_BSLASHcolor] = ACTIONS(5327), + [anon_sym_BSLASHcolorbox] = ACTIONS(5327), + [anon_sym_BSLASHtextcolor] = ACTIONS(5327), + [anon_sym_BSLASHpagecolor] = ACTIONS(5327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [anon_sym_BSLASHtext] = ACTIONS(5327), + [anon_sym_BSLASHintertext] = ACTIONS(5327), + [anon_sym_shortintertext] = ACTIONS(5327), }, - [929] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5415), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5415), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5415), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5415), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5415), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5415), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5415), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5415), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5415), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), + [534] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(2097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(2097), + [sym_placeholder] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym__] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2095), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(2097), + [anon_sym_BSLASHauthor] = ACTIONS(2097), + [anon_sym_BSLASHusepackage] = ACTIONS(2097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2097), + [anon_sym_BSLASHinclude] = ACTIONS(2097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2097), + [anon_sym_BSLASHinput] = ACTIONS(2097), + [anon_sym_BSLASHsubfile] = ACTIONS(2097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [anon_sym_BSLASHbibliography] = ACTIONS(2097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2097), + [anon_sym_BSLASHincludesvg] = ACTIONS(2097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2097), + [anon_sym_BSLASHimport] = ACTIONS(2097), + [anon_sym_BSLASHsubimport] = ACTIONS(2097), + [anon_sym_BSLASHinputfrom] = ACTIONS(2097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2097), + [anon_sym_BSLASHincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHcaption] = ACTIONS(2097), + [anon_sym_BSLASHcite] = ACTIONS(2097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCite] = ACTIONS(2097), + [anon_sym_BSLASHnocite] = ACTIONS(2097), + [anon_sym_BSLASHcitet] = ACTIONS(2097), + [anon_sym_BSLASHcitep] = ACTIONS(2097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteauthor] = ACTIONS(2097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitetitle] = ACTIONS(2097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteyear] = ACTIONS(2097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitedate] = ACTIONS(2097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteurl] = ACTIONS(2097), + [anon_sym_BSLASHfullcite] = ACTIONS(2097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2097), + [anon_sym_BSLASHcitealt] = ACTIONS(2097), + [anon_sym_BSLASHcitealp] = ACTIONS(2097), + [anon_sym_BSLASHcitetext] = ACTIONS(2097), + [anon_sym_BSLASHparencite] = ACTIONS(2097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHParencite] = ACTIONS(2097), + [anon_sym_BSLASHfootcite] = ACTIONS(2097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2097), + [anon_sym_BSLASHtextcite] = ACTIONS(2097), + [anon_sym_BSLASHTextcite] = ACTIONS(2097), + [anon_sym_BSLASHsmartcite] = ACTIONS(2097), + [anon_sym_BSLASHSmartcite] = ACTIONS(2097), + [anon_sym_BSLASHsupercite] = ACTIONS(2097), + [anon_sym_BSLASHautocite] = ACTIONS(2097), + [anon_sym_BSLASHAutocite] = ACTIONS(2097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHvolcite] = ACTIONS(2097), + [anon_sym_BSLASHVolcite] = ACTIONS(2097), + [anon_sym_BSLASHpvolcite] = ACTIONS(2097), + [anon_sym_BSLASHPvolcite] = ACTIONS(2097), + [anon_sym_BSLASHfvolcite] = ACTIONS(2097), + [anon_sym_BSLASHftvolcite] = ACTIONS(2097), + [anon_sym_BSLASHsvolcite] = ACTIONS(2097), + [anon_sym_BSLASHSvolcite] = ACTIONS(2097), + [anon_sym_BSLASHtvolcite] = ACTIONS(2097), + [anon_sym_BSLASHTvolcite] = ACTIONS(2097), + [anon_sym_BSLASHavolcite] = ACTIONS(2097), + [anon_sym_BSLASHAvolcite] = ACTIONS(2097), + [anon_sym_BSLASHnotecite] = ACTIONS(2097), + [anon_sym_BSLASHNotecite] = ACTIONS(2097), + [anon_sym_BSLASHpnotecite] = ACTIONS(2097), + [anon_sym_BSLASHPnotecite] = ACTIONS(2097), + [anon_sym_BSLASHfnotecite] = ACTIONS(2097), + [anon_sym_BSLASHlabel] = ACTIONS(2097), + [anon_sym_BSLASHref] = ACTIONS(2097), + [anon_sym_BSLASHeqref] = ACTIONS(2097), + [anon_sym_BSLASHvref] = ACTIONS(2097), + [anon_sym_BSLASHVref] = ACTIONS(2097), + [anon_sym_BSLASHautoref] = ACTIONS(2097), + [anon_sym_BSLASHpageref] = ACTIONS(2097), + [anon_sym_BSLASHcref] = ACTIONS(2097), + [anon_sym_BSLASHCref] = ACTIONS(2097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnameCref] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHlabelcref] = ACTIONS(2097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdef] = ACTIONS(2097), + [anon_sym_BSLASHlet] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2097), + [anon_sym_BSLASHgls] = ACTIONS(2097), + [anon_sym_BSLASHGls] = ACTIONS(2097), + [anon_sym_BSLASHGLS] = ACTIONS(2097), + [anon_sym_BSLASHglspl] = ACTIONS(2097), + [anon_sym_BSLASHGlspl] = ACTIONS(2097), + [anon_sym_BSLASHGLSpl] = ACTIONS(2097), + [anon_sym_BSLASHglsdisp] = ACTIONS(2097), + [anon_sym_BSLASHglslink] = ACTIONS(2097), + [anon_sym_BSLASHglstext] = ACTIONS(2097), + [anon_sym_BSLASHGlstext] = ACTIONS(2097), + [anon_sym_BSLASHGLStext] = ACTIONS(2097), + [anon_sym_BSLASHglsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2097), + [anon_sym_BSLASHglsplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSplural] = ACTIONS(2097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHglsname] = ACTIONS(2097), + [anon_sym_BSLASHGlsname] = ACTIONS(2097), + [anon_sym_BSLASHGLSname] = ACTIONS(2097), + [anon_sym_BSLASHglssymbol] = ACTIONS(2097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2097), + [anon_sym_BSLASHglsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2097), + [anon_sym_BSLASHglsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2097), + [anon_sym_BSLASHglsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2097), + [anon_sym_BSLASHglsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2097), + [anon_sym_BSLASHglsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2097), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2097), + [anon_sym_BSLASHAcrshort] = ACTIONS(2097), + [anon_sym_BSLASHACRshort] = ACTIONS(2097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2097), + [anon_sym_BSLASHacrlong] = ACTIONS(2097), + [anon_sym_BSLASHAcrlong] = ACTIONS(2097), + [anon_sym_BSLASHACRlong] = ACTIONS(2097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2097), + [anon_sym_BSLASHacrfull] = ACTIONS(2097), + [anon_sym_BSLASHAcrfull] = ACTIONS(2097), + [anon_sym_BSLASHACRfull] = ACTIONS(2097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2097), + [anon_sym_BSLASHacs] = ACTIONS(2097), + [anon_sym_BSLASHAcs] = ACTIONS(2097), + [anon_sym_BSLASHacsp] = ACTIONS(2097), + [anon_sym_BSLASHAcsp] = ACTIONS(2097), + [anon_sym_BSLASHacl] = ACTIONS(2097), + [anon_sym_BSLASHAcl] = ACTIONS(2097), + [anon_sym_BSLASHaclp] = ACTIONS(2097), + [anon_sym_BSLASHAclp] = ACTIONS(2097), + [anon_sym_BSLASHacf] = ACTIONS(2097), + [anon_sym_BSLASHAcf] = ACTIONS(2097), + [anon_sym_BSLASHacfp] = ACTIONS(2097), + [anon_sym_BSLASHAcfp] = ACTIONS(2097), + [anon_sym_BSLASHac] = ACTIONS(2097), + [anon_sym_BSLASHAc] = ACTIONS(2097), + [anon_sym_BSLASHacp] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2097), + [anon_sym_BSLASHcolor] = ACTIONS(2097), + [anon_sym_BSLASHcolorbox] = ACTIONS(2097), + [anon_sym_BSLASHtextcolor] = ACTIONS(2097), + [anon_sym_BSLASHpagecolor] = ACTIONS(2097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2097), + [anon_sym_BSLASHtext] = ACTIONS(2097), + [anon_sym_BSLASHintertext] = ACTIONS(2097), + [anon_sym_shortintertext] = ACTIONS(2097), }, - [930] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_BSLASHpart] = ACTIONS(5075), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddpart] = ACTIONS(5075), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHchapter] = ACTIONS(5075), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddchap] = ACTIONS(5075), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsection] = ACTIONS(5075), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddsec] = ACTIONS(5075), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHparagraph] = ACTIONS(5075), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHitem] = ACTIONS(5075), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), + [535] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(5263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5263), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_BSLASHpart] = ACTIONS(5263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddpart] = ACTIONS(5263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHchapter] = ACTIONS(5263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddchap] = ACTIONS(5263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsection] = ACTIONS(5263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddsec] = ACTIONS(5263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubsection] = ACTIONS(5449), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5452), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHparagraph] = ACTIONS(5263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHitem] = ACTIONS(5263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), + [anon_sym_LBRACE] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [sym_placeholder] = ACTIONS(5261), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5263), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5263), + [anon_sym__] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_BANG] = ACTIONS(5263), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_SQUOTE] = ACTIONS(5263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), + [anon_sym_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), + [anon_sym_BSLASHbegin] = ACTIONS(5263), + [anon_sym_BSLASHtitle] = ACTIONS(5263), + [anon_sym_BSLASHauthor] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), + [anon_sym_BSLASHinclude] = ACTIONS(5263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), + [anon_sym_BSLASHinput] = ACTIONS(5263), + [anon_sym_BSLASHsubfile] = ACTIONS(5263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), + [anon_sym_BSLASHbibliography] = ACTIONS(5263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), + [anon_sym_BSLASHincludesvg] = ACTIONS(5263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), + [anon_sym_BSLASHimport] = ACTIONS(5263), + [anon_sym_BSLASHsubimport] = ACTIONS(5263), + [anon_sym_BSLASHinputfrom] = ACTIONS(5263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), + [anon_sym_BSLASHincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHcaption] = ACTIONS(5263), + [anon_sym_BSLASHcite] = ACTIONS(5263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCite] = ACTIONS(5263), + [anon_sym_BSLASHnocite] = ACTIONS(5263), + [anon_sym_BSLASHcitet] = ACTIONS(5263), + [anon_sym_BSLASHcitep] = ACTIONS(5263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteyear] = ACTIONS(5263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitedate] = ACTIONS(5263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteurl] = ACTIONS(5263), + [anon_sym_BSLASHfullcite] = ACTIONS(5263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), + [anon_sym_BSLASHcitealt] = ACTIONS(5263), + [anon_sym_BSLASHcitealp] = ACTIONS(5263), + [anon_sym_BSLASHcitetext] = ACTIONS(5263), + [anon_sym_BSLASHparencite] = ACTIONS(5263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHParencite] = ACTIONS(5263), + [anon_sym_BSLASHfootcite] = ACTIONS(5263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), + [anon_sym_BSLASHtextcite] = ACTIONS(5263), + [anon_sym_BSLASHTextcite] = ACTIONS(5263), + [anon_sym_BSLASHsmartcite] = ACTIONS(5263), + [anon_sym_BSLASHSmartcite] = ACTIONS(5263), + [anon_sym_BSLASHsupercite] = ACTIONS(5263), + [anon_sym_BSLASHautocite] = ACTIONS(5263), + [anon_sym_BSLASHAutocite] = ACTIONS(5263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHvolcite] = ACTIONS(5263), + [anon_sym_BSLASHVolcite] = ACTIONS(5263), + [anon_sym_BSLASHpvolcite] = ACTIONS(5263), + [anon_sym_BSLASHPvolcite] = ACTIONS(5263), + [anon_sym_BSLASHfvolcite] = ACTIONS(5263), + [anon_sym_BSLASHftvolcite] = ACTIONS(5263), + [anon_sym_BSLASHsvolcite] = ACTIONS(5263), + [anon_sym_BSLASHSvolcite] = ACTIONS(5263), + [anon_sym_BSLASHtvolcite] = ACTIONS(5263), + [anon_sym_BSLASHTvolcite] = ACTIONS(5263), + [anon_sym_BSLASHavolcite] = ACTIONS(5263), + [anon_sym_BSLASHAvolcite] = ACTIONS(5263), + [anon_sym_BSLASHnotecite] = ACTIONS(5263), + [anon_sym_BSLASHNotecite] = ACTIONS(5263), + [anon_sym_BSLASHpnotecite] = ACTIONS(5263), + [anon_sym_BSLASHPnotecite] = ACTIONS(5263), + [anon_sym_BSLASHfnotecite] = ACTIONS(5263), + [anon_sym_BSLASHlabel] = ACTIONS(5263), + [anon_sym_BSLASHref] = ACTIONS(5263), + [anon_sym_BSLASHeqref] = ACTIONS(5263), + [anon_sym_BSLASHvref] = ACTIONS(5263), + [anon_sym_BSLASHVref] = ACTIONS(5263), + [anon_sym_BSLASHautoref] = ACTIONS(5263), + [anon_sym_BSLASHpageref] = ACTIONS(5263), + [anon_sym_BSLASHcref] = ACTIONS(5263), + [anon_sym_BSLASHCref] = ACTIONS(5263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnameCref] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHlabelcref] = ACTIONS(5263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnewlabel] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdef] = ACTIONS(5263), + [anon_sym_BSLASHlet] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), + [anon_sym_BSLASHgls] = ACTIONS(5263), + [anon_sym_BSLASHGls] = ACTIONS(5263), + [anon_sym_BSLASHGLS] = ACTIONS(5263), + [anon_sym_BSLASHglspl] = ACTIONS(5263), + [anon_sym_BSLASHGlspl] = ACTIONS(5263), + [anon_sym_BSLASHGLSpl] = ACTIONS(5263), + [anon_sym_BSLASHglsdisp] = ACTIONS(5263), + [anon_sym_BSLASHglslink] = ACTIONS(5263), + [anon_sym_BSLASHglstext] = ACTIONS(5263), + [anon_sym_BSLASHGlstext] = ACTIONS(5263), + [anon_sym_BSLASHGLStext] = ACTIONS(5263), + [anon_sym_BSLASHglsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), + [anon_sym_BSLASHglsplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSplural] = ACTIONS(5263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHglsname] = ACTIONS(5263), + [anon_sym_BSLASHGlsname] = ACTIONS(5263), + [anon_sym_BSLASHGLSname] = ACTIONS(5263), + [anon_sym_BSLASHglssymbol] = ACTIONS(5263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), + [anon_sym_BSLASHglsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), + [anon_sym_BSLASHglsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), + [anon_sym_BSLASHglsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), + [anon_sym_BSLASHglsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), + [anon_sym_BSLASHglsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), + [anon_sym_BSLASHnewacronym] = ACTIONS(5263), + [anon_sym_BSLASHacrshort] = ACTIONS(5263), + [anon_sym_BSLASHAcrshort] = ACTIONS(5263), + [anon_sym_BSLASHACRshort] = ACTIONS(5263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), + [anon_sym_BSLASHacrlong] = ACTIONS(5263), + [anon_sym_BSLASHAcrlong] = ACTIONS(5263), + [anon_sym_BSLASHACRlong] = ACTIONS(5263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), + [anon_sym_BSLASHacrfull] = ACTIONS(5263), + [anon_sym_BSLASHAcrfull] = ACTIONS(5263), + [anon_sym_BSLASHACRfull] = ACTIONS(5263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), + [anon_sym_BSLASHacs] = ACTIONS(5263), + [anon_sym_BSLASHAcs] = ACTIONS(5263), + [anon_sym_BSLASHacsp] = ACTIONS(5263), + [anon_sym_BSLASHAcsp] = ACTIONS(5263), + [anon_sym_BSLASHacl] = ACTIONS(5263), + [anon_sym_BSLASHAcl] = ACTIONS(5263), + [anon_sym_BSLASHaclp] = ACTIONS(5263), + [anon_sym_BSLASHAclp] = ACTIONS(5263), + [anon_sym_BSLASHacf] = ACTIONS(5263), + [anon_sym_BSLASHAcf] = ACTIONS(5263), + [anon_sym_BSLASHacfp] = ACTIONS(5263), + [anon_sym_BSLASHAcfp] = ACTIONS(5263), + [anon_sym_BSLASHac] = ACTIONS(5263), + [anon_sym_BSLASHAc] = ACTIONS(5263), + [anon_sym_BSLASHacp] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), + [anon_sym_BSLASHcolor] = ACTIONS(5263), + [anon_sym_BSLASHcolorbox] = ACTIONS(5263), + [anon_sym_BSLASHtextcolor] = ACTIONS(5263), + [anon_sym_BSLASHpagecolor] = ACTIONS(5263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [anon_sym_BSLASHtext] = ACTIONS(5263), + [anon_sym_BSLASHintertext] = ACTIONS(5263), + [anon_sym_shortintertext] = ACTIONS(5263), }, - [931] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_BSLASHpart] = ACTIONS(5455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddpart] = ACTIONS(5455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHchapter] = ACTIONS(5455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddchap] = ACTIONS(5455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5453), + [536] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), [anon_sym_BSLASHsection] = ACTIONS(5455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5453), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5458), [anon_sym_BSLASHaddsec] = ACTIONS(5455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHparagraph] = ACTIONS(5455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHitem] = ACTIONS(5455), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5458), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHtitle] = ACTIONS(5273), + [anon_sym_BSLASHauthor] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), }, - [932] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASHpart] = ACTIONS(5483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddpart] = ACTIONS(5483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHchapter] = ACTIONS(5483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddchap] = ACTIONS(5483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsection] = ACTIONS(5483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddsec] = ACTIONS(5483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHparagraph] = ACTIONS(5483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHitem] = ACTIONS(5483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), + [537] = { + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(537), + [aux_sym__section_repeat2] = STATE(537), + [sym_command_name] = ACTIONS(5283), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5283), + [anon_sym_LPAREN] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_BSLASHpart] = ACTIONS(5283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddpart] = ACTIONS(5283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHchapter] = ACTIONS(5461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5464), + [anon_sym_BSLASHaddchap] = ACTIONS(5461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5464), + [anon_sym_BSLASHsection] = ACTIONS(5283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddsec] = ACTIONS(5283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHparagraph] = ACTIONS(5283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHitem] = ACTIONS(5283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(5281), + [sym_word] = ACTIONS(5283), + [sym_placeholder] = ACTIONS(5281), + [anon_sym_PLUS] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_SLASH] = ACTIONS(5283), + [anon_sym_CARET] = ACTIONS(5283), + [anon_sym__] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(5283), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym_BANG] = ACTIONS(5283), + [anon_sym_PIPE] = ACTIONS(5283), + [anon_sym_COLON] = ACTIONS(5283), + [anon_sym_SQUOTE] = ACTIONS(5283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), + [anon_sym_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), + [anon_sym_BSLASHbegin] = ACTIONS(5283), + [anon_sym_BSLASHtitle] = ACTIONS(5283), + [anon_sym_BSLASHauthor] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), + [anon_sym_BSLASHinclude] = ACTIONS(5283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), + [anon_sym_BSLASHinput] = ACTIONS(5283), + [anon_sym_BSLASHsubfile] = ACTIONS(5283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), + [anon_sym_BSLASHbibliography] = ACTIONS(5283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), + [anon_sym_BSLASHincludesvg] = ACTIONS(5283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), + [anon_sym_BSLASHimport] = ACTIONS(5283), + [anon_sym_BSLASHsubimport] = ACTIONS(5283), + [anon_sym_BSLASHinputfrom] = ACTIONS(5283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), + [anon_sym_BSLASHincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHcaption] = ACTIONS(5283), + [anon_sym_BSLASHcite] = ACTIONS(5283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCite] = ACTIONS(5283), + [anon_sym_BSLASHnocite] = ACTIONS(5283), + [anon_sym_BSLASHcitet] = ACTIONS(5283), + [anon_sym_BSLASHcitep] = ACTIONS(5283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteyear] = ACTIONS(5283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitedate] = ACTIONS(5283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteurl] = ACTIONS(5283), + [anon_sym_BSLASHfullcite] = ACTIONS(5283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), + [anon_sym_BSLASHcitealt] = ACTIONS(5283), + [anon_sym_BSLASHcitealp] = ACTIONS(5283), + [anon_sym_BSLASHcitetext] = ACTIONS(5283), + [anon_sym_BSLASHparencite] = ACTIONS(5283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHParencite] = ACTIONS(5283), + [anon_sym_BSLASHfootcite] = ACTIONS(5283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), + [anon_sym_BSLASHtextcite] = ACTIONS(5283), + [anon_sym_BSLASHTextcite] = ACTIONS(5283), + [anon_sym_BSLASHsmartcite] = ACTIONS(5283), + [anon_sym_BSLASHSmartcite] = ACTIONS(5283), + [anon_sym_BSLASHsupercite] = ACTIONS(5283), + [anon_sym_BSLASHautocite] = ACTIONS(5283), + [anon_sym_BSLASHAutocite] = ACTIONS(5283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHvolcite] = ACTIONS(5283), + [anon_sym_BSLASHVolcite] = ACTIONS(5283), + [anon_sym_BSLASHpvolcite] = ACTIONS(5283), + [anon_sym_BSLASHPvolcite] = ACTIONS(5283), + [anon_sym_BSLASHfvolcite] = ACTIONS(5283), + [anon_sym_BSLASHftvolcite] = ACTIONS(5283), + [anon_sym_BSLASHsvolcite] = ACTIONS(5283), + [anon_sym_BSLASHSvolcite] = ACTIONS(5283), + [anon_sym_BSLASHtvolcite] = ACTIONS(5283), + [anon_sym_BSLASHTvolcite] = ACTIONS(5283), + [anon_sym_BSLASHavolcite] = ACTIONS(5283), + [anon_sym_BSLASHAvolcite] = ACTIONS(5283), + [anon_sym_BSLASHnotecite] = ACTIONS(5283), + [anon_sym_BSLASHNotecite] = ACTIONS(5283), + [anon_sym_BSLASHpnotecite] = ACTIONS(5283), + [anon_sym_BSLASHPnotecite] = ACTIONS(5283), + [anon_sym_BSLASHfnotecite] = ACTIONS(5283), + [anon_sym_BSLASHlabel] = ACTIONS(5283), + [anon_sym_BSLASHref] = ACTIONS(5283), + [anon_sym_BSLASHeqref] = ACTIONS(5283), + [anon_sym_BSLASHvref] = ACTIONS(5283), + [anon_sym_BSLASHVref] = ACTIONS(5283), + [anon_sym_BSLASHautoref] = ACTIONS(5283), + [anon_sym_BSLASHpageref] = ACTIONS(5283), + [anon_sym_BSLASHcref] = ACTIONS(5283), + [anon_sym_BSLASHCref] = ACTIONS(5283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnameCref] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHlabelcref] = ACTIONS(5283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnewlabel] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdef] = ACTIONS(5283), + [anon_sym_BSLASHlet] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5283), + [anon_sym_BSLASHacrshort] = ACTIONS(5283), + [anon_sym_BSLASHAcrshort] = ACTIONS(5283), + [anon_sym_BSLASHACRshort] = ACTIONS(5283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), + [anon_sym_BSLASHacrlong] = ACTIONS(5283), + [anon_sym_BSLASHAcrlong] = ACTIONS(5283), + [anon_sym_BSLASHACRlong] = ACTIONS(5283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), + [anon_sym_BSLASHacrfull] = ACTIONS(5283), + [anon_sym_BSLASHAcrfull] = ACTIONS(5283), + [anon_sym_BSLASHACRfull] = ACTIONS(5283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), + [anon_sym_BSLASHacs] = ACTIONS(5283), + [anon_sym_BSLASHAcs] = ACTIONS(5283), + [anon_sym_BSLASHacsp] = ACTIONS(5283), + [anon_sym_BSLASHAcsp] = ACTIONS(5283), + [anon_sym_BSLASHacl] = ACTIONS(5283), + [anon_sym_BSLASHAcl] = ACTIONS(5283), + [anon_sym_BSLASHaclp] = ACTIONS(5283), + [anon_sym_BSLASHAclp] = ACTIONS(5283), + [anon_sym_BSLASHacf] = ACTIONS(5283), + [anon_sym_BSLASHAcf] = ACTIONS(5283), + [anon_sym_BSLASHacfp] = ACTIONS(5283), + [anon_sym_BSLASHAcfp] = ACTIONS(5283), + [anon_sym_BSLASHac] = ACTIONS(5283), + [anon_sym_BSLASHAc] = ACTIONS(5283), + [anon_sym_BSLASHacp] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), + [anon_sym_BSLASHcolor] = ACTIONS(5283), + [anon_sym_BSLASHcolorbox] = ACTIONS(5283), + [anon_sym_BSLASHtextcolor] = ACTIONS(5283), + [anon_sym_BSLASHpagecolor] = ACTIONS(5283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHtext] = ACTIONS(5283), + [anon_sym_BSLASHintertext] = ACTIONS(5283), + [anon_sym_shortintertext] = ACTIONS(5283), }, - [933] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [538] = { + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(538), + [aux_sym__section_repeat1] = STATE(538), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5467), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5470), + [anon_sym_BSLASHaddpart] = ACTIONS(5467), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5470), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHtitle] = ACTIONS(5293), + [anon_sym_BSLASHauthor] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), }, - [934] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_BSLASHpart] = ACTIONS(5491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddpart] = ACTIONS(5491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHchapter] = ACTIONS(5491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddchap] = ACTIONS(5491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsection] = ACTIONS(5491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddsec] = ACTIONS(5491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHparagraph] = ACTIONS(5491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHitem] = ACTIONS(5491), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), + [539] = { + [sym__part_declaration] = STATE(138), + [sym_part] = STATE(539), + [aux_sym__section_repeat1] = STATE(539), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5473), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5476), + [anon_sym_BSLASHaddpart] = ACTIONS(5473), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5476), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHtitle] = ACTIONS(5293), + [anon_sym_BSLASHauthor] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), }, - [935] = { - [sym_command_name] = ACTIONS(5323), + [540] = { + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(540), + [aux_sym__section_repeat2] = STATE(540), + [sym_command_name] = ACTIONS(5283), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [anon_sym_LPAREN] = ACTIONS(5321), - [anon_sym_RPAREN] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5321), - [anon_sym_RBRACK] = ACTIONS(5321), - [anon_sym_COMMA] = ACTIONS(5321), - [anon_sym_EQ] = ACTIONS(5321), - [anon_sym_BSLASHpart] = ACTIONS(5323), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddpart] = ACTIONS(5323), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHchapter] = ACTIONS(5323), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddchap] = ACTIONS(5323), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsection] = ACTIONS(5323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddsec] = ACTIONS(5323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHparagraph] = ACTIONS(5323), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHitem] = ACTIONS(5323), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5323), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym__] = ACTIONS(5323), - [anon_sym_LT] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5323), - [anon_sym_BANG] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5323), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_SQUOTE] = ACTIONS(5323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), - [anon_sym_BSLASHbegin] = ACTIONS(5323), - [anon_sym_BSLASHusepackage] = ACTIONS(5323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), - [anon_sym_BSLASHinclude] = ACTIONS(5323), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), - [anon_sym_BSLASHinput] = ACTIONS(5323), - [anon_sym_BSLASHsubfile] = ACTIONS(5323), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5323), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), - [anon_sym_BSLASHincludesvg] = ACTIONS(5323), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), - [anon_sym_BSLASHimport] = ACTIONS(5323), - [anon_sym_BSLASHsubimport] = ACTIONS(5323), - [anon_sym_BSLASHinputfrom] = ACTIONS(5323), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), - [anon_sym_BSLASHincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHcaption] = ACTIONS(5323), - [anon_sym_BSLASHcite] = ACTIONS(5323), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCite] = ACTIONS(5323), - [anon_sym_BSLASHnocite] = ACTIONS(5323), - [anon_sym_BSLASHcitet] = ACTIONS(5323), - [anon_sym_BSLASHcitep] = ACTIONS(5323), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteurl] = ACTIONS(5323), - [anon_sym_BSLASHfullcite] = ACTIONS(5323), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), - [anon_sym_BSLASHcitealt] = ACTIONS(5323), - [anon_sym_BSLASHcitealp] = ACTIONS(5323), - [anon_sym_BSLASHcitetext] = ACTIONS(5323), - [anon_sym_BSLASHparencite] = ACTIONS(5323), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHParencite] = ACTIONS(5323), - [anon_sym_BSLASHfootcite] = ACTIONS(5323), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), - [anon_sym_BSLASHtextcite] = ACTIONS(5323), - [anon_sym_BSLASHTextcite] = ACTIONS(5323), - [anon_sym_BSLASHsmartcite] = ACTIONS(5323), - [anon_sym_BSLASHSmartcite] = ACTIONS(5323), - [anon_sym_BSLASHsupercite] = ACTIONS(5323), - [anon_sym_BSLASHautocite] = ACTIONS(5323), - [anon_sym_BSLASHAutocite] = ACTIONS(5323), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHvolcite] = ACTIONS(5323), - [anon_sym_BSLASHVolcite] = ACTIONS(5323), - [anon_sym_BSLASHpvolcite] = ACTIONS(5323), - [anon_sym_BSLASHPvolcite] = ACTIONS(5323), - [anon_sym_BSLASHfvolcite] = ACTIONS(5323), - [anon_sym_BSLASHftvolcite] = ACTIONS(5323), - [anon_sym_BSLASHsvolcite] = ACTIONS(5323), - [anon_sym_BSLASHSvolcite] = ACTIONS(5323), - [anon_sym_BSLASHtvolcite] = ACTIONS(5323), - [anon_sym_BSLASHTvolcite] = ACTIONS(5323), - [anon_sym_BSLASHavolcite] = ACTIONS(5323), - [anon_sym_BSLASHAvolcite] = ACTIONS(5323), - [anon_sym_BSLASHnotecite] = ACTIONS(5323), - [anon_sym_BSLASHNotecite] = ACTIONS(5323), - [anon_sym_BSLASHpnotecite] = ACTIONS(5323), - [anon_sym_BSLASHPnotecite] = ACTIONS(5323), - [anon_sym_BSLASHfnotecite] = ACTIONS(5323), - [anon_sym_BSLASHlabel] = ACTIONS(5323), - [anon_sym_BSLASHref] = ACTIONS(5323), - [anon_sym_BSLASHeqref] = ACTIONS(5323), - [anon_sym_BSLASHvref] = ACTIONS(5323), - [anon_sym_BSLASHVref] = ACTIONS(5323), - [anon_sym_BSLASHautoref] = ACTIONS(5323), - [anon_sym_BSLASHpageref] = ACTIONS(5323), - [anon_sym_BSLASHcref] = ACTIONS(5323), - [anon_sym_BSLASHCref] = ACTIONS(5323), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnameCref] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHlabelcref] = ACTIONS(5323), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), - [anon_sym_BSLASHgls] = ACTIONS(5323), - [anon_sym_BSLASHGls] = ACTIONS(5323), - [anon_sym_BSLASHGLS] = ACTIONS(5323), - [anon_sym_BSLASHglspl] = ACTIONS(5323), - [anon_sym_BSLASHGlspl] = ACTIONS(5323), - [anon_sym_BSLASHGLSpl] = ACTIONS(5323), - [anon_sym_BSLASHglsdisp] = ACTIONS(5323), - [anon_sym_BSLASHglslink] = ACTIONS(5323), - [anon_sym_BSLASHglstext] = ACTIONS(5323), - [anon_sym_BSLASHGlstext] = ACTIONS(5323), - [anon_sym_BSLASHGLStext] = ACTIONS(5323), - [anon_sym_BSLASHglsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), - [anon_sym_BSLASHglsplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSplural] = ACTIONS(5323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHglsname] = ACTIONS(5323), - [anon_sym_BSLASHGlsname] = ACTIONS(5323), - [anon_sym_BSLASHGLSname] = ACTIONS(5323), - [anon_sym_BSLASHglssymbol] = ACTIONS(5323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), - [anon_sym_BSLASHglsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), - [anon_sym_BSLASHglsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), - [anon_sym_BSLASHglsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), - [anon_sym_BSLASHglsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), - [anon_sym_BSLASHglsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), - [anon_sym_BSLASHnewacronym] = ACTIONS(5323), - [anon_sym_BSLASHacrshort] = ACTIONS(5323), - [anon_sym_BSLASHAcrshort] = ACTIONS(5323), - [anon_sym_BSLASHACRshort] = ACTIONS(5323), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), - [anon_sym_BSLASHacrlong] = ACTIONS(5323), - [anon_sym_BSLASHAcrlong] = ACTIONS(5323), - [anon_sym_BSLASHACRlong] = ACTIONS(5323), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), - [anon_sym_BSLASHacrfull] = ACTIONS(5323), - [anon_sym_BSLASHAcrfull] = ACTIONS(5323), - [anon_sym_BSLASHACRfull] = ACTIONS(5323), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), - [anon_sym_BSLASHtext] = ACTIONS(5323), - [anon_sym_BSLASHintertext] = ACTIONS(5323), - [anon_sym_shortintertext] = ACTIONS(5323), - }, - [936] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_BSLASHpart] = ACTIONS(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), - }, - [937] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [938] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [939] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [940] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [941] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), - }, - [942] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), - }, - [943] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), - }, - [944] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [945] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_RPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), - }, - [946] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), - }, - [947] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), - }, - [948] = { - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_BSLASHpart] = ACTIONS(5071), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddpart] = ACTIONS(5071), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHchapter] = ACTIONS(5071), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddchap] = ACTIONS(5071), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsection] = ACTIONS(5071), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddsec] = ACTIONS(5071), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHparagraph] = ACTIONS(5071), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), - }, - [949] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_BSLASHpart] = ACTIONS(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), + [anon_sym_BSLASHiffalse] = ACTIONS(5283), + [anon_sym_LPAREN] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_BSLASHpart] = ACTIONS(5283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddpart] = ACTIONS(5283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHchapter] = ACTIONS(5479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5482), + [anon_sym_BSLASHaddchap] = ACTIONS(5479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5482), + [anon_sym_BSLASHsection] = ACTIONS(5283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddsec] = ACTIONS(5283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHparagraph] = ACTIONS(5283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHitem] = ACTIONS(5283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(5281), + [sym_word] = ACTIONS(5283), + [sym_placeholder] = ACTIONS(5281), + [anon_sym_PLUS] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_SLASH] = ACTIONS(5283), + [anon_sym_CARET] = ACTIONS(5283), + [anon_sym__] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(5283), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym_BANG] = ACTIONS(5283), + [anon_sym_PIPE] = ACTIONS(5283), + [anon_sym_COLON] = ACTIONS(5283), + [anon_sym_SQUOTE] = ACTIONS(5283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5281), + [anon_sym_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), + [anon_sym_BSLASHbegin] = ACTIONS(5283), + [anon_sym_BSLASHtitle] = ACTIONS(5283), + [anon_sym_BSLASHauthor] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), + [anon_sym_BSLASHinclude] = ACTIONS(5283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), + [anon_sym_BSLASHinput] = ACTIONS(5283), + [anon_sym_BSLASHsubfile] = ACTIONS(5283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), + [anon_sym_BSLASHbibliography] = ACTIONS(5283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), + [anon_sym_BSLASHincludesvg] = ACTIONS(5283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), + [anon_sym_BSLASHimport] = ACTIONS(5283), + [anon_sym_BSLASHsubimport] = ACTIONS(5283), + [anon_sym_BSLASHinputfrom] = ACTIONS(5283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), + [anon_sym_BSLASHincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHcaption] = ACTIONS(5283), + [anon_sym_BSLASHcite] = ACTIONS(5283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCite] = ACTIONS(5283), + [anon_sym_BSLASHnocite] = ACTIONS(5283), + [anon_sym_BSLASHcitet] = ACTIONS(5283), + [anon_sym_BSLASHcitep] = ACTIONS(5283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteyear] = ACTIONS(5283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitedate] = ACTIONS(5283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteurl] = ACTIONS(5283), + [anon_sym_BSLASHfullcite] = ACTIONS(5283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), + [anon_sym_BSLASHcitealt] = ACTIONS(5283), + [anon_sym_BSLASHcitealp] = ACTIONS(5283), + [anon_sym_BSLASHcitetext] = ACTIONS(5283), + [anon_sym_BSLASHparencite] = ACTIONS(5283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHParencite] = ACTIONS(5283), + [anon_sym_BSLASHfootcite] = ACTIONS(5283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), + [anon_sym_BSLASHtextcite] = ACTIONS(5283), + [anon_sym_BSLASHTextcite] = ACTIONS(5283), + [anon_sym_BSLASHsmartcite] = ACTIONS(5283), + [anon_sym_BSLASHSmartcite] = ACTIONS(5283), + [anon_sym_BSLASHsupercite] = ACTIONS(5283), + [anon_sym_BSLASHautocite] = ACTIONS(5283), + [anon_sym_BSLASHAutocite] = ACTIONS(5283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHvolcite] = ACTIONS(5283), + [anon_sym_BSLASHVolcite] = ACTIONS(5283), + [anon_sym_BSLASHpvolcite] = ACTIONS(5283), + [anon_sym_BSLASHPvolcite] = ACTIONS(5283), + [anon_sym_BSLASHfvolcite] = ACTIONS(5283), + [anon_sym_BSLASHftvolcite] = ACTIONS(5283), + [anon_sym_BSLASHsvolcite] = ACTIONS(5283), + [anon_sym_BSLASHSvolcite] = ACTIONS(5283), + [anon_sym_BSLASHtvolcite] = ACTIONS(5283), + [anon_sym_BSLASHTvolcite] = ACTIONS(5283), + [anon_sym_BSLASHavolcite] = ACTIONS(5283), + [anon_sym_BSLASHAvolcite] = ACTIONS(5283), + [anon_sym_BSLASHnotecite] = ACTIONS(5283), + [anon_sym_BSLASHNotecite] = ACTIONS(5283), + [anon_sym_BSLASHpnotecite] = ACTIONS(5283), + [anon_sym_BSLASHPnotecite] = ACTIONS(5283), + [anon_sym_BSLASHfnotecite] = ACTIONS(5283), + [anon_sym_BSLASHlabel] = ACTIONS(5283), + [anon_sym_BSLASHref] = ACTIONS(5283), + [anon_sym_BSLASHeqref] = ACTIONS(5283), + [anon_sym_BSLASHvref] = ACTIONS(5283), + [anon_sym_BSLASHVref] = ACTIONS(5283), + [anon_sym_BSLASHautoref] = ACTIONS(5283), + [anon_sym_BSLASHpageref] = ACTIONS(5283), + [anon_sym_BSLASHcref] = ACTIONS(5283), + [anon_sym_BSLASHCref] = ACTIONS(5283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnameCref] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHlabelcref] = ACTIONS(5283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnewlabel] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdef] = ACTIONS(5283), + [anon_sym_BSLASHlet] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5283), + [anon_sym_BSLASHacrshort] = ACTIONS(5283), + [anon_sym_BSLASHAcrshort] = ACTIONS(5283), + [anon_sym_BSLASHACRshort] = ACTIONS(5283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), + [anon_sym_BSLASHacrlong] = ACTIONS(5283), + [anon_sym_BSLASHAcrlong] = ACTIONS(5283), + [anon_sym_BSLASHACRlong] = ACTIONS(5283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), + [anon_sym_BSLASHacrfull] = ACTIONS(5283), + [anon_sym_BSLASHAcrfull] = ACTIONS(5283), + [anon_sym_BSLASHACRfull] = ACTIONS(5283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), + [anon_sym_BSLASHacs] = ACTIONS(5283), + [anon_sym_BSLASHAcs] = ACTIONS(5283), + [anon_sym_BSLASHacsp] = ACTIONS(5283), + [anon_sym_BSLASHAcsp] = ACTIONS(5283), + [anon_sym_BSLASHacl] = ACTIONS(5283), + [anon_sym_BSLASHAcl] = ACTIONS(5283), + [anon_sym_BSLASHaclp] = ACTIONS(5283), + [anon_sym_BSLASHAclp] = ACTIONS(5283), + [anon_sym_BSLASHacf] = ACTIONS(5283), + [anon_sym_BSLASHAcf] = ACTIONS(5283), + [anon_sym_BSLASHacfp] = ACTIONS(5283), + [anon_sym_BSLASHAcfp] = ACTIONS(5283), + [anon_sym_BSLASHac] = ACTIONS(5283), + [anon_sym_BSLASHAc] = ACTIONS(5283), + [anon_sym_BSLASHacp] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), + [anon_sym_BSLASHcolor] = ACTIONS(5283), + [anon_sym_BSLASHcolorbox] = ACTIONS(5283), + [anon_sym_BSLASHtextcolor] = ACTIONS(5283), + [anon_sym_BSLASHpagecolor] = ACTIONS(5283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHtext] = ACTIONS(5283), + [anon_sym_BSLASHintertext] = ACTIONS(5283), + [anon_sym_shortintertext] = ACTIONS(5283), }, - [950] = { - [sym_command_name] = ACTIONS(5323), + [541] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(5273), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [anon_sym_LPAREN] = ACTIONS(5321), - [anon_sym_RPAREN] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5321), - [anon_sym_RBRACK] = ACTIONS(5321), - [anon_sym_COMMA] = ACTIONS(5321), - [anon_sym_EQ] = ACTIONS(5321), - [anon_sym_BSLASHpart] = ACTIONS(5323), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddpart] = ACTIONS(5323), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), - [anon_sym_BSLASHchapter] = ACTIONS(5323), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddchap] = ACTIONS(5323), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsection] = ACTIONS(5323), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHaddsec] = ACTIONS(5323), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHparagraph] = ACTIONS(5323), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), - [anon_sym_BSLASHitem] = ACTIONS(5323), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5323), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym__] = ACTIONS(5323), - [anon_sym_LT] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5323), - [anon_sym_BANG] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5323), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_SQUOTE] = ACTIONS(5323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [anon_sym_BSLASHbegin] = ACTIONS(5323), - [anon_sym_BSLASHusepackage] = ACTIONS(5323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), - [anon_sym_BSLASHinclude] = ACTIONS(5323), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), - [anon_sym_BSLASHinput] = ACTIONS(5323), - [anon_sym_BSLASHsubfile] = ACTIONS(5323), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5323), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), - [anon_sym_BSLASHincludesvg] = ACTIONS(5323), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), - [anon_sym_BSLASHimport] = ACTIONS(5323), - [anon_sym_BSLASHsubimport] = ACTIONS(5323), - [anon_sym_BSLASHinputfrom] = ACTIONS(5323), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), - [anon_sym_BSLASHincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHcaption] = ACTIONS(5323), - [anon_sym_BSLASHcite] = ACTIONS(5323), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCite] = ACTIONS(5323), - [anon_sym_BSLASHnocite] = ACTIONS(5323), - [anon_sym_BSLASHcitet] = ACTIONS(5323), - [anon_sym_BSLASHcitep] = ACTIONS(5323), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteurl] = ACTIONS(5323), - [anon_sym_BSLASHfullcite] = ACTIONS(5323), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), - [anon_sym_BSLASHcitealt] = ACTIONS(5323), - [anon_sym_BSLASHcitealp] = ACTIONS(5323), - [anon_sym_BSLASHcitetext] = ACTIONS(5323), - [anon_sym_BSLASHparencite] = ACTIONS(5323), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHParencite] = ACTIONS(5323), - [anon_sym_BSLASHfootcite] = ACTIONS(5323), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), - [anon_sym_BSLASHtextcite] = ACTIONS(5323), - [anon_sym_BSLASHTextcite] = ACTIONS(5323), - [anon_sym_BSLASHsmartcite] = ACTIONS(5323), - [anon_sym_BSLASHSmartcite] = ACTIONS(5323), - [anon_sym_BSLASHsupercite] = ACTIONS(5323), - [anon_sym_BSLASHautocite] = ACTIONS(5323), - [anon_sym_BSLASHAutocite] = ACTIONS(5323), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHvolcite] = ACTIONS(5323), - [anon_sym_BSLASHVolcite] = ACTIONS(5323), - [anon_sym_BSLASHpvolcite] = ACTIONS(5323), - [anon_sym_BSLASHPvolcite] = ACTIONS(5323), - [anon_sym_BSLASHfvolcite] = ACTIONS(5323), - [anon_sym_BSLASHftvolcite] = ACTIONS(5323), - [anon_sym_BSLASHsvolcite] = ACTIONS(5323), - [anon_sym_BSLASHSvolcite] = ACTIONS(5323), - [anon_sym_BSLASHtvolcite] = ACTIONS(5323), - [anon_sym_BSLASHTvolcite] = ACTIONS(5323), - [anon_sym_BSLASHavolcite] = ACTIONS(5323), - [anon_sym_BSLASHAvolcite] = ACTIONS(5323), - [anon_sym_BSLASHnotecite] = ACTIONS(5323), - [anon_sym_BSLASHNotecite] = ACTIONS(5323), - [anon_sym_BSLASHpnotecite] = ACTIONS(5323), - [anon_sym_BSLASHPnotecite] = ACTIONS(5323), - [anon_sym_BSLASHfnotecite] = ACTIONS(5323), - [anon_sym_BSLASHlabel] = ACTIONS(5323), - [anon_sym_BSLASHref] = ACTIONS(5323), - [anon_sym_BSLASHeqref] = ACTIONS(5323), - [anon_sym_BSLASHvref] = ACTIONS(5323), - [anon_sym_BSLASHVref] = ACTIONS(5323), - [anon_sym_BSLASHautoref] = ACTIONS(5323), - [anon_sym_BSLASHpageref] = ACTIONS(5323), - [anon_sym_BSLASHcref] = ACTIONS(5323), - [anon_sym_BSLASHCref] = ACTIONS(5323), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnameCref] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHlabelcref] = ACTIONS(5323), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), - [anon_sym_BSLASHgls] = ACTIONS(5323), - [anon_sym_BSLASHGls] = ACTIONS(5323), - [anon_sym_BSLASHGLS] = ACTIONS(5323), - [anon_sym_BSLASHglspl] = ACTIONS(5323), - [anon_sym_BSLASHGlspl] = ACTIONS(5323), - [anon_sym_BSLASHGLSpl] = ACTIONS(5323), - [anon_sym_BSLASHglsdisp] = ACTIONS(5323), - [anon_sym_BSLASHglslink] = ACTIONS(5323), - [anon_sym_BSLASHglstext] = ACTIONS(5323), - [anon_sym_BSLASHGlstext] = ACTIONS(5323), - [anon_sym_BSLASHGLStext] = ACTIONS(5323), - [anon_sym_BSLASHglsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), - [anon_sym_BSLASHglsplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSplural] = ACTIONS(5323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHglsname] = ACTIONS(5323), - [anon_sym_BSLASHGlsname] = ACTIONS(5323), - [anon_sym_BSLASHGLSname] = ACTIONS(5323), - [anon_sym_BSLASHglssymbol] = ACTIONS(5323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), - [anon_sym_BSLASHglsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), - [anon_sym_BSLASHglsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), - [anon_sym_BSLASHglsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), - [anon_sym_BSLASHglsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), - [anon_sym_BSLASHglsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), - [anon_sym_BSLASHnewacronym] = ACTIONS(5323), - [anon_sym_BSLASHacrshort] = ACTIONS(5323), - [anon_sym_BSLASHAcrshort] = ACTIONS(5323), - [anon_sym_BSLASHACRshort] = ACTIONS(5323), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), - [anon_sym_BSLASHacrlong] = ACTIONS(5323), - [anon_sym_BSLASHAcrlong] = ACTIONS(5323), - [anon_sym_BSLASHACRlong] = ACTIONS(5323), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), - [anon_sym_BSLASHacrfull] = ACTIONS(5323), - [anon_sym_BSLASHAcrfull] = ACTIONS(5323), - [anon_sym_BSLASHACRfull] = ACTIONS(5323), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), - [anon_sym_BSLASHtext] = ACTIONS(5323), - [anon_sym_BSLASHintertext] = ACTIONS(5323), - [anon_sym_shortintertext] = ACTIONS(5323), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5485), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5488), + [anon_sym_BSLASHaddsec] = ACTIONS(5485), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5488), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHtitle] = ACTIONS(5273), + [anon_sym_BSLASHauthor] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), }, - [951] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_BSLASHpart] = ACTIONS(5491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddpart] = ACTIONS(5491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHchapter] = ACTIONS(5491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddchap] = ACTIONS(5491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsection] = ACTIONS(5491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddsec] = ACTIONS(5491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5489), + [542] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(5263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5263), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_BSLASHpart] = ACTIONS(5263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddpart] = ACTIONS(5263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHchapter] = ACTIONS(5263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddchap] = ACTIONS(5263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsection] = ACTIONS(5263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddsec] = ACTIONS(5263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), [anon_sym_BSLASHsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHparagraph] = ACTIONS(5491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHitem] = ACTIONS(5491), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), - }, - [952] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASHpart] = ACTIONS(5483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddpart] = ACTIONS(5483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHchapter] = ACTIONS(5483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddchap] = ACTIONS(5483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsection] = ACTIONS(5483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddsec] = ACTIONS(5483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHparagraph] = ACTIONS(5483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHitem] = ACTIONS(5483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), - }, - [953] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_BSLASHpart] = ACTIONS(5455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddpart] = ACTIONS(5455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHchapter] = ACTIONS(5455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddchap] = ACTIONS(5455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsection] = ACTIONS(5455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddsec] = ACTIONS(5455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHparagraph] = ACTIONS(5455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHitem] = ACTIONS(5455), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), - }, - [954] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_BSLASHpart] = ACTIONS(5075), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddpart] = ACTIONS(5075), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHchapter] = ACTIONS(5075), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddchap] = ACTIONS(5075), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsection] = ACTIONS(5075), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddsec] = ACTIONS(5075), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHparagraph] = ACTIONS(5075), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHitem] = ACTIONS(5075), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5494), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHparagraph] = ACTIONS(5263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHitem] = ACTIONS(5263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), + [anon_sym_LBRACE] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [sym_placeholder] = ACTIONS(5261), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5263), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5263), + [anon_sym__] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_BANG] = ACTIONS(5263), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_SQUOTE] = ACTIONS(5263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5261), + [anon_sym_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), + [anon_sym_BSLASHbegin] = ACTIONS(5263), + [anon_sym_BSLASHtitle] = ACTIONS(5263), + [anon_sym_BSLASHauthor] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), + [anon_sym_BSLASHinclude] = ACTIONS(5263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), + [anon_sym_BSLASHinput] = ACTIONS(5263), + [anon_sym_BSLASHsubfile] = ACTIONS(5263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), + [anon_sym_BSLASHbibliography] = ACTIONS(5263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), + [anon_sym_BSLASHincludesvg] = ACTIONS(5263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), + [anon_sym_BSLASHimport] = ACTIONS(5263), + [anon_sym_BSLASHsubimport] = ACTIONS(5263), + [anon_sym_BSLASHinputfrom] = ACTIONS(5263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), + [anon_sym_BSLASHincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHcaption] = ACTIONS(5263), + [anon_sym_BSLASHcite] = ACTIONS(5263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCite] = ACTIONS(5263), + [anon_sym_BSLASHnocite] = ACTIONS(5263), + [anon_sym_BSLASHcitet] = ACTIONS(5263), + [anon_sym_BSLASHcitep] = ACTIONS(5263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteyear] = ACTIONS(5263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitedate] = ACTIONS(5263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteurl] = ACTIONS(5263), + [anon_sym_BSLASHfullcite] = ACTIONS(5263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), + [anon_sym_BSLASHcitealt] = ACTIONS(5263), + [anon_sym_BSLASHcitealp] = ACTIONS(5263), + [anon_sym_BSLASHcitetext] = ACTIONS(5263), + [anon_sym_BSLASHparencite] = ACTIONS(5263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHParencite] = ACTIONS(5263), + [anon_sym_BSLASHfootcite] = ACTIONS(5263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), + [anon_sym_BSLASHtextcite] = ACTIONS(5263), + [anon_sym_BSLASHTextcite] = ACTIONS(5263), + [anon_sym_BSLASHsmartcite] = ACTIONS(5263), + [anon_sym_BSLASHSmartcite] = ACTIONS(5263), + [anon_sym_BSLASHsupercite] = ACTIONS(5263), + [anon_sym_BSLASHautocite] = ACTIONS(5263), + [anon_sym_BSLASHAutocite] = ACTIONS(5263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHvolcite] = ACTIONS(5263), + [anon_sym_BSLASHVolcite] = ACTIONS(5263), + [anon_sym_BSLASHpvolcite] = ACTIONS(5263), + [anon_sym_BSLASHPvolcite] = ACTIONS(5263), + [anon_sym_BSLASHfvolcite] = ACTIONS(5263), + [anon_sym_BSLASHftvolcite] = ACTIONS(5263), + [anon_sym_BSLASHsvolcite] = ACTIONS(5263), + [anon_sym_BSLASHSvolcite] = ACTIONS(5263), + [anon_sym_BSLASHtvolcite] = ACTIONS(5263), + [anon_sym_BSLASHTvolcite] = ACTIONS(5263), + [anon_sym_BSLASHavolcite] = ACTIONS(5263), + [anon_sym_BSLASHAvolcite] = ACTIONS(5263), + [anon_sym_BSLASHnotecite] = ACTIONS(5263), + [anon_sym_BSLASHNotecite] = ACTIONS(5263), + [anon_sym_BSLASHpnotecite] = ACTIONS(5263), + [anon_sym_BSLASHPnotecite] = ACTIONS(5263), + [anon_sym_BSLASHfnotecite] = ACTIONS(5263), + [anon_sym_BSLASHlabel] = ACTIONS(5263), + [anon_sym_BSLASHref] = ACTIONS(5263), + [anon_sym_BSLASHeqref] = ACTIONS(5263), + [anon_sym_BSLASHvref] = ACTIONS(5263), + [anon_sym_BSLASHVref] = ACTIONS(5263), + [anon_sym_BSLASHautoref] = ACTIONS(5263), + [anon_sym_BSLASHpageref] = ACTIONS(5263), + [anon_sym_BSLASHcref] = ACTIONS(5263), + [anon_sym_BSLASHCref] = ACTIONS(5263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnameCref] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHlabelcref] = ACTIONS(5263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnewlabel] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdef] = ACTIONS(5263), + [anon_sym_BSLASHlet] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), + [anon_sym_BSLASHgls] = ACTIONS(5263), + [anon_sym_BSLASHGls] = ACTIONS(5263), + [anon_sym_BSLASHGLS] = ACTIONS(5263), + [anon_sym_BSLASHglspl] = ACTIONS(5263), + [anon_sym_BSLASHGlspl] = ACTIONS(5263), + [anon_sym_BSLASHGLSpl] = ACTIONS(5263), + [anon_sym_BSLASHglsdisp] = ACTIONS(5263), + [anon_sym_BSLASHglslink] = ACTIONS(5263), + [anon_sym_BSLASHglstext] = ACTIONS(5263), + [anon_sym_BSLASHGlstext] = ACTIONS(5263), + [anon_sym_BSLASHGLStext] = ACTIONS(5263), + [anon_sym_BSLASHglsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), + [anon_sym_BSLASHglsplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSplural] = ACTIONS(5263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHglsname] = ACTIONS(5263), + [anon_sym_BSLASHGlsname] = ACTIONS(5263), + [anon_sym_BSLASHGLSname] = ACTIONS(5263), + [anon_sym_BSLASHglssymbol] = ACTIONS(5263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), + [anon_sym_BSLASHglsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), + [anon_sym_BSLASHglsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), + [anon_sym_BSLASHglsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), + [anon_sym_BSLASHglsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), + [anon_sym_BSLASHglsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), + [anon_sym_BSLASHnewacronym] = ACTIONS(5263), + [anon_sym_BSLASHacrshort] = ACTIONS(5263), + [anon_sym_BSLASHAcrshort] = ACTIONS(5263), + [anon_sym_BSLASHACRshort] = ACTIONS(5263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), + [anon_sym_BSLASHacrlong] = ACTIONS(5263), + [anon_sym_BSLASHAcrlong] = ACTIONS(5263), + [anon_sym_BSLASHACRlong] = ACTIONS(5263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), + [anon_sym_BSLASHacrfull] = ACTIONS(5263), + [anon_sym_BSLASHAcrfull] = ACTIONS(5263), + [anon_sym_BSLASHACRfull] = ACTIONS(5263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), + [anon_sym_BSLASHacs] = ACTIONS(5263), + [anon_sym_BSLASHAcs] = ACTIONS(5263), + [anon_sym_BSLASHacsp] = ACTIONS(5263), + [anon_sym_BSLASHAcsp] = ACTIONS(5263), + [anon_sym_BSLASHacl] = ACTIONS(5263), + [anon_sym_BSLASHAcl] = ACTIONS(5263), + [anon_sym_BSLASHaclp] = ACTIONS(5263), + [anon_sym_BSLASHAclp] = ACTIONS(5263), + [anon_sym_BSLASHacf] = ACTIONS(5263), + [anon_sym_BSLASHAcf] = ACTIONS(5263), + [anon_sym_BSLASHacfp] = ACTIONS(5263), + [anon_sym_BSLASHAcfp] = ACTIONS(5263), + [anon_sym_BSLASHac] = ACTIONS(5263), + [anon_sym_BSLASHAc] = ACTIONS(5263), + [anon_sym_BSLASHacp] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), + [anon_sym_BSLASHcolor] = ACTIONS(5263), + [anon_sym_BSLASHcolorbox] = ACTIONS(5263), + [anon_sym_BSLASHtextcolor] = ACTIONS(5263), + [anon_sym_BSLASHpagecolor] = ACTIONS(5263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [anon_sym_BSLASHtext] = ACTIONS(5263), + [anon_sym_BSLASHintertext] = ACTIONS(5263), + [anon_sym_shortintertext] = ACTIONS(5263), }, - [955] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5415), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5415), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5415), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5415), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5415), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5415), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5415), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5415), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5415), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), - }, - [956] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_BSLASHpart] = ACTIONS(5399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddpart] = ACTIONS(5399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHchapter] = ACTIONS(5399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddchap] = ACTIONS(5399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsection] = ACTIONS(5399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddsec] = ACTIONS(5399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHparagraph] = ACTIONS(5399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHitem] = ACTIONS(5399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), - }, - [957] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_BSLASHpart] = ACTIONS(5379), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddpart] = ACTIONS(5379), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHchapter] = ACTIONS(5379), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddchap] = ACTIONS(5379), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsection] = ACTIONS(5379), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddsec] = ACTIONS(5379), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHparagraph] = ACTIONS(5379), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHitem] = ACTIONS(5379), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), - }, - [958] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), - }, - [959] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), - }, - [960] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), + [543] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5327), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5327), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5327), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5327), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5327), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5497), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5500), + [anon_sym_BSLASHparagraph] = ACTIONS(5327), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5327), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5327), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_STAR] = ACTIONS(5327), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_CARET] = ACTIONS(5327), + [anon_sym__] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_BANG] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_SQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5327), + [anon_sym_BSLASHtitle] = ACTIONS(5327), + [anon_sym_BSLASHauthor] = ACTIONS(5327), + [anon_sym_BSLASHusepackage] = ACTIONS(5327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), + [anon_sym_BSLASHinclude] = ACTIONS(5327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), + [anon_sym_BSLASHinput] = ACTIONS(5327), + [anon_sym_BSLASHsubfile] = ACTIONS(5327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [anon_sym_BSLASHbibliography] = ACTIONS(5327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), + [anon_sym_BSLASHincludesvg] = ACTIONS(5327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), + [anon_sym_BSLASHimport] = ACTIONS(5327), + [anon_sym_BSLASHsubimport] = ACTIONS(5327), + [anon_sym_BSLASHinputfrom] = ACTIONS(5327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), + [anon_sym_BSLASHincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHcaption] = ACTIONS(5327), + [anon_sym_BSLASHcite] = ACTIONS(5327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5327), + [anon_sym_BSLASHnocite] = ACTIONS(5327), + [anon_sym_BSLASHcitet] = ACTIONS(5327), + [anon_sym_BSLASHcitep] = ACTIONS(5327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5327), + [anon_sym_BSLASHfullcite] = ACTIONS(5327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), + [anon_sym_BSLASHcitealt] = ACTIONS(5327), + [anon_sym_BSLASHcitealp] = ACTIONS(5327), + [anon_sym_BSLASHcitetext] = ACTIONS(5327), + [anon_sym_BSLASHparencite] = ACTIONS(5327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5327), + [anon_sym_BSLASHfootcite] = ACTIONS(5327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), + [anon_sym_BSLASHtextcite] = ACTIONS(5327), + [anon_sym_BSLASHTextcite] = ACTIONS(5327), + [anon_sym_BSLASHsmartcite] = ACTIONS(5327), + [anon_sym_BSLASHSmartcite] = ACTIONS(5327), + [anon_sym_BSLASHsupercite] = ACTIONS(5327), + [anon_sym_BSLASHautocite] = ACTIONS(5327), + [anon_sym_BSLASHAutocite] = ACTIONS(5327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5327), + [anon_sym_BSLASHVolcite] = ACTIONS(5327), + [anon_sym_BSLASHpvolcite] = ACTIONS(5327), + [anon_sym_BSLASHPvolcite] = ACTIONS(5327), + [anon_sym_BSLASHfvolcite] = ACTIONS(5327), + [anon_sym_BSLASHftvolcite] = ACTIONS(5327), + [anon_sym_BSLASHsvolcite] = ACTIONS(5327), + [anon_sym_BSLASHSvolcite] = ACTIONS(5327), + [anon_sym_BSLASHtvolcite] = ACTIONS(5327), + [anon_sym_BSLASHTvolcite] = ACTIONS(5327), + [anon_sym_BSLASHavolcite] = ACTIONS(5327), + [anon_sym_BSLASHAvolcite] = ACTIONS(5327), + [anon_sym_BSLASHnotecite] = ACTIONS(5327), + [anon_sym_BSLASHNotecite] = ACTIONS(5327), + [anon_sym_BSLASHpnotecite] = ACTIONS(5327), + [anon_sym_BSLASHPnotecite] = ACTIONS(5327), + [anon_sym_BSLASHfnotecite] = ACTIONS(5327), + [anon_sym_BSLASHlabel] = ACTIONS(5327), + [anon_sym_BSLASHref] = ACTIONS(5327), + [anon_sym_BSLASHeqref] = ACTIONS(5327), + [anon_sym_BSLASHvref] = ACTIONS(5327), + [anon_sym_BSLASHVref] = ACTIONS(5327), + [anon_sym_BSLASHautoref] = ACTIONS(5327), + [anon_sym_BSLASHpageref] = ACTIONS(5327), + [anon_sym_BSLASHcref] = ACTIONS(5327), + [anon_sym_BSLASHCref] = ACTIONS(5327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnameCref] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHlabelcref] = ACTIONS(5327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5327), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5327), + [anon_sym_BSLASHlet] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), + [anon_sym_BSLASHgls] = ACTIONS(5327), + [anon_sym_BSLASHGls] = ACTIONS(5327), + [anon_sym_BSLASHGLS] = ACTIONS(5327), + [anon_sym_BSLASHglspl] = ACTIONS(5327), + [anon_sym_BSLASHGlspl] = ACTIONS(5327), + [anon_sym_BSLASHGLSpl] = ACTIONS(5327), + [anon_sym_BSLASHglsdisp] = ACTIONS(5327), + [anon_sym_BSLASHglslink] = ACTIONS(5327), + [anon_sym_BSLASHglstext] = ACTIONS(5327), + [anon_sym_BSLASHGlstext] = ACTIONS(5327), + [anon_sym_BSLASHGLStext] = ACTIONS(5327), + [anon_sym_BSLASHglsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), + [anon_sym_BSLASHglsplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSplural] = ACTIONS(5327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHglsname] = ACTIONS(5327), + [anon_sym_BSLASHGlsname] = ACTIONS(5327), + [anon_sym_BSLASHGLSname] = ACTIONS(5327), + [anon_sym_BSLASHglssymbol] = ACTIONS(5327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), + [anon_sym_BSLASHglsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), + [anon_sym_BSLASHglsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), + [anon_sym_BSLASHglsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), + [anon_sym_BSLASHglsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), + [anon_sym_BSLASHglsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), + [anon_sym_BSLASHnewacronym] = ACTIONS(5327), + [anon_sym_BSLASHacrshort] = ACTIONS(5327), + [anon_sym_BSLASHAcrshort] = ACTIONS(5327), + [anon_sym_BSLASHACRshort] = ACTIONS(5327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), + [anon_sym_BSLASHacrlong] = ACTIONS(5327), + [anon_sym_BSLASHAcrlong] = ACTIONS(5327), + [anon_sym_BSLASHACRlong] = ACTIONS(5327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), + [anon_sym_BSLASHacrfull] = ACTIONS(5327), + [anon_sym_BSLASHAcrfull] = ACTIONS(5327), + [anon_sym_BSLASHACRfull] = ACTIONS(5327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), + [anon_sym_BSLASHacs] = ACTIONS(5327), + [anon_sym_BSLASHAcs] = ACTIONS(5327), + [anon_sym_BSLASHacsp] = ACTIONS(5327), + [anon_sym_BSLASHAcsp] = ACTIONS(5327), + [anon_sym_BSLASHacl] = ACTIONS(5327), + [anon_sym_BSLASHAcl] = ACTIONS(5327), + [anon_sym_BSLASHaclp] = ACTIONS(5327), + [anon_sym_BSLASHAclp] = ACTIONS(5327), + [anon_sym_BSLASHacf] = ACTIONS(5327), + [anon_sym_BSLASHAcf] = ACTIONS(5327), + [anon_sym_BSLASHacfp] = ACTIONS(5327), + [anon_sym_BSLASHAcfp] = ACTIONS(5327), + [anon_sym_BSLASHac] = ACTIONS(5327), + [anon_sym_BSLASHAc] = ACTIONS(5327), + [anon_sym_BSLASHacp] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), + [anon_sym_BSLASHcolor] = ACTIONS(5327), + [anon_sym_BSLASHcolorbox] = ACTIONS(5327), + [anon_sym_BSLASHtextcolor] = ACTIONS(5327), + [anon_sym_BSLASHpagecolor] = ACTIONS(5327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [anon_sym_BSLASHtext] = ACTIONS(5327), + [anon_sym_BSLASHintertext] = ACTIONS(5327), + [anon_sym_shortintertext] = ACTIONS(5327), }, - [961] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), + [544] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5341), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5341), + [anon_sym_LPAREN] = ACTIONS(5339), + [anon_sym_RPAREN] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5339), + [anon_sym_RBRACK] = ACTIONS(5339), + [anon_sym_COMMA] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_BSLASHpart] = ACTIONS(5341), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddpart] = ACTIONS(5341), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHchapter] = ACTIONS(5341), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddchap] = ACTIONS(5341), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsection] = ACTIONS(5341), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddsec] = ACTIONS(5341), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHparagraph] = ACTIONS(5503), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5506), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), + [anon_sym_BSLASHitem] = ACTIONS(5341), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), + [anon_sym_LBRACE] = ACTIONS(5339), + [sym_word] = ACTIONS(5341), + [sym_placeholder] = ACTIONS(5339), + [anon_sym_PLUS] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5341), + [anon_sym_SLASH] = ACTIONS(5341), + [anon_sym_CARET] = ACTIONS(5341), + [anon_sym__] = ACTIONS(5341), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_BANG] = ACTIONS(5341), + [anon_sym_PIPE] = ACTIONS(5341), + [anon_sym_COLON] = ACTIONS(5341), + [anon_sym_SQUOTE] = ACTIONS(5341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5339), + [anon_sym_DOLLAR] = ACTIONS(5341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), + [anon_sym_BSLASHbegin] = ACTIONS(5341), + [anon_sym_BSLASHtitle] = ACTIONS(5341), + [anon_sym_BSLASHauthor] = ACTIONS(5341), + [anon_sym_BSLASHusepackage] = ACTIONS(5341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), + [anon_sym_BSLASHinclude] = ACTIONS(5341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), + [anon_sym_BSLASHinput] = ACTIONS(5341), + [anon_sym_BSLASHsubfile] = ACTIONS(5341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), + [anon_sym_BSLASHbibliography] = ACTIONS(5341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), + [anon_sym_BSLASHincludesvg] = ACTIONS(5341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), + [anon_sym_BSLASHimport] = ACTIONS(5341), + [anon_sym_BSLASHsubimport] = ACTIONS(5341), + [anon_sym_BSLASHinputfrom] = ACTIONS(5341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), + [anon_sym_BSLASHincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHcaption] = ACTIONS(5341), + [anon_sym_BSLASHcite] = ACTIONS(5341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCite] = ACTIONS(5341), + [anon_sym_BSLASHnocite] = ACTIONS(5341), + [anon_sym_BSLASHcitet] = ACTIONS(5341), + [anon_sym_BSLASHcitep] = ACTIONS(5341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteauthor] = ACTIONS(5341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitetitle] = ACTIONS(5341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteyear] = ACTIONS(5341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitedate] = ACTIONS(5341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteurl] = ACTIONS(5341), + [anon_sym_BSLASHfullcite] = ACTIONS(5341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), + [anon_sym_BSLASHcitealt] = ACTIONS(5341), + [anon_sym_BSLASHcitealp] = ACTIONS(5341), + [anon_sym_BSLASHcitetext] = ACTIONS(5341), + [anon_sym_BSLASHparencite] = ACTIONS(5341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHParencite] = ACTIONS(5341), + [anon_sym_BSLASHfootcite] = ACTIONS(5341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), + [anon_sym_BSLASHtextcite] = ACTIONS(5341), + [anon_sym_BSLASHTextcite] = ACTIONS(5341), + [anon_sym_BSLASHsmartcite] = ACTIONS(5341), + [anon_sym_BSLASHSmartcite] = ACTIONS(5341), + [anon_sym_BSLASHsupercite] = ACTIONS(5341), + [anon_sym_BSLASHautocite] = ACTIONS(5341), + [anon_sym_BSLASHAutocite] = ACTIONS(5341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHvolcite] = ACTIONS(5341), + [anon_sym_BSLASHVolcite] = ACTIONS(5341), + [anon_sym_BSLASHpvolcite] = ACTIONS(5341), + [anon_sym_BSLASHPvolcite] = ACTIONS(5341), + [anon_sym_BSLASHfvolcite] = ACTIONS(5341), + [anon_sym_BSLASHftvolcite] = ACTIONS(5341), + [anon_sym_BSLASHsvolcite] = ACTIONS(5341), + [anon_sym_BSLASHSvolcite] = ACTIONS(5341), + [anon_sym_BSLASHtvolcite] = ACTIONS(5341), + [anon_sym_BSLASHTvolcite] = ACTIONS(5341), + [anon_sym_BSLASHavolcite] = ACTIONS(5341), + [anon_sym_BSLASHAvolcite] = ACTIONS(5341), + [anon_sym_BSLASHnotecite] = ACTIONS(5341), + [anon_sym_BSLASHNotecite] = ACTIONS(5341), + [anon_sym_BSLASHpnotecite] = ACTIONS(5341), + [anon_sym_BSLASHPnotecite] = ACTIONS(5341), + [anon_sym_BSLASHfnotecite] = ACTIONS(5341), + [anon_sym_BSLASHlabel] = ACTIONS(5341), + [anon_sym_BSLASHref] = ACTIONS(5341), + [anon_sym_BSLASHeqref] = ACTIONS(5341), + [anon_sym_BSLASHvref] = ACTIONS(5341), + [anon_sym_BSLASHVref] = ACTIONS(5341), + [anon_sym_BSLASHautoref] = ACTIONS(5341), + [anon_sym_BSLASHpageref] = ACTIONS(5341), + [anon_sym_BSLASHcref] = ACTIONS(5341), + [anon_sym_BSLASHCref] = ACTIONS(5341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnameCref] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHlabelcref] = ACTIONS(5341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCrefrange] = ACTIONS(5341), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnewlabel] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdef] = ACTIONS(5341), + [anon_sym_BSLASHlet] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), + [anon_sym_BSLASHgls] = ACTIONS(5341), + [anon_sym_BSLASHGls] = ACTIONS(5341), + [anon_sym_BSLASHGLS] = ACTIONS(5341), + [anon_sym_BSLASHglspl] = ACTIONS(5341), + [anon_sym_BSLASHGlspl] = ACTIONS(5341), + [anon_sym_BSLASHGLSpl] = ACTIONS(5341), + [anon_sym_BSLASHglsdisp] = ACTIONS(5341), + [anon_sym_BSLASHglslink] = ACTIONS(5341), + [anon_sym_BSLASHglstext] = ACTIONS(5341), + [anon_sym_BSLASHGlstext] = ACTIONS(5341), + [anon_sym_BSLASHGLStext] = ACTIONS(5341), + [anon_sym_BSLASHglsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), + [anon_sym_BSLASHglsplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSplural] = ACTIONS(5341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHglsname] = ACTIONS(5341), + [anon_sym_BSLASHGlsname] = ACTIONS(5341), + [anon_sym_BSLASHGLSname] = ACTIONS(5341), + [anon_sym_BSLASHglssymbol] = ACTIONS(5341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), + [anon_sym_BSLASHglsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), + [anon_sym_BSLASHglsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), + [anon_sym_BSLASHglsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), + [anon_sym_BSLASHglsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), + [anon_sym_BSLASHglsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), + [anon_sym_BSLASHnewacronym] = ACTIONS(5341), + [anon_sym_BSLASHacrshort] = ACTIONS(5341), + [anon_sym_BSLASHAcrshort] = ACTIONS(5341), + [anon_sym_BSLASHACRshort] = ACTIONS(5341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), + [anon_sym_BSLASHacrlong] = ACTIONS(5341), + [anon_sym_BSLASHAcrlong] = ACTIONS(5341), + [anon_sym_BSLASHACRlong] = ACTIONS(5341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), + [anon_sym_BSLASHacrfull] = ACTIONS(5341), + [anon_sym_BSLASHAcrfull] = ACTIONS(5341), + [anon_sym_BSLASHACRfull] = ACTIONS(5341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), + [anon_sym_BSLASHacs] = ACTIONS(5341), + [anon_sym_BSLASHAcs] = ACTIONS(5341), + [anon_sym_BSLASHacsp] = ACTIONS(5341), + [anon_sym_BSLASHAcsp] = ACTIONS(5341), + [anon_sym_BSLASHacl] = ACTIONS(5341), + [anon_sym_BSLASHAcl] = ACTIONS(5341), + [anon_sym_BSLASHaclp] = ACTIONS(5341), + [anon_sym_BSLASHAclp] = ACTIONS(5341), + [anon_sym_BSLASHacf] = ACTIONS(5341), + [anon_sym_BSLASHAcf] = ACTIONS(5341), + [anon_sym_BSLASHacfp] = ACTIONS(5341), + [anon_sym_BSLASHAcfp] = ACTIONS(5341), + [anon_sym_BSLASHac] = ACTIONS(5341), + [anon_sym_BSLASHAc] = ACTIONS(5341), + [anon_sym_BSLASHacp] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), + [anon_sym_BSLASHcolor] = ACTIONS(5341), + [anon_sym_BSLASHcolorbox] = ACTIONS(5341), + [anon_sym_BSLASHtextcolor] = ACTIONS(5341), + [anon_sym_BSLASHpagecolor] = ACTIONS(5341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHtext] = ACTIONS(5341), + [anon_sym_BSLASHintertext] = ACTIONS(5341), + [anon_sym_shortintertext] = ACTIONS(5341), }, - [962] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), + [545] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5303), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_RPAREN] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5301), + [anon_sym_BSLASHpart] = ACTIONS(5303), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddpart] = ACTIONS(5303), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHchapter] = ACTIONS(5303), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddchap] = ACTIONS(5303), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsection] = ACTIONS(5303), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddsec] = ACTIONS(5303), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHparagraph] = ACTIONS(5303), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5509), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5512), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(5303), + [sym_placeholder] = ACTIONS(5301), + [anon_sym_PLUS] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_SLASH] = ACTIONS(5303), + [anon_sym_CARET] = ACTIONS(5303), + [anon_sym__] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(5303), + [anon_sym_GT] = ACTIONS(5303), + [anon_sym_BANG] = ACTIONS(5303), + [anon_sym_PIPE] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_SQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5301), + [anon_sym_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), + [anon_sym_BSLASHbegin] = ACTIONS(5303), + [anon_sym_BSLASHtitle] = ACTIONS(5303), + [anon_sym_BSLASHauthor] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), + [anon_sym_BSLASHinclude] = ACTIONS(5303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), + [anon_sym_BSLASHinput] = ACTIONS(5303), + [anon_sym_BSLASHsubfile] = ACTIONS(5303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), + [anon_sym_BSLASHbibliography] = ACTIONS(5303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), + [anon_sym_BSLASHincludesvg] = ACTIONS(5303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), + [anon_sym_BSLASHimport] = ACTIONS(5303), + [anon_sym_BSLASHsubimport] = ACTIONS(5303), + [anon_sym_BSLASHinputfrom] = ACTIONS(5303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), + [anon_sym_BSLASHincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHcaption] = ACTIONS(5303), + [anon_sym_BSLASHcite] = ACTIONS(5303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCite] = ACTIONS(5303), + [anon_sym_BSLASHnocite] = ACTIONS(5303), + [anon_sym_BSLASHcitet] = ACTIONS(5303), + [anon_sym_BSLASHcitep] = ACTIONS(5303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteyear] = ACTIONS(5303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitedate] = ACTIONS(5303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteurl] = ACTIONS(5303), + [anon_sym_BSLASHfullcite] = ACTIONS(5303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), + [anon_sym_BSLASHcitealt] = ACTIONS(5303), + [anon_sym_BSLASHcitealp] = ACTIONS(5303), + [anon_sym_BSLASHcitetext] = ACTIONS(5303), + [anon_sym_BSLASHparencite] = ACTIONS(5303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHParencite] = ACTIONS(5303), + [anon_sym_BSLASHfootcite] = ACTIONS(5303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), + [anon_sym_BSLASHtextcite] = ACTIONS(5303), + [anon_sym_BSLASHTextcite] = ACTIONS(5303), + [anon_sym_BSLASHsmartcite] = ACTIONS(5303), + [anon_sym_BSLASHSmartcite] = ACTIONS(5303), + [anon_sym_BSLASHsupercite] = ACTIONS(5303), + [anon_sym_BSLASHautocite] = ACTIONS(5303), + [anon_sym_BSLASHAutocite] = ACTIONS(5303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHvolcite] = ACTIONS(5303), + [anon_sym_BSLASHVolcite] = ACTIONS(5303), + [anon_sym_BSLASHpvolcite] = ACTIONS(5303), + [anon_sym_BSLASHPvolcite] = ACTIONS(5303), + [anon_sym_BSLASHfvolcite] = ACTIONS(5303), + [anon_sym_BSLASHftvolcite] = ACTIONS(5303), + [anon_sym_BSLASHsvolcite] = ACTIONS(5303), + [anon_sym_BSLASHSvolcite] = ACTIONS(5303), + [anon_sym_BSLASHtvolcite] = ACTIONS(5303), + [anon_sym_BSLASHTvolcite] = ACTIONS(5303), + [anon_sym_BSLASHavolcite] = ACTIONS(5303), + [anon_sym_BSLASHAvolcite] = ACTIONS(5303), + [anon_sym_BSLASHnotecite] = ACTIONS(5303), + [anon_sym_BSLASHNotecite] = ACTIONS(5303), + [anon_sym_BSLASHpnotecite] = ACTIONS(5303), + [anon_sym_BSLASHPnotecite] = ACTIONS(5303), + [anon_sym_BSLASHfnotecite] = ACTIONS(5303), + [anon_sym_BSLASHlabel] = ACTIONS(5303), + [anon_sym_BSLASHref] = ACTIONS(5303), + [anon_sym_BSLASHeqref] = ACTIONS(5303), + [anon_sym_BSLASHvref] = ACTIONS(5303), + [anon_sym_BSLASHVref] = ACTIONS(5303), + [anon_sym_BSLASHautoref] = ACTIONS(5303), + [anon_sym_BSLASHpageref] = ACTIONS(5303), + [anon_sym_BSLASHcref] = ACTIONS(5303), + [anon_sym_BSLASHCref] = ACTIONS(5303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnameCref] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHlabelcref] = ACTIONS(5303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnewlabel] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdef] = ACTIONS(5303), + [anon_sym_BSLASHlet] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), + [anon_sym_BSLASHgls] = ACTIONS(5303), + [anon_sym_BSLASHGls] = ACTIONS(5303), + [anon_sym_BSLASHGLS] = ACTIONS(5303), + [anon_sym_BSLASHglspl] = ACTIONS(5303), + [anon_sym_BSLASHGlspl] = ACTIONS(5303), + [anon_sym_BSLASHGLSpl] = ACTIONS(5303), + [anon_sym_BSLASHglsdisp] = ACTIONS(5303), + [anon_sym_BSLASHglslink] = ACTIONS(5303), + [anon_sym_BSLASHglstext] = ACTIONS(5303), + [anon_sym_BSLASHGlstext] = ACTIONS(5303), + [anon_sym_BSLASHGLStext] = ACTIONS(5303), + [anon_sym_BSLASHglsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), + [anon_sym_BSLASHglsplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSplural] = ACTIONS(5303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHglsname] = ACTIONS(5303), + [anon_sym_BSLASHGlsname] = ACTIONS(5303), + [anon_sym_BSLASHGLSname] = ACTIONS(5303), + [anon_sym_BSLASHglssymbol] = ACTIONS(5303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), + [anon_sym_BSLASHglsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), + [anon_sym_BSLASHglsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), + [anon_sym_BSLASHglsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), + [anon_sym_BSLASHglsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), + [anon_sym_BSLASHglsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), + [anon_sym_BSLASHnewacronym] = ACTIONS(5303), + [anon_sym_BSLASHacrshort] = ACTIONS(5303), + [anon_sym_BSLASHAcrshort] = ACTIONS(5303), + [anon_sym_BSLASHACRshort] = ACTIONS(5303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), + [anon_sym_BSLASHacrlong] = ACTIONS(5303), + [anon_sym_BSLASHAcrlong] = ACTIONS(5303), + [anon_sym_BSLASHACRlong] = ACTIONS(5303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), + [anon_sym_BSLASHacrfull] = ACTIONS(5303), + [anon_sym_BSLASHAcrfull] = ACTIONS(5303), + [anon_sym_BSLASHACRfull] = ACTIONS(5303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), + [anon_sym_BSLASHacs] = ACTIONS(5303), + [anon_sym_BSLASHAcs] = ACTIONS(5303), + [anon_sym_BSLASHacsp] = ACTIONS(5303), + [anon_sym_BSLASHAcsp] = ACTIONS(5303), + [anon_sym_BSLASHacl] = ACTIONS(5303), + [anon_sym_BSLASHAcl] = ACTIONS(5303), + [anon_sym_BSLASHaclp] = ACTIONS(5303), + [anon_sym_BSLASHAclp] = ACTIONS(5303), + [anon_sym_BSLASHacf] = ACTIONS(5303), + [anon_sym_BSLASHAcf] = ACTIONS(5303), + [anon_sym_BSLASHacfp] = ACTIONS(5303), + [anon_sym_BSLASHAcfp] = ACTIONS(5303), + [anon_sym_BSLASHac] = ACTIONS(5303), + [anon_sym_BSLASHAc] = ACTIONS(5303), + [anon_sym_BSLASHacp] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), + [anon_sym_BSLASHcolor] = ACTIONS(5303), + [anon_sym_BSLASHcolorbox] = ACTIONS(5303), + [anon_sym_BSLASHtextcolor] = ACTIONS(5303), + [anon_sym_BSLASHpagecolor] = ACTIONS(5303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), + [anon_sym_BSLASHtext] = ACTIONS(5303), + [anon_sym_BSLASHintertext] = ACTIONS(5303), + [anon_sym_shortintertext] = ACTIONS(5303), }, - [963] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), + [546] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHtitle] = ACTIONS(5253), + [anon_sym_BSLASHauthor] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), }, - [964] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), + [547] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(2097), + [sym_placeholder] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym__] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(2097), + [anon_sym_BSLASHauthor] = ACTIONS(2097), + [anon_sym_BSLASHusepackage] = ACTIONS(2097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2097), + [anon_sym_BSLASHinclude] = ACTIONS(2097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2097), + [anon_sym_BSLASHinput] = ACTIONS(2097), + [anon_sym_BSLASHsubfile] = ACTIONS(2097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [anon_sym_BSLASHbibliography] = ACTIONS(2097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2097), + [anon_sym_BSLASHincludesvg] = ACTIONS(2097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2097), + [anon_sym_BSLASHimport] = ACTIONS(2097), + [anon_sym_BSLASHsubimport] = ACTIONS(2097), + [anon_sym_BSLASHinputfrom] = ACTIONS(2097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2097), + [anon_sym_BSLASHincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHcaption] = ACTIONS(2097), + [anon_sym_BSLASHcite] = ACTIONS(2097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCite] = ACTIONS(2097), + [anon_sym_BSLASHnocite] = ACTIONS(2097), + [anon_sym_BSLASHcitet] = ACTIONS(2097), + [anon_sym_BSLASHcitep] = ACTIONS(2097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteauthor] = ACTIONS(2097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitetitle] = ACTIONS(2097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteyear] = ACTIONS(2097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitedate] = ACTIONS(2097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteurl] = ACTIONS(2097), + [anon_sym_BSLASHfullcite] = ACTIONS(2097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2097), + [anon_sym_BSLASHcitealt] = ACTIONS(2097), + [anon_sym_BSLASHcitealp] = ACTIONS(2097), + [anon_sym_BSLASHcitetext] = ACTIONS(2097), + [anon_sym_BSLASHparencite] = ACTIONS(2097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHParencite] = ACTIONS(2097), + [anon_sym_BSLASHfootcite] = ACTIONS(2097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2097), + [anon_sym_BSLASHtextcite] = ACTIONS(2097), + [anon_sym_BSLASHTextcite] = ACTIONS(2097), + [anon_sym_BSLASHsmartcite] = ACTIONS(2097), + [anon_sym_BSLASHSmartcite] = ACTIONS(2097), + [anon_sym_BSLASHsupercite] = ACTIONS(2097), + [anon_sym_BSLASHautocite] = ACTIONS(2097), + [anon_sym_BSLASHAutocite] = ACTIONS(2097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHvolcite] = ACTIONS(2097), + [anon_sym_BSLASHVolcite] = ACTIONS(2097), + [anon_sym_BSLASHpvolcite] = ACTIONS(2097), + [anon_sym_BSLASHPvolcite] = ACTIONS(2097), + [anon_sym_BSLASHfvolcite] = ACTIONS(2097), + [anon_sym_BSLASHftvolcite] = ACTIONS(2097), + [anon_sym_BSLASHsvolcite] = ACTIONS(2097), + [anon_sym_BSLASHSvolcite] = ACTIONS(2097), + [anon_sym_BSLASHtvolcite] = ACTIONS(2097), + [anon_sym_BSLASHTvolcite] = ACTIONS(2097), + [anon_sym_BSLASHavolcite] = ACTIONS(2097), + [anon_sym_BSLASHAvolcite] = ACTIONS(2097), + [anon_sym_BSLASHnotecite] = ACTIONS(2097), + [anon_sym_BSLASHNotecite] = ACTIONS(2097), + [anon_sym_BSLASHpnotecite] = ACTIONS(2097), + [anon_sym_BSLASHPnotecite] = ACTIONS(2097), + [anon_sym_BSLASHfnotecite] = ACTIONS(2097), + [anon_sym_BSLASHlabel] = ACTIONS(2097), + [anon_sym_BSLASHref] = ACTIONS(2097), + [anon_sym_BSLASHeqref] = ACTIONS(2097), + [anon_sym_BSLASHvref] = ACTIONS(2097), + [anon_sym_BSLASHVref] = ACTIONS(2097), + [anon_sym_BSLASHautoref] = ACTIONS(2097), + [anon_sym_BSLASHpageref] = ACTIONS(2097), + [anon_sym_BSLASHcref] = ACTIONS(2097), + [anon_sym_BSLASHCref] = ACTIONS(2097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnameCref] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHlabelcref] = ACTIONS(2097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdef] = ACTIONS(2097), + [anon_sym_BSLASHlet] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2097), + [anon_sym_BSLASHgls] = ACTIONS(2097), + [anon_sym_BSLASHGls] = ACTIONS(2097), + [anon_sym_BSLASHGLS] = ACTIONS(2097), + [anon_sym_BSLASHglspl] = ACTIONS(2097), + [anon_sym_BSLASHGlspl] = ACTIONS(2097), + [anon_sym_BSLASHGLSpl] = ACTIONS(2097), + [anon_sym_BSLASHglsdisp] = ACTIONS(2097), + [anon_sym_BSLASHglslink] = ACTIONS(2097), + [anon_sym_BSLASHglstext] = ACTIONS(2097), + [anon_sym_BSLASHGlstext] = ACTIONS(2097), + [anon_sym_BSLASHGLStext] = ACTIONS(2097), + [anon_sym_BSLASHglsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2097), + [anon_sym_BSLASHglsplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSplural] = ACTIONS(2097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHglsname] = ACTIONS(2097), + [anon_sym_BSLASHGlsname] = ACTIONS(2097), + [anon_sym_BSLASHGLSname] = ACTIONS(2097), + [anon_sym_BSLASHglssymbol] = ACTIONS(2097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2097), + [anon_sym_BSLASHglsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2097), + [anon_sym_BSLASHglsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2097), + [anon_sym_BSLASHglsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2097), + [anon_sym_BSLASHglsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2097), + [anon_sym_BSLASHglsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2097), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2097), + [anon_sym_BSLASHAcrshort] = ACTIONS(2097), + [anon_sym_BSLASHACRshort] = ACTIONS(2097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2097), + [anon_sym_BSLASHacrlong] = ACTIONS(2097), + [anon_sym_BSLASHAcrlong] = ACTIONS(2097), + [anon_sym_BSLASHACRlong] = ACTIONS(2097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2097), + [anon_sym_BSLASHacrfull] = ACTIONS(2097), + [anon_sym_BSLASHAcrfull] = ACTIONS(2097), + [anon_sym_BSLASHACRfull] = ACTIONS(2097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2097), + [anon_sym_BSLASHacs] = ACTIONS(2097), + [anon_sym_BSLASHAcs] = ACTIONS(2097), + [anon_sym_BSLASHacsp] = ACTIONS(2097), + [anon_sym_BSLASHAcsp] = ACTIONS(2097), + [anon_sym_BSLASHacl] = ACTIONS(2097), + [anon_sym_BSLASHAcl] = ACTIONS(2097), + [anon_sym_BSLASHaclp] = ACTIONS(2097), + [anon_sym_BSLASHAclp] = ACTIONS(2097), + [anon_sym_BSLASHacf] = ACTIONS(2097), + [anon_sym_BSLASHAcf] = ACTIONS(2097), + [anon_sym_BSLASHacfp] = ACTIONS(2097), + [anon_sym_BSLASHAcfp] = ACTIONS(2097), + [anon_sym_BSLASHac] = ACTIONS(2097), + [anon_sym_BSLASHAc] = ACTIONS(2097), + [anon_sym_BSLASHacp] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2097), + [anon_sym_BSLASHcolor] = ACTIONS(2097), + [anon_sym_BSLASHcolorbox] = ACTIONS(2097), + [anon_sym_BSLASHtextcolor] = ACTIONS(2097), + [anon_sym_BSLASHpagecolor] = ACTIONS(2097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2097), + [anon_sym_BSLASHtext] = ACTIONS(2097), + [anon_sym_BSLASHintertext] = ACTIONS(2097), + [anon_sym_shortintertext] = ACTIONS(2097), }, - [965] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), + [548] = { + [sym_curly_group] = STATE(941), + [sym_mixed_group] = STATE(941), + [aux_sym_generic_command_repeat1] = STATE(548), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5521), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(5521), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_BSLASHpart] = ACTIONS(5239), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddpart] = ACTIONS(5239), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHchapter] = ACTIONS(5239), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddchap] = ACTIONS(5239), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsection] = ACTIONS(5239), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddsec] = ACTIONS(5239), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHparagraph] = ACTIONS(5239), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHitem] = ACTIONS(5239), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(5524), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [966] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), + [549] = { + [sym_curly_group] = STATE(1170), + [sym_mixed_group] = STATE(1170), + [aux_sym_generic_command_repeat1] = STATE(549), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5527), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(5527), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_BSLASHpart] = ACTIONS(5239), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddpart] = ACTIONS(5239), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHchapter] = ACTIONS(5239), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddchap] = ACTIONS(5239), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsection] = ACTIONS(5239), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddsec] = ACTIONS(5239), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHparagraph] = ACTIONS(5239), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHitem] = ACTIONS(5239), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(5530), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHend] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [967] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), + [550] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(2073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [968] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), + [551] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5533), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5536), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHend] = ACTIONS(5253), + [anon_sym_BSLASHtitle] = ACTIONS(5253), + [anon_sym_BSLASHauthor] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), }, - [969] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_BSLASHpart] = ACTIONS(5431), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddpart] = ACTIONS(5431), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHchapter] = ACTIONS(5431), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddchap] = ACTIONS(5431), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsection] = ACTIONS(5431), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddsec] = ACTIONS(5431), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHparagraph] = ACTIONS(5431), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHitem] = ACTIONS(5431), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), + [552] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), }, - [970] = { - [sym_command_name] = ACTIONS(143), + [553] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5303), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [971] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [972] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_BSLASHpart] = ACTIONS(5237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddpart] = ACTIONS(5237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHchapter] = ACTIONS(5237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddchap] = ACTIONS(5237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsection] = ACTIONS(5237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddsec] = ACTIONS(5237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHparagraph] = ACTIONS(5237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHitem] = ACTIONS(5237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), - }, - [973] = { - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_BSLASHpart] = ACTIONS(5071), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddpart] = ACTIONS(5071), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHchapter] = ACTIONS(5071), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddchap] = ACTIONS(5071), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsection] = ACTIONS(5071), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddsec] = ACTIONS(5071), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHparagraph] = ACTIONS(5071), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), + [anon_sym_BSLASHiffalse] = ACTIONS(5303), + [anon_sym_LPAREN] = ACTIONS(5301), + [anon_sym_RPAREN] = ACTIONS(5301), + [anon_sym_LBRACK] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5301), + [anon_sym_COMMA] = ACTIONS(5301), + [anon_sym_EQ] = ACTIONS(5301), + [anon_sym_BSLASHpart] = ACTIONS(5303), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddpart] = ACTIONS(5303), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), + [anon_sym_BSLASHchapter] = ACTIONS(5303), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddchap] = ACTIONS(5303), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsection] = ACTIONS(5303), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHaddsec] = ACTIONS(5303), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), + [anon_sym_BSLASHparagraph] = ACTIONS(5303), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5539), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5542), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), + [anon_sym_LBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(5303), + [sym_placeholder] = ACTIONS(5301), + [anon_sym_PLUS] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_SLASH] = ACTIONS(5303), + [anon_sym_CARET] = ACTIONS(5303), + [anon_sym__] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(5303), + [anon_sym_GT] = ACTIONS(5303), + [anon_sym_BANG] = ACTIONS(5303), + [anon_sym_PIPE] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_SQUOTE] = ACTIONS(5303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), + [anon_sym_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), + [anon_sym_BSLASHbegin] = ACTIONS(5303), + [anon_sym_BSLASHend] = ACTIONS(5303), + [anon_sym_BSLASHtitle] = ACTIONS(5303), + [anon_sym_BSLASHauthor] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), + [anon_sym_BSLASHinclude] = ACTIONS(5303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), + [anon_sym_BSLASHinput] = ACTIONS(5303), + [anon_sym_BSLASHsubfile] = ACTIONS(5303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), + [anon_sym_BSLASHbibliography] = ACTIONS(5303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), + [anon_sym_BSLASHincludesvg] = ACTIONS(5303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), + [anon_sym_BSLASHimport] = ACTIONS(5303), + [anon_sym_BSLASHsubimport] = ACTIONS(5303), + [anon_sym_BSLASHinputfrom] = ACTIONS(5303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), + [anon_sym_BSLASHincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), + [anon_sym_BSLASHcaption] = ACTIONS(5303), + [anon_sym_BSLASHcite] = ACTIONS(5303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCite] = ACTIONS(5303), + [anon_sym_BSLASHnocite] = ACTIONS(5303), + [anon_sym_BSLASHcitet] = ACTIONS(5303), + [anon_sym_BSLASHcitep] = ACTIONS(5303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteyear] = ACTIONS(5303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), + [anon_sym_BSLASHcitedate] = ACTIONS(5303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), + [anon_sym_BSLASHciteurl] = ACTIONS(5303), + [anon_sym_BSLASHfullcite] = ACTIONS(5303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), + [anon_sym_BSLASHcitealt] = ACTIONS(5303), + [anon_sym_BSLASHcitealp] = ACTIONS(5303), + [anon_sym_BSLASHcitetext] = ACTIONS(5303), + [anon_sym_BSLASHparencite] = ACTIONS(5303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHParencite] = ACTIONS(5303), + [anon_sym_BSLASHfootcite] = ACTIONS(5303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), + [anon_sym_BSLASHtextcite] = ACTIONS(5303), + [anon_sym_BSLASHTextcite] = ACTIONS(5303), + [anon_sym_BSLASHsmartcite] = ACTIONS(5303), + [anon_sym_BSLASHSmartcite] = ACTIONS(5303), + [anon_sym_BSLASHsupercite] = ACTIONS(5303), + [anon_sym_BSLASHautocite] = ACTIONS(5303), + [anon_sym_BSLASHAutocite] = ACTIONS(5303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), + [anon_sym_BSLASHvolcite] = ACTIONS(5303), + [anon_sym_BSLASHVolcite] = ACTIONS(5303), + [anon_sym_BSLASHpvolcite] = ACTIONS(5303), + [anon_sym_BSLASHPvolcite] = ACTIONS(5303), + [anon_sym_BSLASHfvolcite] = ACTIONS(5303), + [anon_sym_BSLASHftvolcite] = ACTIONS(5303), + [anon_sym_BSLASHsvolcite] = ACTIONS(5303), + [anon_sym_BSLASHSvolcite] = ACTIONS(5303), + [anon_sym_BSLASHtvolcite] = ACTIONS(5303), + [anon_sym_BSLASHTvolcite] = ACTIONS(5303), + [anon_sym_BSLASHavolcite] = ACTIONS(5303), + [anon_sym_BSLASHAvolcite] = ACTIONS(5303), + [anon_sym_BSLASHnotecite] = ACTIONS(5303), + [anon_sym_BSLASHNotecite] = ACTIONS(5303), + [anon_sym_BSLASHpnotecite] = ACTIONS(5303), + [anon_sym_BSLASHPnotecite] = ACTIONS(5303), + [anon_sym_BSLASHfnotecite] = ACTIONS(5303), + [anon_sym_BSLASHlabel] = ACTIONS(5303), + [anon_sym_BSLASHref] = ACTIONS(5303), + [anon_sym_BSLASHeqref] = ACTIONS(5303), + [anon_sym_BSLASHvref] = ACTIONS(5303), + [anon_sym_BSLASHVref] = ACTIONS(5303), + [anon_sym_BSLASHautoref] = ACTIONS(5303), + [anon_sym_BSLASHpageref] = ACTIONS(5303), + [anon_sym_BSLASHcref] = ACTIONS(5303), + [anon_sym_BSLASHCref] = ACTIONS(5303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnameCref] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), + [anon_sym_BSLASHlabelcref] = ACTIONS(5303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange] = ACTIONS(5303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), + [anon_sym_BSLASHnewlabel] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand] = ACTIONS(5303), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdef] = ACTIONS(5303), + [anon_sym_BSLASHlet] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), + [anon_sym_BSLASHgls] = ACTIONS(5303), + [anon_sym_BSLASHGls] = ACTIONS(5303), + [anon_sym_BSLASHGLS] = ACTIONS(5303), + [anon_sym_BSLASHglspl] = ACTIONS(5303), + [anon_sym_BSLASHGlspl] = ACTIONS(5303), + [anon_sym_BSLASHGLSpl] = ACTIONS(5303), + [anon_sym_BSLASHglsdisp] = ACTIONS(5303), + [anon_sym_BSLASHglslink] = ACTIONS(5303), + [anon_sym_BSLASHglstext] = ACTIONS(5303), + [anon_sym_BSLASHGlstext] = ACTIONS(5303), + [anon_sym_BSLASHGLStext] = ACTIONS(5303), + [anon_sym_BSLASHglsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), + [anon_sym_BSLASHglsplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSplural] = ACTIONS(5303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), + [anon_sym_BSLASHglsname] = ACTIONS(5303), + [anon_sym_BSLASHGlsname] = ACTIONS(5303), + [anon_sym_BSLASHGLSname] = ACTIONS(5303), + [anon_sym_BSLASHglssymbol] = ACTIONS(5303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), + [anon_sym_BSLASHglsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), + [anon_sym_BSLASHglsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), + [anon_sym_BSLASHglsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), + [anon_sym_BSLASHglsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), + [anon_sym_BSLASHglsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), + [anon_sym_BSLASHnewacronym] = ACTIONS(5303), + [anon_sym_BSLASHacrshort] = ACTIONS(5303), + [anon_sym_BSLASHAcrshort] = ACTIONS(5303), + [anon_sym_BSLASHACRshort] = ACTIONS(5303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), + [anon_sym_BSLASHacrlong] = ACTIONS(5303), + [anon_sym_BSLASHAcrlong] = ACTIONS(5303), + [anon_sym_BSLASHACRlong] = ACTIONS(5303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), + [anon_sym_BSLASHacrfull] = ACTIONS(5303), + [anon_sym_BSLASHAcrfull] = ACTIONS(5303), + [anon_sym_BSLASHACRfull] = ACTIONS(5303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), + [anon_sym_BSLASHacs] = ACTIONS(5303), + [anon_sym_BSLASHAcs] = ACTIONS(5303), + [anon_sym_BSLASHacsp] = ACTIONS(5303), + [anon_sym_BSLASHAcsp] = ACTIONS(5303), + [anon_sym_BSLASHacl] = ACTIONS(5303), + [anon_sym_BSLASHAcl] = ACTIONS(5303), + [anon_sym_BSLASHaclp] = ACTIONS(5303), + [anon_sym_BSLASHAclp] = ACTIONS(5303), + [anon_sym_BSLASHacf] = ACTIONS(5303), + [anon_sym_BSLASHAcf] = ACTIONS(5303), + [anon_sym_BSLASHacfp] = ACTIONS(5303), + [anon_sym_BSLASHAcfp] = ACTIONS(5303), + [anon_sym_BSLASHac] = ACTIONS(5303), + [anon_sym_BSLASHAc] = ACTIONS(5303), + [anon_sym_BSLASHacp] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), + [anon_sym_BSLASHcolor] = ACTIONS(5303), + [anon_sym_BSLASHcolorbox] = ACTIONS(5303), + [anon_sym_BSLASHtextcolor] = ACTIONS(5303), + [anon_sym_BSLASHpagecolor] = ACTIONS(5303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), + [anon_sym_BSLASHtext] = ACTIONS(5303), + [anon_sym_BSLASHintertext] = ACTIONS(5303), + [anon_sym_shortintertext] = ACTIONS(5303), }, - [974] = { - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_RPAREN] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_BSLASHpart] = ACTIONS(5245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddpart] = ACTIONS(5245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHchapter] = ACTIONS(5245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddchap] = ACTIONS(5245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsection] = ACTIONS(5245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddsec] = ACTIONS(5245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHparagraph] = ACTIONS(5245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHitem] = ACTIONS(5245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5243), - [sym_word] = ACTIONS(5245), - [sym_placeholder] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5245), - [anon_sym_SLASH] = ACTIONS(5245), - [anon_sym_CARET] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5245), - [anon_sym_GT] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5245), - [anon_sym_PIPE] = ACTIONS(5245), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), - [anon_sym_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), - [anon_sym_BSLASHbegin] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), - [anon_sym_BSLASHinclude] = ACTIONS(5245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), - [anon_sym_BSLASHinput] = ACTIONS(5245), - [anon_sym_BSLASHsubfile] = ACTIONS(5245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), - [anon_sym_BSLASHbibliography] = ACTIONS(5245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), - [anon_sym_BSLASHincludesvg] = ACTIONS(5245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), - [anon_sym_BSLASHimport] = ACTIONS(5245), - [anon_sym_BSLASHsubimport] = ACTIONS(5245), - [anon_sym_BSLASHinputfrom] = ACTIONS(5245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), - [anon_sym_BSLASHincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHcaption] = ACTIONS(5245), - [anon_sym_BSLASHcite] = ACTIONS(5245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCite] = ACTIONS(5245), - [anon_sym_BSLASHnocite] = ACTIONS(5245), - [anon_sym_BSLASHcitet] = ACTIONS(5245), - [anon_sym_BSLASHcitep] = ACTIONS(5245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteyear] = ACTIONS(5245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitedate] = ACTIONS(5245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteurl] = ACTIONS(5245), - [anon_sym_BSLASHfullcite] = ACTIONS(5245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), - [anon_sym_BSLASHcitealt] = ACTIONS(5245), - [anon_sym_BSLASHcitealp] = ACTIONS(5245), - [anon_sym_BSLASHcitetext] = ACTIONS(5245), - [anon_sym_BSLASHparencite] = ACTIONS(5245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHParencite] = ACTIONS(5245), - [anon_sym_BSLASHfootcite] = ACTIONS(5245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), - [anon_sym_BSLASHtextcite] = ACTIONS(5245), - [anon_sym_BSLASHTextcite] = ACTIONS(5245), - [anon_sym_BSLASHsmartcite] = ACTIONS(5245), - [anon_sym_BSLASHSmartcite] = ACTIONS(5245), - [anon_sym_BSLASHsupercite] = ACTIONS(5245), - [anon_sym_BSLASHautocite] = ACTIONS(5245), - [anon_sym_BSLASHAutocite] = ACTIONS(5245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHvolcite] = ACTIONS(5245), - [anon_sym_BSLASHVolcite] = ACTIONS(5245), - [anon_sym_BSLASHpvolcite] = ACTIONS(5245), - [anon_sym_BSLASHPvolcite] = ACTIONS(5245), - [anon_sym_BSLASHfvolcite] = ACTIONS(5245), - [anon_sym_BSLASHftvolcite] = ACTIONS(5245), - [anon_sym_BSLASHsvolcite] = ACTIONS(5245), - [anon_sym_BSLASHSvolcite] = ACTIONS(5245), - [anon_sym_BSLASHtvolcite] = ACTIONS(5245), - [anon_sym_BSLASHTvolcite] = ACTIONS(5245), - [anon_sym_BSLASHavolcite] = ACTIONS(5245), - [anon_sym_BSLASHAvolcite] = ACTIONS(5245), - [anon_sym_BSLASHnotecite] = ACTIONS(5245), - [anon_sym_BSLASHNotecite] = ACTIONS(5245), - [anon_sym_BSLASHpnotecite] = ACTIONS(5245), - [anon_sym_BSLASHPnotecite] = ACTIONS(5245), - [anon_sym_BSLASHfnotecite] = ACTIONS(5245), - [anon_sym_BSLASHlabel] = ACTIONS(5245), - [anon_sym_BSLASHref] = ACTIONS(5245), - [anon_sym_BSLASHeqref] = ACTIONS(5245), - [anon_sym_BSLASHvref] = ACTIONS(5245), - [anon_sym_BSLASHVref] = ACTIONS(5245), - [anon_sym_BSLASHautoref] = ACTIONS(5245), - [anon_sym_BSLASHpageref] = ACTIONS(5245), - [anon_sym_BSLASHcref] = ACTIONS(5245), - [anon_sym_BSLASHCref] = ACTIONS(5245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnameCref] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHlabelcref] = ACTIONS(5245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnewlabel] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdef] = ACTIONS(5245), - [anon_sym_BSLASHlet] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), - [anon_sym_BSLASHgls] = ACTIONS(5245), - [anon_sym_BSLASHGls] = ACTIONS(5245), - [anon_sym_BSLASHGLS] = ACTIONS(5245), - [anon_sym_BSLASHglspl] = ACTIONS(5245), - [anon_sym_BSLASHGlspl] = ACTIONS(5245), - [anon_sym_BSLASHGLSpl] = ACTIONS(5245), - [anon_sym_BSLASHglsdisp] = ACTIONS(5245), - [anon_sym_BSLASHglslink] = ACTIONS(5245), - [anon_sym_BSLASHglstext] = ACTIONS(5245), - [anon_sym_BSLASHGlstext] = ACTIONS(5245), - [anon_sym_BSLASHGLStext] = ACTIONS(5245), - [anon_sym_BSLASHglsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), - [anon_sym_BSLASHglsplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSplural] = ACTIONS(5245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHglsname] = ACTIONS(5245), - [anon_sym_BSLASHGlsname] = ACTIONS(5245), - [anon_sym_BSLASHGLSname] = ACTIONS(5245), - [anon_sym_BSLASHglssymbol] = ACTIONS(5245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), - [anon_sym_BSLASHglsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), - [anon_sym_BSLASHglsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), - [anon_sym_BSLASHglsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), - [anon_sym_BSLASHglsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), - [anon_sym_BSLASHglsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), - [anon_sym_BSLASHnewacronym] = ACTIONS(5245), - [anon_sym_BSLASHacrshort] = ACTIONS(5245), - [anon_sym_BSLASHAcrshort] = ACTIONS(5245), - [anon_sym_BSLASHACRshort] = ACTIONS(5245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), - [anon_sym_BSLASHacrlong] = ACTIONS(5245), - [anon_sym_BSLASHAcrlong] = ACTIONS(5245), - [anon_sym_BSLASHACRlong] = ACTIONS(5245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), - [anon_sym_BSLASHacrfull] = ACTIONS(5245), - [anon_sym_BSLASHAcrfull] = ACTIONS(5245), - [anon_sym_BSLASHACRfull] = ACTIONS(5245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), - [anon_sym_BSLASHacs] = ACTIONS(5245), - [anon_sym_BSLASHAcs] = ACTIONS(5245), - [anon_sym_BSLASHacsp] = ACTIONS(5245), - [anon_sym_BSLASHAcsp] = ACTIONS(5245), - [anon_sym_BSLASHacl] = ACTIONS(5245), - [anon_sym_BSLASHAcl] = ACTIONS(5245), - [anon_sym_BSLASHaclp] = ACTIONS(5245), - [anon_sym_BSLASHAclp] = ACTIONS(5245), - [anon_sym_BSLASHacf] = ACTIONS(5245), - [anon_sym_BSLASHAcf] = ACTIONS(5245), - [anon_sym_BSLASHacfp] = ACTIONS(5245), - [anon_sym_BSLASHAcfp] = ACTIONS(5245), - [anon_sym_BSLASHac] = ACTIONS(5245), - [anon_sym_BSLASHAc] = ACTIONS(5245), - [anon_sym_BSLASHacp] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), - [anon_sym_BSLASHcolor] = ACTIONS(5245), - [anon_sym_BSLASHcolorbox] = ACTIONS(5245), - [anon_sym_BSLASHtextcolor] = ACTIONS(5245), - [anon_sym_BSLASHpagecolor] = ACTIONS(5245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), - [anon_sym_BSLASHtext] = ACTIONS(5245), - [anon_sym_BSLASHintertext] = ACTIONS(5245), - [anon_sym_shortintertext] = ACTIONS(5245), + [554] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5341), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5341), + [anon_sym_LPAREN] = ACTIONS(5339), + [anon_sym_RPAREN] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5339), + [anon_sym_RBRACK] = ACTIONS(5339), + [anon_sym_COMMA] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_BSLASHpart] = ACTIONS(5341), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddpart] = ACTIONS(5341), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), + [anon_sym_BSLASHchapter] = ACTIONS(5341), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddchap] = ACTIONS(5341), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsection] = ACTIONS(5341), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHaddsec] = ACTIONS(5341), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), + [anon_sym_BSLASHparagraph] = ACTIONS(5545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5548), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), + [anon_sym_BSLASHitem] = ACTIONS(5341), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), + [anon_sym_LBRACE] = ACTIONS(5339), + [sym_word] = ACTIONS(5341), + [sym_placeholder] = ACTIONS(5339), + [anon_sym_PLUS] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5341), + [anon_sym_STAR] = ACTIONS(5341), + [anon_sym_SLASH] = ACTIONS(5341), + [anon_sym_CARET] = ACTIONS(5341), + [anon_sym__] = ACTIONS(5341), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_BANG] = ACTIONS(5341), + [anon_sym_PIPE] = ACTIONS(5341), + [anon_sym_COLON] = ACTIONS(5341), + [anon_sym_SQUOTE] = ACTIONS(5341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), + [anon_sym_DOLLAR] = ACTIONS(5341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), + [anon_sym_BSLASHbegin] = ACTIONS(5341), + [anon_sym_BSLASHend] = ACTIONS(5341), + [anon_sym_BSLASHtitle] = ACTIONS(5341), + [anon_sym_BSLASHauthor] = ACTIONS(5341), + [anon_sym_BSLASHusepackage] = ACTIONS(5341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), + [anon_sym_BSLASHinclude] = ACTIONS(5341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), + [anon_sym_BSLASHinput] = ACTIONS(5341), + [anon_sym_BSLASHsubfile] = ACTIONS(5341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), + [anon_sym_BSLASHbibliography] = ACTIONS(5341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), + [anon_sym_BSLASHincludesvg] = ACTIONS(5341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), + [anon_sym_BSLASHimport] = ACTIONS(5341), + [anon_sym_BSLASHsubimport] = ACTIONS(5341), + [anon_sym_BSLASHinputfrom] = ACTIONS(5341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), + [anon_sym_BSLASHincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), + [anon_sym_BSLASHcaption] = ACTIONS(5341), + [anon_sym_BSLASHcite] = ACTIONS(5341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCite] = ACTIONS(5341), + [anon_sym_BSLASHnocite] = ACTIONS(5341), + [anon_sym_BSLASHcitet] = ACTIONS(5341), + [anon_sym_BSLASHcitep] = ACTIONS(5341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteauthor] = ACTIONS(5341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitetitle] = ACTIONS(5341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteyear] = ACTIONS(5341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), + [anon_sym_BSLASHcitedate] = ACTIONS(5341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), + [anon_sym_BSLASHciteurl] = ACTIONS(5341), + [anon_sym_BSLASHfullcite] = ACTIONS(5341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), + [anon_sym_BSLASHcitealt] = ACTIONS(5341), + [anon_sym_BSLASHcitealp] = ACTIONS(5341), + [anon_sym_BSLASHcitetext] = ACTIONS(5341), + [anon_sym_BSLASHparencite] = ACTIONS(5341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHParencite] = ACTIONS(5341), + [anon_sym_BSLASHfootcite] = ACTIONS(5341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), + [anon_sym_BSLASHtextcite] = ACTIONS(5341), + [anon_sym_BSLASHTextcite] = ACTIONS(5341), + [anon_sym_BSLASHsmartcite] = ACTIONS(5341), + [anon_sym_BSLASHSmartcite] = ACTIONS(5341), + [anon_sym_BSLASHsupercite] = ACTIONS(5341), + [anon_sym_BSLASHautocite] = ACTIONS(5341), + [anon_sym_BSLASHAutocite] = ACTIONS(5341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), + [anon_sym_BSLASHvolcite] = ACTIONS(5341), + [anon_sym_BSLASHVolcite] = ACTIONS(5341), + [anon_sym_BSLASHpvolcite] = ACTIONS(5341), + [anon_sym_BSLASHPvolcite] = ACTIONS(5341), + [anon_sym_BSLASHfvolcite] = ACTIONS(5341), + [anon_sym_BSLASHftvolcite] = ACTIONS(5341), + [anon_sym_BSLASHsvolcite] = ACTIONS(5341), + [anon_sym_BSLASHSvolcite] = ACTIONS(5341), + [anon_sym_BSLASHtvolcite] = ACTIONS(5341), + [anon_sym_BSLASHTvolcite] = ACTIONS(5341), + [anon_sym_BSLASHavolcite] = ACTIONS(5341), + [anon_sym_BSLASHAvolcite] = ACTIONS(5341), + [anon_sym_BSLASHnotecite] = ACTIONS(5341), + [anon_sym_BSLASHNotecite] = ACTIONS(5341), + [anon_sym_BSLASHpnotecite] = ACTIONS(5341), + [anon_sym_BSLASHPnotecite] = ACTIONS(5341), + [anon_sym_BSLASHfnotecite] = ACTIONS(5341), + [anon_sym_BSLASHlabel] = ACTIONS(5341), + [anon_sym_BSLASHref] = ACTIONS(5341), + [anon_sym_BSLASHeqref] = ACTIONS(5341), + [anon_sym_BSLASHvref] = ACTIONS(5341), + [anon_sym_BSLASHVref] = ACTIONS(5341), + [anon_sym_BSLASHautoref] = ACTIONS(5341), + [anon_sym_BSLASHpageref] = ACTIONS(5341), + [anon_sym_BSLASHcref] = ACTIONS(5341), + [anon_sym_BSLASHCref] = ACTIONS(5341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnameCref] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), + [anon_sym_BSLASHlabelcref] = ACTIONS(5341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange] = ACTIONS(5341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHCrefrange] = ACTIONS(5341), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), + [anon_sym_BSLASHnewlabel] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand] = ACTIONS(5341), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdef] = ACTIONS(5341), + [anon_sym_BSLASHlet] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), + [anon_sym_BSLASHgls] = ACTIONS(5341), + [anon_sym_BSLASHGls] = ACTIONS(5341), + [anon_sym_BSLASHGLS] = ACTIONS(5341), + [anon_sym_BSLASHglspl] = ACTIONS(5341), + [anon_sym_BSLASHGlspl] = ACTIONS(5341), + [anon_sym_BSLASHGLSpl] = ACTIONS(5341), + [anon_sym_BSLASHglsdisp] = ACTIONS(5341), + [anon_sym_BSLASHglslink] = ACTIONS(5341), + [anon_sym_BSLASHglstext] = ACTIONS(5341), + [anon_sym_BSLASHGlstext] = ACTIONS(5341), + [anon_sym_BSLASHGLStext] = ACTIONS(5341), + [anon_sym_BSLASHglsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), + [anon_sym_BSLASHglsplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSplural] = ACTIONS(5341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), + [anon_sym_BSLASHglsname] = ACTIONS(5341), + [anon_sym_BSLASHGlsname] = ACTIONS(5341), + [anon_sym_BSLASHGLSname] = ACTIONS(5341), + [anon_sym_BSLASHglssymbol] = ACTIONS(5341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), + [anon_sym_BSLASHglsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), + [anon_sym_BSLASHglsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), + [anon_sym_BSLASHglsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), + [anon_sym_BSLASHglsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), + [anon_sym_BSLASHglsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), + [anon_sym_BSLASHnewacronym] = ACTIONS(5341), + [anon_sym_BSLASHacrshort] = ACTIONS(5341), + [anon_sym_BSLASHAcrshort] = ACTIONS(5341), + [anon_sym_BSLASHACRshort] = ACTIONS(5341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), + [anon_sym_BSLASHacrlong] = ACTIONS(5341), + [anon_sym_BSLASHAcrlong] = ACTIONS(5341), + [anon_sym_BSLASHACRlong] = ACTIONS(5341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), + [anon_sym_BSLASHacrfull] = ACTIONS(5341), + [anon_sym_BSLASHAcrfull] = ACTIONS(5341), + [anon_sym_BSLASHACRfull] = ACTIONS(5341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), + [anon_sym_BSLASHacs] = ACTIONS(5341), + [anon_sym_BSLASHAcs] = ACTIONS(5341), + [anon_sym_BSLASHacsp] = ACTIONS(5341), + [anon_sym_BSLASHAcsp] = ACTIONS(5341), + [anon_sym_BSLASHacl] = ACTIONS(5341), + [anon_sym_BSLASHAcl] = ACTIONS(5341), + [anon_sym_BSLASHaclp] = ACTIONS(5341), + [anon_sym_BSLASHAclp] = ACTIONS(5341), + [anon_sym_BSLASHacf] = ACTIONS(5341), + [anon_sym_BSLASHAcf] = ACTIONS(5341), + [anon_sym_BSLASHacfp] = ACTIONS(5341), + [anon_sym_BSLASHAcfp] = ACTIONS(5341), + [anon_sym_BSLASHac] = ACTIONS(5341), + [anon_sym_BSLASHAc] = ACTIONS(5341), + [anon_sym_BSLASHacp] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), + [anon_sym_BSLASHcolor] = ACTIONS(5341), + [anon_sym_BSLASHcolorbox] = ACTIONS(5341), + [anon_sym_BSLASHtextcolor] = ACTIONS(5341), + [anon_sym_BSLASHpagecolor] = ACTIONS(5341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHtext] = ACTIONS(5341), + [anon_sym_BSLASHintertext] = ACTIONS(5341), + [anon_sym_shortintertext] = ACTIONS(5341), }, - [975] = { - [sym_command_name] = ACTIONS(5253), + [555] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5327), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_RPAREN] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_RBRACK] = ACTIONS(5251), - [anon_sym_COMMA] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_BSLASHpart] = ACTIONS(5253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddpart] = ACTIONS(5253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHchapter] = ACTIONS(5253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddchap] = ACTIONS(5253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsection] = ACTIONS(5253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddsec] = ACTIONS(5253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHparagraph] = ACTIONS(5253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHitem] = ACTIONS(5253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5251), - [sym_word] = ACTIONS(5253), - [sym_placeholder] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym__] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5253), - [anon_sym_SQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), - [anon_sym_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), - [anon_sym_BSLASHbegin] = ACTIONS(5253), - [anon_sym_BSLASHusepackage] = ACTIONS(5253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), - [anon_sym_BSLASHinclude] = ACTIONS(5253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), - [anon_sym_BSLASHinput] = ACTIONS(5253), - [anon_sym_BSLASHsubfile] = ACTIONS(5253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), - [anon_sym_BSLASHbibliography] = ACTIONS(5253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), - [anon_sym_BSLASHincludesvg] = ACTIONS(5253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), - [anon_sym_BSLASHimport] = ACTIONS(5253), - [anon_sym_BSLASHsubimport] = ACTIONS(5253), - [anon_sym_BSLASHinputfrom] = ACTIONS(5253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), - [anon_sym_BSLASHincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHcaption] = ACTIONS(5253), - [anon_sym_BSLASHcite] = ACTIONS(5253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCite] = ACTIONS(5253), - [anon_sym_BSLASHnocite] = ACTIONS(5253), - [anon_sym_BSLASHcitet] = ACTIONS(5253), - [anon_sym_BSLASHcitep] = ACTIONS(5253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteyear] = ACTIONS(5253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitedate] = ACTIONS(5253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteurl] = ACTIONS(5253), - [anon_sym_BSLASHfullcite] = ACTIONS(5253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), - [anon_sym_BSLASHcitealt] = ACTIONS(5253), - [anon_sym_BSLASHcitealp] = ACTIONS(5253), - [anon_sym_BSLASHcitetext] = ACTIONS(5253), - [anon_sym_BSLASHparencite] = ACTIONS(5253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHParencite] = ACTIONS(5253), - [anon_sym_BSLASHfootcite] = ACTIONS(5253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), - [anon_sym_BSLASHtextcite] = ACTIONS(5253), - [anon_sym_BSLASHTextcite] = ACTIONS(5253), - [anon_sym_BSLASHsmartcite] = ACTIONS(5253), - [anon_sym_BSLASHSmartcite] = ACTIONS(5253), - [anon_sym_BSLASHsupercite] = ACTIONS(5253), - [anon_sym_BSLASHautocite] = ACTIONS(5253), - [anon_sym_BSLASHAutocite] = ACTIONS(5253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHvolcite] = ACTIONS(5253), - [anon_sym_BSLASHVolcite] = ACTIONS(5253), - [anon_sym_BSLASHpvolcite] = ACTIONS(5253), - [anon_sym_BSLASHPvolcite] = ACTIONS(5253), - [anon_sym_BSLASHfvolcite] = ACTIONS(5253), - [anon_sym_BSLASHftvolcite] = ACTIONS(5253), - [anon_sym_BSLASHsvolcite] = ACTIONS(5253), - [anon_sym_BSLASHSvolcite] = ACTIONS(5253), - [anon_sym_BSLASHtvolcite] = ACTIONS(5253), - [anon_sym_BSLASHTvolcite] = ACTIONS(5253), - [anon_sym_BSLASHavolcite] = ACTIONS(5253), - [anon_sym_BSLASHAvolcite] = ACTIONS(5253), - [anon_sym_BSLASHnotecite] = ACTIONS(5253), - [anon_sym_BSLASHNotecite] = ACTIONS(5253), - [anon_sym_BSLASHpnotecite] = ACTIONS(5253), - [anon_sym_BSLASHPnotecite] = ACTIONS(5253), - [anon_sym_BSLASHfnotecite] = ACTIONS(5253), - [anon_sym_BSLASHlabel] = ACTIONS(5253), - [anon_sym_BSLASHref] = ACTIONS(5253), - [anon_sym_BSLASHeqref] = ACTIONS(5253), - [anon_sym_BSLASHvref] = ACTIONS(5253), - [anon_sym_BSLASHVref] = ACTIONS(5253), - [anon_sym_BSLASHautoref] = ACTIONS(5253), - [anon_sym_BSLASHpageref] = ACTIONS(5253), - [anon_sym_BSLASHcref] = ACTIONS(5253), - [anon_sym_BSLASHCref] = ACTIONS(5253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnameCref] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHlabelcref] = ACTIONS(5253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnewlabel] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdef] = ACTIONS(5253), - [anon_sym_BSLASHlet] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), - [anon_sym_BSLASHgls] = ACTIONS(5253), - [anon_sym_BSLASHGls] = ACTIONS(5253), - [anon_sym_BSLASHGLS] = ACTIONS(5253), - [anon_sym_BSLASHglspl] = ACTIONS(5253), - [anon_sym_BSLASHGlspl] = ACTIONS(5253), - [anon_sym_BSLASHGLSpl] = ACTIONS(5253), - [anon_sym_BSLASHglsdisp] = ACTIONS(5253), - [anon_sym_BSLASHglslink] = ACTIONS(5253), - [anon_sym_BSLASHglstext] = ACTIONS(5253), - [anon_sym_BSLASHGlstext] = ACTIONS(5253), - [anon_sym_BSLASHGLStext] = ACTIONS(5253), - [anon_sym_BSLASHglsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), - [anon_sym_BSLASHglsplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSplural] = ACTIONS(5253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHglsname] = ACTIONS(5253), - [anon_sym_BSLASHGlsname] = ACTIONS(5253), - [anon_sym_BSLASHGLSname] = ACTIONS(5253), - [anon_sym_BSLASHglssymbol] = ACTIONS(5253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), - [anon_sym_BSLASHglsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), - [anon_sym_BSLASHglsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), - [anon_sym_BSLASHglsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), - [anon_sym_BSLASHglsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), - [anon_sym_BSLASHglsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), - [anon_sym_BSLASHnewacronym] = ACTIONS(5253), - [anon_sym_BSLASHacrshort] = ACTIONS(5253), - [anon_sym_BSLASHAcrshort] = ACTIONS(5253), - [anon_sym_BSLASHACRshort] = ACTIONS(5253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), - [anon_sym_BSLASHacrlong] = ACTIONS(5253), - [anon_sym_BSLASHAcrlong] = ACTIONS(5253), - [anon_sym_BSLASHACRlong] = ACTIONS(5253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), - [anon_sym_BSLASHacrfull] = ACTIONS(5253), - [anon_sym_BSLASHAcrfull] = ACTIONS(5253), - [anon_sym_BSLASHACRfull] = ACTIONS(5253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), - [anon_sym_BSLASHacs] = ACTIONS(5253), - [anon_sym_BSLASHAcs] = ACTIONS(5253), - [anon_sym_BSLASHacsp] = ACTIONS(5253), - [anon_sym_BSLASHAcsp] = ACTIONS(5253), - [anon_sym_BSLASHacl] = ACTIONS(5253), - [anon_sym_BSLASHAcl] = ACTIONS(5253), - [anon_sym_BSLASHaclp] = ACTIONS(5253), - [anon_sym_BSLASHAclp] = ACTIONS(5253), - [anon_sym_BSLASHacf] = ACTIONS(5253), - [anon_sym_BSLASHAcf] = ACTIONS(5253), - [anon_sym_BSLASHacfp] = ACTIONS(5253), - [anon_sym_BSLASHAcfp] = ACTIONS(5253), - [anon_sym_BSLASHac] = ACTIONS(5253), - [anon_sym_BSLASHAc] = ACTIONS(5253), - [anon_sym_BSLASHacp] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), - [anon_sym_BSLASHcolor] = ACTIONS(5253), - [anon_sym_BSLASHcolorbox] = ACTIONS(5253), - [anon_sym_BSLASHtextcolor] = ACTIONS(5253), - [anon_sym_BSLASHpagecolor] = ACTIONS(5253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), - [anon_sym_BSLASHtext] = ACTIONS(5253), - [anon_sym_BSLASHintertext] = ACTIONS(5253), - [anon_sym_shortintertext] = ACTIONS(5253), + [anon_sym_BSLASHiffalse] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5327), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5327), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5327), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5327), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5327), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5327), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5551), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5554), + [anon_sym_BSLASHparagraph] = ACTIONS(5327), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5327), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5327), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_STAR] = ACTIONS(5327), + [anon_sym_SLASH] = ACTIONS(5327), + [anon_sym_CARET] = ACTIONS(5327), + [anon_sym__] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_BANG] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_SQUOTE] = ACTIONS(5327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5327), + [anon_sym_BSLASHend] = ACTIONS(5327), + [anon_sym_BSLASHtitle] = ACTIONS(5327), + [anon_sym_BSLASHauthor] = ACTIONS(5327), + [anon_sym_BSLASHusepackage] = ACTIONS(5327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), + [anon_sym_BSLASHinclude] = ACTIONS(5327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), + [anon_sym_BSLASHinput] = ACTIONS(5327), + [anon_sym_BSLASHsubfile] = ACTIONS(5327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [anon_sym_BSLASHbibliography] = ACTIONS(5327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), + [anon_sym_BSLASHincludesvg] = ACTIONS(5327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), + [anon_sym_BSLASHimport] = ACTIONS(5327), + [anon_sym_BSLASHsubimport] = ACTIONS(5327), + [anon_sym_BSLASHinputfrom] = ACTIONS(5327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), + [anon_sym_BSLASHincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), + [anon_sym_BSLASHcaption] = ACTIONS(5327), + [anon_sym_BSLASHcite] = ACTIONS(5327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5327), + [anon_sym_BSLASHnocite] = ACTIONS(5327), + [anon_sym_BSLASHcitet] = ACTIONS(5327), + [anon_sym_BSLASHcitep] = ACTIONS(5327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5327), + [anon_sym_BSLASHfullcite] = ACTIONS(5327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), + [anon_sym_BSLASHcitealt] = ACTIONS(5327), + [anon_sym_BSLASHcitealp] = ACTIONS(5327), + [anon_sym_BSLASHcitetext] = ACTIONS(5327), + [anon_sym_BSLASHparencite] = ACTIONS(5327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5327), + [anon_sym_BSLASHfootcite] = ACTIONS(5327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), + [anon_sym_BSLASHtextcite] = ACTIONS(5327), + [anon_sym_BSLASHTextcite] = ACTIONS(5327), + [anon_sym_BSLASHsmartcite] = ACTIONS(5327), + [anon_sym_BSLASHSmartcite] = ACTIONS(5327), + [anon_sym_BSLASHsupercite] = ACTIONS(5327), + [anon_sym_BSLASHautocite] = ACTIONS(5327), + [anon_sym_BSLASHAutocite] = ACTIONS(5327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5327), + [anon_sym_BSLASHVolcite] = ACTIONS(5327), + [anon_sym_BSLASHpvolcite] = ACTIONS(5327), + [anon_sym_BSLASHPvolcite] = ACTIONS(5327), + [anon_sym_BSLASHfvolcite] = ACTIONS(5327), + [anon_sym_BSLASHftvolcite] = ACTIONS(5327), + [anon_sym_BSLASHsvolcite] = ACTIONS(5327), + [anon_sym_BSLASHSvolcite] = ACTIONS(5327), + [anon_sym_BSLASHtvolcite] = ACTIONS(5327), + [anon_sym_BSLASHTvolcite] = ACTIONS(5327), + [anon_sym_BSLASHavolcite] = ACTIONS(5327), + [anon_sym_BSLASHAvolcite] = ACTIONS(5327), + [anon_sym_BSLASHnotecite] = ACTIONS(5327), + [anon_sym_BSLASHNotecite] = ACTIONS(5327), + [anon_sym_BSLASHpnotecite] = ACTIONS(5327), + [anon_sym_BSLASHPnotecite] = ACTIONS(5327), + [anon_sym_BSLASHfnotecite] = ACTIONS(5327), + [anon_sym_BSLASHlabel] = ACTIONS(5327), + [anon_sym_BSLASHref] = ACTIONS(5327), + [anon_sym_BSLASHeqref] = ACTIONS(5327), + [anon_sym_BSLASHvref] = ACTIONS(5327), + [anon_sym_BSLASHVref] = ACTIONS(5327), + [anon_sym_BSLASHautoref] = ACTIONS(5327), + [anon_sym_BSLASHpageref] = ACTIONS(5327), + [anon_sym_BSLASHcref] = ACTIONS(5327), + [anon_sym_BSLASHCref] = ACTIONS(5327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnameCref] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), + [anon_sym_BSLASHlabelcref] = ACTIONS(5327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange] = ACTIONS(5327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5327), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand] = ACTIONS(5327), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5327), + [anon_sym_BSLASHlet] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), + [anon_sym_BSLASHgls] = ACTIONS(5327), + [anon_sym_BSLASHGls] = ACTIONS(5327), + [anon_sym_BSLASHGLS] = ACTIONS(5327), + [anon_sym_BSLASHglspl] = ACTIONS(5327), + [anon_sym_BSLASHGlspl] = ACTIONS(5327), + [anon_sym_BSLASHGLSpl] = ACTIONS(5327), + [anon_sym_BSLASHglsdisp] = ACTIONS(5327), + [anon_sym_BSLASHglslink] = ACTIONS(5327), + [anon_sym_BSLASHglstext] = ACTIONS(5327), + [anon_sym_BSLASHGlstext] = ACTIONS(5327), + [anon_sym_BSLASHGLStext] = ACTIONS(5327), + [anon_sym_BSLASHglsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), + [anon_sym_BSLASHglsplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSplural] = ACTIONS(5327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), + [anon_sym_BSLASHglsname] = ACTIONS(5327), + [anon_sym_BSLASHGlsname] = ACTIONS(5327), + [anon_sym_BSLASHGLSname] = ACTIONS(5327), + [anon_sym_BSLASHglssymbol] = ACTIONS(5327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), + [anon_sym_BSLASHglsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), + [anon_sym_BSLASHglsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), + [anon_sym_BSLASHglsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), + [anon_sym_BSLASHglsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), + [anon_sym_BSLASHglsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), + [anon_sym_BSLASHnewacronym] = ACTIONS(5327), + [anon_sym_BSLASHacrshort] = ACTIONS(5327), + [anon_sym_BSLASHAcrshort] = ACTIONS(5327), + [anon_sym_BSLASHACRshort] = ACTIONS(5327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), + [anon_sym_BSLASHacrlong] = ACTIONS(5327), + [anon_sym_BSLASHAcrlong] = ACTIONS(5327), + [anon_sym_BSLASHACRlong] = ACTIONS(5327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), + [anon_sym_BSLASHacrfull] = ACTIONS(5327), + [anon_sym_BSLASHAcrfull] = ACTIONS(5327), + [anon_sym_BSLASHACRfull] = ACTIONS(5327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), + [anon_sym_BSLASHacs] = ACTIONS(5327), + [anon_sym_BSLASHAcs] = ACTIONS(5327), + [anon_sym_BSLASHacsp] = ACTIONS(5327), + [anon_sym_BSLASHAcsp] = ACTIONS(5327), + [anon_sym_BSLASHacl] = ACTIONS(5327), + [anon_sym_BSLASHAcl] = ACTIONS(5327), + [anon_sym_BSLASHaclp] = ACTIONS(5327), + [anon_sym_BSLASHAclp] = ACTIONS(5327), + [anon_sym_BSLASHacf] = ACTIONS(5327), + [anon_sym_BSLASHAcf] = ACTIONS(5327), + [anon_sym_BSLASHacfp] = ACTIONS(5327), + [anon_sym_BSLASHAcfp] = ACTIONS(5327), + [anon_sym_BSLASHac] = ACTIONS(5327), + [anon_sym_BSLASHAc] = ACTIONS(5327), + [anon_sym_BSLASHacp] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), + [anon_sym_BSLASHcolor] = ACTIONS(5327), + [anon_sym_BSLASHcolorbox] = ACTIONS(5327), + [anon_sym_BSLASHtextcolor] = ACTIONS(5327), + [anon_sym_BSLASHpagecolor] = ACTIONS(5327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [anon_sym_BSLASHtext] = ACTIONS(5327), + [anon_sym_BSLASHintertext] = ACTIONS(5327), + [anon_sym_shortintertext] = ACTIONS(5327), }, - [976] = { - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5259), - [anon_sym_BSLASHpart] = ACTIONS(5261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddpart] = ACTIONS(5261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHchapter] = ACTIONS(5261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddchap] = ACTIONS(5261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsection] = ACTIONS(5261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddsec] = ACTIONS(5261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHparagraph] = ACTIONS(5261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHitem] = ACTIONS(5261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), - [anon_sym_LBRACE] = ACTIONS(5259), - [sym_word] = ACTIONS(5261), - [sym_placeholder] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym__] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5261), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), - [anon_sym_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), - [anon_sym_BSLASHbegin] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), - [anon_sym_BSLASHinclude] = ACTIONS(5261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), - [anon_sym_BSLASHinput] = ACTIONS(5261), - [anon_sym_BSLASHsubfile] = ACTIONS(5261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), - [anon_sym_BSLASHbibliography] = ACTIONS(5261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), - [anon_sym_BSLASHincludesvg] = ACTIONS(5261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), - [anon_sym_BSLASHimport] = ACTIONS(5261), - [anon_sym_BSLASHsubimport] = ACTIONS(5261), - [anon_sym_BSLASHinputfrom] = ACTIONS(5261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), - [anon_sym_BSLASHincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHcaption] = ACTIONS(5261), - [anon_sym_BSLASHcite] = ACTIONS(5261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCite] = ACTIONS(5261), - [anon_sym_BSLASHnocite] = ACTIONS(5261), - [anon_sym_BSLASHcitet] = ACTIONS(5261), - [anon_sym_BSLASHcitep] = ACTIONS(5261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteyear] = ACTIONS(5261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitedate] = ACTIONS(5261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteurl] = ACTIONS(5261), - [anon_sym_BSLASHfullcite] = ACTIONS(5261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), - [anon_sym_BSLASHcitealt] = ACTIONS(5261), - [anon_sym_BSLASHcitealp] = ACTIONS(5261), - [anon_sym_BSLASHcitetext] = ACTIONS(5261), - [anon_sym_BSLASHparencite] = ACTIONS(5261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHParencite] = ACTIONS(5261), - [anon_sym_BSLASHfootcite] = ACTIONS(5261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), - [anon_sym_BSLASHtextcite] = ACTIONS(5261), - [anon_sym_BSLASHTextcite] = ACTIONS(5261), - [anon_sym_BSLASHsmartcite] = ACTIONS(5261), - [anon_sym_BSLASHSmartcite] = ACTIONS(5261), - [anon_sym_BSLASHsupercite] = ACTIONS(5261), - [anon_sym_BSLASHautocite] = ACTIONS(5261), - [anon_sym_BSLASHAutocite] = ACTIONS(5261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHvolcite] = ACTIONS(5261), - [anon_sym_BSLASHVolcite] = ACTIONS(5261), - [anon_sym_BSLASHpvolcite] = ACTIONS(5261), - [anon_sym_BSLASHPvolcite] = ACTIONS(5261), - [anon_sym_BSLASHfvolcite] = ACTIONS(5261), - [anon_sym_BSLASHftvolcite] = ACTIONS(5261), - [anon_sym_BSLASHsvolcite] = ACTIONS(5261), - [anon_sym_BSLASHSvolcite] = ACTIONS(5261), - [anon_sym_BSLASHtvolcite] = ACTIONS(5261), - [anon_sym_BSLASHTvolcite] = ACTIONS(5261), - [anon_sym_BSLASHavolcite] = ACTIONS(5261), - [anon_sym_BSLASHAvolcite] = ACTIONS(5261), - [anon_sym_BSLASHnotecite] = ACTIONS(5261), - [anon_sym_BSLASHNotecite] = ACTIONS(5261), - [anon_sym_BSLASHpnotecite] = ACTIONS(5261), - [anon_sym_BSLASHPnotecite] = ACTIONS(5261), - [anon_sym_BSLASHfnotecite] = ACTIONS(5261), - [anon_sym_BSLASHlabel] = ACTIONS(5261), - [anon_sym_BSLASHref] = ACTIONS(5261), - [anon_sym_BSLASHeqref] = ACTIONS(5261), - [anon_sym_BSLASHvref] = ACTIONS(5261), - [anon_sym_BSLASHVref] = ACTIONS(5261), - [anon_sym_BSLASHautoref] = ACTIONS(5261), - [anon_sym_BSLASHpageref] = ACTIONS(5261), - [anon_sym_BSLASHcref] = ACTIONS(5261), - [anon_sym_BSLASHCref] = ACTIONS(5261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnameCref] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHlabelcref] = ACTIONS(5261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnewlabel] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdef] = ACTIONS(5261), - [anon_sym_BSLASHlet] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), - [anon_sym_BSLASHgls] = ACTIONS(5261), - [anon_sym_BSLASHGls] = ACTIONS(5261), - [anon_sym_BSLASHGLS] = ACTIONS(5261), - [anon_sym_BSLASHglspl] = ACTIONS(5261), - [anon_sym_BSLASHGlspl] = ACTIONS(5261), - [anon_sym_BSLASHGLSpl] = ACTIONS(5261), - [anon_sym_BSLASHglsdisp] = ACTIONS(5261), - [anon_sym_BSLASHglslink] = ACTIONS(5261), - [anon_sym_BSLASHglstext] = ACTIONS(5261), - [anon_sym_BSLASHGlstext] = ACTIONS(5261), - [anon_sym_BSLASHGLStext] = ACTIONS(5261), - [anon_sym_BSLASHglsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), - [anon_sym_BSLASHglsplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSplural] = ACTIONS(5261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHglsname] = ACTIONS(5261), - [anon_sym_BSLASHGlsname] = ACTIONS(5261), - [anon_sym_BSLASHGLSname] = ACTIONS(5261), - [anon_sym_BSLASHglssymbol] = ACTIONS(5261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), - [anon_sym_BSLASHglsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), - [anon_sym_BSLASHglsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), - [anon_sym_BSLASHglsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), - [anon_sym_BSLASHglsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), - [anon_sym_BSLASHglsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), - [anon_sym_BSLASHnewacronym] = ACTIONS(5261), - [anon_sym_BSLASHacrshort] = ACTIONS(5261), - [anon_sym_BSLASHAcrshort] = ACTIONS(5261), - [anon_sym_BSLASHACRshort] = ACTIONS(5261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), - [anon_sym_BSLASHacrlong] = ACTIONS(5261), - [anon_sym_BSLASHAcrlong] = ACTIONS(5261), - [anon_sym_BSLASHACRlong] = ACTIONS(5261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), - [anon_sym_BSLASHacrfull] = ACTIONS(5261), - [anon_sym_BSLASHAcrfull] = ACTIONS(5261), - [anon_sym_BSLASHACRfull] = ACTIONS(5261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), - [anon_sym_BSLASHacs] = ACTIONS(5261), - [anon_sym_BSLASHAcs] = ACTIONS(5261), - [anon_sym_BSLASHacsp] = ACTIONS(5261), - [anon_sym_BSLASHAcsp] = ACTIONS(5261), - [anon_sym_BSLASHacl] = ACTIONS(5261), - [anon_sym_BSLASHAcl] = ACTIONS(5261), - [anon_sym_BSLASHaclp] = ACTIONS(5261), - [anon_sym_BSLASHAclp] = ACTIONS(5261), - [anon_sym_BSLASHacf] = ACTIONS(5261), - [anon_sym_BSLASHAcf] = ACTIONS(5261), - [anon_sym_BSLASHacfp] = ACTIONS(5261), - [anon_sym_BSLASHAcfp] = ACTIONS(5261), - [anon_sym_BSLASHac] = ACTIONS(5261), - [anon_sym_BSLASHAc] = ACTIONS(5261), - [anon_sym_BSLASHacp] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), - [anon_sym_BSLASHcolor] = ACTIONS(5261), - [anon_sym_BSLASHcolorbox] = ACTIONS(5261), - [anon_sym_BSLASHtextcolor] = ACTIONS(5261), - [anon_sym_BSLASHpagecolor] = ACTIONS(5261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), - [anon_sym_BSLASHtext] = ACTIONS(5261), - [anon_sym_BSLASHintertext] = ACTIONS(5261), - [anon_sym_shortintertext] = ACTIONS(5261), + [556] = { + [sym_curly_group] = STATE(1293), + [sym_mixed_group] = STATE(1293), + [aux_sym_generic_command_repeat1] = STATE(556), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5557), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(5557), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_BSLASHpart] = ACTIONS(5239), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddpart] = ACTIONS(5239), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), + [anon_sym_BSLASHchapter] = ACTIONS(5239), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddchap] = ACTIONS(5239), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsection] = ACTIONS(5239), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHaddsec] = ACTIONS(5239), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), + [anon_sym_BSLASHparagraph] = ACTIONS(5239), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), + [anon_sym_BSLASHitem] = ACTIONS(5239), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(5560), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [977] = { - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5263), - [anon_sym_BSLASHpart] = ACTIONS(5265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddpart] = ACTIONS(5265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHchapter] = ACTIONS(5265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddchap] = ACTIONS(5265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsection] = ACTIONS(5265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddsec] = ACTIONS(5265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHparagraph] = ACTIONS(5265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHitem] = ACTIONS(5265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [sym_word] = ACTIONS(5265), - [sym_placeholder] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(5265), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_STAR] = ACTIONS(5265), - [anon_sym_SLASH] = ACTIONS(5265), - [anon_sym_CARET] = ACTIONS(5265), - [anon_sym__] = ACTIONS(5265), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_BANG] = ACTIONS(5265), - [anon_sym_PIPE] = ACTIONS(5265), - [anon_sym_COLON] = ACTIONS(5265), - [anon_sym_SQUOTE] = ACTIONS(5265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), - [anon_sym_BSLASHbegin] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), - [anon_sym_BSLASHinclude] = ACTIONS(5265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), - [anon_sym_BSLASHinput] = ACTIONS(5265), - [anon_sym_BSLASHsubfile] = ACTIONS(5265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), - [anon_sym_BSLASHbibliography] = ACTIONS(5265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), - [anon_sym_BSLASHincludesvg] = ACTIONS(5265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), - [anon_sym_BSLASHimport] = ACTIONS(5265), - [anon_sym_BSLASHsubimport] = ACTIONS(5265), - [anon_sym_BSLASHinputfrom] = ACTIONS(5265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), - [anon_sym_BSLASHincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHcaption] = ACTIONS(5265), - [anon_sym_BSLASHcite] = ACTIONS(5265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCite] = ACTIONS(5265), - [anon_sym_BSLASHnocite] = ACTIONS(5265), - [anon_sym_BSLASHcitet] = ACTIONS(5265), - [anon_sym_BSLASHcitep] = ACTIONS(5265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteyear] = ACTIONS(5265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitedate] = ACTIONS(5265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteurl] = ACTIONS(5265), - [anon_sym_BSLASHfullcite] = ACTIONS(5265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), - [anon_sym_BSLASHcitealt] = ACTIONS(5265), - [anon_sym_BSLASHcitealp] = ACTIONS(5265), - [anon_sym_BSLASHcitetext] = ACTIONS(5265), - [anon_sym_BSLASHparencite] = ACTIONS(5265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHParencite] = ACTIONS(5265), - [anon_sym_BSLASHfootcite] = ACTIONS(5265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), - [anon_sym_BSLASHtextcite] = ACTIONS(5265), - [anon_sym_BSLASHTextcite] = ACTIONS(5265), - [anon_sym_BSLASHsmartcite] = ACTIONS(5265), - [anon_sym_BSLASHSmartcite] = ACTIONS(5265), - [anon_sym_BSLASHsupercite] = ACTIONS(5265), - [anon_sym_BSLASHautocite] = ACTIONS(5265), - [anon_sym_BSLASHAutocite] = ACTIONS(5265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHvolcite] = ACTIONS(5265), - [anon_sym_BSLASHVolcite] = ACTIONS(5265), - [anon_sym_BSLASHpvolcite] = ACTIONS(5265), - [anon_sym_BSLASHPvolcite] = ACTIONS(5265), - [anon_sym_BSLASHfvolcite] = ACTIONS(5265), - [anon_sym_BSLASHftvolcite] = ACTIONS(5265), - [anon_sym_BSLASHsvolcite] = ACTIONS(5265), - [anon_sym_BSLASHSvolcite] = ACTIONS(5265), - [anon_sym_BSLASHtvolcite] = ACTIONS(5265), - [anon_sym_BSLASHTvolcite] = ACTIONS(5265), - [anon_sym_BSLASHavolcite] = ACTIONS(5265), - [anon_sym_BSLASHAvolcite] = ACTIONS(5265), - [anon_sym_BSLASHnotecite] = ACTIONS(5265), - [anon_sym_BSLASHNotecite] = ACTIONS(5265), - [anon_sym_BSLASHpnotecite] = ACTIONS(5265), - [anon_sym_BSLASHPnotecite] = ACTIONS(5265), - [anon_sym_BSLASHfnotecite] = ACTIONS(5265), - [anon_sym_BSLASHlabel] = ACTIONS(5265), - [anon_sym_BSLASHref] = ACTIONS(5265), - [anon_sym_BSLASHeqref] = ACTIONS(5265), - [anon_sym_BSLASHvref] = ACTIONS(5265), - [anon_sym_BSLASHVref] = ACTIONS(5265), - [anon_sym_BSLASHautoref] = ACTIONS(5265), - [anon_sym_BSLASHpageref] = ACTIONS(5265), - [anon_sym_BSLASHcref] = ACTIONS(5265), - [anon_sym_BSLASHCref] = ACTIONS(5265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnameCref] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHlabelcref] = ACTIONS(5265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnewlabel] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdef] = ACTIONS(5265), - [anon_sym_BSLASHlet] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), - [anon_sym_BSLASHgls] = ACTIONS(5265), - [anon_sym_BSLASHGls] = ACTIONS(5265), - [anon_sym_BSLASHGLS] = ACTIONS(5265), - [anon_sym_BSLASHglspl] = ACTIONS(5265), - [anon_sym_BSLASHGlspl] = ACTIONS(5265), - [anon_sym_BSLASHGLSpl] = ACTIONS(5265), - [anon_sym_BSLASHglsdisp] = ACTIONS(5265), - [anon_sym_BSLASHglslink] = ACTIONS(5265), - [anon_sym_BSLASHglstext] = ACTIONS(5265), - [anon_sym_BSLASHGlstext] = ACTIONS(5265), - [anon_sym_BSLASHGLStext] = ACTIONS(5265), - [anon_sym_BSLASHglsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), - [anon_sym_BSLASHglsplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSplural] = ACTIONS(5265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHglsname] = ACTIONS(5265), - [anon_sym_BSLASHGlsname] = ACTIONS(5265), - [anon_sym_BSLASHGLSname] = ACTIONS(5265), - [anon_sym_BSLASHglssymbol] = ACTIONS(5265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), - [anon_sym_BSLASHglsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), - [anon_sym_BSLASHglsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), - [anon_sym_BSLASHglsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), - [anon_sym_BSLASHglsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), - [anon_sym_BSLASHglsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), - [anon_sym_BSLASHnewacronym] = ACTIONS(5265), - [anon_sym_BSLASHacrshort] = ACTIONS(5265), - [anon_sym_BSLASHAcrshort] = ACTIONS(5265), - [anon_sym_BSLASHACRshort] = ACTIONS(5265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), - [anon_sym_BSLASHacrlong] = ACTIONS(5265), - [anon_sym_BSLASHAcrlong] = ACTIONS(5265), - [anon_sym_BSLASHACRlong] = ACTIONS(5265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), - [anon_sym_BSLASHacrfull] = ACTIONS(5265), - [anon_sym_BSLASHAcrfull] = ACTIONS(5265), - [anon_sym_BSLASHACRfull] = ACTIONS(5265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), - [anon_sym_BSLASHacs] = ACTIONS(5265), - [anon_sym_BSLASHAcs] = ACTIONS(5265), - [anon_sym_BSLASHacsp] = ACTIONS(5265), - [anon_sym_BSLASHAcsp] = ACTIONS(5265), - [anon_sym_BSLASHacl] = ACTIONS(5265), - [anon_sym_BSLASHAcl] = ACTIONS(5265), - [anon_sym_BSLASHaclp] = ACTIONS(5265), - [anon_sym_BSLASHAclp] = ACTIONS(5265), - [anon_sym_BSLASHacf] = ACTIONS(5265), - [anon_sym_BSLASHAcf] = ACTIONS(5265), - [anon_sym_BSLASHacfp] = ACTIONS(5265), - [anon_sym_BSLASHAcfp] = ACTIONS(5265), - [anon_sym_BSLASHac] = ACTIONS(5265), - [anon_sym_BSLASHAc] = ACTIONS(5265), - [anon_sym_BSLASHacp] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), - [anon_sym_BSLASHcolor] = ACTIONS(5265), - [anon_sym_BSLASHcolorbox] = ACTIONS(5265), - [anon_sym_BSLASHtextcolor] = ACTIONS(5265), - [anon_sym_BSLASHpagecolor] = ACTIONS(5265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), - [anon_sym_BSLASHtext] = ACTIONS(5265), - [anon_sym_BSLASHintertext] = ACTIONS(5265), - [anon_sym_shortintertext] = ACTIONS(5265), + [557] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(5263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5263), + [anon_sym_LPAREN] = ACTIONS(5261), + [anon_sym_RPAREN] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(5261), + [anon_sym_EQ] = ACTIONS(5261), + [anon_sym_BSLASHpart] = ACTIONS(5263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddpart] = ACTIONS(5263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), + [anon_sym_BSLASHchapter] = ACTIONS(5263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddchap] = ACTIONS(5263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsection] = ACTIONS(5263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHaddsec] = ACTIONS(5263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubsection] = ACTIONS(5563), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5566), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), + [anon_sym_BSLASHparagraph] = ACTIONS(5263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), + [anon_sym_BSLASHitem] = ACTIONS(5263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), + [anon_sym_LBRACE] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [sym_placeholder] = ACTIONS(5261), + [anon_sym_PLUS] = ACTIONS(5263), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(5263), + [anon_sym_SLASH] = ACTIONS(5263), + [anon_sym_CARET] = ACTIONS(5263), + [anon_sym__] = ACTIONS(5263), + [anon_sym_LT] = ACTIONS(5263), + [anon_sym_GT] = ACTIONS(5263), + [anon_sym_BANG] = ACTIONS(5263), + [anon_sym_PIPE] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_SQUOTE] = ACTIONS(5263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), + [anon_sym_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), + [anon_sym_BSLASHbegin] = ACTIONS(5263), + [anon_sym_BSLASHend] = ACTIONS(5263), + [anon_sym_BSLASHtitle] = ACTIONS(5263), + [anon_sym_BSLASHauthor] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), + [anon_sym_BSLASHinclude] = ACTIONS(5263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), + [anon_sym_BSLASHinput] = ACTIONS(5263), + [anon_sym_BSLASHsubfile] = ACTIONS(5263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), + [anon_sym_BSLASHbibliography] = ACTIONS(5263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), + [anon_sym_BSLASHincludesvg] = ACTIONS(5263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), + [anon_sym_BSLASHimport] = ACTIONS(5263), + [anon_sym_BSLASHsubimport] = ACTIONS(5263), + [anon_sym_BSLASHinputfrom] = ACTIONS(5263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), + [anon_sym_BSLASHincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), + [anon_sym_BSLASHcaption] = ACTIONS(5263), + [anon_sym_BSLASHcite] = ACTIONS(5263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCite] = ACTIONS(5263), + [anon_sym_BSLASHnocite] = ACTIONS(5263), + [anon_sym_BSLASHcitet] = ACTIONS(5263), + [anon_sym_BSLASHcitep] = ACTIONS(5263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteyear] = ACTIONS(5263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), + [anon_sym_BSLASHcitedate] = ACTIONS(5263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), + [anon_sym_BSLASHciteurl] = ACTIONS(5263), + [anon_sym_BSLASHfullcite] = ACTIONS(5263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), + [anon_sym_BSLASHcitealt] = ACTIONS(5263), + [anon_sym_BSLASHcitealp] = ACTIONS(5263), + [anon_sym_BSLASHcitetext] = ACTIONS(5263), + [anon_sym_BSLASHparencite] = ACTIONS(5263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHParencite] = ACTIONS(5263), + [anon_sym_BSLASHfootcite] = ACTIONS(5263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), + [anon_sym_BSLASHtextcite] = ACTIONS(5263), + [anon_sym_BSLASHTextcite] = ACTIONS(5263), + [anon_sym_BSLASHsmartcite] = ACTIONS(5263), + [anon_sym_BSLASHSmartcite] = ACTIONS(5263), + [anon_sym_BSLASHsupercite] = ACTIONS(5263), + [anon_sym_BSLASHautocite] = ACTIONS(5263), + [anon_sym_BSLASHAutocite] = ACTIONS(5263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), + [anon_sym_BSLASHvolcite] = ACTIONS(5263), + [anon_sym_BSLASHVolcite] = ACTIONS(5263), + [anon_sym_BSLASHpvolcite] = ACTIONS(5263), + [anon_sym_BSLASHPvolcite] = ACTIONS(5263), + [anon_sym_BSLASHfvolcite] = ACTIONS(5263), + [anon_sym_BSLASHftvolcite] = ACTIONS(5263), + [anon_sym_BSLASHsvolcite] = ACTIONS(5263), + [anon_sym_BSLASHSvolcite] = ACTIONS(5263), + [anon_sym_BSLASHtvolcite] = ACTIONS(5263), + [anon_sym_BSLASHTvolcite] = ACTIONS(5263), + [anon_sym_BSLASHavolcite] = ACTIONS(5263), + [anon_sym_BSLASHAvolcite] = ACTIONS(5263), + [anon_sym_BSLASHnotecite] = ACTIONS(5263), + [anon_sym_BSLASHNotecite] = ACTIONS(5263), + [anon_sym_BSLASHpnotecite] = ACTIONS(5263), + [anon_sym_BSLASHPnotecite] = ACTIONS(5263), + [anon_sym_BSLASHfnotecite] = ACTIONS(5263), + [anon_sym_BSLASHlabel] = ACTIONS(5263), + [anon_sym_BSLASHref] = ACTIONS(5263), + [anon_sym_BSLASHeqref] = ACTIONS(5263), + [anon_sym_BSLASHvref] = ACTIONS(5263), + [anon_sym_BSLASHVref] = ACTIONS(5263), + [anon_sym_BSLASHautoref] = ACTIONS(5263), + [anon_sym_BSLASHpageref] = ACTIONS(5263), + [anon_sym_BSLASHcref] = ACTIONS(5263), + [anon_sym_BSLASHCref] = ACTIONS(5263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnameCref] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), + [anon_sym_BSLASHlabelcref] = ACTIONS(5263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange] = ACTIONS(5263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), + [anon_sym_BSLASHnewlabel] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand] = ACTIONS(5263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdef] = ACTIONS(5263), + [anon_sym_BSLASHlet] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), + [anon_sym_BSLASHgls] = ACTIONS(5263), + [anon_sym_BSLASHGls] = ACTIONS(5263), + [anon_sym_BSLASHGLS] = ACTIONS(5263), + [anon_sym_BSLASHglspl] = ACTIONS(5263), + [anon_sym_BSLASHGlspl] = ACTIONS(5263), + [anon_sym_BSLASHGLSpl] = ACTIONS(5263), + [anon_sym_BSLASHglsdisp] = ACTIONS(5263), + [anon_sym_BSLASHglslink] = ACTIONS(5263), + [anon_sym_BSLASHglstext] = ACTIONS(5263), + [anon_sym_BSLASHGlstext] = ACTIONS(5263), + [anon_sym_BSLASHGLStext] = ACTIONS(5263), + [anon_sym_BSLASHglsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), + [anon_sym_BSLASHglsplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSplural] = ACTIONS(5263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), + [anon_sym_BSLASHglsname] = ACTIONS(5263), + [anon_sym_BSLASHGlsname] = ACTIONS(5263), + [anon_sym_BSLASHGLSname] = ACTIONS(5263), + [anon_sym_BSLASHglssymbol] = ACTIONS(5263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), + [anon_sym_BSLASHglsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), + [anon_sym_BSLASHglsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), + [anon_sym_BSLASHglsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), + [anon_sym_BSLASHglsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), + [anon_sym_BSLASHglsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), + [anon_sym_BSLASHnewacronym] = ACTIONS(5263), + [anon_sym_BSLASHacrshort] = ACTIONS(5263), + [anon_sym_BSLASHAcrshort] = ACTIONS(5263), + [anon_sym_BSLASHACRshort] = ACTIONS(5263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), + [anon_sym_BSLASHacrlong] = ACTIONS(5263), + [anon_sym_BSLASHAcrlong] = ACTIONS(5263), + [anon_sym_BSLASHACRlong] = ACTIONS(5263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), + [anon_sym_BSLASHacrfull] = ACTIONS(5263), + [anon_sym_BSLASHAcrfull] = ACTIONS(5263), + [anon_sym_BSLASHACRfull] = ACTIONS(5263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), + [anon_sym_BSLASHacs] = ACTIONS(5263), + [anon_sym_BSLASHAcs] = ACTIONS(5263), + [anon_sym_BSLASHacsp] = ACTIONS(5263), + [anon_sym_BSLASHAcsp] = ACTIONS(5263), + [anon_sym_BSLASHacl] = ACTIONS(5263), + [anon_sym_BSLASHAcl] = ACTIONS(5263), + [anon_sym_BSLASHaclp] = ACTIONS(5263), + [anon_sym_BSLASHAclp] = ACTIONS(5263), + [anon_sym_BSLASHacf] = ACTIONS(5263), + [anon_sym_BSLASHAcf] = ACTIONS(5263), + [anon_sym_BSLASHacfp] = ACTIONS(5263), + [anon_sym_BSLASHAcfp] = ACTIONS(5263), + [anon_sym_BSLASHac] = ACTIONS(5263), + [anon_sym_BSLASHAc] = ACTIONS(5263), + [anon_sym_BSLASHacp] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), + [anon_sym_BSLASHcolor] = ACTIONS(5263), + [anon_sym_BSLASHcolorbox] = ACTIONS(5263), + [anon_sym_BSLASHtextcolor] = ACTIONS(5263), + [anon_sym_BSLASHpagecolor] = ACTIONS(5263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [anon_sym_BSLASHtext] = ACTIONS(5263), + [anon_sym_BSLASHintertext] = ACTIONS(5263), + [anon_sym_shortintertext] = ACTIONS(5263), }, - [978] = { + [558] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [559] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), [sym_command_name] = ACTIONS(5273), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -306677,10 +194377,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), [anon_sym_BSLASHaddchap] = ACTIONS(5273), [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsection] = ACTIONS(5273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddsec] = ACTIONS(5273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5572), + [anon_sym_BSLASHaddsec] = ACTIONS(5569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5572), [anon_sym_BSLASHsubsection] = ACTIONS(5273), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), @@ -306710,9 +194410,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), [anon_sym_DOLLAR] = ACTIONS(5273), [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5271), [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHend] = ACTIONS(5273), + [anon_sym_BSLASHtitle] = ACTIONS(5273), + [anon_sym_BSLASHauthor] = ACTIONS(5273), [anon_sym_BSLASHusepackage] = ACTIONS(5273), [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), @@ -306934,17947 +194636,13498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(5273), [anon_sym_shortintertext] = ACTIONS(5273), }, - [979] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - [anon_sym_BSLASHtext] = ACTIONS(5295), - [anon_sym_BSLASHintertext] = ACTIONS(5295), - [anon_sym_shortintertext] = ACTIONS(5295), - }, - [980] = { - [sym_command_name] = ACTIONS(5303), + [560] = { + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(560), + [aux_sym__section_repeat2] = STATE(560), + [sym_command_name] = ACTIONS(5283), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5303), - [anon_sym_LPAREN] = ACTIONS(5301), - [anon_sym_RPAREN] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5301), - [anon_sym_COMMA] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_BSLASHpart] = ACTIONS(5303), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddpart] = ACTIONS(5303), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHchapter] = ACTIONS(5303), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddchap] = ACTIONS(5303), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsection] = ACTIONS(5303), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddsec] = ACTIONS(5303), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHparagraph] = ACTIONS(5303), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHitem] = ACTIONS(5303), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), - [anon_sym_LBRACE] = ACTIONS(5301), - [sym_word] = ACTIONS(5303), - [sym_placeholder] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_SLASH] = ACTIONS(5303), - [anon_sym_CARET] = ACTIONS(5303), - [anon_sym__] = ACTIONS(5303), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_BANG] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_SQUOTE] = ACTIONS(5303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), - [anon_sym_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), - [anon_sym_BSLASHbegin] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5303), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), - [anon_sym_BSLASHinclude] = ACTIONS(5303), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), - [anon_sym_BSLASHinput] = ACTIONS(5303), - [anon_sym_BSLASHsubfile] = ACTIONS(5303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), - [anon_sym_BSLASHbibliography] = ACTIONS(5303), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), - [anon_sym_BSLASHincludesvg] = ACTIONS(5303), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), - [anon_sym_BSLASHimport] = ACTIONS(5303), - [anon_sym_BSLASHsubimport] = ACTIONS(5303), - [anon_sym_BSLASHinputfrom] = ACTIONS(5303), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), - [anon_sym_BSLASHincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHcaption] = ACTIONS(5303), - [anon_sym_BSLASHcite] = ACTIONS(5303), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCite] = ACTIONS(5303), - [anon_sym_BSLASHnocite] = ACTIONS(5303), - [anon_sym_BSLASHcitet] = ACTIONS(5303), - [anon_sym_BSLASHcitep] = ACTIONS(5303), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteyear] = ACTIONS(5303), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitedate] = ACTIONS(5303), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteurl] = ACTIONS(5303), - [anon_sym_BSLASHfullcite] = ACTIONS(5303), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), - [anon_sym_BSLASHcitealt] = ACTIONS(5303), - [anon_sym_BSLASHcitealp] = ACTIONS(5303), - [anon_sym_BSLASHcitetext] = ACTIONS(5303), - [anon_sym_BSLASHparencite] = ACTIONS(5303), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHParencite] = ACTIONS(5303), - [anon_sym_BSLASHfootcite] = ACTIONS(5303), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), - [anon_sym_BSLASHtextcite] = ACTIONS(5303), - [anon_sym_BSLASHTextcite] = ACTIONS(5303), - [anon_sym_BSLASHsmartcite] = ACTIONS(5303), - [anon_sym_BSLASHSmartcite] = ACTIONS(5303), - [anon_sym_BSLASHsupercite] = ACTIONS(5303), - [anon_sym_BSLASHautocite] = ACTIONS(5303), - [anon_sym_BSLASHAutocite] = ACTIONS(5303), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHvolcite] = ACTIONS(5303), - [anon_sym_BSLASHVolcite] = ACTIONS(5303), - [anon_sym_BSLASHpvolcite] = ACTIONS(5303), - [anon_sym_BSLASHPvolcite] = ACTIONS(5303), - [anon_sym_BSLASHfvolcite] = ACTIONS(5303), - [anon_sym_BSLASHftvolcite] = ACTIONS(5303), - [anon_sym_BSLASHsvolcite] = ACTIONS(5303), - [anon_sym_BSLASHSvolcite] = ACTIONS(5303), - [anon_sym_BSLASHtvolcite] = ACTIONS(5303), - [anon_sym_BSLASHTvolcite] = ACTIONS(5303), - [anon_sym_BSLASHavolcite] = ACTIONS(5303), - [anon_sym_BSLASHAvolcite] = ACTIONS(5303), - [anon_sym_BSLASHnotecite] = ACTIONS(5303), - [anon_sym_BSLASHNotecite] = ACTIONS(5303), - [anon_sym_BSLASHpnotecite] = ACTIONS(5303), - [anon_sym_BSLASHPnotecite] = ACTIONS(5303), - [anon_sym_BSLASHfnotecite] = ACTIONS(5303), - [anon_sym_BSLASHlabel] = ACTIONS(5303), - [anon_sym_BSLASHref] = ACTIONS(5303), - [anon_sym_BSLASHeqref] = ACTIONS(5303), - [anon_sym_BSLASHvref] = ACTIONS(5303), - [anon_sym_BSLASHVref] = ACTIONS(5303), - [anon_sym_BSLASHautoref] = ACTIONS(5303), - [anon_sym_BSLASHpageref] = ACTIONS(5303), - [anon_sym_BSLASHcref] = ACTIONS(5303), - [anon_sym_BSLASHCref] = ACTIONS(5303), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnameCref] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHlabelcref] = ACTIONS(5303), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnewlabel] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdef] = ACTIONS(5303), - [anon_sym_BSLASHlet] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), - [anon_sym_BSLASHgls] = ACTIONS(5303), - [anon_sym_BSLASHGls] = ACTIONS(5303), - [anon_sym_BSLASHGLS] = ACTIONS(5303), - [anon_sym_BSLASHglspl] = ACTIONS(5303), - [anon_sym_BSLASHGlspl] = ACTIONS(5303), - [anon_sym_BSLASHGLSpl] = ACTIONS(5303), - [anon_sym_BSLASHglsdisp] = ACTIONS(5303), - [anon_sym_BSLASHglslink] = ACTIONS(5303), - [anon_sym_BSLASHglstext] = ACTIONS(5303), - [anon_sym_BSLASHGlstext] = ACTIONS(5303), - [anon_sym_BSLASHGLStext] = ACTIONS(5303), - [anon_sym_BSLASHglsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), - [anon_sym_BSLASHglsplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSplural] = ACTIONS(5303), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHglsname] = ACTIONS(5303), - [anon_sym_BSLASHGlsname] = ACTIONS(5303), - [anon_sym_BSLASHGLSname] = ACTIONS(5303), - [anon_sym_BSLASHglssymbol] = ACTIONS(5303), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), - [anon_sym_BSLASHglsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), - [anon_sym_BSLASHglsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), - [anon_sym_BSLASHglsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), - [anon_sym_BSLASHglsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), - [anon_sym_BSLASHglsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), - [anon_sym_BSLASHnewacronym] = ACTIONS(5303), - [anon_sym_BSLASHacrshort] = ACTIONS(5303), - [anon_sym_BSLASHAcrshort] = ACTIONS(5303), - [anon_sym_BSLASHACRshort] = ACTIONS(5303), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), - [anon_sym_BSLASHacrlong] = ACTIONS(5303), - [anon_sym_BSLASHAcrlong] = ACTIONS(5303), - [anon_sym_BSLASHACRlong] = ACTIONS(5303), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), - [anon_sym_BSLASHacrfull] = ACTIONS(5303), - [anon_sym_BSLASHAcrfull] = ACTIONS(5303), - [anon_sym_BSLASHACRfull] = ACTIONS(5303), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), - [anon_sym_BSLASHacs] = ACTIONS(5303), - [anon_sym_BSLASHAcs] = ACTIONS(5303), - [anon_sym_BSLASHacsp] = ACTIONS(5303), - [anon_sym_BSLASHAcsp] = ACTIONS(5303), - [anon_sym_BSLASHacl] = ACTIONS(5303), - [anon_sym_BSLASHAcl] = ACTIONS(5303), - [anon_sym_BSLASHaclp] = ACTIONS(5303), - [anon_sym_BSLASHAclp] = ACTIONS(5303), - [anon_sym_BSLASHacf] = ACTIONS(5303), - [anon_sym_BSLASHAcf] = ACTIONS(5303), - [anon_sym_BSLASHacfp] = ACTIONS(5303), - [anon_sym_BSLASHAcfp] = ACTIONS(5303), - [anon_sym_BSLASHac] = ACTIONS(5303), - [anon_sym_BSLASHAc] = ACTIONS(5303), - [anon_sym_BSLASHacp] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), - [anon_sym_BSLASHcolor] = ACTIONS(5303), - [anon_sym_BSLASHcolorbox] = ACTIONS(5303), - [anon_sym_BSLASHtextcolor] = ACTIONS(5303), - [anon_sym_BSLASHpagecolor] = ACTIONS(5303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), - [anon_sym_BSLASHtext] = ACTIONS(5303), - [anon_sym_BSLASHintertext] = ACTIONS(5303), - [anon_sym_shortintertext] = ACTIONS(5303), + [anon_sym_BSLASHiffalse] = ACTIONS(5283), + [anon_sym_LPAREN] = ACTIONS(5281), + [anon_sym_RPAREN] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5281), + [anon_sym_COMMA] = ACTIONS(5281), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_BSLASHpart] = ACTIONS(5283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddpart] = ACTIONS(5283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), + [anon_sym_BSLASHchapter] = ACTIONS(5575), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5578), + [anon_sym_BSLASHaddchap] = ACTIONS(5575), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5578), + [anon_sym_BSLASHsection] = ACTIONS(5283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHaddsec] = ACTIONS(5283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), + [anon_sym_BSLASHparagraph] = ACTIONS(5283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), + [anon_sym_BSLASHitem] = ACTIONS(5283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), + [anon_sym_LBRACE] = ACTIONS(5281), + [sym_word] = ACTIONS(5283), + [sym_placeholder] = ACTIONS(5281), + [anon_sym_PLUS] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_SLASH] = ACTIONS(5283), + [anon_sym_CARET] = ACTIONS(5283), + [anon_sym__] = ACTIONS(5283), + [anon_sym_LT] = ACTIONS(5283), + [anon_sym_GT] = ACTIONS(5283), + [anon_sym_BANG] = ACTIONS(5283), + [anon_sym_PIPE] = ACTIONS(5283), + [anon_sym_COLON] = ACTIONS(5283), + [anon_sym_SQUOTE] = ACTIONS(5283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), + [anon_sym_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), + [anon_sym_BSLASHbegin] = ACTIONS(5283), + [anon_sym_BSLASHend] = ACTIONS(5283), + [anon_sym_BSLASHtitle] = ACTIONS(5283), + [anon_sym_BSLASHauthor] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), + [anon_sym_BSLASHinclude] = ACTIONS(5283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), + [anon_sym_BSLASHinput] = ACTIONS(5283), + [anon_sym_BSLASHsubfile] = ACTIONS(5283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), + [anon_sym_BSLASHbibliography] = ACTIONS(5283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), + [anon_sym_BSLASHincludesvg] = ACTIONS(5283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), + [anon_sym_BSLASHimport] = ACTIONS(5283), + [anon_sym_BSLASHsubimport] = ACTIONS(5283), + [anon_sym_BSLASHinputfrom] = ACTIONS(5283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), + [anon_sym_BSLASHincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), + [anon_sym_BSLASHcaption] = ACTIONS(5283), + [anon_sym_BSLASHcite] = ACTIONS(5283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCite] = ACTIONS(5283), + [anon_sym_BSLASHnocite] = ACTIONS(5283), + [anon_sym_BSLASHcitet] = ACTIONS(5283), + [anon_sym_BSLASHcitep] = ACTIONS(5283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteyear] = ACTIONS(5283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), + [anon_sym_BSLASHcitedate] = ACTIONS(5283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), + [anon_sym_BSLASHciteurl] = ACTIONS(5283), + [anon_sym_BSLASHfullcite] = ACTIONS(5283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), + [anon_sym_BSLASHcitealt] = ACTIONS(5283), + [anon_sym_BSLASHcitealp] = ACTIONS(5283), + [anon_sym_BSLASHcitetext] = ACTIONS(5283), + [anon_sym_BSLASHparencite] = ACTIONS(5283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHParencite] = ACTIONS(5283), + [anon_sym_BSLASHfootcite] = ACTIONS(5283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), + [anon_sym_BSLASHtextcite] = ACTIONS(5283), + [anon_sym_BSLASHTextcite] = ACTIONS(5283), + [anon_sym_BSLASHsmartcite] = ACTIONS(5283), + [anon_sym_BSLASHSmartcite] = ACTIONS(5283), + [anon_sym_BSLASHsupercite] = ACTIONS(5283), + [anon_sym_BSLASHautocite] = ACTIONS(5283), + [anon_sym_BSLASHAutocite] = ACTIONS(5283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), + [anon_sym_BSLASHvolcite] = ACTIONS(5283), + [anon_sym_BSLASHVolcite] = ACTIONS(5283), + [anon_sym_BSLASHpvolcite] = ACTIONS(5283), + [anon_sym_BSLASHPvolcite] = ACTIONS(5283), + [anon_sym_BSLASHfvolcite] = ACTIONS(5283), + [anon_sym_BSLASHftvolcite] = ACTIONS(5283), + [anon_sym_BSLASHsvolcite] = ACTIONS(5283), + [anon_sym_BSLASHSvolcite] = ACTIONS(5283), + [anon_sym_BSLASHtvolcite] = ACTIONS(5283), + [anon_sym_BSLASHTvolcite] = ACTIONS(5283), + [anon_sym_BSLASHavolcite] = ACTIONS(5283), + [anon_sym_BSLASHAvolcite] = ACTIONS(5283), + [anon_sym_BSLASHnotecite] = ACTIONS(5283), + [anon_sym_BSLASHNotecite] = ACTIONS(5283), + [anon_sym_BSLASHpnotecite] = ACTIONS(5283), + [anon_sym_BSLASHPnotecite] = ACTIONS(5283), + [anon_sym_BSLASHfnotecite] = ACTIONS(5283), + [anon_sym_BSLASHlabel] = ACTIONS(5283), + [anon_sym_BSLASHref] = ACTIONS(5283), + [anon_sym_BSLASHeqref] = ACTIONS(5283), + [anon_sym_BSLASHvref] = ACTIONS(5283), + [anon_sym_BSLASHVref] = ACTIONS(5283), + [anon_sym_BSLASHautoref] = ACTIONS(5283), + [anon_sym_BSLASHpageref] = ACTIONS(5283), + [anon_sym_BSLASHcref] = ACTIONS(5283), + [anon_sym_BSLASHCref] = ACTIONS(5283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnameCref] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), + [anon_sym_BSLASHlabelcref] = ACTIONS(5283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange] = ACTIONS(5283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), + [anon_sym_BSLASHnewlabel] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand] = ACTIONS(5283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdef] = ACTIONS(5283), + [anon_sym_BSLASHlet] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5283), + [anon_sym_BSLASHacrshort] = ACTIONS(5283), + [anon_sym_BSLASHAcrshort] = ACTIONS(5283), + [anon_sym_BSLASHACRshort] = ACTIONS(5283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), + [anon_sym_BSLASHacrlong] = ACTIONS(5283), + [anon_sym_BSLASHAcrlong] = ACTIONS(5283), + [anon_sym_BSLASHACRlong] = ACTIONS(5283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), + [anon_sym_BSLASHacrfull] = ACTIONS(5283), + [anon_sym_BSLASHAcrfull] = ACTIONS(5283), + [anon_sym_BSLASHACRfull] = ACTIONS(5283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), + [anon_sym_BSLASHacs] = ACTIONS(5283), + [anon_sym_BSLASHAcs] = ACTIONS(5283), + [anon_sym_BSLASHacsp] = ACTIONS(5283), + [anon_sym_BSLASHAcsp] = ACTIONS(5283), + [anon_sym_BSLASHacl] = ACTIONS(5283), + [anon_sym_BSLASHAcl] = ACTIONS(5283), + [anon_sym_BSLASHaclp] = ACTIONS(5283), + [anon_sym_BSLASHAclp] = ACTIONS(5283), + [anon_sym_BSLASHacf] = ACTIONS(5283), + [anon_sym_BSLASHAcf] = ACTIONS(5283), + [anon_sym_BSLASHacfp] = ACTIONS(5283), + [anon_sym_BSLASHAcfp] = ACTIONS(5283), + [anon_sym_BSLASHac] = ACTIONS(5283), + [anon_sym_BSLASHAc] = ACTIONS(5283), + [anon_sym_BSLASHacp] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), + [anon_sym_BSLASHcolor] = ACTIONS(5283), + [anon_sym_BSLASHcolorbox] = ACTIONS(5283), + [anon_sym_BSLASHtextcolor] = ACTIONS(5283), + [anon_sym_BSLASHpagecolor] = ACTIONS(5283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHtext] = ACTIONS(5283), + [anon_sym_BSLASHintertext] = ACTIONS(5283), + [anon_sym_shortintertext] = ACTIONS(5283), }, - [981] = { - [sym_command_name] = ACTIONS(5307), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5307), - [anon_sym_LPAREN] = ACTIONS(5305), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5305), - [anon_sym_COMMA] = ACTIONS(5305), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_BSLASHpart] = ACTIONS(5307), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddpart] = ACTIONS(5307), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHchapter] = ACTIONS(5307), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddchap] = ACTIONS(5307), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsection] = ACTIONS(5307), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddsec] = ACTIONS(5307), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHparagraph] = ACTIONS(5307), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHitem] = ACTIONS(5307), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5305), - [anon_sym_LBRACE] = ACTIONS(5305), - [sym_word] = ACTIONS(5307), - [sym_placeholder] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5307), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_STAR] = ACTIONS(5307), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_CARET] = ACTIONS(5307), - [anon_sym__] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5307), - [anon_sym_GT] = ACTIONS(5307), - [anon_sym_BANG] = ACTIONS(5307), - [anon_sym_PIPE] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_SQUOTE] = ACTIONS(5307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5305), - [anon_sym_BSLASHbegin] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5307), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5307), - [anon_sym_BSLASHinclude] = ACTIONS(5307), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5307), - [anon_sym_BSLASHinput] = ACTIONS(5307), - [anon_sym_BSLASHsubfile] = ACTIONS(5307), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5307), - [anon_sym_BSLASHbibliography] = ACTIONS(5307), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5307), - [anon_sym_BSLASHincludesvg] = ACTIONS(5307), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5307), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5307), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5307), - [anon_sym_BSLASHimport] = ACTIONS(5307), - [anon_sym_BSLASHsubimport] = ACTIONS(5307), - [anon_sym_BSLASHinputfrom] = ACTIONS(5307), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5307), - [anon_sym_BSLASHincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHcaption] = ACTIONS(5307), - [anon_sym_BSLASHcite] = ACTIONS(5307), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCite] = ACTIONS(5307), - [anon_sym_BSLASHnocite] = ACTIONS(5307), - [anon_sym_BSLASHcitet] = ACTIONS(5307), - [anon_sym_BSLASHcitep] = ACTIONS(5307), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteyear] = ACTIONS(5307), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitedate] = ACTIONS(5307), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteurl] = ACTIONS(5307), - [anon_sym_BSLASHfullcite] = ACTIONS(5307), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5307), - [anon_sym_BSLASHcitealt] = ACTIONS(5307), - [anon_sym_BSLASHcitealp] = ACTIONS(5307), - [anon_sym_BSLASHcitetext] = ACTIONS(5307), - [anon_sym_BSLASHparencite] = ACTIONS(5307), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHParencite] = ACTIONS(5307), - [anon_sym_BSLASHfootcite] = ACTIONS(5307), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5307), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5307), - [anon_sym_BSLASHtextcite] = ACTIONS(5307), - [anon_sym_BSLASHTextcite] = ACTIONS(5307), - [anon_sym_BSLASHsmartcite] = ACTIONS(5307), - [anon_sym_BSLASHSmartcite] = ACTIONS(5307), - [anon_sym_BSLASHsupercite] = ACTIONS(5307), - [anon_sym_BSLASHautocite] = ACTIONS(5307), - [anon_sym_BSLASHAutocite] = ACTIONS(5307), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHvolcite] = ACTIONS(5307), - [anon_sym_BSLASHVolcite] = ACTIONS(5307), - [anon_sym_BSLASHpvolcite] = ACTIONS(5307), - [anon_sym_BSLASHPvolcite] = ACTIONS(5307), - [anon_sym_BSLASHfvolcite] = ACTIONS(5307), - [anon_sym_BSLASHftvolcite] = ACTIONS(5307), - [anon_sym_BSLASHsvolcite] = ACTIONS(5307), - [anon_sym_BSLASHSvolcite] = ACTIONS(5307), - [anon_sym_BSLASHtvolcite] = ACTIONS(5307), - [anon_sym_BSLASHTvolcite] = ACTIONS(5307), - [anon_sym_BSLASHavolcite] = ACTIONS(5307), - [anon_sym_BSLASHAvolcite] = ACTIONS(5307), - [anon_sym_BSLASHnotecite] = ACTIONS(5307), - [anon_sym_BSLASHNotecite] = ACTIONS(5307), - [anon_sym_BSLASHpnotecite] = ACTIONS(5307), - [anon_sym_BSLASHPnotecite] = ACTIONS(5307), - [anon_sym_BSLASHfnotecite] = ACTIONS(5307), - [anon_sym_BSLASHlabel] = ACTIONS(5307), - [anon_sym_BSLASHref] = ACTIONS(5307), - [anon_sym_BSLASHeqref] = ACTIONS(5307), - [anon_sym_BSLASHvref] = ACTIONS(5307), - [anon_sym_BSLASHVref] = ACTIONS(5307), - [anon_sym_BSLASHautoref] = ACTIONS(5307), - [anon_sym_BSLASHpageref] = ACTIONS(5307), - [anon_sym_BSLASHcref] = ACTIONS(5307), - [anon_sym_BSLASHCref] = ACTIONS(5307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnameCref] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHlabelcref] = ACTIONS(5307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnewlabel] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdef] = ACTIONS(5307), - [anon_sym_BSLASHlet] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5307), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5307), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5307), - [anon_sym_BSLASHgls] = ACTIONS(5307), - [anon_sym_BSLASHGls] = ACTIONS(5307), - [anon_sym_BSLASHGLS] = ACTIONS(5307), - [anon_sym_BSLASHglspl] = ACTIONS(5307), - [anon_sym_BSLASHGlspl] = ACTIONS(5307), - [anon_sym_BSLASHGLSpl] = ACTIONS(5307), - [anon_sym_BSLASHglsdisp] = ACTIONS(5307), - [anon_sym_BSLASHglslink] = ACTIONS(5307), - [anon_sym_BSLASHglstext] = ACTIONS(5307), - [anon_sym_BSLASHGlstext] = ACTIONS(5307), - [anon_sym_BSLASHGLStext] = ACTIONS(5307), - [anon_sym_BSLASHglsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5307), - [anon_sym_BSLASHglsplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSplural] = ACTIONS(5307), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHglsname] = ACTIONS(5307), - [anon_sym_BSLASHGlsname] = ACTIONS(5307), - [anon_sym_BSLASHGLSname] = ACTIONS(5307), - [anon_sym_BSLASHglssymbol] = ACTIONS(5307), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5307), - [anon_sym_BSLASHglsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5307), - [anon_sym_BSLASHglsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5307), - [anon_sym_BSLASHglsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5307), - [anon_sym_BSLASHglsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5307), - [anon_sym_BSLASHglsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5307), - [anon_sym_BSLASHnewacronym] = ACTIONS(5307), - [anon_sym_BSLASHacrshort] = ACTIONS(5307), - [anon_sym_BSLASHAcrshort] = ACTIONS(5307), - [anon_sym_BSLASHACRshort] = ACTIONS(5307), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5307), - [anon_sym_BSLASHacrlong] = ACTIONS(5307), - [anon_sym_BSLASHAcrlong] = ACTIONS(5307), - [anon_sym_BSLASHACRlong] = ACTIONS(5307), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5307), - [anon_sym_BSLASHacrfull] = ACTIONS(5307), - [anon_sym_BSLASHAcrfull] = ACTIONS(5307), - [anon_sym_BSLASHACRfull] = ACTIONS(5307), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5307), - [anon_sym_BSLASHacs] = ACTIONS(5307), - [anon_sym_BSLASHAcs] = ACTIONS(5307), - [anon_sym_BSLASHacsp] = ACTIONS(5307), - [anon_sym_BSLASHAcsp] = ACTIONS(5307), - [anon_sym_BSLASHacl] = ACTIONS(5307), - [anon_sym_BSLASHAcl] = ACTIONS(5307), - [anon_sym_BSLASHaclp] = ACTIONS(5307), - [anon_sym_BSLASHAclp] = ACTIONS(5307), - [anon_sym_BSLASHacf] = ACTIONS(5307), - [anon_sym_BSLASHAcf] = ACTIONS(5307), - [anon_sym_BSLASHacfp] = ACTIONS(5307), - [anon_sym_BSLASHAcfp] = ACTIONS(5307), - [anon_sym_BSLASHac] = ACTIONS(5307), - [anon_sym_BSLASHAc] = ACTIONS(5307), - [anon_sym_BSLASHacp] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5307), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5307), - [anon_sym_BSLASHcolor] = ACTIONS(5307), - [anon_sym_BSLASHcolorbox] = ACTIONS(5307), - [anon_sym_BSLASHtextcolor] = ACTIONS(5307), - [anon_sym_BSLASHpagecolor] = ACTIONS(5307), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5307), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), - [anon_sym_BSLASHtext] = ACTIONS(5307), - [anon_sym_BSLASHintertext] = ACTIONS(5307), - [anon_sym_shortintertext] = ACTIONS(5307), + [561] = { + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(561), + [aux_sym__section_repeat1] = STATE(561), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5581), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5584), + [anon_sym_BSLASHaddpart] = ACTIONS(5581), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5584), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHend] = ACTIONS(5293), + [anon_sym_BSLASHtitle] = ACTIONS(5293), + [anon_sym_BSLASHauthor] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5293), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), }, - [982] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), + [562] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), }, - [983] = { - [sym_command_name] = ACTIONS(5327), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_BSLASHpart] = ACTIONS(5327), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5327), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5327), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5327), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5327), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5327), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5327), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5327), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), + [563] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym_BSLASHpart] = ACTIONS(2097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddpart] = ACTIONS(2097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2095), + [anon_sym_BSLASHchapter] = ACTIONS(2097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddchap] = ACTIONS(2097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsection] = ACTIONS(2097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHaddsec] = ACTIONS(2097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2095), + [anon_sym_BSLASHparagraph] = ACTIONS(2097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2095), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(2095), + [sym_word] = ACTIONS(2097), + [sym_placeholder] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym__] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2095), + [anon_sym_BSLASHbegin] = ACTIONS(2097), + [anon_sym_BSLASHend] = ACTIONS(2097), + [anon_sym_BSLASHtitle] = ACTIONS(2097), + [anon_sym_BSLASHauthor] = ACTIONS(2097), + [anon_sym_BSLASHusepackage] = ACTIONS(2097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2097), + [anon_sym_BSLASHinclude] = ACTIONS(2097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2097), + [anon_sym_BSLASHinput] = ACTIONS(2097), + [anon_sym_BSLASHsubfile] = ACTIONS(2097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [anon_sym_BSLASHbibliography] = ACTIONS(2097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2097), + [anon_sym_BSLASHincludesvg] = ACTIONS(2097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2097), + [anon_sym_BSLASHimport] = ACTIONS(2097), + [anon_sym_BSLASHsubimport] = ACTIONS(2097), + [anon_sym_BSLASHinputfrom] = ACTIONS(2097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2097), + [anon_sym_BSLASHincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2097), + [anon_sym_BSLASHcaption] = ACTIONS(2097), + [anon_sym_BSLASHcite] = ACTIONS(2097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCite] = ACTIONS(2097), + [anon_sym_BSLASHnocite] = ACTIONS(2097), + [anon_sym_BSLASHcitet] = ACTIONS(2097), + [anon_sym_BSLASHcitep] = ACTIONS(2097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteauthor] = ACTIONS(2097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitetitle] = ACTIONS(2097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteyear] = ACTIONS(2097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2095), + [anon_sym_BSLASHcitedate] = ACTIONS(2097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2095), + [anon_sym_BSLASHciteurl] = ACTIONS(2097), + [anon_sym_BSLASHfullcite] = ACTIONS(2097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2097), + [anon_sym_BSLASHcitealt] = ACTIONS(2097), + [anon_sym_BSLASHcitealp] = ACTIONS(2097), + [anon_sym_BSLASHcitetext] = ACTIONS(2097), + [anon_sym_BSLASHparencite] = ACTIONS(2097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHParencite] = ACTIONS(2097), + [anon_sym_BSLASHfootcite] = ACTIONS(2097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2097), + [anon_sym_BSLASHtextcite] = ACTIONS(2097), + [anon_sym_BSLASHTextcite] = ACTIONS(2097), + [anon_sym_BSLASHsmartcite] = ACTIONS(2097), + [anon_sym_BSLASHSmartcite] = ACTIONS(2097), + [anon_sym_BSLASHsupercite] = ACTIONS(2097), + [anon_sym_BSLASHautocite] = ACTIONS(2097), + [anon_sym_BSLASHAutocite] = ACTIONS(2097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2095), + [anon_sym_BSLASHvolcite] = ACTIONS(2097), + [anon_sym_BSLASHVolcite] = ACTIONS(2097), + [anon_sym_BSLASHpvolcite] = ACTIONS(2097), + [anon_sym_BSLASHPvolcite] = ACTIONS(2097), + [anon_sym_BSLASHfvolcite] = ACTIONS(2097), + [anon_sym_BSLASHftvolcite] = ACTIONS(2097), + [anon_sym_BSLASHsvolcite] = ACTIONS(2097), + [anon_sym_BSLASHSvolcite] = ACTIONS(2097), + [anon_sym_BSLASHtvolcite] = ACTIONS(2097), + [anon_sym_BSLASHTvolcite] = ACTIONS(2097), + [anon_sym_BSLASHavolcite] = ACTIONS(2097), + [anon_sym_BSLASHAvolcite] = ACTIONS(2097), + [anon_sym_BSLASHnotecite] = ACTIONS(2097), + [anon_sym_BSLASHNotecite] = ACTIONS(2097), + [anon_sym_BSLASHpnotecite] = ACTIONS(2097), + [anon_sym_BSLASHPnotecite] = ACTIONS(2097), + [anon_sym_BSLASHfnotecite] = ACTIONS(2097), + [anon_sym_BSLASHlabel] = ACTIONS(2097), + [anon_sym_BSLASHref] = ACTIONS(2097), + [anon_sym_BSLASHeqref] = ACTIONS(2097), + [anon_sym_BSLASHvref] = ACTIONS(2097), + [anon_sym_BSLASHVref] = ACTIONS(2097), + [anon_sym_BSLASHautoref] = ACTIONS(2097), + [anon_sym_BSLASHpageref] = ACTIONS(2097), + [anon_sym_BSLASHcref] = ACTIONS(2097), + [anon_sym_BSLASHCref] = ACTIONS(2097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnameCref] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2097), + [anon_sym_BSLASHlabelcref] = ACTIONS(2097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange] = ACTIONS(2097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHCrefrange] = ACTIONS(2097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2095), + [anon_sym_BSLASHnewlabel] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand] = ACTIONS(2097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdef] = ACTIONS(2097), + [anon_sym_BSLASHlet] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2097), + [anon_sym_BSLASHgls] = ACTIONS(2097), + [anon_sym_BSLASHGls] = ACTIONS(2097), + [anon_sym_BSLASHGLS] = ACTIONS(2097), + [anon_sym_BSLASHglspl] = ACTIONS(2097), + [anon_sym_BSLASHGlspl] = ACTIONS(2097), + [anon_sym_BSLASHGLSpl] = ACTIONS(2097), + [anon_sym_BSLASHglsdisp] = ACTIONS(2097), + [anon_sym_BSLASHglslink] = ACTIONS(2097), + [anon_sym_BSLASHglstext] = ACTIONS(2097), + [anon_sym_BSLASHGlstext] = ACTIONS(2097), + [anon_sym_BSLASHGLStext] = ACTIONS(2097), + [anon_sym_BSLASHglsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2097), + [anon_sym_BSLASHglsplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSplural] = ACTIONS(2097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2097), + [anon_sym_BSLASHglsname] = ACTIONS(2097), + [anon_sym_BSLASHGlsname] = ACTIONS(2097), + [anon_sym_BSLASHGLSname] = ACTIONS(2097), + [anon_sym_BSLASHglssymbol] = ACTIONS(2097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2097), + [anon_sym_BSLASHglsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2097), + [anon_sym_BSLASHglsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2097), + [anon_sym_BSLASHglsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2097), + [anon_sym_BSLASHglsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2097), + [anon_sym_BSLASHglsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2097), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2097), + [anon_sym_BSLASHAcrshort] = ACTIONS(2097), + [anon_sym_BSLASHACRshort] = ACTIONS(2097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2097), + [anon_sym_BSLASHacrlong] = ACTIONS(2097), + [anon_sym_BSLASHAcrlong] = ACTIONS(2097), + [anon_sym_BSLASHACRlong] = ACTIONS(2097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2097), + [anon_sym_BSLASHacrfull] = ACTIONS(2097), + [anon_sym_BSLASHAcrfull] = ACTIONS(2097), + [anon_sym_BSLASHACRfull] = ACTIONS(2097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2097), + [anon_sym_BSLASHacs] = ACTIONS(2097), + [anon_sym_BSLASHAcs] = ACTIONS(2097), + [anon_sym_BSLASHacsp] = ACTIONS(2097), + [anon_sym_BSLASHAcsp] = ACTIONS(2097), + [anon_sym_BSLASHacl] = ACTIONS(2097), + [anon_sym_BSLASHAcl] = ACTIONS(2097), + [anon_sym_BSLASHaclp] = ACTIONS(2097), + [anon_sym_BSLASHAclp] = ACTIONS(2097), + [anon_sym_BSLASHacf] = ACTIONS(2097), + [anon_sym_BSLASHAcf] = ACTIONS(2097), + [anon_sym_BSLASHacfp] = ACTIONS(2097), + [anon_sym_BSLASHAcfp] = ACTIONS(2097), + [anon_sym_BSLASHac] = ACTIONS(2097), + [anon_sym_BSLASHAc] = ACTIONS(2097), + [anon_sym_BSLASHacp] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2097), + [anon_sym_BSLASHcolor] = ACTIONS(2097), + [anon_sym_BSLASHcolorbox] = ACTIONS(2097), + [anon_sym_BSLASHtextcolor] = ACTIONS(2097), + [anon_sym_BSLASHpagecolor] = ACTIONS(2097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2097), + [anon_sym_BSLASHtext] = ACTIONS(2097), + [anon_sym_BSLASHintertext] = ACTIONS(2097), + [anon_sym_shortintertext] = ACTIONS(2097), }, - [984] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), + [564] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), }, - [985] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), + [565] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHend] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [986] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [566] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(2073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_BSLASHpart] = ACTIONS(2073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddpart] = ACTIONS(2073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2071), + [anon_sym_BSLASHchapter] = ACTIONS(2073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddchap] = ACTIONS(2073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsection] = ACTIONS(2073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHaddsec] = ACTIONS(2073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2071), + [anon_sym_BSLASHparagraph] = ACTIONS(2073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(2073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [sym_word] = ACTIONS(2073), + [sym_placeholder] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym__] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2071), + [anon_sym_BSLASHbegin] = ACTIONS(2073), + [anon_sym_BSLASHend] = ACTIONS(2073), + [anon_sym_BSLASHtitle] = ACTIONS(2073), + [anon_sym_BSLASHauthor] = ACTIONS(2073), + [anon_sym_BSLASHusepackage] = ACTIONS(2073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2073), + [anon_sym_BSLASHinclude] = ACTIONS(2073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2073), + [anon_sym_BSLASHinput] = ACTIONS(2073), + [anon_sym_BSLASHsubfile] = ACTIONS(2073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2073), + [anon_sym_BSLASHbibliography] = ACTIONS(2073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2073), + [anon_sym_BSLASHincludesvg] = ACTIONS(2073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2073), + [anon_sym_BSLASHimport] = ACTIONS(2073), + [anon_sym_BSLASHsubimport] = ACTIONS(2073), + [anon_sym_BSLASHinputfrom] = ACTIONS(2073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2073), + [anon_sym_BSLASHincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2073), + [anon_sym_BSLASHcaption] = ACTIONS(2073), + [anon_sym_BSLASHcite] = ACTIONS(2073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCite] = ACTIONS(2073), + [anon_sym_BSLASHnocite] = ACTIONS(2073), + [anon_sym_BSLASHcitet] = ACTIONS(2073), + [anon_sym_BSLASHcitep] = ACTIONS(2073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteauthor] = ACTIONS(2073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitetitle] = ACTIONS(2073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteyear] = ACTIONS(2073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2071), + [anon_sym_BSLASHcitedate] = ACTIONS(2073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2071), + [anon_sym_BSLASHciteurl] = ACTIONS(2073), + [anon_sym_BSLASHfullcite] = ACTIONS(2073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2073), + [anon_sym_BSLASHcitealt] = ACTIONS(2073), + [anon_sym_BSLASHcitealp] = ACTIONS(2073), + [anon_sym_BSLASHcitetext] = ACTIONS(2073), + [anon_sym_BSLASHparencite] = ACTIONS(2073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHParencite] = ACTIONS(2073), + [anon_sym_BSLASHfootcite] = ACTIONS(2073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2073), + [anon_sym_BSLASHtextcite] = ACTIONS(2073), + [anon_sym_BSLASHTextcite] = ACTIONS(2073), + [anon_sym_BSLASHsmartcite] = ACTIONS(2073), + [anon_sym_BSLASHSmartcite] = ACTIONS(2073), + [anon_sym_BSLASHsupercite] = ACTIONS(2073), + [anon_sym_BSLASHautocite] = ACTIONS(2073), + [anon_sym_BSLASHAutocite] = ACTIONS(2073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2071), + [anon_sym_BSLASHvolcite] = ACTIONS(2073), + [anon_sym_BSLASHVolcite] = ACTIONS(2073), + [anon_sym_BSLASHpvolcite] = ACTIONS(2073), + [anon_sym_BSLASHPvolcite] = ACTIONS(2073), + [anon_sym_BSLASHfvolcite] = ACTIONS(2073), + [anon_sym_BSLASHftvolcite] = ACTIONS(2073), + [anon_sym_BSLASHsvolcite] = ACTIONS(2073), + [anon_sym_BSLASHSvolcite] = ACTIONS(2073), + [anon_sym_BSLASHtvolcite] = ACTIONS(2073), + [anon_sym_BSLASHTvolcite] = ACTIONS(2073), + [anon_sym_BSLASHavolcite] = ACTIONS(2073), + [anon_sym_BSLASHAvolcite] = ACTIONS(2073), + [anon_sym_BSLASHnotecite] = ACTIONS(2073), + [anon_sym_BSLASHNotecite] = ACTIONS(2073), + [anon_sym_BSLASHpnotecite] = ACTIONS(2073), + [anon_sym_BSLASHPnotecite] = ACTIONS(2073), + [anon_sym_BSLASHfnotecite] = ACTIONS(2073), + [anon_sym_BSLASHlabel] = ACTIONS(2073), + [anon_sym_BSLASHref] = ACTIONS(2073), + [anon_sym_BSLASHeqref] = ACTIONS(2073), + [anon_sym_BSLASHvref] = ACTIONS(2073), + [anon_sym_BSLASHVref] = ACTIONS(2073), + [anon_sym_BSLASHautoref] = ACTIONS(2073), + [anon_sym_BSLASHpageref] = ACTIONS(2073), + [anon_sym_BSLASHcref] = ACTIONS(2073), + [anon_sym_BSLASHCref] = ACTIONS(2073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnameCref] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2073), + [anon_sym_BSLASHlabelcref] = ACTIONS(2073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange] = ACTIONS(2073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHCrefrange] = ACTIONS(2073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2071), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdef] = ACTIONS(2073), + [anon_sym_BSLASHlet] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2073), + [anon_sym_BSLASHgls] = ACTIONS(2073), + [anon_sym_BSLASHGls] = ACTIONS(2073), + [anon_sym_BSLASHGLS] = ACTIONS(2073), + [anon_sym_BSLASHglspl] = ACTIONS(2073), + [anon_sym_BSLASHGlspl] = ACTIONS(2073), + [anon_sym_BSLASHGLSpl] = ACTIONS(2073), + [anon_sym_BSLASHglsdisp] = ACTIONS(2073), + [anon_sym_BSLASHglslink] = ACTIONS(2073), + [anon_sym_BSLASHglstext] = ACTIONS(2073), + [anon_sym_BSLASHGlstext] = ACTIONS(2073), + [anon_sym_BSLASHGLStext] = ACTIONS(2073), + [anon_sym_BSLASHglsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2073), + [anon_sym_BSLASHglsplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSplural] = ACTIONS(2073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2073), + [anon_sym_BSLASHglsname] = ACTIONS(2073), + [anon_sym_BSLASHGlsname] = ACTIONS(2073), + [anon_sym_BSLASHGLSname] = ACTIONS(2073), + [anon_sym_BSLASHglssymbol] = ACTIONS(2073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2073), + [anon_sym_BSLASHglsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2073), + [anon_sym_BSLASHglsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2073), + [anon_sym_BSLASHglsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2073), + [anon_sym_BSLASHglsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2073), + [anon_sym_BSLASHglsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2073), + [anon_sym_BSLASHnewacronym] = ACTIONS(2073), + [anon_sym_BSLASHacrshort] = ACTIONS(2073), + [anon_sym_BSLASHAcrshort] = ACTIONS(2073), + [anon_sym_BSLASHACRshort] = ACTIONS(2073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2073), + [anon_sym_BSLASHacrlong] = ACTIONS(2073), + [anon_sym_BSLASHAcrlong] = ACTIONS(2073), + [anon_sym_BSLASHACRlong] = ACTIONS(2073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2073), + [anon_sym_BSLASHacrfull] = ACTIONS(2073), + [anon_sym_BSLASHAcrfull] = ACTIONS(2073), + [anon_sym_BSLASHACRfull] = ACTIONS(2073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2073), + [anon_sym_BSLASHacs] = ACTIONS(2073), + [anon_sym_BSLASHAcs] = ACTIONS(2073), + [anon_sym_BSLASHacsp] = ACTIONS(2073), + [anon_sym_BSLASHAcsp] = ACTIONS(2073), + [anon_sym_BSLASHacl] = ACTIONS(2073), + [anon_sym_BSLASHAcl] = ACTIONS(2073), + [anon_sym_BSLASHaclp] = ACTIONS(2073), + [anon_sym_BSLASHAclp] = ACTIONS(2073), + [anon_sym_BSLASHacf] = ACTIONS(2073), + [anon_sym_BSLASHAcf] = ACTIONS(2073), + [anon_sym_BSLASHacfp] = ACTIONS(2073), + [anon_sym_BSLASHAcfp] = ACTIONS(2073), + [anon_sym_BSLASHac] = ACTIONS(2073), + [anon_sym_BSLASHAc] = ACTIONS(2073), + [anon_sym_BSLASHacp] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2073), + [anon_sym_BSLASHcolor] = ACTIONS(2073), + [anon_sym_BSLASHcolorbox] = ACTIONS(2073), + [anon_sym_BSLASHtextcolor] = ACTIONS(2073), + [anon_sym_BSLASHpagecolor] = ACTIONS(2073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2073), + [anon_sym_BSLASHtext] = ACTIONS(2073), + [anon_sym_BSLASHintertext] = ACTIONS(2073), + [anon_sym_shortintertext] = ACTIONS(2073), }, - [987] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASH_RBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [567] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [568] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [569] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHend] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [570] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(2055), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHend] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [571] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(2055), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_BSLASHpart] = ACTIONS(2055), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddpart] = ACTIONS(2055), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2053), + [anon_sym_BSLASHchapter] = ACTIONS(2055), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddchap] = ACTIONS(2055), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsection] = ACTIONS(2055), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHaddsec] = ACTIONS(2055), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2055), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2053), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2055), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2053), + [anon_sym_BSLASHitem] = ACTIONS(2055), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [sym_word] = ACTIONS(2055), + [sym_placeholder] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym__] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2053), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2053), + [anon_sym_BSLASHbegin] = ACTIONS(2055), + [anon_sym_BSLASHend] = ACTIONS(2055), + [anon_sym_BSLASHtitle] = ACTIONS(2055), + [anon_sym_BSLASHauthor] = ACTIONS(2055), + [anon_sym_BSLASHusepackage] = ACTIONS(2055), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2055), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2055), + [anon_sym_BSLASHinclude] = ACTIONS(2055), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2055), + [anon_sym_BSLASHinput] = ACTIONS(2055), + [anon_sym_BSLASHsubfile] = ACTIONS(2055), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2055), + [anon_sym_BSLASHbibliography] = ACTIONS(2055), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2055), + [anon_sym_BSLASHincludesvg] = ACTIONS(2055), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2055), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2055), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2055), + [anon_sym_BSLASHimport] = ACTIONS(2055), + [anon_sym_BSLASHsubimport] = ACTIONS(2055), + [anon_sym_BSLASHinputfrom] = ACTIONS(2055), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2055), + [anon_sym_BSLASHincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2055), + [anon_sym_BSLASHcaption] = ACTIONS(2055), + [anon_sym_BSLASHcite] = ACTIONS(2055), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCite] = ACTIONS(2055), + [anon_sym_BSLASHnocite] = ACTIONS(2055), + [anon_sym_BSLASHcitet] = ACTIONS(2055), + [anon_sym_BSLASHcitep] = ACTIONS(2055), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteauthor] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitetitle] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteyear] = ACTIONS(2055), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2053), + [anon_sym_BSLASHcitedate] = ACTIONS(2055), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2053), + [anon_sym_BSLASHciteurl] = ACTIONS(2055), + [anon_sym_BSLASHfullcite] = ACTIONS(2055), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2055), + [anon_sym_BSLASHcitealt] = ACTIONS(2055), + [anon_sym_BSLASHcitealp] = ACTIONS(2055), + [anon_sym_BSLASHcitetext] = ACTIONS(2055), + [anon_sym_BSLASHparencite] = ACTIONS(2055), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHParencite] = ACTIONS(2055), + [anon_sym_BSLASHfootcite] = ACTIONS(2055), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2055), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2055), + [anon_sym_BSLASHtextcite] = ACTIONS(2055), + [anon_sym_BSLASHTextcite] = ACTIONS(2055), + [anon_sym_BSLASHsmartcite] = ACTIONS(2055), + [anon_sym_BSLASHSmartcite] = ACTIONS(2055), + [anon_sym_BSLASHsupercite] = ACTIONS(2055), + [anon_sym_BSLASHautocite] = ACTIONS(2055), + [anon_sym_BSLASHAutocite] = ACTIONS(2055), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2053), + [anon_sym_BSLASHvolcite] = ACTIONS(2055), + [anon_sym_BSLASHVolcite] = ACTIONS(2055), + [anon_sym_BSLASHpvolcite] = ACTIONS(2055), + [anon_sym_BSLASHPvolcite] = ACTIONS(2055), + [anon_sym_BSLASHfvolcite] = ACTIONS(2055), + [anon_sym_BSLASHftvolcite] = ACTIONS(2055), + [anon_sym_BSLASHsvolcite] = ACTIONS(2055), + [anon_sym_BSLASHSvolcite] = ACTIONS(2055), + [anon_sym_BSLASHtvolcite] = ACTIONS(2055), + [anon_sym_BSLASHTvolcite] = ACTIONS(2055), + [anon_sym_BSLASHavolcite] = ACTIONS(2055), + [anon_sym_BSLASHAvolcite] = ACTIONS(2055), + [anon_sym_BSLASHnotecite] = ACTIONS(2055), + [anon_sym_BSLASHNotecite] = ACTIONS(2055), + [anon_sym_BSLASHpnotecite] = ACTIONS(2055), + [anon_sym_BSLASHPnotecite] = ACTIONS(2055), + [anon_sym_BSLASHfnotecite] = ACTIONS(2055), + [anon_sym_BSLASHlabel] = ACTIONS(2055), + [anon_sym_BSLASHref] = ACTIONS(2055), + [anon_sym_BSLASHeqref] = ACTIONS(2055), + [anon_sym_BSLASHvref] = ACTIONS(2055), + [anon_sym_BSLASHVref] = ACTIONS(2055), + [anon_sym_BSLASHautoref] = ACTIONS(2055), + [anon_sym_BSLASHpageref] = ACTIONS(2055), + [anon_sym_BSLASHcref] = ACTIONS(2055), + [anon_sym_BSLASHCref] = ACTIONS(2055), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnameCref] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2055), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2055), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2055), + [anon_sym_BSLASHlabelcref] = ACTIONS(2055), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange] = ACTIONS(2055), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHCrefrange] = ACTIONS(2055), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2053), + [anon_sym_BSLASHnewlabel] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand] = ACTIONS(2055), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2055), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2055), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2053), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2055), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdef] = ACTIONS(2055), + [anon_sym_BSLASHlet] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2055), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2055), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2055), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2055), + [anon_sym_BSLASHgls] = ACTIONS(2055), + [anon_sym_BSLASHGls] = ACTIONS(2055), + [anon_sym_BSLASHGLS] = ACTIONS(2055), + [anon_sym_BSLASHglspl] = ACTIONS(2055), + [anon_sym_BSLASHGlspl] = ACTIONS(2055), + [anon_sym_BSLASHGLSpl] = ACTIONS(2055), + [anon_sym_BSLASHglsdisp] = ACTIONS(2055), + [anon_sym_BSLASHglslink] = ACTIONS(2055), + [anon_sym_BSLASHglstext] = ACTIONS(2055), + [anon_sym_BSLASHGlstext] = ACTIONS(2055), + [anon_sym_BSLASHGLStext] = ACTIONS(2055), + [anon_sym_BSLASHglsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2055), + [anon_sym_BSLASHglsplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSplural] = ACTIONS(2055), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2055), + [anon_sym_BSLASHglsname] = ACTIONS(2055), + [anon_sym_BSLASHGlsname] = ACTIONS(2055), + [anon_sym_BSLASHGLSname] = ACTIONS(2055), + [anon_sym_BSLASHglssymbol] = ACTIONS(2055), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2055), + [anon_sym_BSLASHglsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2055), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2055), + [anon_sym_BSLASHglsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2055), + [anon_sym_BSLASHglsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2055), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2055), + [anon_sym_BSLASHglsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2055), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2055), + [anon_sym_BSLASHglsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2055), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2055), + [anon_sym_BSLASHnewacronym] = ACTIONS(2055), + [anon_sym_BSLASHacrshort] = ACTIONS(2055), + [anon_sym_BSLASHAcrshort] = ACTIONS(2055), + [anon_sym_BSLASHACRshort] = ACTIONS(2055), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2055), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2055), + [anon_sym_BSLASHacrlong] = ACTIONS(2055), + [anon_sym_BSLASHAcrlong] = ACTIONS(2055), + [anon_sym_BSLASHACRlong] = ACTIONS(2055), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2055), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2055), + [anon_sym_BSLASHacrfull] = ACTIONS(2055), + [anon_sym_BSLASHAcrfull] = ACTIONS(2055), + [anon_sym_BSLASHACRfull] = ACTIONS(2055), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2055), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2055), + [anon_sym_BSLASHacs] = ACTIONS(2055), + [anon_sym_BSLASHAcs] = ACTIONS(2055), + [anon_sym_BSLASHacsp] = ACTIONS(2055), + [anon_sym_BSLASHAcsp] = ACTIONS(2055), + [anon_sym_BSLASHacl] = ACTIONS(2055), + [anon_sym_BSLASHAcl] = ACTIONS(2055), + [anon_sym_BSLASHaclp] = ACTIONS(2055), + [anon_sym_BSLASHAclp] = ACTIONS(2055), + [anon_sym_BSLASHacf] = ACTIONS(2055), + [anon_sym_BSLASHAcf] = ACTIONS(2055), + [anon_sym_BSLASHacfp] = ACTIONS(2055), + [anon_sym_BSLASHAcfp] = ACTIONS(2055), + [anon_sym_BSLASHac] = ACTIONS(2055), + [anon_sym_BSLASHAc] = ACTIONS(2055), + [anon_sym_BSLASHacp] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2055), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2055), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2055), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2055), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2055), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2055), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2055), + [anon_sym_BSLASHcolor] = ACTIONS(2055), + [anon_sym_BSLASHcolorbox] = ACTIONS(2055), + [anon_sym_BSLASHtextcolor] = ACTIONS(2055), + [anon_sym_BSLASHpagecolor] = ACTIONS(2055), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2055), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2055), + [anon_sym_BSLASHtext] = ACTIONS(2055), + [anon_sym_BSLASHintertext] = ACTIONS(2055), + [anon_sym_shortintertext] = ACTIONS(2055), + }, + [572] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [573] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHend] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [574] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHend] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [575] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHend] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [576] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(2043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_BSLASHpart] = ACTIONS(2043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddpart] = ACTIONS(2043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2041), + [anon_sym_BSLASHchapter] = ACTIONS(2043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddchap] = ACTIONS(2043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsection] = ACTIONS(2043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHaddsec] = ACTIONS(2043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsection] = ACTIONS(2043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(2043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2041), + [anon_sym_BSLASHitem] = ACTIONS(2043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [sym_word] = ACTIONS(2043), + [sym_placeholder] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym__] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2041), + [anon_sym_BSLASHbegin] = ACTIONS(2043), + [anon_sym_BSLASHend] = ACTIONS(2043), + [anon_sym_BSLASHtitle] = ACTIONS(2043), + [anon_sym_BSLASHauthor] = ACTIONS(2043), + [anon_sym_BSLASHusepackage] = ACTIONS(2043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2043), + [anon_sym_BSLASHinclude] = ACTIONS(2043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2043), + [anon_sym_BSLASHinput] = ACTIONS(2043), + [anon_sym_BSLASHsubfile] = ACTIONS(2043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2043), + [anon_sym_BSLASHbibliography] = ACTIONS(2043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2043), + [anon_sym_BSLASHincludesvg] = ACTIONS(2043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2043), + [anon_sym_BSLASHsubimport] = ACTIONS(2043), + [anon_sym_BSLASHinputfrom] = ACTIONS(2043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2043), + [anon_sym_BSLASHincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2043), + [anon_sym_BSLASHcaption] = ACTIONS(2043), + [anon_sym_BSLASHcite] = ACTIONS(2043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCite] = ACTIONS(2043), + [anon_sym_BSLASHnocite] = ACTIONS(2043), + [anon_sym_BSLASHcitet] = ACTIONS(2043), + [anon_sym_BSLASHcitep] = ACTIONS(2043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteauthor] = ACTIONS(2043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitetitle] = ACTIONS(2043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteyear] = ACTIONS(2043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2041), + [anon_sym_BSLASHcitedate] = ACTIONS(2043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2041), + [anon_sym_BSLASHciteurl] = ACTIONS(2043), + [anon_sym_BSLASHfullcite] = ACTIONS(2043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2043), + [anon_sym_BSLASHcitealt] = ACTIONS(2043), + [anon_sym_BSLASHcitealp] = ACTIONS(2043), + [anon_sym_BSLASHcitetext] = ACTIONS(2043), + [anon_sym_BSLASHparencite] = ACTIONS(2043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHParencite] = ACTIONS(2043), + [anon_sym_BSLASHfootcite] = ACTIONS(2043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2043), + [anon_sym_BSLASHtextcite] = ACTIONS(2043), + [anon_sym_BSLASHTextcite] = ACTIONS(2043), + [anon_sym_BSLASHsmartcite] = ACTIONS(2043), + [anon_sym_BSLASHSmartcite] = ACTIONS(2043), + [anon_sym_BSLASHsupercite] = ACTIONS(2043), + [anon_sym_BSLASHautocite] = ACTIONS(2043), + [anon_sym_BSLASHAutocite] = ACTIONS(2043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2041), + [anon_sym_BSLASHvolcite] = ACTIONS(2043), + [anon_sym_BSLASHVolcite] = ACTIONS(2043), + [anon_sym_BSLASHpvolcite] = ACTIONS(2043), + [anon_sym_BSLASHPvolcite] = ACTIONS(2043), + [anon_sym_BSLASHfvolcite] = ACTIONS(2043), + [anon_sym_BSLASHftvolcite] = ACTIONS(2043), + [anon_sym_BSLASHsvolcite] = ACTIONS(2043), + [anon_sym_BSLASHSvolcite] = ACTIONS(2043), + [anon_sym_BSLASHtvolcite] = ACTIONS(2043), + [anon_sym_BSLASHTvolcite] = ACTIONS(2043), + [anon_sym_BSLASHavolcite] = ACTIONS(2043), + [anon_sym_BSLASHAvolcite] = ACTIONS(2043), + [anon_sym_BSLASHnotecite] = ACTIONS(2043), + [anon_sym_BSLASHNotecite] = ACTIONS(2043), + [anon_sym_BSLASHpnotecite] = ACTIONS(2043), + [anon_sym_BSLASHPnotecite] = ACTIONS(2043), + [anon_sym_BSLASHfnotecite] = ACTIONS(2043), + [anon_sym_BSLASHlabel] = ACTIONS(2043), + [anon_sym_BSLASHref] = ACTIONS(2043), + [anon_sym_BSLASHeqref] = ACTIONS(2043), + [anon_sym_BSLASHvref] = ACTIONS(2043), + [anon_sym_BSLASHVref] = ACTIONS(2043), + [anon_sym_BSLASHautoref] = ACTIONS(2043), + [anon_sym_BSLASHpageref] = ACTIONS(2043), + [anon_sym_BSLASHcref] = ACTIONS(2043), + [anon_sym_BSLASHCref] = ACTIONS(2043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnameCref] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2043), + [anon_sym_BSLASHlabelcref] = ACTIONS(2043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange] = ACTIONS(2043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHCrefrange] = ACTIONS(2043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), + [anon_sym_BSLASHnewlabel] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand] = ACTIONS(2043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdef] = ACTIONS(2043), + [anon_sym_BSLASHlet] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2043), + [anon_sym_BSLASHgls] = ACTIONS(2043), + [anon_sym_BSLASHGls] = ACTIONS(2043), + [anon_sym_BSLASHGLS] = ACTIONS(2043), + [anon_sym_BSLASHglspl] = ACTIONS(2043), + [anon_sym_BSLASHGlspl] = ACTIONS(2043), + [anon_sym_BSLASHGLSpl] = ACTIONS(2043), + [anon_sym_BSLASHglsdisp] = ACTIONS(2043), + [anon_sym_BSLASHglslink] = ACTIONS(2043), + [anon_sym_BSLASHglstext] = ACTIONS(2043), + [anon_sym_BSLASHGlstext] = ACTIONS(2043), + [anon_sym_BSLASHGLStext] = ACTIONS(2043), + [anon_sym_BSLASHglsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2043), + [anon_sym_BSLASHglsplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSplural] = ACTIONS(2043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2043), + [anon_sym_BSLASHglsname] = ACTIONS(2043), + [anon_sym_BSLASHGlsname] = ACTIONS(2043), + [anon_sym_BSLASHGLSname] = ACTIONS(2043), + [anon_sym_BSLASHglssymbol] = ACTIONS(2043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2043), + [anon_sym_BSLASHglsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2043), + [anon_sym_BSLASHglsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2043), + [anon_sym_BSLASHglsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2043), + [anon_sym_BSLASHglsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2043), + [anon_sym_BSLASHglsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2043), + [anon_sym_BSLASHnewacronym] = ACTIONS(2043), + [anon_sym_BSLASHacrshort] = ACTIONS(2043), + [anon_sym_BSLASHAcrshort] = ACTIONS(2043), + [anon_sym_BSLASHACRshort] = ACTIONS(2043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2043), + [anon_sym_BSLASHacrlong] = ACTIONS(2043), + [anon_sym_BSLASHAcrlong] = ACTIONS(2043), + [anon_sym_BSLASHACRlong] = ACTIONS(2043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2043), + [anon_sym_BSLASHacrfull] = ACTIONS(2043), + [anon_sym_BSLASHAcrfull] = ACTIONS(2043), + [anon_sym_BSLASHACRfull] = ACTIONS(2043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2043), + [anon_sym_BSLASHacs] = ACTIONS(2043), + [anon_sym_BSLASHAcs] = ACTIONS(2043), + [anon_sym_BSLASHacsp] = ACTIONS(2043), + [anon_sym_BSLASHAcsp] = ACTIONS(2043), + [anon_sym_BSLASHacl] = ACTIONS(2043), + [anon_sym_BSLASHAcl] = ACTIONS(2043), + [anon_sym_BSLASHaclp] = ACTIONS(2043), + [anon_sym_BSLASHAclp] = ACTIONS(2043), + [anon_sym_BSLASHacf] = ACTIONS(2043), + [anon_sym_BSLASHAcf] = ACTIONS(2043), + [anon_sym_BSLASHacfp] = ACTIONS(2043), + [anon_sym_BSLASHAcfp] = ACTIONS(2043), + [anon_sym_BSLASHac] = ACTIONS(2043), + [anon_sym_BSLASHAc] = ACTIONS(2043), + [anon_sym_BSLASHacp] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2043), + [anon_sym_BSLASHcolor] = ACTIONS(2043), + [anon_sym_BSLASHcolorbox] = ACTIONS(2043), + [anon_sym_BSLASHtextcolor] = ACTIONS(2043), + [anon_sym_BSLASHpagecolor] = ACTIONS(2043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2043), + [anon_sym_BSLASHtext] = ACTIONS(2043), + [anon_sym_BSLASHintertext] = ACTIONS(2043), + [anon_sym_shortintertext] = ACTIONS(2043), + }, + [577] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [988] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASHpart] = ACTIONS(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), + [578] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [989] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASH_RBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [579] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [990] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), + [580] = { + [sym__chapter_declaration] = STATE(152), + [sym_chapter] = STATE(540), + [aux_sym__section_repeat2] = STATE(540), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), + [anon_sym_BSLASHaddchap] = ACTIONS(147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [991] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), + [581] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [992] = { - [sym_command_name] = ACTIONS(5337), + [582] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), - }, - [993] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), - }, - [994] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [995] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [996] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [997] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [998] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), - }, - [999] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), - }, - [1000] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), - }, - [1001] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), - }, - [1002] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), - }, - [1003] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [1004] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [1005] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_BSLASHpart] = ACTIONS(5213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddpart] = ACTIONS(5213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHchapter] = ACTIONS(5213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddchap] = ACTIONS(5213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsection] = ACTIONS(5213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddsec] = ACTIONS(5213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHparagraph] = ACTIONS(5213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHitem] = ACTIONS(5213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [1006] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_BSLASHpart] = ACTIONS(5269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddpart] = ACTIONS(5269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHchapter] = ACTIONS(5269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddchap] = ACTIONS(5269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsection] = ACTIONS(5269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddsec] = ACTIONS(5269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHparagraph] = ACTIONS(5269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHitem] = ACTIONS(5269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), - }, - [1007] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), - }, - [1008] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), - }, - [1009] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_BSLASHpart] = ACTIONS(5229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddpart] = ACTIONS(5229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHchapter] = ACTIONS(5229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddchap] = ACTIONS(5229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsection] = ACTIONS(5229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddsec] = ACTIONS(5229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHparagraph] = ACTIONS(5229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHitem] = ACTIONS(5229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), - }, - [1010] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_BSLASHpart] = ACTIONS(5233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddpart] = ACTIONS(5233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHchapter] = ACTIONS(5233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddchap] = ACTIONS(5233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsection] = ACTIONS(5233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddsec] = ACTIONS(5233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHparagraph] = ACTIONS(5233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHitem] = ACTIONS(5233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1011] = { - [sym_command_name] = ACTIONS(5341), + [583] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), - }, - [1012] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), - }, - [1013] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1014] = { - [sym_command_name] = ACTIONS(5353), + [584] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1015] = { - [sym_command_name] = ACTIONS(5357), + [585] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), - }, - [1016] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), - }, - [1017] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_BSLASHpart] = ACTIONS(5365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddpart] = ACTIONS(5365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHchapter] = ACTIONS(5365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddchap] = ACTIONS(5365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsection] = ACTIONS(5365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddsec] = ACTIONS(5365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHparagraph] = ACTIONS(5365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHitem] = ACTIONS(5365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), - }, - [1018] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_BSLASHpart] = ACTIONS(5375), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddpart] = ACTIONS(5375), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHchapter] = ACTIONS(5375), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddchap] = ACTIONS(5375), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsection] = ACTIONS(5375), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddsec] = ACTIONS(5375), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHparagraph] = ACTIONS(5375), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHitem] = ACTIONS(5375), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), - }, - [1019] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_BSLASHpart] = ACTIONS(5383), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddpart] = ACTIONS(5383), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHchapter] = ACTIONS(5383), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddchap] = ACTIONS(5383), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsection] = ACTIONS(5383), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddsec] = ACTIONS(5383), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHparagraph] = ACTIONS(5383), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHitem] = ACTIONS(5383), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), - }, - [1020] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_BSLASHpart] = ACTIONS(5387), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddpart] = ACTIONS(5387), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHchapter] = ACTIONS(5387), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddchap] = ACTIONS(5387), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsection] = ACTIONS(5387), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddsec] = ACTIONS(5387), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHparagraph] = ACTIONS(5387), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5387), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHitem] = ACTIONS(5387), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), - }, - [1021] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_BSLASHpart] = ACTIONS(5391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddpart] = ACTIONS(5391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHchapter] = ACTIONS(5391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddchap] = ACTIONS(5391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsection] = ACTIONS(5391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddsec] = ACTIONS(5391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHparagraph] = ACTIONS(5391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHitem] = ACTIONS(5391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), - }, - [1022] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_BSLASHpart] = ACTIONS(5395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddpart] = ACTIONS(5395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHchapter] = ACTIONS(5395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddchap] = ACTIONS(5395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsection] = ACTIONS(5395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddsec] = ACTIONS(5395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHparagraph] = ACTIONS(5395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHitem] = ACTIONS(5395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1023] = { - [sym_command_name] = ACTIONS(5403), + [586] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5403), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_RPAREN] = ACTIONS(5401), - [anon_sym_LBRACK] = ACTIONS(5401), - [anon_sym_RBRACK] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(5401), - [anon_sym_BSLASHpart] = ACTIONS(5403), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddpart] = ACTIONS(5403), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHchapter] = ACTIONS(5403), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddchap] = ACTIONS(5403), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsection] = ACTIONS(5403), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddsec] = ACTIONS(5403), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHparagraph] = ACTIONS(5403), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHitem] = ACTIONS(5403), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), - [anon_sym_LBRACE] = ACTIONS(5401), - [sym_word] = ACTIONS(5403), - [sym_placeholder] = ACTIONS(5401), - [anon_sym_PLUS] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5403), - [anon_sym_STAR] = ACTIONS(5403), - [anon_sym_SLASH] = ACTIONS(5403), - [anon_sym_CARET] = ACTIONS(5403), - [anon_sym__] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5403), - [anon_sym_BANG] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5403), - [anon_sym_COLON] = ACTIONS(5403), - [anon_sym_SQUOTE] = ACTIONS(5403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5401), - [anon_sym_DOLLAR] = ACTIONS(5403), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), - [anon_sym_BSLASHbegin] = ACTIONS(5403), - [anon_sym_BSLASHusepackage] = ACTIONS(5403), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), - [anon_sym_BSLASHinclude] = ACTIONS(5403), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), - [anon_sym_BSLASHinput] = ACTIONS(5403), - [anon_sym_BSLASHsubfile] = ACTIONS(5403), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), - [anon_sym_BSLASHbibliography] = ACTIONS(5403), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), - [anon_sym_BSLASHincludesvg] = ACTIONS(5403), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), - [anon_sym_BSLASHimport] = ACTIONS(5403), - [anon_sym_BSLASHsubimport] = ACTIONS(5403), - [anon_sym_BSLASHinputfrom] = ACTIONS(5403), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), - [anon_sym_BSLASHincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHcaption] = ACTIONS(5403), - [anon_sym_BSLASHcite] = ACTIONS(5403), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCite] = ACTIONS(5403), - [anon_sym_BSLASHnocite] = ACTIONS(5403), - [anon_sym_BSLASHcitet] = ACTIONS(5403), - [anon_sym_BSLASHcitep] = ACTIONS(5403), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteauthor] = ACTIONS(5403), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitetitle] = ACTIONS(5403), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteyear] = ACTIONS(5403), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitedate] = ACTIONS(5403), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteurl] = ACTIONS(5403), - [anon_sym_BSLASHfullcite] = ACTIONS(5403), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), - [anon_sym_BSLASHcitealt] = ACTIONS(5403), - [anon_sym_BSLASHcitealp] = ACTIONS(5403), - [anon_sym_BSLASHcitetext] = ACTIONS(5403), - [anon_sym_BSLASHparencite] = ACTIONS(5403), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHParencite] = ACTIONS(5403), - [anon_sym_BSLASHfootcite] = ACTIONS(5403), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), - [anon_sym_BSLASHtextcite] = ACTIONS(5403), - [anon_sym_BSLASHTextcite] = ACTIONS(5403), - [anon_sym_BSLASHsmartcite] = ACTIONS(5403), - [anon_sym_BSLASHSmartcite] = ACTIONS(5403), - [anon_sym_BSLASHsupercite] = ACTIONS(5403), - [anon_sym_BSLASHautocite] = ACTIONS(5403), - [anon_sym_BSLASHAutocite] = ACTIONS(5403), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHvolcite] = ACTIONS(5403), - [anon_sym_BSLASHVolcite] = ACTIONS(5403), - [anon_sym_BSLASHpvolcite] = ACTIONS(5403), - [anon_sym_BSLASHPvolcite] = ACTIONS(5403), - [anon_sym_BSLASHfvolcite] = ACTIONS(5403), - [anon_sym_BSLASHftvolcite] = ACTIONS(5403), - [anon_sym_BSLASHsvolcite] = ACTIONS(5403), - [anon_sym_BSLASHSvolcite] = ACTIONS(5403), - [anon_sym_BSLASHtvolcite] = ACTIONS(5403), - [anon_sym_BSLASHTvolcite] = ACTIONS(5403), - [anon_sym_BSLASHavolcite] = ACTIONS(5403), - [anon_sym_BSLASHAvolcite] = ACTIONS(5403), - [anon_sym_BSLASHnotecite] = ACTIONS(5403), - [anon_sym_BSLASHNotecite] = ACTIONS(5403), - [anon_sym_BSLASHpnotecite] = ACTIONS(5403), - [anon_sym_BSLASHPnotecite] = ACTIONS(5403), - [anon_sym_BSLASHfnotecite] = ACTIONS(5403), - [anon_sym_BSLASHlabel] = ACTIONS(5403), - [anon_sym_BSLASHref] = ACTIONS(5403), - [anon_sym_BSLASHeqref] = ACTIONS(5403), - [anon_sym_BSLASHvref] = ACTIONS(5403), - [anon_sym_BSLASHVref] = ACTIONS(5403), - [anon_sym_BSLASHautoref] = ACTIONS(5403), - [anon_sym_BSLASHpageref] = ACTIONS(5403), - [anon_sym_BSLASHcref] = ACTIONS(5403), - [anon_sym_BSLASHCref] = ACTIONS(5403), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnameCref] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHlabelcref] = ACTIONS(5403), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCrefrange] = ACTIONS(5403), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnewlabel] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdef] = ACTIONS(5403), - [anon_sym_BSLASHlet] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), - [anon_sym_BSLASHgls] = ACTIONS(5403), - [anon_sym_BSLASHGls] = ACTIONS(5403), - [anon_sym_BSLASHGLS] = ACTIONS(5403), - [anon_sym_BSLASHglspl] = ACTIONS(5403), - [anon_sym_BSLASHGlspl] = ACTIONS(5403), - [anon_sym_BSLASHGLSpl] = ACTIONS(5403), - [anon_sym_BSLASHglsdisp] = ACTIONS(5403), - [anon_sym_BSLASHglslink] = ACTIONS(5403), - [anon_sym_BSLASHglstext] = ACTIONS(5403), - [anon_sym_BSLASHGlstext] = ACTIONS(5403), - [anon_sym_BSLASHGLStext] = ACTIONS(5403), - [anon_sym_BSLASHglsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), - [anon_sym_BSLASHglsplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSplural] = ACTIONS(5403), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHglsname] = ACTIONS(5403), - [anon_sym_BSLASHGlsname] = ACTIONS(5403), - [anon_sym_BSLASHGLSname] = ACTIONS(5403), - [anon_sym_BSLASHglssymbol] = ACTIONS(5403), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), - [anon_sym_BSLASHglsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), - [anon_sym_BSLASHglsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), - [anon_sym_BSLASHglsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), - [anon_sym_BSLASHglsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), - [anon_sym_BSLASHglsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), - [anon_sym_BSLASHnewacronym] = ACTIONS(5403), - [anon_sym_BSLASHacrshort] = ACTIONS(5403), - [anon_sym_BSLASHAcrshort] = ACTIONS(5403), - [anon_sym_BSLASHACRshort] = ACTIONS(5403), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), - [anon_sym_BSLASHacrlong] = ACTIONS(5403), - [anon_sym_BSLASHAcrlong] = ACTIONS(5403), - [anon_sym_BSLASHACRlong] = ACTIONS(5403), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), - [anon_sym_BSLASHacrfull] = ACTIONS(5403), - [anon_sym_BSLASHAcrfull] = ACTIONS(5403), - [anon_sym_BSLASHACRfull] = ACTIONS(5403), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), - [anon_sym_BSLASHacs] = ACTIONS(5403), - [anon_sym_BSLASHAcs] = ACTIONS(5403), - [anon_sym_BSLASHacsp] = ACTIONS(5403), - [anon_sym_BSLASHAcsp] = ACTIONS(5403), - [anon_sym_BSLASHacl] = ACTIONS(5403), - [anon_sym_BSLASHAcl] = ACTIONS(5403), - [anon_sym_BSLASHaclp] = ACTIONS(5403), - [anon_sym_BSLASHAclp] = ACTIONS(5403), - [anon_sym_BSLASHacf] = ACTIONS(5403), - [anon_sym_BSLASHAcf] = ACTIONS(5403), - [anon_sym_BSLASHacfp] = ACTIONS(5403), - [anon_sym_BSLASHAcfp] = ACTIONS(5403), - [anon_sym_BSLASHac] = ACTIONS(5403), - [anon_sym_BSLASHAc] = ACTIONS(5403), - [anon_sym_BSLASHacp] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), - [anon_sym_BSLASHcolor] = ACTIONS(5403), - [anon_sym_BSLASHcolorbox] = ACTIONS(5403), - [anon_sym_BSLASHtextcolor] = ACTIONS(5403), - [anon_sym_BSLASHpagecolor] = ACTIONS(5403), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), - [anon_sym_BSLASHtext] = ACTIONS(5403), - [anon_sym_BSLASHintertext] = ACTIONS(5403), - [anon_sym_shortintertext] = ACTIONS(5403), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1024] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), + [587] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1025] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [588] = { + [sym__section_declaration] = STATE(160), + [sym_section] = STATE(541), + [aux_sym__section_repeat3] = STATE(541), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(153), + [anon_sym_BSLASHaddsec] = ACTIONS(151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(153), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1026] = { - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_BSLASHpart] = ACTIONS(5419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddpart] = ACTIONS(5419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHchapter] = ACTIONS(5419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddchap] = ACTIONS(5419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsection] = ACTIONS(5419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddsec] = ACTIONS(5419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHparagraph] = ACTIONS(5419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHitem] = ACTIONS(5419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [589] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1027] = { - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_BSLASHpart] = ACTIONS(5423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddpart] = ACTIONS(5423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHchapter] = ACTIONS(5423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddchap] = ACTIONS(5423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsection] = ACTIONS(5423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddsec] = ACTIONS(5423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHparagraph] = ACTIONS(5423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHitem] = ACTIONS(5423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), + [590] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1028] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_BSLASHpart] = ACTIONS(5427), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddpart] = ACTIONS(5427), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHchapter] = ACTIONS(5427), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddchap] = ACTIONS(5427), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsection] = ACTIONS(5427), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddsec] = ACTIONS(5427), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHparagraph] = ACTIONS(5427), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5427), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHitem] = ACTIONS(5427), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [591] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1029] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASHpart] = ACTIONS(5435), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddpart] = ACTIONS(5435), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHchapter] = ACTIONS(5435), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddchap] = ACTIONS(5435), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsection] = ACTIONS(5435), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddsec] = ACTIONS(5435), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHparagraph] = ACTIONS(5435), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5435), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHitem] = ACTIONS(5435), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), + [592] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1030] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_BSLASHpart] = ACTIONS(5439), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddpart] = ACTIONS(5439), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHchapter] = ACTIONS(5439), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddchap] = ACTIONS(5439), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsection] = ACTIONS(5439), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddsec] = ACTIONS(5439), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHparagraph] = ACTIONS(5439), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5439), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHitem] = ACTIONS(5439), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), + [593] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1031] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASHpart] = ACTIONS(5443), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddpart] = ACTIONS(5443), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHchapter] = ACTIONS(5443), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddchap] = ACTIONS(5443), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsection] = ACTIONS(5443), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddsec] = ACTIONS(5443), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHparagraph] = ACTIONS(5443), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5443), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHitem] = ACTIONS(5443), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), + [594] = { + [sym__subsection_declaration] = STATE(167), + [sym_subsection] = STATE(542), + [aux_sym__section_repeat4] = STATE(542), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1032] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_BSLASHpart] = ACTIONS(5447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddpart] = ACTIONS(5447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHchapter] = ACTIONS(5447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddchap] = ACTIONS(5447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsection] = ACTIONS(5447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddsec] = ACTIONS(5447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHparagraph] = ACTIONS(5447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHitem] = ACTIONS(5447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), + [595] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1033] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASHpart] = ACTIONS(5451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddpart] = ACTIONS(5451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHchapter] = ACTIONS(5451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddchap] = ACTIONS(5451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsection] = ACTIONS(5451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddsec] = ACTIONS(5451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHparagraph] = ACTIONS(5451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHitem] = ACTIONS(5451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), + [596] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1034] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_BSLASHpart] = ACTIONS(5459), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddpart] = ACTIONS(5459), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHchapter] = ACTIONS(5459), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddchap] = ACTIONS(5459), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsection] = ACTIONS(5459), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddsec] = ACTIONS(5459), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHparagraph] = ACTIONS(5459), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5459), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHitem] = ACTIONS(5459), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), + [597] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1035] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_BSLASHpart] = ACTIONS(5463), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddpart] = ACTIONS(5463), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHchapter] = ACTIONS(5463), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddchap] = ACTIONS(5463), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsection] = ACTIONS(5463), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddsec] = ACTIONS(5463), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHparagraph] = ACTIONS(5463), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5463), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHitem] = ACTIONS(5463), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), + [598] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1036] = { - [sym_command_name] = ACTIONS(5467), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_BSLASHpart] = ACTIONS(5467), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddpart] = ACTIONS(5467), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHchapter] = ACTIONS(5467), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddchap] = ACTIONS(5467), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsection] = ACTIONS(5467), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddsec] = ACTIONS(5467), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHparagraph] = ACTIONS(5467), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5467), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHitem] = ACTIONS(5467), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), + [599] = { + [sym__subsubsection_declaration] = STATE(179), + [sym_subsubsection] = STATE(543), + [aux_sym__section_repeat5] = STATE(543), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(161), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [1037] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_BSLASHpart] = ACTIONS(5471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddpart] = ACTIONS(5471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHchapter] = ACTIONS(5471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddchap] = ACTIONS(5471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsection] = ACTIONS(5471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddsec] = ACTIONS(5471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHparagraph] = ACTIONS(5471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHitem] = ACTIONS(5471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), + [600] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [1038] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHend] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), + [601] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [1039] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_BSLASHpart] = ACTIONS(5475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddpart] = ACTIONS(5475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHchapter] = ACTIONS(5475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddchap] = ACTIONS(5475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsection] = ACTIONS(5475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddsec] = ACTIONS(5475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHparagraph] = ACTIONS(5475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHitem] = ACTIONS(5475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), + [602] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), }, - [1040] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASHpart] = ACTIONS(5479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddpart] = ACTIONS(5479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHchapter] = ACTIONS(5479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddchap] = ACTIONS(5479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsection] = ACTIONS(5479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddsec] = ACTIONS(5479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHparagraph] = ACTIONS(5479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHitem] = ACTIONS(5479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), + [603] = { + [sym__paragraph_declaration] = STATE(187), + [sym_paragraph] = STATE(544), + [aux_sym__section_repeat6] = STATE(544), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [1041] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_BSLASHpart] = ACTIONS(5487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddpart] = ACTIONS(5487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHchapter] = ACTIONS(5487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddchap] = ACTIONS(5487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsection] = ACTIONS(5487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddsec] = ACTIONS(5487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHparagraph] = ACTIONS(5487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHitem] = ACTIONS(5487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), + [604] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [1042] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_BSLASHpart] = ACTIONS(5241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddpart] = ACTIONS(5241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHchapter] = ACTIONS(5241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddchap] = ACTIONS(5241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsection] = ACTIONS(5241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddsec] = ACTIONS(5241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHparagraph] = ACTIONS(5241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHitem] = ACTIONS(5241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), + [605] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), }, - [1043] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), + [606] = { + [sym__subparagraph_declaration] = STATE(201), + [sym_subparagraph] = STATE(545), + [aux_sym__section_repeat7] = STATE(545), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(169), + [anon_sym_BSLASHitem] = ACTIONS(5219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), }, - [1044] = { + [607] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), + }, + [608] = { + [sym__enum_itemdeclaration] = STATE(217), + [sym_enum_item] = STATE(546), + [aux_sym__section_repeat8] = STATE(546), [sym_command_name] = ACTIONS(5249), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -324905,8 +208158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHitem] = ACTIONS(5249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(173), [anon_sym_LBRACE] = ACTIONS(5247), [sym_word] = ACTIONS(5249), [sym_placeholder] = ACTIONS(5247), @@ -324924,11 +208177,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(5249), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5247), [anon_sym_DOLLAR] = ACTIONS(5249), [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5247), [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHtitle] = ACTIONS(5249), + [anon_sym_BSLASHauthor] = ACTIONS(5249), [anon_sym_BSLASHusepackage] = ACTIONS(5249), [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), @@ -325026,31595 +208281,9969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlabelcref] = ACTIONS(5249), [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), - }, - [1045] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_BSLASHpart] = ACTIONS(5257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddpart] = ACTIONS(5257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHchapter] = ACTIONS(5257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddchap] = ACTIONS(5257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsection] = ACTIONS(5257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddsec] = ACTIONS(5257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHparagraph] = ACTIONS(5257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHitem] = ACTIONS(5257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), - }, - [1046] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASHpart] = ACTIONS(5277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddpart] = ACTIONS(5277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHchapter] = ACTIONS(5277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddchap] = ACTIONS(5277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsection] = ACTIONS(5277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddsec] = ACTIONS(5277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHparagraph] = ACTIONS(5277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHitem] = ACTIONS(5277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), - }, - [1047] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), - }, - [1048] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), - }, - [1049] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), }, - [1050] = { - [sym_command_name] = ACTIONS(5125), + [609] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), - }, - [1051] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), - }, - [1052] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), - }, - [1053] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), - }, - [1054] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), - }, - [1055] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), - }, - [1056] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), - }, - [1057] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_BSLASHpart] = ACTIONS(5487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddpart] = ACTIONS(5487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHchapter] = ACTIONS(5487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddchap] = ACTIONS(5487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsection] = ACTIONS(5487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddsec] = ACTIONS(5487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHparagraph] = ACTIONS(5487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHitem] = ACTIONS(5487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), - }, - [1058] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASHpart] = ACTIONS(5479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddpart] = ACTIONS(5479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHchapter] = ACTIONS(5479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddchap] = ACTIONS(5479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsection] = ACTIONS(5479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddsec] = ACTIONS(5479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHparagraph] = ACTIONS(5479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHitem] = ACTIONS(5479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), - }, - [1059] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_BSLASHpart] = ACTIONS(5475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddpart] = ACTIONS(5475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHchapter] = ACTIONS(5475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddchap] = ACTIONS(5475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsection] = ACTIONS(5475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddsec] = ACTIONS(5475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHparagraph] = ACTIONS(5475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHitem] = ACTIONS(5475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), - }, - [1060] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_BSLASHpart] = ACTIONS(5471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddpart] = ACTIONS(5471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHchapter] = ACTIONS(5471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddchap] = ACTIONS(5471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsection] = ACTIONS(5471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddsec] = ACTIONS(5471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHparagraph] = ACTIONS(5471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHitem] = ACTIONS(5471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1061] = { - [sym_command_name] = ACTIONS(5467), + [610] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(2025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_BSLASHpart] = ACTIONS(5467), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddpart] = ACTIONS(5467), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHchapter] = ACTIONS(5467), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddchap] = ACTIONS(5467), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsection] = ACTIONS(5467), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddsec] = ACTIONS(5467), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHparagraph] = ACTIONS(5467), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5467), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHitem] = ACTIONS(5467), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), - }, - [1062] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_BSLASHpart] = ACTIONS(5463), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddpart] = ACTIONS(5463), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHchapter] = ACTIONS(5463), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddchap] = ACTIONS(5463), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsection] = ACTIONS(5463), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddsec] = ACTIONS(5463), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHparagraph] = ACTIONS(5463), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5463), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHitem] = ACTIONS(5463), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), - }, - [1063] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_BSLASHpart] = ACTIONS(5459), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddpart] = ACTIONS(5459), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHchapter] = ACTIONS(5459), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddchap] = ACTIONS(5459), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsection] = ACTIONS(5459), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddsec] = ACTIONS(5459), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHparagraph] = ACTIONS(5459), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5459), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHitem] = ACTIONS(5459), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), - }, - [1064] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), - }, - [1065] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), - }, - [1066] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASHpart] = ACTIONS(5451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddpart] = ACTIONS(5451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHchapter] = ACTIONS(5451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddchap] = ACTIONS(5451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsection] = ACTIONS(5451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddsec] = ACTIONS(5451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHparagraph] = ACTIONS(5451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHitem] = ACTIONS(5451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), - }, - [1067] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_BSLASHpart] = ACTIONS(5447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddpart] = ACTIONS(5447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHchapter] = ACTIONS(5447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddchap] = ACTIONS(5447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsection] = ACTIONS(5447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddsec] = ACTIONS(5447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHparagraph] = ACTIONS(5447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHitem] = ACTIONS(5447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), - }, - [1068] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASHpart] = ACTIONS(5443), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddpart] = ACTIONS(5443), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHchapter] = ACTIONS(5443), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddchap] = ACTIONS(5443), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsection] = ACTIONS(5443), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddsec] = ACTIONS(5443), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHparagraph] = ACTIONS(5443), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5443), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHitem] = ACTIONS(5443), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), - }, - [1069] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_BSLASHpart] = ACTIONS(5439), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddpart] = ACTIONS(5439), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHchapter] = ACTIONS(5439), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddchap] = ACTIONS(5439), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsection] = ACTIONS(5439), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddsec] = ACTIONS(5439), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHparagraph] = ACTIONS(5439), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5439), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHitem] = ACTIONS(5439), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), - }, - [1070] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASHpart] = ACTIONS(5435), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddpart] = ACTIONS(5435), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHchapter] = ACTIONS(5435), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddchap] = ACTIONS(5435), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsection] = ACTIONS(5435), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddsec] = ACTIONS(5435), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHparagraph] = ACTIONS(5435), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5435), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHitem] = ACTIONS(5435), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), - }, - [1071] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), - }, - [1072] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_BSLASHpart] = ACTIONS(5427), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddpart] = ACTIONS(5427), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHchapter] = ACTIONS(5427), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddchap] = ACTIONS(5427), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsection] = ACTIONS(5427), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddsec] = ACTIONS(5427), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHparagraph] = ACTIONS(5427), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5427), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHitem] = ACTIONS(5427), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1073] = { - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_BSLASHpart] = ACTIONS(5423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddpart] = ACTIONS(5423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHchapter] = ACTIONS(5423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddchap] = ACTIONS(5423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsection] = ACTIONS(5423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddsec] = ACTIONS(5423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHparagraph] = ACTIONS(5423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHitem] = ACTIONS(5423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), + [611] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1074] = { - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_BSLASHpart] = ACTIONS(5419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddpart] = ACTIONS(5419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHchapter] = ACTIONS(5419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddchap] = ACTIONS(5419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsection] = ACTIONS(5419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddsec] = ACTIONS(5419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHparagraph] = ACTIONS(5419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHitem] = ACTIONS(5419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [612] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHend] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1075] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [613] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1076] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), + [614] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1077] = { - [sym_command_name] = ACTIONS(5403), + [615] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5403), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_RPAREN] = ACTIONS(5401), - [anon_sym_LBRACK] = ACTIONS(5401), - [anon_sym_RBRACK] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(5401), - [anon_sym_BSLASHpart] = ACTIONS(5403), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddpart] = ACTIONS(5403), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), - [anon_sym_BSLASHchapter] = ACTIONS(5403), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddchap] = ACTIONS(5403), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsection] = ACTIONS(5403), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHaddsec] = ACTIONS(5403), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), - [anon_sym_BSLASHparagraph] = ACTIONS(5403), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), - [anon_sym_BSLASHitem] = ACTIONS(5403), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), - [anon_sym_LBRACE] = ACTIONS(5401), - [sym_word] = ACTIONS(5403), - [sym_placeholder] = ACTIONS(5401), - [anon_sym_PLUS] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5403), - [anon_sym_STAR] = ACTIONS(5403), - [anon_sym_SLASH] = ACTIONS(5403), - [anon_sym_CARET] = ACTIONS(5403), - [anon_sym__] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5403), - [anon_sym_BANG] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5403), - [anon_sym_COLON] = ACTIONS(5403), - [anon_sym_SQUOTE] = ACTIONS(5403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), - [anon_sym_DOLLAR] = ACTIONS(5403), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5401), - [anon_sym_BSLASHbegin] = ACTIONS(5403), - [anon_sym_BSLASHusepackage] = ACTIONS(5403), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), - [anon_sym_BSLASHinclude] = ACTIONS(5403), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), - [anon_sym_BSLASHinput] = ACTIONS(5403), - [anon_sym_BSLASHsubfile] = ACTIONS(5403), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), - [anon_sym_BSLASHbibliography] = ACTIONS(5403), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), - [anon_sym_BSLASHincludesvg] = ACTIONS(5403), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), - [anon_sym_BSLASHimport] = ACTIONS(5403), - [anon_sym_BSLASHsubimport] = ACTIONS(5403), - [anon_sym_BSLASHinputfrom] = ACTIONS(5403), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), - [anon_sym_BSLASHincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHcaption] = ACTIONS(5403), - [anon_sym_BSLASHcite] = ACTIONS(5403), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCite] = ACTIONS(5403), - [anon_sym_BSLASHnocite] = ACTIONS(5403), - [anon_sym_BSLASHcitet] = ACTIONS(5403), - [anon_sym_BSLASHcitep] = ACTIONS(5403), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteauthor] = ACTIONS(5403), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitetitle] = ACTIONS(5403), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteyear] = ACTIONS(5403), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitedate] = ACTIONS(5403), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteurl] = ACTIONS(5403), - [anon_sym_BSLASHfullcite] = ACTIONS(5403), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), - [anon_sym_BSLASHcitealt] = ACTIONS(5403), - [anon_sym_BSLASHcitealp] = ACTIONS(5403), - [anon_sym_BSLASHcitetext] = ACTIONS(5403), - [anon_sym_BSLASHparencite] = ACTIONS(5403), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHParencite] = ACTIONS(5403), - [anon_sym_BSLASHfootcite] = ACTIONS(5403), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), - [anon_sym_BSLASHtextcite] = ACTIONS(5403), - [anon_sym_BSLASHTextcite] = ACTIONS(5403), - [anon_sym_BSLASHsmartcite] = ACTIONS(5403), - [anon_sym_BSLASHSmartcite] = ACTIONS(5403), - [anon_sym_BSLASHsupercite] = ACTIONS(5403), - [anon_sym_BSLASHautocite] = ACTIONS(5403), - [anon_sym_BSLASHAutocite] = ACTIONS(5403), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHvolcite] = ACTIONS(5403), - [anon_sym_BSLASHVolcite] = ACTIONS(5403), - [anon_sym_BSLASHpvolcite] = ACTIONS(5403), - [anon_sym_BSLASHPvolcite] = ACTIONS(5403), - [anon_sym_BSLASHfvolcite] = ACTIONS(5403), - [anon_sym_BSLASHftvolcite] = ACTIONS(5403), - [anon_sym_BSLASHsvolcite] = ACTIONS(5403), - [anon_sym_BSLASHSvolcite] = ACTIONS(5403), - [anon_sym_BSLASHtvolcite] = ACTIONS(5403), - [anon_sym_BSLASHTvolcite] = ACTIONS(5403), - [anon_sym_BSLASHavolcite] = ACTIONS(5403), - [anon_sym_BSLASHAvolcite] = ACTIONS(5403), - [anon_sym_BSLASHnotecite] = ACTIONS(5403), - [anon_sym_BSLASHNotecite] = ACTIONS(5403), - [anon_sym_BSLASHpnotecite] = ACTIONS(5403), - [anon_sym_BSLASHPnotecite] = ACTIONS(5403), - [anon_sym_BSLASHfnotecite] = ACTIONS(5403), - [anon_sym_BSLASHlabel] = ACTIONS(5403), - [anon_sym_BSLASHref] = ACTIONS(5403), - [anon_sym_BSLASHeqref] = ACTIONS(5403), - [anon_sym_BSLASHvref] = ACTIONS(5403), - [anon_sym_BSLASHVref] = ACTIONS(5403), - [anon_sym_BSLASHautoref] = ACTIONS(5403), - [anon_sym_BSLASHpageref] = ACTIONS(5403), - [anon_sym_BSLASHcref] = ACTIONS(5403), - [anon_sym_BSLASHCref] = ACTIONS(5403), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnameCref] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHlabelcref] = ACTIONS(5403), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCrefrange] = ACTIONS(5403), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnewlabel] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdef] = ACTIONS(5403), - [anon_sym_BSLASHlet] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), - [anon_sym_BSLASHgls] = ACTIONS(5403), - [anon_sym_BSLASHGls] = ACTIONS(5403), - [anon_sym_BSLASHGLS] = ACTIONS(5403), - [anon_sym_BSLASHglspl] = ACTIONS(5403), - [anon_sym_BSLASHGlspl] = ACTIONS(5403), - [anon_sym_BSLASHGLSpl] = ACTIONS(5403), - [anon_sym_BSLASHglsdisp] = ACTIONS(5403), - [anon_sym_BSLASHglslink] = ACTIONS(5403), - [anon_sym_BSLASHglstext] = ACTIONS(5403), - [anon_sym_BSLASHGlstext] = ACTIONS(5403), - [anon_sym_BSLASHGLStext] = ACTIONS(5403), - [anon_sym_BSLASHglsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), - [anon_sym_BSLASHglsplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSplural] = ACTIONS(5403), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHglsname] = ACTIONS(5403), - [anon_sym_BSLASHGlsname] = ACTIONS(5403), - [anon_sym_BSLASHGLSname] = ACTIONS(5403), - [anon_sym_BSLASHglssymbol] = ACTIONS(5403), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), - [anon_sym_BSLASHglsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), - [anon_sym_BSLASHglsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), - [anon_sym_BSLASHglsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), - [anon_sym_BSLASHglsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), - [anon_sym_BSLASHglsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), - [anon_sym_BSLASHnewacronym] = ACTIONS(5403), - [anon_sym_BSLASHacrshort] = ACTIONS(5403), - [anon_sym_BSLASHAcrshort] = ACTIONS(5403), - [anon_sym_BSLASHACRshort] = ACTIONS(5403), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), - [anon_sym_BSLASHacrlong] = ACTIONS(5403), - [anon_sym_BSLASHAcrlong] = ACTIONS(5403), - [anon_sym_BSLASHACRlong] = ACTIONS(5403), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), - [anon_sym_BSLASHacrfull] = ACTIONS(5403), - [anon_sym_BSLASHAcrfull] = ACTIONS(5403), - [anon_sym_BSLASHACRfull] = ACTIONS(5403), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), - [anon_sym_BSLASHacs] = ACTIONS(5403), - [anon_sym_BSLASHAcs] = ACTIONS(5403), - [anon_sym_BSLASHacsp] = ACTIONS(5403), - [anon_sym_BSLASHAcsp] = ACTIONS(5403), - [anon_sym_BSLASHacl] = ACTIONS(5403), - [anon_sym_BSLASHAcl] = ACTIONS(5403), - [anon_sym_BSLASHaclp] = ACTIONS(5403), - [anon_sym_BSLASHAclp] = ACTIONS(5403), - [anon_sym_BSLASHacf] = ACTIONS(5403), - [anon_sym_BSLASHAcf] = ACTIONS(5403), - [anon_sym_BSLASHacfp] = ACTIONS(5403), - [anon_sym_BSLASHAcfp] = ACTIONS(5403), - [anon_sym_BSLASHac] = ACTIONS(5403), - [anon_sym_BSLASHAc] = ACTIONS(5403), - [anon_sym_BSLASHacp] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), - [anon_sym_BSLASHcolor] = ACTIONS(5403), - [anon_sym_BSLASHcolorbox] = ACTIONS(5403), - [anon_sym_BSLASHtextcolor] = ACTIONS(5403), - [anon_sym_BSLASHpagecolor] = ACTIONS(5403), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), - [anon_sym_BSLASHtext] = ACTIONS(5403), - [anon_sym_BSLASHintertext] = ACTIONS(5403), - [anon_sym_shortintertext] = ACTIONS(5403), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1078] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_BSLASHpart] = ACTIONS(5395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddpart] = ACTIONS(5395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHchapter] = ACTIONS(5395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddchap] = ACTIONS(5395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsection] = ACTIONS(5395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddsec] = ACTIONS(5395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHparagraph] = ACTIONS(5395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHitem] = ACTIONS(5395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), + [616] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1079] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_BSLASHpart] = ACTIONS(5391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddpart] = ACTIONS(5391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHchapter] = ACTIONS(5391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddchap] = ACTIONS(5391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsection] = ACTIONS(5391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddsec] = ACTIONS(5391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHparagraph] = ACTIONS(5391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHitem] = ACTIONS(5391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), + [617] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_BSLASHpart] = ACTIONS(2025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddpart] = ACTIONS(2025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2023), + [anon_sym_BSLASHchapter] = ACTIONS(2025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddchap] = ACTIONS(2025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsection] = ACTIONS(2025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHaddsec] = ACTIONS(2025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2023), + [anon_sym_BSLASHparagraph] = ACTIONS(2025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2023), + [anon_sym_BSLASHitem] = ACTIONS(2025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [sym_word] = ACTIONS(2025), + [sym_placeholder] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym__] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_COLON] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2023), + [anon_sym_BSLASHbegin] = ACTIONS(2025), + [anon_sym_BSLASHtitle] = ACTIONS(2025), + [anon_sym_BSLASHauthor] = ACTIONS(2025), + [anon_sym_BSLASHusepackage] = ACTIONS(2025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2025), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2025), + [anon_sym_BSLASHbibliography] = ACTIONS(2025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2025), + [anon_sym_BSLASHincludesvg] = ACTIONS(2025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2025), + [anon_sym_BSLASHimport] = ACTIONS(2025), + [anon_sym_BSLASHsubimport] = ACTIONS(2025), + [anon_sym_BSLASHinputfrom] = ACTIONS(2025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2025), + [anon_sym_BSLASHincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2025), + [anon_sym_BSLASHcaption] = ACTIONS(2025), + [anon_sym_BSLASHcite] = ACTIONS(2025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCite] = ACTIONS(2025), + [anon_sym_BSLASHnocite] = ACTIONS(2025), + [anon_sym_BSLASHcitet] = ACTIONS(2025), + [anon_sym_BSLASHcitep] = ACTIONS(2025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteauthor] = ACTIONS(2025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitetitle] = ACTIONS(2025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteyear] = ACTIONS(2025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2023), + [anon_sym_BSLASHcitedate] = ACTIONS(2025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2023), + [anon_sym_BSLASHciteurl] = ACTIONS(2025), + [anon_sym_BSLASHfullcite] = ACTIONS(2025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2025), + [anon_sym_BSLASHcitealt] = ACTIONS(2025), + [anon_sym_BSLASHcitealp] = ACTIONS(2025), + [anon_sym_BSLASHcitetext] = ACTIONS(2025), + [anon_sym_BSLASHparencite] = ACTIONS(2025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHParencite] = ACTIONS(2025), + [anon_sym_BSLASHfootcite] = ACTIONS(2025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2025), + [anon_sym_BSLASHtextcite] = ACTIONS(2025), + [anon_sym_BSLASHTextcite] = ACTIONS(2025), + [anon_sym_BSLASHsmartcite] = ACTIONS(2025), + [anon_sym_BSLASHSmartcite] = ACTIONS(2025), + [anon_sym_BSLASHsupercite] = ACTIONS(2025), + [anon_sym_BSLASHautocite] = ACTIONS(2025), + [anon_sym_BSLASHAutocite] = ACTIONS(2025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2023), + [anon_sym_BSLASHvolcite] = ACTIONS(2025), + [anon_sym_BSLASHVolcite] = ACTIONS(2025), + [anon_sym_BSLASHpvolcite] = ACTIONS(2025), + [anon_sym_BSLASHPvolcite] = ACTIONS(2025), + [anon_sym_BSLASHfvolcite] = ACTIONS(2025), + [anon_sym_BSLASHftvolcite] = ACTIONS(2025), + [anon_sym_BSLASHsvolcite] = ACTIONS(2025), + [anon_sym_BSLASHSvolcite] = ACTIONS(2025), + [anon_sym_BSLASHtvolcite] = ACTIONS(2025), + [anon_sym_BSLASHTvolcite] = ACTIONS(2025), + [anon_sym_BSLASHavolcite] = ACTIONS(2025), + [anon_sym_BSLASHAvolcite] = ACTIONS(2025), + [anon_sym_BSLASHnotecite] = ACTIONS(2025), + [anon_sym_BSLASHNotecite] = ACTIONS(2025), + [anon_sym_BSLASHpnotecite] = ACTIONS(2025), + [anon_sym_BSLASHPnotecite] = ACTIONS(2025), + [anon_sym_BSLASHfnotecite] = ACTIONS(2025), + [anon_sym_BSLASHlabel] = ACTIONS(2025), + [anon_sym_BSLASHref] = ACTIONS(2025), + [anon_sym_BSLASHeqref] = ACTIONS(2025), + [anon_sym_BSLASHvref] = ACTIONS(2025), + [anon_sym_BSLASHVref] = ACTIONS(2025), + [anon_sym_BSLASHautoref] = ACTIONS(2025), + [anon_sym_BSLASHpageref] = ACTIONS(2025), + [anon_sym_BSLASHcref] = ACTIONS(2025), + [anon_sym_BSLASHCref] = ACTIONS(2025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnameCref] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2025), + [anon_sym_BSLASHlabelcref] = ACTIONS(2025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange] = ACTIONS(2025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHCrefrange] = ACTIONS(2025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2023), + [anon_sym_BSLASHnewlabel] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand] = ACTIONS(2025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdef] = ACTIONS(2025), + [anon_sym_BSLASHlet] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2025), + [anon_sym_BSLASHgls] = ACTIONS(2025), + [anon_sym_BSLASHGls] = ACTIONS(2025), + [anon_sym_BSLASHGLS] = ACTIONS(2025), + [anon_sym_BSLASHglspl] = ACTIONS(2025), + [anon_sym_BSLASHGlspl] = ACTIONS(2025), + [anon_sym_BSLASHGLSpl] = ACTIONS(2025), + [anon_sym_BSLASHglsdisp] = ACTIONS(2025), + [anon_sym_BSLASHglslink] = ACTIONS(2025), + [anon_sym_BSLASHglstext] = ACTIONS(2025), + [anon_sym_BSLASHGlstext] = ACTIONS(2025), + [anon_sym_BSLASHGLStext] = ACTIONS(2025), + [anon_sym_BSLASHglsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2025), + [anon_sym_BSLASHglsplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSplural] = ACTIONS(2025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2025), + [anon_sym_BSLASHglsname] = ACTIONS(2025), + [anon_sym_BSLASHGlsname] = ACTIONS(2025), + [anon_sym_BSLASHGLSname] = ACTIONS(2025), + [anon_sym_BSLASHglssymbol] = ACTIONS(2025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2025), + [anon_sym_BSLASHglsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2025), + [anon_sym_BSLASHglsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2025), + [anon_sym_BSLASHglsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2025), + [anon_sym_BSLASHglsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2025), + [anon_sym_BSLASHglsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2025), + [anon_sym_BSLASHnewacronym] = ACTIONS(2025), + [anon_sym_BSLASHacrshort] = ACTIONS(2025), + [anon_sym_BSLASHAcrshort] = ACTIONS(2025), + [anon_sym_BSLASHACRshort] = ACTIONS(2025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2025), + [anon_sym_BSLASHacrlong] = ACTIONS(2025), + [anon_sym_BSLASHAcrlong] = ACTIONS(2025), + [anon_sym_BSLASHACRlong] = ACTIONS(2025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2025), + [anon_sym_BSLASHacrfull] = ACTIONS(2025), + [anon_sym_BSLASHAcrfull] = ACTIONS(2025), + [anon_sym_BSLASHACRfull] = ACTIONS(2025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2025), + [anon_sym_BSLASHacs] = ACTIONS(2025), + [anon_sym_BSLASHAcs] = ACTIONS(2025), + [anon_sym_BSLASHacsp] = ACTIONS(2025), + [anon_sym_BSLASHAcsp] = ACTIONS(2025), + [anon_sym_BSLASHacl] = ACTIONS(2025), + [anon_sym_BSLASHAcl] = ACTIONS(2025), + [anon_sym_BSLASHaclp] = ACTIONS(2025), + [anon_sym_BSLASHAclp] = ACTIONS(2025), + [anon_sym_BSLASHacf] = ACTIONS(2025), + [anon_sym_BSLASHAcf] = ACTIONS(2025), + [anon_sym_BSLASHacfp] = ACTIONS(2025), + [anon_sym_BSLASHAcfp] = ACTIONS(2025), + [anon_sym_BSLASHac] = ACTIONS(2025), + [anon_sym_BSLASHAc] = ACTIONS(2025), + [anon_sym_BSLASHacp] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2025), + [anon_sym_BSLASHcolor] = ACTIONS(2025), + [anon_sym_BSLASHcolorbox] = ACTIONS(2025), + [anon_sym_BSLASHtextcolor] = ACTIONS(2025), + [anon_sym_BSLASHpagecolor] = ACTIONS(2025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2025), + [anon_sym_BSLASHtext] = ACTIONS(2025), + [anon_sym_BSLASHintertext] = ACTIONS(2025), + [anon_sym_shortintertext] = ACTIONS(2025), }, - [1080] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_BSLASHpart] = ACTIONS(5387), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddpart] = ACTIONS(5387), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHchapter] = ACTIONS(5387), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddchap] = ACTIONS(5387), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsection] = ACTIONS(5387), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddsec] = ACTIONS(5387), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHparagraph] = ACTIONS(5387), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5387), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHitem] = ACTIONS(5387), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), + [618] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1081] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), + [619] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1082] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_BSLASHpart] = ACTIONS(5383), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddpart] = ACTIONS(5383), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHchapter] = ACTIONS(5383), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddchap] = ACTIONS(5383), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsection] = ACTIONS(5383), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddsec] = ACTIONS(5383), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHparagraph] = ACTIONS(5383), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHitem] = ACTIONS(5383), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), + [620] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1083] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [621] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1084] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_BSLASHpart] = ACTIONS(5375), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddpart] = ACTIONS(5375), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHchapter] = ACTIONS(5375), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddchap] = ACTIONS(5375), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsection] = ACTIONS(5375), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddsec] = ACTIONS(5375), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHparagraph] = ACTIONS(5375), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHitem] = ACTIONS(5375), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), + [622] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1085] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_BSLASHpart] = ACTIONS(5365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddpart] = ACTIONS(5365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHchapter] = ACTIONS(5365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddchap] = ACTIONS(5365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsection] = ACTIONS(5365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddsec] = ACTIONS(5365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHparagraph] = ACTIONS(5365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHitem] = ACTIONS(5365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), + [623] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1086] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), + [624] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHend] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), }, - [1087] = { - [sym_command_name] = ACTIONS(5357), + [625] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(2001), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(2001), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddsec] = ACTIONS(2001), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [626] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(2001), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(1999), + [anon_sym_BSLASHpart] = ACTIONS(2001), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddpart] = ACTIONS(2001), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1999), + [anon_sym_BSLASHchapter] = ACTIONS(2001), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1999), + [anon_sym_BSLASHaddchap] = ACTIONS(2001), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2001), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1999), + [anon_sym_BSLASHparagraph] = ACTIONS(2001), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2001), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1999), + [anon_sym_BSLASHitem] = ACTIONS(2001), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [sym_word] = ACTIONS(2001), + [sym_placeholder] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1999), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1999), + [anon_sym_BSLASHbegin] = ACTIONS(2001), + [anon_sym_BSLASHtitle] = ACTIONS(2001), + [anon_sym_BSLASHauthor] = ACTIONS(2001), + [anon_sym_BSLASHusepackage] = ACTIONS(2001), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2001), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2001), + [anon_sym_BSLASHinclude] = ACTIONS(2001), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2001), + [anon_sym_BSLASHinput] = ACTIONS(2001), + [anon_sym_BSLASHsubfile] = ACTIONS(2001), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2001), + [anon_sym_BSLASHbibliography] = ACTIONS(2001), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2001), + [anon_sym_BSLASHincludesvg] = ACTIONS(2001), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2001), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2001), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2001), + [anon_sym_BSLASHimport] = ACTIONS(2001), + [anon_sym_BSLASHsubimport] = ACTIONS(2001), + [anon_sym_BSLASHinputfrom] = ACTIONS(2001), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2001), + [anon_sym_BSLASHincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2001), + [anon_sym_BSLASHcaption] = ACTIONS(2001), + [anon_sym_BSLASHcite] = ACTIONS(2001), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCite] = ACTIONS(2001), + [anon_sym_BSLASHnocite] = ACTIONS(2001), + [anon_sym_BSLASHcitet] = ACTIONS(2001), + [anon_sym_BSLASHcitep] = ACTIONS(2001), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteauthor] = ACTIONS(2001), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2001), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitetitle] = ACTIONS(2001), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteyear] = ACTIONS(2001), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1999), + [anon_sym_BSLASHcitedate] = ACTIONS(2001), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1999), + [anon_sym_BSLASHciteurl] = ACTIONS(2001), + [anon_sym_BSLASHfullcite] = ACTIONS(2001), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2001), + [anon_sym_BSLASHcitealt] = ACTIONS(2001), + [anon_sym_BSLASHcitealp] = ACTIONS(2001), + [anon_sym_BSLASHcitetext] = ACTIONS(2001), + [anon_sym_BSLASHparencite] = ACTIONS(2001), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHParencite] = ACTIONS(2001), + [anon_sym_BSLASHfootcite] = ACTIONS(2001), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2001), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2001), + [anon_sym_BSLASHtextcite] = ACTIONS(2001), + [anon_sym_BSLASHTextcite] = ACTIONS(2001), + [anon_sym_BSLASHsmartcite] = ACTIONS(2001), + [anon_sym_BSLASHSmartcite] = ACTIONS(2001), + [anon_sym_BSLASHsupercite] = ACTIONS(2001), + [anon_sym_BSLASHautocite] = ACTIONS(2001), + [anon_sym_BSLASHAutocite] = ACTIONS(2001), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1999), + [anon_sym_BSLASHvolcite] = ACTIONS(2001), + [anon_sym_BSLASHVolcite] = ACTIONS(2001), + [anon_sym_BSLASHpvolcite] = ACTIONS(2001), + [anon_sym_BSLASHPvolcite] = ACTIONS(2001), + [anon_sym_BSLASHfvolcite] = ACTIONS(2001), + [anon_sym_BSLASHftvolcite] = ACTIONS(2001), + [anon_sym_BSLASHsvolcite] = ACTIONS(2001), + [anon_sym_BSLASHSvolcite] = ACTIONS(2001), + [anon_sym_BSLASHtvolcite] = ACTIONS(2001), + [anon_sym_BSLASHTvolcite] = ACTIONS(2001), + [anon_sym_BSLASHavolcite] = ACTIONS(2001), + [anon_sym_BSLASHAvolcite] = ACTIONS(2001), + [anon_sym_BSLASHnotecite] = ACTIONS(2001), + [anon_sym_BSLASHNotecite] = ACTIONS(2001), + [anon_sym_BSLASHpnotecite] = ACTIONS(2001), + [anon_sym_BSLASHPnotecite] = ACTIONS(2001), + [anon_sym_BSLASHfnotecite] = ACTIONS(2001), + [anon_sym_BSLASHlabel] = ACTIONS(2001), + [anon_sym_BSLASHref] = ACTIONS(2001), + [anon_sym_BSLASHeqref] = ACTIONS(2001), + [anon_sym_BSLASHvref] = ACTIONS(2001), + [anon_sym_BSLASHVref] = ACTIONS(2001), + [anon_sym_BSLASHautoref] = ACTIONS(2001), + [anon_sym_BSLASHpageref] = ACTIONS(2001), + [anon_sym_BSLASHcref] = ACTIONS(2001), + [anon_sym_BSLASHCref] = ACTIONS(2001), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnameCref] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2001), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2001), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2001), + [anon_sym_BSLASHlabelcref] = ACTIONS(2001), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange] = ACTIONS(2001), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHCrefrange] = ACTIONS(2001), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1999), + [anon_sym_BSLASHnewlabel] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand] = ACTIONS(2001), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2001), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2001), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1999), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2001), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdef] = ACTIONS(2001), + [anon_sym_BSLASHlet] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2001), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2001), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2001), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2001), + [anon_sym_BSLASHgls] = ACTIONS(2001), + [anon_sym_BSLASHGls] = ACTIONS(2001), + [anon_sym_BSLASHGLS] = ACTIONS(2001), + [anon_sym_BSLASHglspl] = ACTIONS(2001), + [anon_sym_BSLASHGlspl] = ACTIONS(2001), + [anon_sym_BSLASHGLSpl] = ACTIONS(2001), + [anon_sym_BSLASHglsdisp] = ACTIONS(2001), + [anon_sym_BSLASHglslink] = ACTIONS(2001), + [anon_sym_BSLASHglstext] = ACTIONS(2001), + [anon_sym_BSLASHGlstext] = ACTIONS(2001), + [anon_sym_BSLASHGLStext] = ACTIONS(2001), + [anon_sym_BSLASHglsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2001), + [anon_sym_BSLASHglsplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSplural] = ACTIONS(2001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2001), + [anon_sym_BSLASHglsname] = ACTIONS(2001), + [anon_sym_BSLASHGlsname] = ACTIONS(2001), + [anon_sym_BSLASHGLSname] = ACTIONS(2001), + [anon_sym_BSLASHglssymbol] = ACTIONS(2001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2001), + [anon_sym_BSLASHglsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2001), + [anon_sym_BSLASHglsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2001), + [anon_sym_BSLASHglsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2001), + [anon_sym_BSLASHglsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2001), + [anon_sym_BSLASHglsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2001), + [anon_sym_BSLASHnewacronym] = ACTIONS(2001), + [anon_sym_BSLASHacrshort] = ACTIONS(2001), + [anon_sym_BSLASHAcrshort] = ACTIONS(2001), + [anon_sym_BSLASHACRshort] = ACTIONS(2001), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2001), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2001), + [anon_sym_BSLASHacrlong] = ACTIONS(2001), + [anon_sym_BSLASHAcrlong] = ACTIONS(2001), + [anon_sym_BSLASHACRlong] = ACTIONS(2001), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2001), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2001), + [anon_sym_BSLASHacrfull] = ACTIONS(2001), + [anon_sym_BSLASHAcrfull] = ACTIONS(2001), + [anon_sym_BSLASHACRfull] = ACTIONS(2001), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2001), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2001), + [anon_sym_BSLASHacs] = ACTIONS(2001), + [anon_sym_BSLASHAcs] = ACTIONS(2001), + [anon_sym_BSLASHacsp] = ACTIONS(2001), + [anon_sym_BSLASHAcsp] = ACTIONS(2001), + [anon_sym_BSLASHacl] = ACTIONS(2001), + [anon_sym_BSLASHAcl] = ACTIONS(2001), + [anon_sym_BSLASHaclp] = ACTIONS(2001), + [anon_sym_BSLASHAclp] = ACTIONS(2001), + [anon_sym_BSLASHacf] = ACTIONS(2001), + [anon_sym_BSLASHAcf] = ACTIONS(2001), + [anon_sym_BSLASHacfp] = ACTIONS(2001), + [anon_sym_BSLASHAcfp] = ACTIONS(2001), + [anon_sym_BSLASHac] = ACTIONS(2001), + [anon_sym_BSLASHAc] = ACTIONS(2001), + [anon_sym_BSLASHacp] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2001), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2001), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2001), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2001), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2001), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2001), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2001), + [anon_sym_BSLASHcolor] = ACTIONS(2001), + [anon_sym_BSLASHcolorbox] = ACTIONS(2001), + [anon_sym_BSLASHtextcolor] = ACTIONS(2001), + [anon_sym_BSLASHpagecolor] = ACTIONS(2001), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2001), + [anon_sym_BSLASHtext] = ACTIONS(2001), + [anon_sym_BSLASHintertext] = ACTIONS(2001), + [anon_sym_shortintertext] = ACTIONS(2001), + }, + [627] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), + }, + [628] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1088] = { - [sym_command_name] = ACTIONS(5353), + [629] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), - }, - [1089] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), - }, - [1090] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1091] = { - [sym_command_name] = ACTIONS(5341), + [630] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1092] = { - [sym_command_name] = ACTIONS(5337), + [631] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), - }, - [1093] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASHpart] = ACTIONS(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), - }, - [1094] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1095] = { - [sym_command_name] = ACTIONS(5283), + [632] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), - }, - [1096] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASHpart] = ACTIONS(5277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddpart] = ACTIONS(5277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHchapter] = ACTIONS(5277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddchap] = ACTIONS(5277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsection] = ACTIONS(5277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddsec] = ACTIONS(5277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHparagraph] = ACTIONS(5277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHitem] = ACTIONS(5277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), - }, - [1097] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_BSLASHpart] = ACTIONS(5257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddpart] = ACTIONS(5257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHchapter] = ACTIONS(5257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddchap] = ACTIONS(5257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsection] = ACTIONS(5257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddsec] = ACTIONS(5257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHparagraph] = ACTIONS(5257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHitem] = ACTIONS(5257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1098] = { - [sym_command_name] = ACTIONS(5249), + [633] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_BSLASHpart] = ACTIONS(5249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddpart] = ACTIONS(5249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHchapter] = ACTIONS(5249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddchap] = ACTIONS(5249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsection] = ACTIONS(5249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddsec] = ACTIONS(5249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHparagraph] = ACTIONS(5249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHitem] = ACTIONS(5249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [sym_word] = ACTIONS(5249), - [sym_placeholder] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5249), - [anon_sym_STAR] = ACTIONS(5249), - [anon_sym_SLASH] = ACTIONS(5249), - [anon_sym_CARET] = ACTIONS(5249), - [anon_sym__] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5249), - [anon_sym_PIPE] = ACTIONS(5249), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_SQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASHbegin] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), - [anon_sym_BSLASHinclude] = ACTIONS(5249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), - [anon_sym_BSLASHinput] = ACTIONS(5249), - [anon_sym_BSLASHsubfile] = ACTIONS(5249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), - [anon_sym_BSLASHbibliography] = ACTIONS(5249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), - [anon_sym_BSLASHincludesvg] = ACTIONS(5249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), - [anon_sym_BSLASHimport] = ACTIONS(5249), - [anon_sym_BSLASHsubimport] = ACTIONS(5249), - [anon_sym_BSLASHinputfrom] = ACTIONS(5249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), - [anon_sym_BSLASHincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [anon_sym_BSLASHcite] = ACTIONS(5249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCite] = ACTIONS(5249), - [anon_sym_BSLASHnocite] = ACTIONS(5249), - [anon_sym_BSLASHcitet] = ACTIONS(5249), - [anon_sym_BSLASHcitep] = ACTIONS(5249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteyear] = ACTIONS(5249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitedate] = ACTIONS(5249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteurl] = ACTIONS(5249), - [anon_sym_BSLASHfullcite] = ACTIONS(5249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), - [anon_sym_BSLASHcitealt] = ACTIONS(5249), - [anon_sym_BSLASHcitealp] = ACTIONS(5249), - [anon_sym_BSLASHcitetext] = ACTIONS(5249), - [anon_sym_BSLASHparencite] = ACTIONS(5249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHParencite] = ACTIONS(5249), - [anon_sym_BSLASHfootcite] = ACTIONS(5249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), - [anon_sym_BSLASHtextcite] = ACTIONS(5249), - [anon_sym_BSLASHTextcite] = ACTIONS(5249), - [anon_sym_BSLASHsmartcite] = ACTIONS(5249), - [anon_sym_BSLASHSmartcite] = ACTIONS(5249), - [anon_sym_BSLASHsupercite] = ACTIONS(5249), - [anon_sym_BSLASHautocite] = ACTIONS(5249), - [anon_sym_BSLASHAutocite] = ACTIONS(5249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHvolcite] = ACTIONS(5249), - [anon_sym_BSLASHVolcite] = ACTIONS(5249), - [anon_sym_BSLASHpvolcite] = ACTIONS(5249), - [anon_sym_BSLASHPvolcite] = ACTIONS(5249), - [anon_sym_BSLASHfvolcite] = ACTIONS(5249), - [anon_sym_BSLASHftvolcite] = ACTIONS(5249), - [anon_sym_BSLASHsvolcite] = ACTIONS(5249), - [anon_sym_BSLASHSvolcite] = ACTIONS(5249), - [anon_sym_BSLASHtvolcite] = ACTIONS(5249), - [anon_sym_BSLASHTvolcite] = ACTIONS(5249), - [anon_sym_BSLASHavolcite] = ACTIONS(5249), - [anon_sym_BSLASHAvolcite] = ACTIONS(5249), - [anon_sym_BSLASHnotecite] = ACTIONS(5249), - [anon_sym_BSLASHNotecite] = ACTIONS(5249), - [anon_sym_BSLASHpnotecite] = ACTIONS(5249), - [anon_sym_BSLASHPnotecite] = ACTIONS(5249), - [anon_sym_BSLASHfnotecite] = ACTIONS(5249), - [anon_sym_BSLASHlabel] = ACTIONS(5249), - [anon_sym_BSLASHref] = ACTIONS(5249), - [anon_sym_BSLASHeqref] = ACTIONS(5249), - [anon_sym_BSLASHvref] = ACTIONS(5249), - [anon_sym_BSLASHVref] = ACTIONS(5249), - [anon_sym_BSLASHautoref] = ACTIONS(5249), - [anon_sym_BSLASHpageref] = ACTIONS(5249), - [anon_sym_BSLASHcref] = ACTIONS(5249), - [anon_sym_BSLASHCref] = ACTIONS(5249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnameCref] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHlabelcref] = ACTIONS(5249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), - }, - [1099] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), - }, - [1100] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_BSLASHpart] = ACTIONS(5241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddpart] = ACTIONS(5241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHchapter] = ACTIONS(5241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddchap] = ACTIONS(5241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsection] = ACTIONS(5241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddsec] = ACTIONS(5241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHparagraph] = ACTIONS(5241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHitem] = ACTIONS(5241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), - }, - [1101] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_BSLASHpart] = ACTIONS(5233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddpart] = ACTIONS(5233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHchapter] = ACTIONS(5233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddchap] = ACTIONS(5233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsection] = ACTIONS(5233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddsec] = ACTIONS(5233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHparagraph] = ACTIONS(5233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHitem] = ACTIONS(5233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), - }, - [1102] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_BSLASHpart] = ACTIONS(5229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddpart] = ACTIONS(5229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHchapter] = ACTIONS(5229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddchap] = ACTIONS(5229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsection] = ACTIONS(5229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddsec] = ACTIONS(5229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHparagraph] = ACTIONS(5229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHitem] = ACTIONS(5229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), - }, - [1103] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHend] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1104] = { - [sym_command_name] = ACTIONS(5327), + [634] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_BSLASHpart] = ACTIONS(5327), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5327), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5327), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5327), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5327), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5327), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5327), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5327), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHend] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), - }, - [1105] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), - }, - [1106] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), - }, - [1107] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_BSLASHpart] = ACTIONS(5269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddpart] = ACTIONS(5269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHchapter] = ACTIONS(5269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddchap] = ACTIONS(5269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsection] = ACTIONS(5269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddsec] = ACTIONS(5269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHparagraph] = ACTIONS(5269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHitem] = ACTIONS(5269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), - }, - [1108] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_BSLASHpart] = ACTIONS(5213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddpart] = ACTIONS(5213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHchapter] = ACTIONS(5213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddchap] = ACTIONS(5213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsection] = ACTIONS(5213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddsec] = ACTIONS(5213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHparagraph] = ACTIONS(5213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHitem] = ACTIONS(5213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [1109] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [1110] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [1111] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), - }, - [1112] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), - }, - [1113] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHend] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), - }, - [1114] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), - }, - [1115] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), - }, - [1116] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), - }, - [1117] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [1118] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [1119] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [1120] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [1121] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), - }, - [1122] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), - }, - [1123] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1124] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHend] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [635] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1125] = { - [sym_command_name] = ACTIONS(5307), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5307), - [anon_sym_LPAREN] = ACTIONS(5305), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5305), - [anon_sym_COMMA] = ACTIONS(5305), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_BSLASHpart] = ACTIONS(5307), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddpart] = ACTIONS(5307), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHchapter] = ACTIONS(5307), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddchap] = ACTIONS(5307), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsection] = ACTIONS(5307), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddsec] = ACTIONS(5307), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHparagraph] = ACTIONS(5307), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHitem] = ACTIONS(5307), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5305), - [anon_sym_LBRACE] = ACTIONS(5305), - [sym_word] = ACTIONS(5307), - [sym_placeholder] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5307), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_STAR] = ACTIONS(5307), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_CARET] = ACTIONS(5307), - [anon_sym__] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5307), - [anon_sym_GT] = ACTIONS(5307), - [anon_sym_BANG] = ACTIONS(5307), - [anon_sym_PIPE] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_SQUOTE] = ACTIONS(5307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5305), - [anon_sym_BSLASHbegin] = ACTIONS(5307), - [anon_sym_BSLASHend] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5307), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5307), - [anon_sym_BSLASHinclude] = ACTIONS(5307), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5307), - [anon_sym_BSLASHinput] = ACTIONS(5307), - [anon_sym_BSLASHsubfile] = ACTIONS(5307), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5307), - [anon_sym_BSLASHbibliography] = ACTIONS(5307), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5307), - [anon_sym_BSLASHincludesvg] = ACTIONS(5307), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5307), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5307), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5307), - [anon_sym_BSLASHimport] = ACTIONS(5307), - [anon_sym_BSLASHsubimport] = ACTIONS(5307), - [anon_sym_BSLASHinputfrom] = ACTIONS(5307), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5307), - [anon_sym_BSLASHincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHcaption] = ACTIONS(5307), - [anon_sym_BSLASHcite] = ACTIONS(5307), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCite] = ACTIONS(5307), - [anon_sym_BSLASHnocite] = ACTIONS(5307), - [anon_sym_BSLASHcitet] = ACTIONS(5307), - [anon_sym_BSLASHcitep] = ACTIONS(5307), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteyear] = ACTIONS(5307), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitedate] = ACTIONS(5307), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteurl] = ACTIONS(5307), - [anon_sym_BSLASHfullcite] = ACTIONS(5307), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5307), - [anon_sym_BSLASHcitealt] = ACTIONS(5307), - [anon_sym_BSLASHcitealp] = ACTIONS(5307), - [anon_sym_BSLASHcitetext] = ACTIONS(5307), - [anon_sym_BSLASHparencite] = ACTIONS(5307), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHParencite] = ACTIONS(5307), - [anon_sym_BSLASHfootcite] = ACTIONS(5307), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5307), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5307), - [anon_sym_BSLASHtextcite] = ACTIONS(5307), - [anon_sym_BSLASHTextcite] = ACTIONS(5307), - [anon_sym_BSLASHsmartcite] = ACTIONS(5307), - [anon_sym_BSLASHSmartcite] = ACTIONS(5307), - [anon_sym_BSLASHsupercite] = ACTIONS(5307), - [anon_sym_BSLASHautocite] = ACTIONS(5307), - [anon_sym_BSLASHAutocite] = ACTIONS(5307), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHvolcite] = ACTIONS(5307), - [anon_sym_BSLASHVolcite] = ACTIONS(5307), - [anon_sym_BSLASHpvolcite] = ACTIONS(5307), - [anon_sym_BSLASHPvolcite] = ACTIONS(5307), - [anon_sym_BSLASHfvolcite] = ACTIONS(5307), - [anon_sym_BSLASHftvolcite] = ACTIONS(5307), - [anon_sym_BSLASHsvolcite] = ACTIONS(5307), - [anon_sym_BSLASHSvolcite] = ACTIONS(5307), - [anon_sym_BSLASHtvolcite] = ACTIONS(5307), - [anon_sym_BSLASHTvolcite] = ACTIONS(5307), - [anon_sym_BSLASHavolcite] = ACTIONS(5307), - [anon_sym_BSLASHAvolcite] = ACTIONS(5307), - [anon_sym_BSLASHnotecite] = ACTIONS(5307), - [anon_sym_BSLASHNotecite] = ACTIONS(5307), - [anon_sym_BSLASHpnotecite] = ACTIONS(5307), - [anon_sym_BSLASHPnotecite] = ACTIONS(5307), - [anon_sym_BSLASHfnotecite] = ACTIONS(5307), - [anon_sym_BSLASHlabel] = ACTIONS(5307), - [anon_sym_BSLASHref] = ACTIONS(5307), - [anon_sym_BSLASHeqref] = ACTIONS(5307), - [anon_sym_BSLASHvref] = ACTIONS(5307), - [anon_sym_BSLASHVref] = ACTIONS(5307), - [anon_sym_BSLASHautoref] = ACTIONS(5307), - [anon_sym_BSLASHpageref] = ACTIONS(5307), - [anon_sym_BSLASHcref] = ACTIONS(5307), - [anon_sym_BSLASHCref] = ACTIONS(5307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnameCref] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHlabelcref] = ACTIONS(5307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnewlabel] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdef] = ACTIONS(5307), - [anon_sym_BSLASHlet] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5307), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5307), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5307), - [anon_sym_BSLASHgls] = ACTIONS(5307), - [anon_sym_BSLASHGls] = ACTIONS(5307), - [anon_sym_BSLASHGLS] = ACTIONS(5307), - [anon_sym_BSLASHglspl] = ACTIONS(5307), - [anon_sym_BSLASHGlspl] = ACTIONS(5307), - [anon_sym_BSLASHGLSpl] = ACTIONS(5307), - [anon_sym_BSLASHglsdisp] = ACTIONS(5307), - [anon_sym_BSLASHglslink] = ACTIONS(5307), - [anon_sym_BSLASHglstext] = ACTIONS(5307), - [anon_sym_BSLASHGlstext] = ACTIONS(5307), - [anon_sym_BSLASHGLStext] = ACTIONS(5307), - [anon_sym_BSLASHglsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5307), - [anon_sym_BSLASHglsplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSplural] = ACTIONS(5307), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHglsname] = ACTIONS(5307), - [anon_sym_BSLASHGlsname] = ACTIONS(5307), - [anon_sym_BSLASHGLSname] = ACTIONS(5307), - [anon_sym_BSLASHglssymbol] = ACTIONS(5307), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5307), - [anon_sym_BSLASHglsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5307), - [anon_sym_BSLASHglsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5307), - [anon_sym_BSLASHglsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5307), - [anon_sym_BSLASHglsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5307), - [anon_sym_BSLASHglsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5307), - [anon_sym_BSLASHnewacronym] = ACTIONS(5307), - [anon_sym_BSLASHacrshort] = ACTIONS(5307), - [anon_sym_BSLASHAcrshort] = ACTIONS(5307), - [anon_sym_BSLASHACRshort] = ACTIONS(5307), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5307), - [anon_sym_BSLASHacrlong] = ACTIONS(5307), - [anon_sym_BSLASHAcrlong] = ACTIONS(5307), - [anon_sym_BSLASHACRlong] = ACTIONS(5307), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5307), - [anon_sym_BSLASHacrfull] = ACTIONS(5307), - [anon_sym_BSLASHAcrfull] = ACTIONS(5307), - [anon_sym_BSLASHACRfull] = ACTIONS(5307), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5307), - [anon_sym_BSLASHacs] = ACTIONS(5307), - [anon_sym_BSLASHAcs] = ACTIONS(5307), - [anon_sym_BSLASHacsp] = ACTIONS(5307), - [anon_sym_BSLASHAcsp] = ACTIONS(5307), - [anon_sym_BSLASHacl] = ACTIONS(5307), - [anon_sym_BSLASHAcl] = ACTIONS(5307), - [anon_sym_BSLASHaclp] = ACTIONS(5307), - [anon_sym_BSLASHAclp] = ACTIONS(5307), - [anon_sym_BSLASHacf] = ACTIONS(5307), - [anon_sym_BSLASHAcf] = ACTIONS(5307), - [anon_sym_BSLASHacfp] = ACTIONS(5307), - [anon_sym_BSLASHAcfp] = ACTIONS(5307), - [anon_sym_BSLASHac] = ACTIONS(5307), - [anon_sym_BSLASHAc] = ACTIONS(5307), - [anon_sym_BSLASHacp] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5307), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5307), - [anon_sym_BSLASHcolor] = ACTIONS(5307), - [anon_sym_BSLASHcolorbox] = ACTIONS(5307), - [anon_sym_BSLASHtextcolor] = ACTIONS(5307), - [anon_sym_BSLASHpagecolor] = ACTIONS(5307), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5307), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), - [anon_sym_BSLASHtext] = ACTIONS(5307), - [anon_sym_BSLASHintertext] = ACTIONS(5307), - [anon_sym_shortintertext] = ACTIONS(5307), + [636] = { + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(560), + [aux_sym__section_repeat2] = STATE(560), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHend] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1126] = { - [sym_command_name] = ACTIONS(5303), + [637] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5303), - [anon_sym_LPAREN] = ACTIONS(5301), - [anon_sym_RPAREN] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5301), - [anon_sym_COMMA] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_BSLASHpart] = ACTIONS(5303), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddpart] = ACTIONS(5303), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHchapter] = ACTIONS(5303), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddchap] = ACTIONS(5303), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsection] = ACTIONS(5303), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddsec] = ACTIONS(5303), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHparagraph] = ACTIONS(5303), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHitem] = ACTIONS(5303), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), - [anon_sym_LBRACE] = ACTIONS(5301), - [sym_word] = ACTIONS(5303), - [sym_placeholder] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_SLASH] = ACTIONS(5303), - [anon_sym_CARET] = ACTIONS(5303), - [anon_sym__] = ACTIONS(5303), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_BANG] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_SQUOTE] = ACTIONS(5303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), - [anon_sym_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), - [anon_sym_BSLASHbegin] = ACTIONS(5303), - [anon_sym_BSLASHend] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5303), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), - [anon_sym_BSLASHinclude] = ACTIONS(5303), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), - [anon_sym_BSLASHinput] = ACTIONS(5303), - [anon_sym_BSLASHsubfile] = ACTIONS(5303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), - [anon_sym_BSLASHbibliography] = ACTIONS(5303), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), - [anon_sym_BSLASHincludesvg] = ACTIONS(5303), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), - [anon_sym_BSLASHimport] = ACTIONS(5303), - [anon_sym_BSLASHsubimport] = ACTIONS(5303), - [anon_sym_BSLASHinputfrom] = ACTIONS(5303), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), - [anon_sym_BSLASHincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHcaption] = ACTIONS(5303), - [anon_sym_BSLASHcite] = ACTIONS(5303), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCite] = ACTIONS(5303), - [anon_sym_BSLASHnocite] = ACTIONS(5303), - [anon_sym_BSLASHcitet] = ACTIONS(5303), - [anon_sym_BSLASHcitep] = ACTIONS(5303), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteyear] = ACTIONS(5303), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitedate] = ACTIONS(5303), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteurl] = ACTIONS(5303), - [anon_sym_BSLASHfullcite] = ACTIONS(5303), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), - [anon_sym_BSLASHcitealt] = ACTIONS(5303), - [anon_sym_BSLASHcitealp] = ACTIONS(5303), - [anon_sym_BSLASHcitetext] = ACTIONS(5303), - [anon_sym_BSLASHparencite] = ACTIONS(5303), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHParencite] = ACTIONS(5303), - [anon_sym_BSLASHfootcite] = ACTIONS(5303), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), - [anon_sym_BSLASHtextcite] = ACTIONS(5303), - [anon_sym_BSLASHTextcite] = ACTIONS(5303), - [anon_sym_BSLASHsmartcite] = ACTIONS(5303), - [anon_sym_BSLASHSmartcite] = ACTIONS(5303), - [anon_sym_BSLASHsupercite] = ACTIONS(5303), - [anon_sym_BSLASHautocite] = ACTIONS(5303), - [anon_sym_BSLASHAutocite] = ACTIONS(5303), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHvolcite] = ACTIONS(5303), - [anon_sym_BSLASHVolcite] = ACTIONS(5303), - [anon_sym_BSLASHpvolcite] = ACTIONS(5303), - [anon_sym_BSLASHPvolcite] = ACTIONS(5303), - [anon_sym_BSLASHfvolcite] = ACTIONS(5303), - [anon_sym_BSLASHftvolcite] = ACTIONS(5303), - [anon_sym_BSLASHsvolcite] = ACTIONS(5303), - [anon_sym_BSLASHSvolcite] = ACTIONS(5303), - [anon_sym_BSLASHtvolcite] = ACTIONS(5303), - [anon_sym_BSLASHTvolcite] = ACTIONS(5303), - [anon_sym_BSLASHavolcite] = ACTIONS(5303), - [anon_sym_BSLASHAvolcite] = ACTIONS(5303), - [anon_sym_BSLASHnotecite] = ACTIONS(5303), - [anon_sym_BSLASHNotecite] = ACTIONS(5303), - [anon_sym_BSLASHpnotecite] = ACTIONS(5303), - [anon_sym_BSLASHPnotecite] = ACTIONS(5303), - [anon_sym_BSLASHfnotecite] = ACTIONS(5303), - [anon_sym_BSLASHlabel] = ACTIONS(5303), - [anon_sym_BSLASHref] = ACTIONS(5303), - [anon_sym_BSLASHeqref] = ACTIONS(5303), - [anon_sym_BSLASHvref] = ACTIONS(5303), - [anon_sym_BSLASHVref] = ACTIONS(5303), - [anon_sym_BSLASHautoref] = ACTIONS(5303), - [anon_sym_BSLASHpageref] = ACTIONS(5303), - [anon_sym_BSLASHcref] = ACTIONS(5303), - [anon_sym_BSLASHCref] = ACTIONS(5303), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnameCref] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHlabelcref] = ACTIONS(5303), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnewlabel] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdef] = ACTIONS(5303), - [anon_sym_BSLASHlet] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), - [anon_sym_BSLASHgls] = ACTIONS(5303), - [anon_sym_BSLASHGls] = ACTIONS(5303), - [anon_sym_BSLASHGLS] = ACTIONS(5303), - [anon_sym_BSLASHglspl] = ACTIONS(5303), - [anon_sym_BSLASHGlspl] = ACTIONS(5303), - [anon_sym_BSLASHGLSpl] = ACTIONS(5303), - [anon_sym_BSLASHglsdisp] = ACTIONS(5303), - [anon_sym_BSLASHglslink] = ACTIONS(5303), - [anon_sym_BSLASHglstext] = ACTIONS(5303), - [anon_sym_BSLASHGlstext] = ACTIONS(5303), - [anon_sym_BSLASHGLStext] = ACTIONS(5303), - [anon_sym_BSLASHglsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), - [anon_sym_BSLASHglsplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSplural] = ACTIONS(5303), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHglsname] = ACTIONS(5303), - [anon_sym_BSLASHGlsname] = ACTIONS(5303), - [anon_sym_BSLASHGLSname] = ACTIONS(5303), - [anon_sym_BSLASHglssymbol] = ACTIONS(5303), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), - [anon_sym_BSLASHglsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), - [anon_sym_BSLASHglsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), - [anon_sym_BSLASHglsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), - [anon_sym_BSLASHglsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), - [anon_sym_BSLASHglsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), - [anon_sym_BSLASHnewacronym] = ACTIONS(5303), - [anon_sym_BSLASHacrshort] = ACTIONS(5303), - [anon_sym_BSLASHAcrshort] = ACTIONS(5303), - [anon_sym_BSLASHACRshort] = ACTIONS(5303), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), - [anon_sym_BSLASHacrlong] = ACTIONS(5303), - [anon_sym_BSLASHAcrlong] = ACTIONS(5303), - [anon_sym_BSLASHACRlong] = ACTIONS(5303), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), - [anon_sym_BSLASHacrfull] = ACTIONS(5303), - [anon_sym_BSLASHAcrfull] = ACTIONS(5303), - [anon_sym_BSLASHACRfull] = ACTIONS(5303), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), - [anon_sym_BSLASHacs] = ACTIONS(5303), - [anon_sym_BSLASHAcs] = ACTIONS(5303), - [anon_sym_BSLASHacsp] = ACTIONS(5303), - [anon_sym_BSLASHAcsp] = ACTIONS(5303), - [anon_sym_BSLASHacl] = ACTIONS(5303), - [anon_sym_BSLASHAcl] = ACTIONS(5303), - [anon_sym_BSLASHaclp] = ACTIONS(5303), - [anon_sym_BSLASHAclp] = ACTIONS(5303), - [anon_sym_BSLASHacf] = ACTIONS(5303), - [anon_sym_BSLASHAcf] = ACTIONS(5303), - [anon_sym_BSLASHacfp] = ACTIONS(5303), - [anon_sym_BSLASHAcfp] = ACTIONS(5303), - [anon_sym_BSLASHac] = ACTIONS(5303), - [anon_sym_BSLASHAc] = ACTIONS(5303), - [anon_sym_BSLASHacp] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), - [anon_sym_BSLASHcolor] = ACTIONS(5303), - [anon_sym_BSLASHcolorbox] = ACTIONS(5303), - [anon_sym_BSLASHtextcolor] = ACTIONS(5303), - [anon_sym_BSLASHpagecolor] = ACTIONS(5303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), - [anon_sym_BSLASHtext] = ACTIONS(5303), - [anon_sym_BSLASHintertext] = ACTIONS(5303), - [anon_sym_shortintertext] = ACTIONS(5303), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1127] = { - [sym_command_name] = ACTIONS(5295), + [638] = { + [sym_curly_group] = STATE(1170), + [sym_mixed_group] = STATE(1170), + [aux_sym_generic_command_repeat1] = STATE(549), + [sym_command_name] = ACTIONS(5337), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHend] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - [anon_sym_BSLASHtext] = ACTIONS(5295), - [anon_sym_BSLASHintertext] = ACTIONS(5295), - [anon_sym_shortintertext] = ACTIONS(5295), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(5587), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_BSLASHpart] = ACTIONS(5337), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddpart] = ACTIONS(5337), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), + [anon_sym_BSLASHchapter] = ACTIONS(5337), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddchap] = ACTIONS(5337), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsection] = ACTIONS(5337), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHaddsec] = ACTIONS(5337), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), + [anon_sym_BSLASHparagraph] = ACTIONS(5337), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), + [anon_sym_BSLASHitem] = ACTIONS(5337), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHbegin] = ACTIONS(5337), + [anon_sym_BSLASHend] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), + }, + [639] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(1979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1128] = { - [sym_command_name] = ACTIONS(5273), + [640] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5273), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_RPAREN] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5271), - [anon_sym_RBRACK] = ACTIONS(5271), - [anon_sym_COMMA] = ACTIONS(5271), - [anon_sym_EQ] = ACTIONS(5271), - [anon_sym_BSLASHpart] = ACTIONS(5273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddpart] = ACTIONS(5273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHchapter] = ACTIONS(5273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddchap] = ACTIONS(5273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsection] = ACTIONS(5273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddsec] = ACTIONS(5273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHparagraph] = ACTIONS(5273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHitem] = ACTIONS(5273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), - [anon_sym_LBRACE] = ACTIONS(5271), - [sym_word] = ACTIONS(5273), - [sym_placeholder] = ACTIONS(5271), - [anon_sym_PLUS] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(5273), - [anon_sym_STAR] = ACTIONS(5273), - [anon_sym_SLASH] = ACTIONS(5273), - [anon_sym_CARET] = ACTIONS(5273), - [anon_sym__] = ACTIONS(5273), - [anon_sym_LT] = ACTIONS(5273), - [anon_sym_GT] = ACTIONS(5273), - [anon_sym_BANG] = ACTIONS(5273), - [anon_sym_PIPE] = ACTIONS(5273), - [anon_sym_COLON] = ACTIONS(5273), - [anon_sym_SQUOTE] = ACTIONS(5273), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), - [anon_sym_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), - [anon_sym_BSLASHbegin] = ACTIONS(5273), - [anon_sym_BSLASHend] = ACTIONS(5273), - [anon_sym_BSLASHusepackage] = ACTIONS(5273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), - [anon_sym_BSLASHinclude] = ACTIONS(5273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), - [anon_sym_BSLASHinput] = ACTIONS(5273), - [anon_sym_BSLASHsubfile] = ACTIONS(5273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), - [anon_sym_BSLASHbibliography] = ACTIONS(5273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), - [anon_sym_BSLASHincludesvg] = ACTIONS(5273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), - [anon_sym_BSLASHimport] = ACTIONS(5273), - [anon_sym_BSLASHsubimport] = ACTIONS(5273), - [anon_sym_BSLASHinputfrom] = ACTIONS(5273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), - [anon_sym_BSLASHincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHcaption] = ACTIONS(5273), - [anon_sym_BSLASHcite] = ACTIONS(5273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCite] = ACTIONS(5273), - [anon_sym_BSLASHnocite] = ACTIONS(5273), - [anon_sym_BSLASHcitet] = ACTIONS(5273), - [anon_sym_BSLASHcitep] = ACTIONS(5273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteyear] = ACTIONS(5273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitedate] = ACTIONS(5273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteurl] = ACTIONS(5273), - [anon_sym_BSLASHfullcite] = ACTIONS(5273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), - [anon_sym_BSLASHcitealt] = ACTIONS(5273), - [anon_sym_BSLASHcitealp] = ACTIONS(5273), - [anon_sym_BSLASHcitetext] = ACTIONS(5273), - [anon_sym_BSLASHparencite] = ACTIONS(5273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHParencite] = ACTIONS(5273), - [anon_sym_BSLASHfootcite] = ACTIONS(5273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), - [anon_sym_BSLASHtextcite] = ACTIONS(5273), - [anon_sym_BSLASHTextcite] = ACTIONS(5273), - [anon_sym_BSLASHsmartcite] = ACTIONS(5273), - [anon_sym_BSLASHSmartcite] = ACTIONS(5273), - [anon_sym_BSLASHsupercite] = ACTIONS(5273), - [anon_sym_BSLASHautocite] = ACTIONS(5273), - [anon_sym_BSLASHAutocite] = ACTIONS(5273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHvolcite] = ACTIONS(5273), - [anon_sym_BSLASHVolcite] = ACTIONS(5273), - [anon_sym_BSLASHpvolcite] = ACTIONS(5273), - [anon_sym_BSLASHPvolcite] = ACTIONS(5273), - [anon_sym_BSLASHfvolcite] = ACTIONS(5273), - [anon_sym_BSLASHftvolcite] = ACTIONS(5273), - [anon_sym_BSLASHsvolcite] = ACTIONS(5273), - [anon_sym_BSLASHSvolcite] = ACTIONS(5273), - [anon_sym_BSLASHtvolcite] = ACTIONS(5273), - [anon_sym_BSLASHTvolcite] = ACTIONS(5273), - [anon_sym_BSLASHavolcite] = ACTIONS(5273), - [anon_sym_BSLASHAvolcite] = ACTIONS(5273), - [anon_sym_BSLASHnotecite] = ACTIONS(5273), - [anon_sym_BSLASHNotecite] = ACTIONS(5273), - [anon_sym_BSLASHpnotecite] = ACTIONS(5273), - [anon_sym_BSLASHPnotecite] = ACTIONS(5273), - [anon_sym_BSLASHfnotecite] = ACTIONS(5273), - [anon_sym_BSLASHlabel] = ACTIONS(5273), - [anon_sym_BSLASHref] = ACTIONS(5273), - [anon_sym_BSLASHeqref] = ACTIONS(5273), - [anon_sym_BSLASHvref] = ACTIONS(5273), - [anon_sym_BSLASHVref] = ACTIONS(5273), - [anon_sym_BSLASHautoref] = ACTIONS(5273), - [anon_sym_BSLASHpageref] = ACTIONS(5273), - [anon_sym_BSLASHcref] = ACTIONS(5273), - [anon_sym_BSLASHCref] = ACTIONS(5273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnameCref] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHlabelcref] = ACTIONS(5273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnewlabel] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdef] = ACTIONS(5273), - [anon_sym_BSLASHlet] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), - [anon_sym_BSLASHgls] = ACTIONS(5273), - [anon_sym_BSLASHGls] = ACTIONS(5273), - [anon_sym_BSLASHGLS] = ACTIONS(5273), - [anon_sym_BSLASHglspl] = ACTIONS(5273), - [anon_sym_BSLASHGlspl] = ACTIONS(5273), - [anon_sym_BSLASHGLSpl] = ACTIONS(5273), - [anon_sym_BSLASHglsdisp] = ACTIONS(5273), - [anon_sym_BSLASHglslink] = ACTIONS(5273), - [anon_sym_BSLASHglstext] = ACTIONS(5273), - [anon_sym_BSLASHGlstext] = ACTIONS(5273), - [anon_sym_BSLASHGLStext] = ACTIONS(5273), - [anon_sym_BSLASHglsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), - [anon_sym_BSLASHglsplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSplural] = ACTIONS(5273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHglsname] = ACTIONS(5273), - [anon_sym_BSLASHGlsname] = ACTIONS(5273), - [anon_sym_BSLASHGLSname] = ACTIONS(5273), - [anon_sym_BSLASHglssymbol] = ACTIONS(5273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), - [anon_sym_BSLASHglsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), - [anon_sym_BSLASHglsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), - [anon_sym_BSLASHglsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), - [anon_sym_BSLASHglsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), - [anon_sym_BSLASHglsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), - [anon_sym_BSLASHnewacronym] = ACTIONS(5273), - [anon_sym_BSLASHacrshort] = ACTIONS(5273), - [anon_sym_BSLASHAcrshort] = ACTIONS(5273), - [anon_sym_BSLASHACRshort] = ACTIONS(5273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), - [anon_sym_BSLASHacrlong] = ACTIONS(5273), - [anon_sym_BSLASHAcrlong] = ACTIONS(5273), - [anon_sym_BSLASHACRlong] = ACTIONS(5273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), - [anon_sym_BSLASHacrfull] = ACTIONS(5273), - [anon_sym_BSLASHAcrfull] = ACTIONS(5273), - [anon_sym_BSLASHACRfull] = ACTIONS(5273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), - [anon_sym_BSLASHacs] = ACTIONS(5273), - [anon_sym_BSLASHAcs] = ACTIONS(5273), - [anon_sym_BSLASHacsp] = ACTIONS(5273), - [anon_sym_BSLASHAcsp] = ACTIONS(5273), - [anon_sym_BSLASHacl] = ACTIONS(5273), - [anon_sym_BSLASHAcl] = ACTIONS(5273), - [anon_sym_BSLASHaclp] = ACTIONS(5273), - [anon_sym_BSLASHAclp] = ACTIONS(5273), - [anon_sym_BSLASHacf] = ACTIONS(5273), - [anon_sym_BSLASHAcf] = ACTIONS(5273), - [anon_sym_BSLASHacfp] = ACTIONS(5273), - [anon_sym_BSLASHAcfp] = ACTIONS(5273), - [anon_sym_BSLASHac] = ACTIONS(5273), - [anon_sym_BSLASHAc] = ACTIONS(5273), - [anon_sym_BSLASHacp] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), - [anon_sym_BSLASHcolor] = ACTIONS(5273), - [anon_sym_BSLASHcolorbox] = ACTIONS(5273), - [anon_sym_BSLASHtextcolor] = ACTIONS(5273), - [anon_sym_BSLASHpagecolor] = ACTIONS(5273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), - [anon_sym_BSLASHtext] = ACTIONS(5273), - [anon_sym_BSLASHintertext] = ACTIONS(5273), - [anon_sym_shortintertext] = ACTIONS(5273), - }, - [1129] = { - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5263), - [anon_sym_BSLASHpart] = ACTIONS(5265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddpart] = ACTIONS(5265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHchapter] = ACTIONS(5265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddchap] = ACTIONS(5265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsection] = ACTIONS(5265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddsec] = ACTIONS(5265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHparagraph] = ACTIONS(5265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHitem] = ACTIONS(5265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [sym_word] = ACTIONS(5265), - [sym_placeholder] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(5265), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_STAR] = ACTIONS(5265), - [anon_sym_SLASH] = ACTIONS(5265), - [anon_sym_CARET] = ACTIONS(5265), - [anon_sym__] = ACTIONS(5265), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_BANG] = ACTIONS(5265), - [anon_sym_PIPE] = ACTIONS(5265), - [anon_sym_COLON] = ACTIONS(5265), - [anon_sym_SQUOTE] = ACTIONS(5265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), - [anon_sym_BSLASHbegin] = ACTIONS(5265), - [anon_sym_BSLASHend] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), - [anon_sym_BSLASHinclude] = ACTIONS(5265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), - [anon_sym_BSLASHinput] = ACTIONS(5265), - [anon_sym_BSLASHsubfile] = ACTIONS(5265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), - [anon_sym_BSLASHbibliography] = ACTIONS(5265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), - [anon_sym_BSLASHincludesvg] = ACTIONS(5265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), - [anon_sym_BSLASHimport] = ACTIONS(5265), - [anon_sym_BSLASHsubimport] = ACTIONS(5265), - [anon_sym_BSLASHinputfrom] = ACTIONS(5265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), - [anon_sym_BSLASHincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHcaption] = ACTIONS(5265), - [anon_sym_BSLASHcite] = ACTIONS(5265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCite] = ACTIONS(5265), - [anon_sym_BSLASHnocite] = ACTIONS(5265), - [anon_sym_BSLASHcitet] = ACTIONS(5265), - [anon_sym_BSLASHcitep] = ACTIONS(5265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteyear] = ACTIONS(5265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitedate] = ACTIONS(5265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteurl] = ACTIONS(5265), - [anon_sym_BSLASHfullcite] = ACTIONS(5265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), - [anon_sym_BSLASHcitealt] = ACTIONS(5265), - [anon_sym_BSLASHcitealp] = ACTIONS(5265), - [anon_sym_BSLASHcitetext] = ACTIONS(5265), - [anon_sym_BSLASHparencite] = ACTIONS(5265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHParencite] = ACTIONS(5265), - [anon_sym_BSLASHfootcite] = ACTIONS(5265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), - [anon_sym_BSLASHtextcite] = ACTIONS(5265), - [anon_sym_BSLASHTextcite] = ACTIONS(5265), - [anon_sym_BSLASHsmartcite] = ACTIONS(5265), - [anon_sym_BSLASHSmartcite] = ACTIONS(5265), - [anon_sym_BSLASHsupercite] = ACTIONS(5265), - [anon_sym_BSLASHautocite] = ACTIONS(5265), - [anon_sym_BSLASHAutocite] = ACTIONS(5265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHvolcite] = ACTIONS(5265), - [anon_sym_BSLASHVolcite] = ACTIONS(5265), - [anon_sym_BSLASHpvolcite] = ACTIONS(5265), - [anon_sym_BSLASHPvolcite] = ACTIONS(5265), - [anon_sym_BSLASHfvolcite] = ACTIONS(5265), - [anon_sym_BSLASHftvolcite] = ACTIONS(5265), - [anon_sym_BSLASHsvolcite] = ACTIONS(5265), - [anon_sym_BSLASHSvolcite] = ACTIONS(5265), - [anon_sym_BSLASHtvolcite] = ACTIONS(5265), - [anon_sym_BSLASHTvolcite] = ACTIONS(5265), - [anon_sym_BSLASHavolcite] = ACTIONS(5265), - [anon_sym_BSLASHAvolcite] = ACTIONS(5265), - [anon_sym_BSLASHnotecite] = ACTIONS(5265), - [anon_sym_BSLASHNotecite] = ACTIONS(5265), - [anon_sym_BSLASHpnotecite] = ACTIONS(5265), - [anon_sym_BSLASHPnotecite] = ACTIONS(5265), - [anon_sym_BSLASHfnotecite] = ACTIONS(5265), - [anon_sym_BSLASHlabel] = ACTIONS(5265), - [anon_sym_BSLASHref] = ACTIONS(5265), - [anon_sym_BSLASHeqref] = ACTIONS(5265), - [anon_sym_BSLASHvref] = ACTIONS(5265), - [anon_sym_BSLASHVref] = ACTIONS(5265), - [anon_sym_BSLASHautoref] = ACTIONS(5265), - [anon_sym_BSLASHpageref] = ACTIONS(5265), - [anon_sym_BSLASHcref] = ACTIONS(5265), - [anon_sym_BSLASHCref] = ACTIONS(5265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnameCref] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHlabelcref] = ACTIONS(5265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnewlabel] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdef] = ACTIONS(5265), - [anon_sym_BSLASHlet] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), - [anon_sym_BSLASHgls] = ACTIONS(5265), - [anon_sym_BSLASHGls] = ACTIONS(5265), - [anon_sym_BSLASHGLS] = ACTIONS(5265), - [anon_sym_BSLASHglspl] = ACTIONS(5265), - [anon_sym_BSLASHGlspl] = ACTIONS(5265), - [anon_sym_BSLASHGLSpl] = ACTIONS(5265), - [anon_sym_BSLASHglsdisp] = ACTIONS(5265), - [anon_sym_BSLASHglslink] = ACTIONS(5265), - [anon_sym_BSLASHglstext] = ACTIONS(5265), - [anon_sym_BSLASHGlstext] = ACTIONS(5265), - [anon_sym_BSLASHGLStext] = ACTIONS(5265), - [anon_sym_BSLASHglsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), - [anon_sym_BSLASHglsplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSplural] = ACTIONS(5265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHglsname] = ACTIONS(5265), - [anon_sym_BSLASHGlsname] = ACTIONS(5265), - [anon_sym_BSLASHGLSname] = ACTIONS(5265), - [anon_sym_BSLASHglssymbol] = ACTIONS(5265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), - [anon_sym_BSLASHglsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), - [anon_sym_BSLASHglsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), - [anon_sym_BSLASHglsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), - [anon_sym_BSLASHglsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), - [anon_sym_BSLASHglsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), - [anon_sym_BSLASHnewacronym] = ACTIONS(5265), - [anon_sym_BSLASHacrshort] = ACTIONS(5265), - [anon_sym_BSLASHAcrshort] = ACTIONS(5265), - [anon_sym_BSLASHACRshort] = ACTIONS(5265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), - [anon_sym_BSLASHacrlong] = ACTIONS(5265), - [anon_sym_BSLASHAcrlong] = ACTIONS(5265), - [anon_sym_BSLASHACRlong] = ACTIONS(5265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), - [anon_sym_BSLASHacrfull] = ACTIONS(5265), - [anon_sym_BSLASHAcrfull] = ACTIONS(5265), - [anon_sym_BSLASHACRfull] = ACTIONS(5265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), - [anon_sym_BSLASHacs] = ACTIONS(5265), - [anon_sym_BSLASHAcs] = ACTIONS(5265), - [anon_sym_BSLASHacsp] = ACTIONS(5265), - [anon_sym_BSLASHAcsp] = ACTIONS(5265), - [anon_sym_BSLASHacl] = ACTIONS(5265), - [anon_sym_BSLASHAcl] = ACTIONS(5265), - [anon_sym_BSLASHaclp] = ACTIONS(5265), - [anon_sym_BSLASHAclp] = ACTIONS(5265), - [anon_sym_BSLASHacf] = ACTIONS(5265), - [anon_sym_BSLASHAcf] = ACTIONS(5265), - [anon_sym_BSLASHacfp] = ACTIONS(5265), - [anon_sym_BSLASHAcfp] = ACTIONS(5265), - [anon_sym_BSLASHac] = ACTIONS(5265), - [anon_sym_BSLASHAc] = ACTIONS(5265), - [anon_sym_BSLASHacp] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), - [anon_sym_BSLASHcolor] = ACTIONS(5265), - [anon_sym_BSLASHcolorbox] = ACTIONS(5265), - [anon_sym_BSLASHtextcolor] = ACTIONS(5265), - [anon_sym_BSLASHpagecolor] = ACTIONS(5265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), - [anon_sym_BSLASHtext] = ACTIONS(5265), - [anon_sym_BSLASHintertext] = ACTIONS(5265), - [anon_sym_shortintertext] = ACTIONS(5265), - }, - [1130] = { - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5259), - [anon_sym_BSLASHpart] = ACTIONS(5261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddpart] = ACTIONS(5261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHchapter] = ACTIONS(5261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddchap] = ACTIONS(5261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsection] = ACTIONS(5261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddsec] = ACTIONS(5261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHparagraph] = ACTIONS(5261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHitem] = ACTIONS(5261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), - [anon_sym_LBRACE] = ACTIONS(5259), - [sym_word] = ACTIONS(5261), - [sym_placeholder] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym__] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5261), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), - [anon_sym_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), - [anon_sym_BSLASHbegin] = ACTIONS(5261), - [anon_sym_BSLASHend] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), - [anon_sym_BSLASHinclude] = ACTIONS(5261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), - [anon_sym_BSLASHinput] = ACTIONS(5261), - [anon_sym_BSLASHsubfile] = ACTIONS(5261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), - [anon_sym_BSLASHbibliography] = ACTIONS(5261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), - [anon_sym_BSLASHincludesvg] = ACTIONS(5261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), - [anon_sym_BSLASHimport] = ACTIONS(5261), - [anon_sym_BSLASHsubimport] = ACTIONS(5261), - [anon_sym_BSLASHinputfrom] = ACTIONS(5261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), - [anon_sym_BSLASHincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHcaption] = ACTIONS(5261), - [anon_sym_BSLASHcite] = ACTIONS(5261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCite] = ACTIONS(5261), - [anon_sym_BSLASHnocite] = ACTIONS(5261), - [anon_sym_BSLASHcitet] = ACTIONS(5261), - [anon_sym_BSLASHcitep] = ACTIONS(5261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteyear] = ACTIONS(5261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitedate] = ACTIONS(5261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteurl] = ACTIONS(5261), - [anon_sym_BSLASHfullcite] = ACTIONS(5261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), - [anon_sym_BSLASHcitealt] = ACTIONS(5261), - [anon_sym_BSLASHcitealp] = ACTIONS(5261), - [anon_sym_BSLASHcitetext] = ACTIONS(5261), - [anon_sym_BSLASHparencite] = ACTIONS(5261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHParencite] = ACTIONS(5261), - [anon_sym_BSLASHfootcite] = ACTIONS(5261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), - [anon_sym_BSLASHtextcite] = ACTIONS(5261), - [anon_sym_BSLASHTextcite] = ACTIONS(5261), - [anon_sym_BSLASHsmartcite] = ACTIONS(5261), - [anon_sym_BSLASHSmartcite] = ACTIONS(5261), - [anon_sym_BSLASHsupercite] = ACTIONS(5261), - [anon_sym_BSLASHautocite] = ACTIONS(5261), - [anon_sym_BSLASHAutocite] = ACTIONS(5261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHvolcite] = ACTIONS(5261), - [anon_sym_BSLASHVolcite] = ACTIONS(5261), - [anon_sym_BSLASHpvolcite] = ACTIONS(5261), - [anon_sym_BSLASHPvolcite] = ACTIONS(5261), - [anon_sym_BSLASHfvolcite] = ACTIONS(5261), - [anon_sym_BSLASHftvolcite] = ACTIONS(5261), - [anon_sym_BSLASHsvolcite] = ACTIONS(5261), - [anon_sym_BSLASHSvolcite] = ACTIONS(5261), - [anon_sym_BSLASHtvolcite] = ACTIONS(5261), - [anon_sym_BSLASHTvolcite] = ACTIONS(5261), - [anon_sym_BSLASHavolcite] = ACTIONS(5261), - [anon_sym_BSLASHAvolcite] = ACTIONS(5261), - [anon_sym_BSLASHnotecite] = ACTIONS(5261), - [anon_sym_BSLASHNotecite] = ACTIONS(5261), - [anon_sym_BSLASHpnotecite] = ACTIONS(5261), - [anon_sym_BSLASHPnotecite] = ACTIONS(5261), - [anon_sym_BSLASHfnotecite] = ACTIONS(5261), - [anon_sym_BSLASHlabel] = ACTIONS(5261), - [anon_sym_BSLASHref] = ACTIONS(5261), - [anon_sym_BSLASHeqref] = ACTIONS(5261), - [anon_sym_BSLASHvref] = ACTIONS(5261), - [anon_sym_BSLASHVref] = ACTIONS(5261), - [anon_sym_BSLASHautoref] = ACTIONS(5261), - [anon_sym_BSLASHpageref] = ACTIONS(5261), - [anon_sym_BSLASHcref] = ACTIONS(5261), - [anon_sym_BSLASHCref] = ACTIONS(5261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnameCref] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHlabelcref] = ACTIONS(5261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnewlabel] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdef] = ACTIONS(5261), - [anon_sym_BSLASHlet] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), - [anon_sym_BSLASHgls] = ACTIONS(5261), - [anon_sym_BSLASHGls] = ACTIONS(5261), - [anon_sym_BSLASHGLS] = ACTIONS(5261), - [anon_sym_BSLASHglspl] = ACTIONS(5261), - [anon_sym_BSLASHGlspl] = ACTIONS(5261), - [anon_sym_BSLASHGLSpl] = ACTIONS(5261), - [anon_sym_BSLASHglsdisp] = ACTIONS(5261), - [anon_sym_BSLASHglslink] = ACTIONS(5261), - [anon_sym_BSLASHglstext] = ACTIONS(5261), - [anon_sym_BSLASHGlstext] = ACTIONS(5261), - [anon_sym_BSLASHGLStext] = ACTIONS(5261), - [anon_sym_BSLASHglsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), - [anon_sym_BSLASHglsplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSplural] = ACTIONS(5261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHglsname] = ACTIONS(5261), - [anon_sym_BSLASHGlsname] = ACTIONS(5261), - [anon_sym_BSLASHGLSname] = ACTIONS(5261), - [anon_sym_BSLASHglssymbol] = ACTIONS(5261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), - [anon_sym_BSLASHglsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), - [anon_sym_BSLASHglsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), - [anon_sym_BSLASHglsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), - [anon_sym_BSLASHglsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), - [anon_sym_BSLASHglsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), - [anon_sym_BSLASHnewacronym] = ACTIONS(5261), - [anon_sym_BSLASHacrshort] = ACTIONS(5261), - [anon_sym_BSLASHAcrshort] = ACTIONS(5261), - [anon_sym_BSLASHACRshort] = ACTIONS(5261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), - [anon_sym_BSLASHacrlong] = ACTIONS(5261), - [anon_sym_BSLASHAcrlong] = ACTIONS(5261), - [anon_sym_BSLASHACRlong] = ACTIONS(5261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), - [anon_sym_BSLASHacrfull] = ACTIONS(5261), - [anon_sym_BSLASHAcrfull] = ACTIONS(5261), - [anon_sym_BSLASHACRfull] = ACTIONS(5261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), - [anon_sym_BSLASHacs] = ACTIONS(5261), - [anon_sym_BSLASHAcs] = ACTIONS(5261), - [anon_sym_BSLASHacsp] = ACTIONS(5261), - [anon_sym_BSLASHAcsp] = ACTIONS(5261), - [anon_sym_BSLASHacl] = ACTIONS(5261), - [anon_sym_BSLASHAcl] = ACTIONS(5261), - [anon_sym_BSLASHaclp] = ACTIONS(5261), - [anon_sym_BSLASHAclp] = ACTIONS(5261), - [anon_sym_BSLASHacf] = ACTIONS(5261), - [anon_sym_BSLASHAcf] = ACTIONS(5261), - [anon_sym_BSLASHacfp] = ACTIONS(5261), - [anon_sym_BSLASHAcfp] = ACTIONS(5261), - [anon_sym_BSLASHac] = ACTIONS(5261), - [anon_sym_BSLASHAc] = ACTIONS(5261), - [anon_sym_BSLASHacp] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), - [anon_sym_BSLASHcolor] = ACTIONS(5261), - [anon_sym_BSLASHcolorbox] = ACTIONS(5261), - [anon_sym_BSLASHtextcolor] = ACTIONS(5261), - [anon_sym_BSLASHpagecolor] = ACTIONS(5261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), - [anon_sym_BSLASHtext] = ACTIONS(5261), - [anon_sym_BSLASHintertext] = ACTIONS(5261), - [anon_sym_shortintertext] = ACTIONS(5261), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1131] = { - [sym_command_name] = ACTIONS(5253), + [641] = { + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(537), + [aux_sym__section_repeat2] = STATE(537), + [sym_command_name] = ACTIONS(1979), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_RPAREN] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_RBRACK] = ACTIONS(5251), - [anon_sym_COMMA] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_BSLASHpart] = ACTIONS(5253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddpart] = ACTIONS(5253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHchapter] = ACTIONS(5253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddchap] = ACTIONS(5253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsection] = ACTIONS(5253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddsec] = ACTIONS(5253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHparagraph] = ACTIONS(5253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHitem] = ACTIONS(5253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5251), - [sym_word] = ACTIONS(5253), - [sym_placeholder] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym__] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5253), - [anon_sym_SQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), - [anon_sym_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), - [anon_sym_BSLASHbegin] = ACTIONS(5253), - [anon_sym_BSLASHend] = ACTIONS(5253), - [anon_sym_BSLASHusepackage] = ACTIONS(5253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), - [anon_sym_BSLASHinclude] = ACTIONS(5253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), - [anon_sym_BSLASHinput] = ACTIONS(5253), - [anon_sym_BSLASHsubfile] = ACTIONS(5253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), - [anon_sym_BSLASHbibliography] = ACTIONS(5253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), - [anon_sym_BSLASHincludesvg] = ACTIONS(5253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), - [anon_sym_BSLASHimport] = ACTIONS(5253), - [anon_sym_BSLASHsubimport] = ACTIONS(5253), - [anon_sym_BSLASHinputfrom] = ACTIONS(5253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), - [anon_sym_BSLASHincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHcaption] = ACTIONS(5253), - [anon_sym_BSLASHcite] = ACTIONS(5253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCite] = ACTIONS(5253), - [anon_sym_BSLASHnocite] = ACTIONS(5253), - [anon_sym_BSLASHcitet] = ACTIONS(5253), - [anon_sym_BSLASHcitep] = ACTIONS(5253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteyear] = ACTIONS(5253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitedate] = ACTIONS(5253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteurl] = ACTIONS(5253), - [anon_sym_BSLASHfullcite] = ACTIONS(5253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), - [anon_sym_BSLASHcitealt] = ACTIONS(5253), - [anon_sym_BSLASHcitealp] = ACTIONS(5253), - [anon_sym_BSLASHcitetext] = ACTIONS(5253), - [anon_sym_BSLASHparencite] = ACTIONS(5253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHParencite] = ACTIONS(5253), - [anon_sym_BSLASHfootcite] = ACTIONS(5253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), - [anon_sym_BSLASHtextcite] = ACTIONS(5253), - [anon_sym_BSLASHTextcite] = ACTIONS(5253), - [anon_sym_BSLASHsmartcite] = ACTIONS(5253), - [anon_sym_BSLASHSmartcite] = ACTIONS(5253), - [anon_sym_BSLASHsupercite] = ACTIONS(5253), - [anon_sym_BSLASHautocite] = ACTIONS(5253), - [anon_sym_BSLASHAutocite] = ACTIONS(5253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHvolcite] = ACTIONS(5253), - [anon_sym_BSLASHVolcite] = ACTIONS(5253), - [anon_sym_BSLASHpvolcite] = ACTIONS(5253), - [anon_sym_BSLASHPvolcite] = ACTIONS(5253), - [anon_sym_BSLASHfvolcite] = ACTIONS(5253), - [anon_sym_BSLASHftvolcite] = ACTIONS(5253), - [anon_sym_BSLASHsvolcite] = ACTIONS(5253), - [anon_sym_BSLASHSvolcite] = ACTIONS(5253), - [anon_sym_BSLASHtvolcite] = ACTIONS(5253), - [anon_sym_BSLASHTvolcite] = ACTIONS(5253), - [anon_sym_BSLASHavolcite] = ACTIONS(5253), - [anon_sym_BSLASHAvolcite] = ACTIONS(5253), - [anon_sym_BSLASHnotecite] = ACTIONS(5253), - [anon_sym_BSLASHNotecite] = ACTIONS(5253), - [anon_sym_BSLASHpnotecite] = ACTIONS(5253), - [anon_sym_BSLASHPnotecite] = ACTIONS(5253), - [anon_sym_BSLASHfnotecite] = ACTIONS(5253), - [anon_sym_BSLASHlabel] = ACTIONS(5253), - [anon_sym_BSLASHref] = ACTIONS(5253), - [anon_sym_BSLASHeqref] = ACTIONS(5253), - [anon_sym_BSLASHvref] = ACTIONS(5253), - [anon_sym_BSLASHVref] = ACTIONS(5253), - [anon_sym_BSLASHautoref] = ACTIONS(5253), - [anon_sym_BSLASHpageref] = ACTIONS(5253), - [anon_sym_BSLASHcref] = ACTIONS(5253), - [anon_sym_BSLASHCref] = ACTIONS(5253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnameCref] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHlabelcref] = ACTIONS(5253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnewlabel] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdef] = ACTIONS(5253), - [anon_sym_BSLASHlet] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), - [anon_sym_BSLASHgls] = ACTIONS(5253), - [anon_sym_BSLASHGls] = ACTIONS(5253), - [anon_sym_BSLASHGLS] = ACTIONS(5253), - [anon_sym_BSLASHglspl] = ACTIONS(5253), - [anon_sym_BSLASHGlspl] = ACTIONS(5253), - [anon_sym_BSLASHGLSpl] = ACTIONS(5253), - [anon_sym_BSLASHglsdisp] = ACTIONS(5253), - [anon_sym_BSLASHglslink] = ACTIONS(5253), - [anon_sym_BSLASHglstext] = ACTIONS(5253), - [anon_sym_BSLASHGlstext] = ACTIONS(5253), - [anon_sym_BSLASHGLStext] = ACTIONS(5253), - [anon_sym_BSLASHglsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), - [anon_sym_BSLASHglsplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSplural] = ACTIONS(5253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHglsname] = ACTIONS(5253), - [anon_sym_BSLASHGlsname] = ACTIONS(5253), - [anon_sym_BSLASHGLSname] = ACTIONS(5253), - [anon_sym_BSLASHglssymbol] = ACTIONS(5253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), - [anon_sym_BSLASHglsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), - [anon_sym_BSLASHglsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), - [anon_sym_BSLASHglsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), - [anon_sym_BSLASHglsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), - [anon_sym_BSLASHglsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), - [anon_sym_BSLASHnewacronym] = ACTIONS(5253), - [anon_sym_BSLASHacrshort] = ACTIONS(5253), - [anon_sym_BSLASHAcrshort] = ACTIONS(5253), - [anon_sym_BSLASHACRshort] = ACTIONS(5253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), - [anon_sym_BSLASHacrlong] = ACTIONS(5253), - [anon_sym_BSLASHAcrlong] = ACTIONS(5253), - [anon_sym_BSLASHACRlong] = ACTIONS(5253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), - [anon_sym_BSLASHacrfull] = ACTIONS(5253), - [anon_sym_BSLASHAcrfull] = ACTIONS(5253), - [anon_sym_BSLASHACRfull] = ACTIONS(5253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), - [anon_sym_BSLASHacs] = ACTIONS(5253), - [anon_sym_BSLASHAcs] = ACTIONS(5253), - [anon_sym_BSLASHacsp] = ACTIONS(5253), - [anon_sym_BSLASHAcsp] = ACTIONS(5253), - [anon_sym_BSLASHacl] = ACTIONS(5253), - [anon_sym_BSLASHAcl] = ACTIONS(5253), - [anon_sym_BSLASHaclp] = ACTIONS(5253), - [anon_sym_BSLASHAclp] = ACTIONS(5253), - [anon_sym_BSLASHacf] = ACTIONS(5253), - [anon_sym_BSLASHAcf] = ACTIONS(5253), - [anon_sym_BSLASHacfp] = ACTIONS(5253), - [anon_sym_BSLASHAcfp] = ACTIONS(5253), - [anon_sym_BSLASHac] = ACTIONS(5253), - [anon_sym_BSLASHAc] = ACTIONS(5253), - [anon_sym_BSLASHacp] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), - [anon_sym_BSLASHcolor] = ACTIONS(5253), - [anon_sym_BSLASHcolorbox] = ACTIONS(5253), - [anon_sym_BSLASHtextcolor] = ACTIONS(5253), - [anon_sym_BSLASHpagecolor] = ACTIONS(5253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), - [anon_sym_BSLASHtext] = ACTIONS(5253), - [anon_sym_BSLASHintertext] = ACTIONS(5253), - [anon_sym_shortintertext] = ACTIONS(5253), - }, - [1132] = { - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_RPAREN] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_BSLASHpart] = ACTIONS(5245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddpart] = ACTIONS(5245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHchapter] = ACTIONS(5245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddchap] = ACTIONS(5245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsection] = ACTIONS(5245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddsec] = ACTIONS(5245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHparagraph] = ACTIONS(5245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHitem] = ACTIONS(5245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5243), - [sym_word] = ACTIONS(5245), - [sym_placeholder] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5245), - [anon_sym_SLASH] = ACTIONS(5245), - [anon_sym_CARET] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5245), - [anon_sym_GT] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5245), - [anon_sym_PIPE] = ACTIONS(5245), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), - [anon_sym_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), - [anon_sym_BSLASHbegin] = ACTIONS(5245), - [anon_sym_BSLASHend] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), - [anon_sym_BSLASHinclude] = ACTIONS(5245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), - [anon_sym_BSLASHinput] = ACTIONS(5245), - [anon_sym_BSLASHsubfile] = ACTIONS(5245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), - [anon_sym_BSLASHbibliography] = ACTIONS(5245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), - [anon_sym_BSLASHincludesvg] = ACTIONS(5245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), - [anon_sym_BSLASHimport] = ACTIONS(5245), - [anon_sym_BSLASHsubimport] = ACTIONS(5245), - [anon_sym_BSLASHinputfrom] = ACTIONS(5245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), - [anon_sym_BSLASHincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHcaption] = ACTIONS(5245), - [anon_sym_BSLASHcite] = ACTIONS(5245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCite] = ACTIONS(5245), - [anon_sym_BSLASHnocite] = ACTIONS(5245), - [anon_sym_BSLASHcitet] = ACTIONS(5245), - [anon_sym_BSLASHcitep] = ACTIONS(5245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteyear] = ACTIONS(5245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitedate] = ACTIONS(5245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteurl] = ACTIONS(5245), - [anon_sym_BSLASHfullcite] = ACTIONS(5245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), - [anon_sym_BSLASHcitealt] = ACTIONS(5245), - [anon_sym_BSLASHcitealp] = ACTIONS(5245), - [anon_sym_BSLASHcitetext] = ACTIONS(5245), - [anon_sym_BSLASHparencite] = ACTIONS(5245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHParencite] = ACTIONS(5245), - [anon_sym_BSLASHfootcite] = ACTIONS(5245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), - [anon_sym_BSLASHtextcite] = ACTIONS(5245), - [anon_sym_BSLASHTextcite] = ACTIONS(5245), - [anon_sym_BSLASHsmartcite] = ACTIONS(5245), - [anon_sym_BSLASHSmartcite] = ACTIONS(5245), - [anon_sym_BSLASHsupercite] = ACTIONS(5245), - [anon_sym_BSLASHautocite] = ACTIONS(5245), - [anon_sym_BSLASHAutocite] = ACTIONS(5245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHvolcite] = ACTIONS(5245), - [anon_sym_BSLASHVolcite] = ACTIONS(5245), - [anon_sym_BSLASHpvolcite] = ACTIONS(5245), - [anon_sym_BSLASHPvolcite] = ACTIONS(5245), - [anon_sym_BSLASHfvolcite] = ACTIONS(5245), - [anon_sym_BSLASHftvolcite] = ACTIONS(5245), - [anon_sym_BSLASHsvolcite] = ACTIONS(5245), - [anon_sym_BSLASHSvolcite] = ACTIONS(5245), - [anon_sym_BSLASHtvolcite] = ACTIONS(5245), - [anon_sym_BSLASHTvolcite] = ACTIONS(5245), - [anon_sym_BSLASHavolcite] = ACTIONS(5245), - [anon_sym_BSLASHAvolcite] = ACTIONS(5245), - [anon_sym_BSLASHnotecite] = ACTIONS(5245), - [anon_sym_BSLASHNotecite] = ACTIONS(5245), - [anon_sym_BSLASHpnotecite] = ACTIONS(5245), - [anon_sym_BSLASHPnotecite] = ACTIONS(5245), - [anon_sym_BSLASHfnotecite] = ACTIONS(5245), - [anon_sym_BSLASHlabel] = ACTIONS(5245), - [anon_sym_BSLASHref] = ACTIONS(5245), - [anon_sym_BSLASHeqref] = ACTIONS(5245), - [anon_sym_BSLASHvref] = ACTIONS(5245), - [anon_sym_BSLASHVref] = ACTIONS(5245), - [anon_sym_BSLASHautoref] = ACTIONS(5245), - [anon_sym_BSLASHpageref] = ACTIONS(5245), - [anon_sym_BSLASHcref] = ACTIONS(5245), - [anon_sym_BSLASHCref] = ACTIONS(5245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnameCref] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHlabelcref] = ACTIONS(5245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnewlabel] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdef] = ACTIONS(5245), - [anon_sym_BSLASHlet] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), - [anon_sym_BSLASHgls] = ACTIONS(5245), - [anon_sym_BSLASHGls] = ACTIONS(5245), - [anon_sym_BSLASHGLS] = ACTIONS(5245), - [anon_sym_BSLASHglspl] = ACTIONS(5245), - [anon_sym_BSLASHGlspl] = ACTIONS(5245), - [anon_sym_BSLASHGLSpl] = ACTIONS(5245), - [anon_sym_BSLASHglsdisp] = ACTIONS(5245), - [anon_sym_BSLASHglslink] = ACTIONS(5245), - [anon_sym_BSLASHglstext] = ACTIONS(5245), - [anon_sym_BSLASHGlstext] = ACTIONS(5245), - [anon_sym_BSLASHGLStext] = ACTIONS(5245), - [anon_sym_BSLASHglsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), - [anon_sym_BSLASHglsplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSplural] = ACTIONS(5245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHglsname] = ACTIONS(5245), - [anon_sym_BSLASHGlsname] = ACTIONS(5245), - [anon_sym_BSLASHGLSname] = ACTIONS(5245), - [anon_sym_BSLASHglssymbol] = ACTIONS(5245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), - [anon_sym_BSLASHglsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), - [anon_sym_BSLASHglsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), - [anon_sym_BSLASHglsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), - [anon_sym_BSLASHglsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), - [anon_sym_BSLASHglsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), - [anon_sym_BSLASHnewacronym] = ACTIONS(5245), - [anon_sym_BSLASHacrshort] = ACTIONS(5245), - [anon_sym_BSLASHAcrshort] = ACTIONS(5245), - [anon_sym_BSLASHACRshort] = ACTIONS(5245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), - [anon_sym_BSLASHacrlong] = ACTIONS(5245), - [anon_sym_BSLASHAcrlong] = ACTIONS(5245), - [anon_sym_BSLASHACRlong] = ACTIONS(5245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), - [anon_sym_BSLASHacrfull] = ACTIONS(5245), - [anon_sym_BSLASHAcrfull] = ACTIONS(5245), - [anon_sym_BSLASHACRfull] = ACTIONS(5245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), - [anon_sym_BSLASHacs] = ACTIONS(5245), - [anon_sym_BSLASHAcs] = ACTIONS(5245), - [anon_sym_BSLASHacsp] = ACTIONS(5245), - [anon_sym_BSLASHAcsp] = ACTIONS(5245), - [anon_sym_BSLASHacl] = ACTIONS(5245), - [anon_sym_BSLASHAcl] = ACTIONS(5245), - [anon_sym_BSLASHaclp] = ACTIONS(5245), - [anon_sym_BSLASHAclp] = ACTIONS(5245), - [anon_sym_BSLASHacf] = ACTIONS(5245), - [anon_sym_BSLASHAcf] = ACTIONS(5245), - [anon_sym_BSLASHacfp] = ACTIONS(5245), - [anon_sym_BSLASHAcfp] = ACTIONS(5245), - [anon_sym_BSLASHac] = ACTIONS(5245), - [anon_sym_BSLASHAc] = ACTIONS(5245), - [anon_sym_BSLASHacp] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), - [anon_sym_BSLASHcolor] = ACTIONS(5245), - [anon_sym_BSLASHcolorbox] = ACTIONS(5245), - [anon_sym_BSLASHtextcolor] = ACTIONS(5245), - [anon_sym_BSLASHpagecolor] = ACTIONS(5245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), - [anon_sym_BSLASHtext] = ACTIONS(5245), - [anon_sym_BSLASHintertext] = ACTIONS(5245), - [anon_sym_shortintertext] = ACTIONS(5245), - }, - [1133] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_BSLASHpart] = ACTIONS(5237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddpart] = ACTIONS(5237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHchapter] = ACTIONS(5237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddchap] = ACTIONS(5237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsection] = ACTIONS(5237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddsec] = ACTIONS(5237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHparagraph] = ACTIONS(5237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHitem] = ACTIONS(5237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHend] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), - }, - [1134] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_BSLASH_RBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [1135] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHend] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [1136] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), - }, - [1137] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHend] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), - }, - [1138] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_BSLASHpart] = ACTIONS(5431), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddpart] = ACTIONS(5431), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHchapter] = ACTIONS(5431), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddchap] = ACTIONS(5431), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsection] = ACTIONS(5431), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddsec] = ACTIONS(5431), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHparagraph] = ACTIONS(5431), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHitem] = ACTIONS(5431), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHend] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), - }, - [1139] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHend] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), - }, - [1140] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), - }, - [1141] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHend] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), - }, - [1142] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHend] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), - }, - [1143] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHend] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), - }, - [1144] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHend] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), - }, - [1145] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHend] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), - }, - [1146] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHend] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), - }, - [1147] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHend] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), - }, - [1148] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHend] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), - }, - [1149] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHend] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), - }, - [1150] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHend] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), - }, - [1151] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_BSLASHpart] = ACTIONS(5379), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddpart] = ACTIONS(5379), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHchapter] = ACTIONS(5379), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddchap] = ACTIONS(5379), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsection] = ACTIONS(5379), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddsec] = ACTIONS(5379), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHparagraph] = ACTIONS(5379), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHitem] = ACTIONS(5379), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHend] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), - }, - [1152] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_BSLASHpart] = ACTIONS(5399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddpart] = ACTIONS(5399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHchapter] = ACTIONS(5399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddchap] = ACTIONS(5399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsection] = ACTIONS(5399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddsec] = ACTIONS(5399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHparagraph] = ACTIONS(5399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHitem] = ACTIONS(5399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHend] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), - }, - [1153] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5415), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5415), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5415), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5415), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5415), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5415), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5415), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5415), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5415), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHend] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), - }, - [1154] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_BSLASHpart] = ACTIONS(5075), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddpart] = ACTIONS(5075), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHchapter] = ACTIONS(5075), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddchap] = ACTIONS(5075), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsection] = ACTIONS(5075), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddsec] = ACTIONS(5075), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHparagraph] = ACTIONS(5075), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHitem] = ACTIONS(5075), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHend] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), - }, - [1155] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_BSLASHpart] = ACTIONS(5455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddpart] = ACTIONS(5455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHchapter] = ACTIONS(5455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddchap] = ACTIONS(5455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsection] = ACTIONS(5455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddsec] = ACTIONS(5455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHparagraph] = ACTIONS(5455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHitem] = ACTIONS(5455), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHend] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), - }, - [1156] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASHpart] = ACTIONS(5483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddpart] = ACTIONS(5483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHchapter] = ACTIONS(5483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddchap] = ACTIONS(5483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsection] = ACTIONS(5483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddsec] = ACTIONS(5483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHparagraph] = ACTIONS(5483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHitem] = ACTIONS(5483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHend] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), + [anon_sym_BSLASHiffalse] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_BSLASHpart] = ACTIONS(1979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(1979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [sym_word] = ACTIONS(1979), + [sym_placeholder] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym__] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(1979), + [anon_sym_BSLASHtitle] = ACTIONS(1979), + [anon_sym_BSLASHauthor] = ACTIONS(1979), + [anon_sym_BSLASHusepackage] = ACTIONS(1979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1979), + [anon_sym_BSLASHinclude] = ACTIONS(1979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1979), + [anon_sym_BSLASHinput] = ACTIONS(1979), + [anon_sym_BSLASHsubfile] = ACTIONS(1979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1979), + [anon_sym_BSLASHbibliography] = ACTIONS(1979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1979), + [anon_sym_BSLASHincludesvg] = ACTIONS(1979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1979), + [anon_sym_BSLASHimport] = ACTIONS(1979), + [anon_sym_BSLASHsubimport] = ACTIONS(1979), + [anon_sym_BSLASHinputfrom] = ACTIONS(1979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1979), + [anon_sym_BSLASHincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1979), + [anon_sym_BSLASHcaption] = ACTIONS(1979), + [anon_sym_BSLASHcite] = ACTIONS(1979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCite] = ACTIONS(1979), + [anon_sym_BSLASHnocite] = ACTIONS(1979), + [anon_sym_BSLASHcitet] = ACTIONS(1979), + [anon_sym_BSLASHcitep] = ACTIONS(1979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteauthor] = ACTIONS(1979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitetitle] = ACTIONS(1979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteyear] = ACTIONS(1979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1975), + [anon_sym_BSLASHcitedate] = ACTIONS(1979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1975), + [anon_sym_BSLASHciteurl] = ACTIONS(1979), + [anon_sym_BSLASHfullcite] = ACTIONS(1979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1979), + [anon_sym_BSLASHcitealt] = ACTIONS(1979), + [anon_sym_BSLASHcitealp] = ACTIONS(1979), + [anon_sym_BSLASHcitetext] = ACTIONS(1979), + [anon_sym_BSLASHparencite] = ACTIONS(1979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHParencite] = ACTIONS(1979), + [anon_sym_BSLASHfootcite] = ACTIONS(1979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1979), + [anon_sym_BSLASHtextcite] = ACTIONS(1979), + [anon_sym_BSLASHTextcite] = ACTIONS(1979), + [anon_sym_BSLASHsmartcite] = ACTIONS(1979), + [anon_sym_BSLASHSmartcite] = ACTIONS(1979), + [anon_sym_BSLASHsupercite] = ACTIONS(1979), + [anon_sym_BSLASHautocite] = ACTIONS(1979), + [anon_sym_BSLASHAutocite] = ACTIONS(1979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1975), + [anon_sym_BSLASHvolcite] = ACTIONS(1979), + [anon_sym_BSLASHVolcite] = ACTIONS(1979), + [anon_sym_BSLASHpvolcite] = ACTIONS(1979), + [anon_sym_BSLASHPvolcite] = ACTIONS(1979), + [anon_sym_BSLASHfvolcite] = ACTIONS(1979), + [anon_sym_BSLASHftvolcite] = ACTIONS(1979), + [anon_sym_BSLASHsvolcite] = ACTIONS(1979), + [anon_sym_BSLASHSvolcite] = ACTIONS(1979), + [anon_sym_BSLASHtvolcite] = ACTIONS(1979), + [anon_sym_BSLASHTvolcite] = ACTIONS(1979), + [anon_sym_BSLASHavolcite] = ACTIONS(1979), + [anon_sym_BSLASHAvolcite] = ACTIONS(1979), + [anon_sym_BSLASHnotecite] = ACTIONS(1979), + [anon_sym_BSLASHNotecite] = ACTIONS(1979), + [anon_sym_BSLASHpnotecite] = ACTIONS(1979), + [anon_sym_BSLASHPnotecite] = ACTIONS(1979), + [anon_sym_BSLASHfnotecite] = ACTIONS(1979), + [anon_sym_BSLASHlabel] = ACTIONS(1979), + [anon_sym_BSLASHref] = ACTIONS(1979), + [anon_sym_BSLASHeqref] = ACTIONS(1979), + [anon_sym_BSLASHvref] = ACTIONS(1979), + [anon_sym_BSLASHVref] = ACTIONS(1979), + [anon_sym_BSLASHautoref] = ACTIONS(1979), + [anon_sym_BSLASHpageref] = ACTIONS(1979), + [anon_sym_BSLASHcref] = ACTIONS(1979), + [anon_sym_BSLASHCref] = ACTIONS(1979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnameCref] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1979), + [anon_sym_BSLASHlabelcref] = ACTIONS(1979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange] = ACTIONS(1979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHCrefrange] = ACTIONS(1979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1975), + [anon_sym_BSLASHnewlabel] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand] = ACTIONS(1979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1975), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdef] = ACTIONS(1979), + [anon_sym_BSLASHlet] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1979), + [anon_sym_BSLASHgls] = ACTIONS(1979), + [anon_sym_BSLASHGls] = ACTIONS(1979), + [anon_sym_BSLASHGLS] = ACTIONS(1979), + [anon_sym_BSLASHglspl] = ACTIONS(1979), + [anon_sym_BSLASHGlspl] = ACTIONS(1979), + [anon_sym_BSLASHGLSpl] = ACTIONS(1979), + [anon_sym_BSLASHglsdisp] = ACTIONS(1979), + [anon_sym_BSLASHglslink] = ACTIONS(1979), + [anon_sym_BSLASHglstext] = ACTIONS(1979), + [anon_sym_BSLASHGlstext] = ACTIONS(1979), + [anon_sym_BSLASHGLStext] = ACTIONS(1979), + [anon_sym_BSLASHglsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1979), + [anon_sym_BSLASHglsplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSplural] = ACTIONS(1979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1979), + [anon_sym_BSLASHglsname] = ACTIONS(1979), + [anon_sym_BSLASHGlsname] = ACTIONS(1979), + [anon_sym_BSLASHGLSname] = ACTIONS(1979), + [anon_sym_BSLASHglssymbol] = ACTIONS(1979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1979), + [anon_sym_BSLASHglsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1979), + [anon_sym_BSLASHglsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1979), + [anon_sym_BSLASHglsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1979), + [anon_sym_BSLASHglsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1979), + [anon_sym_BSLASHglsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1979), + [anon_sym_BSLASHnewacronym] = ACTIONS(1979), + [anon_sym_BSLASHacrshort] = ACTIONS(1979), + [anon_sym_BSLASHAcrshort] = ACTIONS(1979), + [anon_sym_BSLASHACRshort] = ACTIONS(1979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1979), + [anon_sym_BSLASHacrlong] = ACTIONS(1979), + [anon_sym_BSLASHAcrlong] = ACTIONS(1979), + [anon_sym_BSLASHACRlong] = ACTIONS(1979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1979), + [anon_sym_BSLASHacrfull] = ACTIONS(1979), + [anon_sym_BSLASHAcrfull] = ACTIONS(1979), + [anon_sym_BSLASHACRfull] = ACTIONS(1979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1979), + [anon_sym_BSLASHacs] = ACTIONS(1979), + [anon_sym_BSLASHAcs] = ACTIONS(1979), + [anon_sym_BSLASHacsp] = ACTIONS(1979), + [anon_sym_BSLASHAcsp] = ACTIONS(1979), + [anon_sym_BSLASHacl] = ACTIONS(1979), + [anon_sym_BSLASHAcl] = ACTIONS(1979), + [anon_sym_BSLASHaclp] = ACTIONS(1979), + [anon_sym_BSLASHAclp] = ACTIONS(1979), + [anon_sym_BSLASHacf] = ACTIONS(1979), + [anon_sym_BSLASHAcf] = ACTIONS(1979), + [anon_sym_BSLASHacfp] = ACTIONS(1979), + [anon_sym_BSLASHAcfp] = ACTIONS(1979), + [anon_sym_BSLASHac] = ACTIONS(1979), + [anon_sym_BSLASHAc] = ACTIONS(1979), + [anon_sym_BSLASHacp] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1979), + [anon_sym_BSLASHcolor] = ACTIONS(1979), + [anon_sym_BSLASHcolorbox] = ACTIONS(1979), + [anon_sym_BSLASHtextcolor] = ACTIONS(1979), + [anon_sym_BSLASHpagecolor] = ACTIONS(1979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1979), + [anon_sym_BSLASHtext] = ACTIONS(1979), + [anon_sym_BSLASHintertext] = ACTIONS(1979), + [anon_sym_shortintertext] = ACTIONS(1979), }, - [1157] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), + [642] = { + [sym__chapter_declaration] = STATE(147), + [sym_chapter] = STATE(464), + [aux_sym__section_repeat2] = STATE(464), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(591), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(593), + [anon_sym_BSLASHaddchap] = ACTIONS(591), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(593), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1158] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_BSLASHpart] = ACTIONS(5491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddpart] = ACTIONS(5491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHchapter] = ACTIONS(5491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddchap] = ACTIONS(5491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsection] = ACTIONS(5491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddsec] = ACTIONS(5491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHparagraph] = ACTIONS(5491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHitem] = ACTIONS(5491), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHend] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), + [643] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1159] = { + [644] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -356637,8 +218266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), [anon_sym_BSLASHaddsec] = ACTIONS(5323), [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), [anon_sym_BSLASHparagraph] = ACTIONS(5323), @@ -356667,8 +218296,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(5323), [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), [anon_sym_BSLASHbegin] = ACTIONS(5323), - [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), [anon_sym_BSLASHusepackage] = ACTIONS(5323), [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), @@ -356890,835 +218521,1977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(5323), [anon_sym_shortintertext] = ACTIONS(5323), }, - [1160] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_BSLASHpart] = ACTIONS(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHend] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), + [645] = { + [sym__enum_itemdeclaration] = STATE(210), + [sym_enum_item] = STATE(551), + [aux_sym__section_repeat8] = STATE(551), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [1161] = { - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_BSLASHpart] = ACTIONS(5071), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddpart] = ACTIONS(5071), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHchapter] = ACTIONS(5071), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddchap] = ACTIONS(5071), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsection] = ACTIONS(5071), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddsec] = ACTIONS(5071), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHparagraph] = ACTIONS(5071), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), + [646] = { + [sym__subparagraph_declaration] = STATE(200), + [sym_subparagraph] = STATE(553), + [aux_sym__section_repeat7] = STATE(553), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(259), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [1162] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_BSLASHpart] = ACTIONS(5315), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddpart] = ACTIONS(5315), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5313), - [anon_sym_BSLASHchapter] = ACTIONS(5315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddchap] = ACTIONS(5315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsection] = ACTIONS(5315), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHaddsec] = ACTIONS(5315), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5313), - [anon_sym_BSLASHparagraph] = ACTIONS(5315), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5313), - [anon_sym_BSLASHitem] = ACTIONS(5315), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), + [647] = { + [sym__paragraph_declaration] = STATE(188), + [sym_paragraph] = STATE(554), + [aux_sym__section_repeat6] = STATE(554), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [1163] = { + [648] = { + [sym__subsubsection_declaration] = STATE(182), + [sym_subsubsection] = STATE(555), + [aux_sym__section_repeat5] = STATE(555), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(251), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [649] = { + [sym__subsection_declaration] = STATE(172), + [sym_subsection] = STATE(557), + [aux_sym__section_repeat4] = STATE(557), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [650] = { + [sym__section_declaration] = STATE(157), + [sym_section] = STATE(559), + [aux_sym__section_repeat3] = STATE(559), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(243), + [anon_sym_BSLASHaddsec] = ACTIONS(241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(243), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [651] = { + [sym__chapter_declaration] = STATE(146), + [sym_chapter] = STATE(560), + [aux_sym__section_repeat2] = STATE(560), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(239), + [anon_sym_BSLASHaddchap] = ACTIONS(237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(239), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [652] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -357743,8 +220516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), [anon_sym_BSLASHsubsection] = ACTIONS(5323), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), [anon_sym_BSLASHparagraph] = ACTIONS(5323), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), @@ -357768,11 +220541,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(5323), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5321), [anon_sym_DOLLAR] = ACTIONS(5323), [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), [anon_sym_BSLASHusepackage] = ACTIONS(5323), [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), @@ -357951,10821 +220726,4556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHAcrfull] = ACTIONS(5323), [anon_sym_BSLASHACRfull] = ACTIONS(5323), [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), - [anon_sym_BSLASHtext] = ACTIONS(5323), - [anon_sym_BSLASHintertext] = ACTIONS(5323), - [anon_sym_shortintertext] = ACTIONS(5323), - }, - [1164] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_BSLASHpart] = ACTIONS(5491), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddpart] = ACTIONS(5491), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5489), - [anon_sym_BSLASHchapter] = ACTIONS(5491), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddchap] = ACTIONS(5491), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsection] = ACTIONS(5491), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHaddsec] = ACTIONS(5491), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5491), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5489), - [anon_sym_BSLASHparagraph] = ACTIONS(5491), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5491), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5489), - [anon_sym_BSLASHitem] = ACTIONS(5491), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), - }, - [1165] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASHpart] = ACTIONS(5483), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddpart] = ACTIONS(5483), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5481), - [anon_sym_BSLASHchapter] = ACTIONS(5483), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddchap] = ACTIONS(5483), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsection] = ACTIONS(5483), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHaddsec] = ACTIONS(5483), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5483), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5481), - [anon_sym_BSLASHparagraph] = ACTIONS(5483), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5483), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5481), - [anon_sym_BSLASHitem] = ACTIONS(5483), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), - }, - [1166] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_BSLASHpart] = ACTIONS(5455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddpart] = ACTIONS(5455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5453), - [anon_sym_BSLASHchapter] = ACTIONS(5455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddchap] = ACTIONS(5455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsection] = ACTIONS(5455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHaddsec] = ACTIONS(5455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5453), - [anon_sym_BSLASHparagraph] = ACTIONS(5455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5453), - [anon_sym_BSLASHitem] = ACTIONS(5455), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), - }, - [1167] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_BSLASHpart] = ACTIONS(5075), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddpart] = ACTIONS(5075), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5073), - [anon_sym_BSLASHchapter] = ACTIONS(5075), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddchap] = ACTIONS(5075), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsection] = ACTIONS(5075), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHaddsec] = ACTIONS(5075), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5073), - [anon_sym_BSLASHparagraph] = ACTIONS(5075), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5073), - [anon_sym_BSLASHitem] = ACTIONS(5075), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), - }, - [1168] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5415), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5415), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5415), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5415), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5415), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5415), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5415), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5415), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5415), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5415), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), - }, - [1169] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_BSLASHpart] = ACTIONS(5399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddpart] = ACTIONS(5399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5397), - [anon_sym_BSLASHchapter] = ACTIONS(5399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddchap] = ACTIONS(5399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsection] = ACTIONS(5399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHaddsec] = ACTIONS(5399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5397), - [anon_sym_BSLASHparagraph] = ACTIONS(5399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5397), - [anon_sym_BSLASHitem] = ACTIONS(5399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), - }, - [1170] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_BSLASHpart] = ACTIONS(5379), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddpart] = ACTIONS(5379), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5377), - [anon_sym_BSLASHchapter] = ACTIONS(5379), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddchap] = ACTIONS(5379), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsection] = ACTIONS(5379), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHaddsec] = ACTIONS(5379), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5377), - [anon_sym_BSLASHparagraph] = ACTIONS(5379), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5377), - [anon_sym_BSLASHitem] = ACTIONS(5379), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), - }, - [1171] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), - }, - [1172] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), - }, - [1173] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHend] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), - }, - [1174] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), - }, - [1175] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), - }, - [1176] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), - }, - [1177] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), - }, - [1178] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), - }, - [1179] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), - }, - [1180] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), - }, - [1181] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), - }, - [1182] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_BSLASHpart] = ACTIONS(5431), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddpart] = ACTIONS(5431), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5429), - [anon_sym_BSLASHchapter] = ACTIONS(5431), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddchap] = ACTIONS(5431), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsection] = ACTIONS(5431), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHaddsec] = ACTIONS(5431), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5431), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5429), - [anon_sym_BSLASHparagraph] = ACTIONS(5431), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5431), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5429), - [anon_sym_BSLASHitem] = ACTIONS(5431), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), - }, - [1183] = { - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_BSLASHpart] = ACTIONS(143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddpart] = ACTIONS(143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), - [anon_sym_BSLASHchapter] = ACTIONS(143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddchap] = ACTIONS(143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), - [anon_sym_BSLASHsection] = ACTIONS(143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHaddsec] = ACTIONS(143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), - [anon_sym_BSLASHparagraph] = ACTIONS(143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), - [anon_sym_BSLASHitem] = ACTIONS(143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_BSLASH_RBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [1184] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [1185] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_BSLASHpart] = ACTIONS(5237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddpart] = ACTIONS(5237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), - [anon_sym_BSLASHchapter] = ACTIONS(5237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddchap] = ACTIONS(5237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsection] = ACTIONS(5237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHaddsec] = ACTIONS(5237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), - [anon_sym_BSLASHparagraph] = ACTIONS(5237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), - [anon_sym_BSLASHitem] = ACTIONS(5237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), - }, - [1186] = { - [sym_command_name] = ACTIONS(5245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5245), - [anon_sym_LPAREN] = ACTIONS(5243), - [anon_sym_RPAREN] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5243), - [anon_sym_COMMA] = ACTIONS(5243), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_BSLASHpart] = ACTIONS(5245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddpart] = ACTIONS(5245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), - [anon_sym_BSLASHchapter] = ACTIONS(5245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddchap] = ACTIONS(5245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsection] = ACTIONS(5245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHaddsec] = ACTIONS(5245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), - [anon_sym_BSLASHparagraph] = ACTIONS(5245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), - [anon_sym_BSLASHitem] = ACTIONS(5245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5243), - [sym_word] = ACTIONS(5245), - [sym_placeholder] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5245), - [anon_sym_SLASH] = ACTIONS(5245), - [anon_sym_CARET] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), - [anon_sym_LT] = ACTIONS(5245), - [anon_sym_GT] = ACTIONS(5245), - [anon_sym_BANG] = ACTIONS(5245), - [anon_sym_PIPE] = ACTIONS(5245), - [anon_sym_COLON] = ACTIONS(5245), - [anon_sym_SQUOTE] = ACTIONS(5245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5243), - [anon_sym_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), - [anon_sym_BSLASHbegin] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), - [anon_sym_BSLASHinclude] = ACTIONS(5245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), - [anon_sym_BSLASHinput] = ACTIONS(5245), - [anon_sym_BSLASHsubfile] = ACTIONS(5245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), - [anon_sym_BSLASHbibliography] = ACTIONS(5245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), - [anon_sym_BSLASHincludesvg] = ACTIONS(5245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), - [anon_sym_BSLASHimport] = ACTIONS(5245), - [anon_sym_BSLASHsubimport] = ACTIONS(5245), - [anon_sym_BSLASHinputfrom] = ACTIONS(5245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), - [anon_sym_BSLASHincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), - [anon_sym_BSLASHcaption] = ACTIONS(5245), - [anon_sym_BSLASHcite] = ACTIONS(5245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCite] = ACTIONS(5245), - [anon_sym_BSLASHnocite] = ACTIONS(5245), - [anon_sym_BSLASHcitet] = ACTIONS(5245), - [anon_sym_BSLASHcitep] = ACTIONS(5245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteyear] = ACTIONS(5245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), - [anon_sym_BSLASHcitedate] = ACTIONS(5245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), - [anon_sym_BSLASHciteurl] = ACTIONS(5245), - [anon_sym_BSLASHfullcite] = ACTIONS(5245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), - [anon_sym_BSLASHcitealt] = ACTIONS(5245), - [anon_sym_BSLASHcitealp] = ACTIONS(5245), - [anon_sym_BSLASHcitetext] = ACTIONS(5245), - [anon_sym_BSLASHparencite] = ACTIONS(5245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHParencite] = ACTIONS(5245), - [anon_sym_BSLASHfootcite] = ACTIONS(5245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), - [anon_sym_BSLASHtextcite] = ACTIONS(5245), - [anon_sym_BSLASHTextcite] = ACTIONS(5245), - [anon_sym_BSLASHsmartcite] = ACTIONS(5245), - [anon_sym_BSLASHSmartcite] = ACTIONS(5245), - [anon_sym_BSLASHsupercite] = ACTIONS(5245), - [anon_sym_BSLASHautocite] = ACTIONS(5245), - [anon_sym_BSLASHAutocite] = ACTIONS(5245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), - [anon_sym_BSLASHvolcite] = ACTIONS(5245), - [anon_sym_BSLASHVolcite] = ACTIONS(5245), - [anon_sym_BSLASHpvolcite] = ACTIONS(5245), - [anon_sym_BSLASHPvolcite] = ACTIONS(5245), - [anon_sym_BSLASHfvolcite] = ACTIONS(5245), - [anon_sym_BSLASHftvolcite] = ACTIONS(5245), - [anon_sym_BSLASHsvolcite] = ACTIONS(5245), - [anon_sym_BSLASHSvolcite] = ACTIONS(5245), - [anon_sym_BSLASHtvolcite] = ACTIONS(5245), - [anon_sym_BSLASHTvolcite] = ACTIONS(5245), - [anon_sym_BSLASHavolcite] = ACTIONS(5245), - [anon_sym_BSLASHAvolcite] = ACTIONS(5245), - [anon_sym_BSLASHnotecite] = ACTIONS(5245), - [anon_sym_BSLASHNotecite] = ACTIONS(5245), - [anon_sym_BSLASHpnotecite] = ACTIONS(5245), - [anon_sym_BSLASHPnotecite] = ACTIONS(5245), - [anon_sym_BSLASHfnotecite] = ACTIONS(5245), - [anon_sym_BSLASHlabel] = ACTIONS(5245), - [anon_sym_BSLASHref] = ACTIONS(5245), - [anon_sym_BSLASHeqref] = ACTIONS(5245), - [anon_sym_BSLASHvref] = ACTIONS(5245), - [anon_sym_BSLASHVref] = ACTIONS(5245), - [anon_sym_BSLASHautoref] = ACTIONS(5245), - [anon_sym_BSLASHpageref] = ACTIONS(5245), - [anon_sym_BSLASHcref] = ACTIONS(5245), - [anon_sym_BSLASHCref] = ACTIONS(5245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnameCref] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), - [anon_sym_BSLASHlabelcref] = ACTIONS(5245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange] = ACTIONS(5245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), - [anon_sym_BSLASHnewlabel] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand] = ACTIONS(5245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdef] = ACTIONS(5245), - [anon_sym_BSLASHlet] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), - [anon_sym_BSLASHgls] = ACTIONS(5245), - [anon_sym_BSLASHGls] = ACTIONS(5245), - [anon_sym_BSLASHGLS] = ACTIONS(5245), - [anon_sym_BSLASHglspl] = ACTIONS(5245), - [anon_sym_BSLASHGlspl] = ACTIONS(5245), - [anon_sym_BSLASHGLSpl] = ACTIONS(5245), - [anon_sym_BSLASHglsdisp] = ACTIONS(5245), - [anon_sym_BSLASHglslink] = ACTIONS(5245), - [anon_sym_BSLASHglstext] = ACTIONS(5245), - [anon_sym_BSLASHGlstext] = ACTIONS(5245), - [anon_sym_BSLASHGLStext] = ACTIONS(5245), - [anon_sym_BSLASHglsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), - [anon_sym_BSLASHglsplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSplural] = ACTIONS(5245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), - [anon_sym_BSLASHglsname] = ACTIONS(5245), - [anon_sym_BSLASHGlsname] = ACTIONS(5245), - [anon_sym_BSLASHGLSname] = ACTIONS(5245), - [anon_sym_BSLASHglssymbol] = ACTIONS(5245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), - [anon_sym_BSLASHglsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), - [anon_sym_BSLASHglsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), - [anon_sym_BSLASHglsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), - [anon_sym_BSLASHglsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), - [anon_sym_BSLASHglsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), - [anon_sym_BSLASHnewacronym] = ACTIONS(5245), - [anon_sym_BSLASHacrshort] = ACTIONS(5245), - [anon_sym_BSLASHAcrshort] = ACTIONS(5245), - [anon_sym_BSLASHACRshort] = ACTIONS(5245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), - [anon_sym_BSLASHacrlong] = ACTIONS(5245), - [anon_sym_BSLASHAcrlong] = ACTIONS(5245), - [anon_sym_BSLASHACRlong] = ACTIONS(5245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), - [anon_sym_BSLASHacrfull] = ACTIONS(5245), - [anon_sym_BSLASHAcrfull] = ACTIONS(5245), - [anon_sym_BSLASHACRfull] = ACTIONS(5245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), - [anon_sym_BSLASHacs] = ACTIONS(5245), - [anon_sym_BSLASHAcs] = ACTIONS(5245), - [anon_sym_BSLASHacsp] = ACTIONS(5245), - [anon_sym_BSLASHAcsp] = ACTIONS(5245), - [anon_sym_BSLASHacl] = ACTIONS(5245), - [anon_sym_BSLASHAcl] = ACTIONS(5245), - [anon_sym_BSLASHaclp] = ACTIONS(5245), - [anon_sym_BSLASHAclp] = ACTIONS(5245), - [anon_sym_BSLASHacf] = ACTIONS(5245), - [anon_sym_BSLASHAcf] = ACTIONS(5245), - [anon_sym_BSLASHacfp] = ACTIONS(5245), - [anon_sym_BSLASHAcfp] = ACTIONS(5245), - [anon_sym_BSLASHac] = ACTIONS(5245), - [anon_sym_BSLASHAc] = ACTIONS(5245), - [anon_sym_BSLASHacp] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), - [anon_sym_BSLASHcolor] = ACTIONS(5245), - [anon_sym_BSLASHcolorbox] = ACTIONS(5245), - [anon_sym_BSLASHtextcolor] = ACTIONS(5245), - [anon_sym_BSLASHpagecolor] = ACTIONS(5245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), - [anon_sym_BSLASHtext] = ACTIONS(5245), - [anon_sym_BSLASHintertext] = ACTIONS(5245), - [anon_sym_shortintertext] = ACTIONS(5245), - }, - [1187] = { - [sym_command_name] = ACTIONS(5253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_RPAREN] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_RBRACK] = ACTIONS(5251), - [anon_sym_COMMA] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_BSLASHpart] = ACTIONS(5253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddpart] = ACTIONS(5253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), - [anon_sym_BSLASHchapter] = ACTIONS(5253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddchap] = ACTIONS(5253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsection] = ACTIONS(5253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHaddsec] = ACTIONS(5253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), - [anon_sym_BSLASHparagraph] = ACTIONS(5253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), - [anon_sym_BSLASHitem] = ACTIONS(5253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5251), - [sym_word] = ACTIONS(5253), - [sym_placeholder] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym__] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_BANG] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5253), - [anon_sym_SQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5251), - [anon_sym_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), - [anon_sym_BSLASHbegin] = ACTIONS(5253), - [anon_sym_BSLASHusepackage] = ACTIONS(5253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), - [anon_sym_BSLASHinclude] = ACTIONS(5253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), - [anon_sym_BSLASHinput] = ACTIONS(5253), - [anon_sym_BSLASHsubfile] = ACTIONS(5253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), - [anon_sym_BSLASHbibliography] = ACTIONS(5253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), - [anon_sym_BSLASHincludesvg] = ACTIONS(5253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), - [anon_sym_BSLASHimport] = ACTIONS(5253), - [anon_sym_BSLASHsubimport] = ACTIONS(5253), - [anon_sym_BSLASHinputfrom] = ACTIONS(5253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), - [anon_sym_BSLASHincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), - [anon_sym_BSLASHcaption] = ACTIONS(5253), - [anon_sym_BSLASHcite] = ACTIONS(5253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCite] = ACTIONS(5253), - [anon_sym_BSLASHnocite] = ACTIONS(5253), - [anon_sym_BSLASHcitet] = ACTIONS(5253), - [anon_sym_BSLASHcitep] = ACTIONS(5253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteyear] = ACTIONS(5253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), - [anon_sym_BSLASHcitedate] = ACTIONS(5253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), - [anon_sym_BSLASHciteurl] = ACTIONS(5253), - [anon_sym_BSLASHfullcite] = ACTIONS(5253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), - [anon_sym_BSLASHcitealt] = ACTIONS(5253), - [anon_sym_BSLASHcitealp] = ACTIONS(5253), - [anon_sym_BSLASHcitetext] = ACTIONS(5253), - [anon_sym_BSLASHparencite] = ACTIONS(5253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHParencite] = ACTIONS(5253), - [anon_sym_BSLASHfootcite] = ACTIONS(5253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), - [anon_sym_BSLASHtextcite] = ACTIONS(5253), - [anon_sym_BSLASHTextcite] = ACTIONS(5253), - [anon_sym_BSLASHsmartcite] = ACTIONS(5253), - [anon_sym_BSLASHSmartcite] = ACTIONS(5253), - [anon_sym_BSLASHsupercite] = ACTIONS(5253), - [anon_sym_BSLASHautocite] = ACTIONS(5253), - [anon_sym_BSLASHAutocite] = ACTIONS(5253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), - [anon_sym_BSLASHvolcite] = ACTIONS(5253), - [anon_sym_BSLASHVolcite] = ACTIONS(5253), - [anon_sym_BSLASHpvolcite] = ACTIONS(5253), - [anon_sym_BSLASHPvolcite] = ACTIONS(5253), - [anon_sym_BSLASHfvolcite] = ACTIONS(5253), - [anon_sym_BSLASHftvolcite] = ACTIONS(5253), - [anon_sym_BSLASHsvolcite] = ACTIONS(5253), - [anon_sym_BSLASHSvolcite] = ACTIONS(5253), - [anon_sym_BSLASHtvolcite] = ACTIONS(5253), - [anon_sym_BSLASHTvolcite] = ACTIONS(5253), - [anon_sym_BSLASHavolcite] = ACTIONS(5253), - [anon_sym_BSLASHAvolcite] = ACTIONS(5253), - [anon_sym_BSLASHnotecite] = ACTIONS(5253), - [anon_sym_BSLASHNotecite] = ACTIONS(5253), - [anon_sym_BSLASHpnotecite] = ACTIONS(5253), - [anon_sym_BSLASHPnotecite] = ACTIONS(5253), - [anon_sym_BSLASHfnotecite] = ACTIONS(5253), - [anon_sym_BSLASHlabel] = ACTIONS(5253), - [anon_sym_BSLASHref] = ACTIONS(5253), - [anon_sym_BSLASHeqref] = ACTIONS(5253), - [anon_sym_BSLASHvref] = ACTIONS(5253), - [anon_sym_BSLASHVref] = ACTIONS(5253), - [anon_sym_BSLASHautoref] = ACTIONS(5253), - [anon_sym_BSLASHpageref] = ACTIONS(5253), - [anon_sym_BSLASHcref] = ACTIONS(5253), - [anon_sym_BSLASHCref] = ACTIONS(5253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnameCref] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), - [anon_sym_BSLASHlabelcref] = ACTIONS(5253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange] = ACTIONS(5253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), - [anon_sym_BSLASHnewlabel] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand] = ACTIONS(5253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdef] = ACTIONS(5253), - [anon_sym_BSLASHlet] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), - [anon_sym_BSLASHgls] = ACTIONS(5253), - [anon_sym_BSLASHGls] = ACTIONS(5253), - [anon_sym_BSLASHGLS] = ACTIONS(5253), - [anon_sym_BSLASHglspl] = ACTIONS(5253), - [anon_sym_BSLASHGlspl] = ACTIONS(5253), - [anon_sym_BSLASHGLSpl] = ACTIONS(5253), - [anon_sym_BSLASHglsdisp] = ACTIONS(5253), - [anon_sym_BSLASHglslink] = ACTIONS(5253), - [anon_sym_BSLASHglstext] = ACTIONS(5253), - [anon_sym_BSLASHGlstext] = ACTIONS(5253), - [anon_sym_BSLASHGLStext] = ACTIONS(5253), - [anon_sym_BSLASHglsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), - [anon_sym_BSLASHglsplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSplural] = ACTIONS(5253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), - [anon_sym_BSLASHglsname] = ACTIONS(5253), - [anon_sym_BSLASHGlsname] = ACTIONS(5253), - [anon_sym_BSLASHGLSname] = ACTIONS(5253), - [anon_sym_BSLASHglssymbol] = ACTIONS(5253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), - [anon_sym_BSLASHglsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), - [anon_sym_BSLASHglsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), - [anon_sym_BSLASHglsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), - [anon_sym_BSLASHglsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), - [anon_sym_BSLASHglsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), - [anon_sym_BSLASHnewacronym] = ACTIONS(5253), - [anon_sym_BSLASHacrshort] = ACTIONS(5253), - [anon_sym_BSLASHAcrshort] = ACTIONS(5253), - [anon_sym_BSLASHACRshort] = ACTIONS(5253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), - [anon_sym_BSLASHacrlong] = ACTIONS(5253), - [anon_sym_BSLASHAcrlong] = ACTIONS(5253), - [anon_sym_BSLASHACRlong] = ACTIONS(5253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), - [anon_sym_BSLASHacrfull] = ACTIONS(5253), - [anon_sym_BSLASHAcrfull] = ACTIONS(5253), - [anon_sym_BSLASHACRfull] = ACTIONS(5253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), - [anon_sym_BSLASHacs] = ACTIONS(5253), - [anon_sym_BSLASHAcs] = ACTIONS(5253), - [anon_sym_BSLASHacsp] = ACTIONS(5253), - [anon_sym_BSLASHAcsp] = ACTIONS(5253), - [anon_sym_BSLASHacl] = ACTIONS(5253), - [anon_sym_BSLASHAcl] = ACTIONS(5253), - [anon_sym_BSLASHaclp] = ACTIONS(5253), - [anon_sym_BSLASHAclp] = ACTIONS(5253), - [anon_sym_BSLASHacf] = ACTIONS(5253), - [anon_sym_BSLASHAcf] = ACTIONS(5253), - [anon_sym_BSLASHacfp] = ACTIONS(5253), - [anon_sym_BSLASHAcfp] = ACTIONS(5253), - [anon_sym_BSLASHac] = ACTIONS(5253), - [anon_sym_BSLASHAc] = ACTIONS(5253), - [anon_sym_BSLASHacp] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), - [anon_sym_BSLASHcolor] = ACTIONS(5253), - [anon_sym_BSLASHcolorbox] = ACTIONS(5253), - [anon_sym_BSLASHtextcolor] = ACTIONS(5253), - [anon_sym_BSLASHpagecolor] = ACTIONS(5253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), - [anon_sym_BSLASHtext] = ACTIONS(5253), - [anon_sym_BSLASHintertext] = ACTIONS(5253), - [anon_sym_shortintertext] = ACTIONS(5253), - }, - [1188] = { - [sym_command_name] = ACTIONS(5261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5259), - [anon_sym_BSLASHpart] = ACTIONS(5261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddpart] = ACTIONS(5261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), - [anon_sym_BSLASHchapter] = ACTIONS(5261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddchap] = ACTIONS(5261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsection] = ACTIONS(5261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHaddsec] = ACTIONS(5261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), - [anon_sym_BSLASHparagraph] = ACTIONS(5261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), - [anon_sym_BSLASHitem] = ACTIONS(5261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), - [anon_sym_LBRACE] = ACTIONS(5259), - [sym_word] = ACTIONS(5261), - [sym_placeholder] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym__] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_BANG] = ACTIONS(5261), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5261), - [anon_sym_SQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5259), - [anon_sym_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), - [anon_sym_BSLASHbegin] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), - [anon_sym_BSLASHinclude] = ACTIONS(5261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), - [anon_sym_BSLASHinput] = ACTIONS(5261), - [anon_sym_BSLASHsubfile] = ACTIONS(5261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), - [anon_sym_BSLASHbibliography] = ACTIONS(5261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), - [anon_sym_BSLASHincludesvg] = ACTIONS(5261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), - [anon_sym_BSLASHimport] = ACTIONS(5261), - [anon_sym_BSLASHsubimport] = ACTIONS(5261), - [anon_sym_BSLASHinputfrom] = ACTIONS(5261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), - [anon_sym_BSLASHincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), - [anon_sym_BSLASHcaption] = ACTIONS(5261), - [anon_sym_BSLASHcite] = ACTIONS(5261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCite] = ACTIONS(5261), - [anon_sym_BSLASHnocite] = ACTIONS(5261), - [anon_sym_BSLASHcitet] = ACTIONS(5261), - [anon_sym_BSLASHcitep] = ACTIONS(5261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteyear] = ACTIONS(5261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), - [anon_sym_BSLASHcitedate] = ACTIONS(5261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), - [anon_sym_BSLASHciteurl] = ACTIONS(5261), - [anon_sym_BSLASHfullcite] = ACTIONS(5261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), - [anon_sym_BSLASHcitealt] = ACTIONS(5261), - [anon_sym_BSLASHcitealp] = ACTIONS(5261), - [anon_sym_BSLASHcitetext] = ACTIONS(5261), - [anon_sym_BSLASHparencite] = ACTIONS(5261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHParencite] = ACTIONS(5261), - [anon_sym_BSLASHfootcite] = ACTIONS(5261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), - [anon_sym_BSLASHtextcite] = ACTIONS(5261), - [anon_sym_BSLASHTextcite] = ACTIONS(5261), - [anon_sym_BSLASHsmartcite] = ACTIONS(5261), - [anon_sym_BSLASHSmartcite] = ACTIONS(5261), - [anon_sym_BSLASHsupercite] = ACTIONS(5261), - [anon_sym_BSLASHautocite] = ACTIONS(5261), - [anon_sym_BSLASHAutocite] = ACTIONS(5261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), - [anon_sym_BSLASHvolcite] = ACTIONS(5261), - [anon_sym_BSLASHVolcite] = ACTIONS(5261), - [anon_sym_BSLASHpvolcite] = ACTIONS(5261), - [anon_sym_BSLASHPvolcite] = ACTIONS(5261), - [anon_sym_BSLASHfvolcite] = ACTIONS(5261), - [anon_sym_BSLASHftvolcite] = ACTIONS(5261), - [anon_sym_BSLASHsvolcite] = ACTIONS(5261), - [anon_sym_BSLASHSvolcite] = ACTIONS(5261), - [anon_sym_BSLASHtvolcite] = ACTIONS(5261), - [anon_sym_BSLASHTvolcite] = ACTIONS(5261), - [anon_sym_BSLASHavolcite] = ACTIONS(5261), - [anon_sym_BSLASHAvolcite] = ACTIONS(5261), - [anon_sym_BSLASHnotecite] = ACTIONS(5261), - [anon_sym_BSLASHNotecite] = ACTIONS(5261), - [anon_sym_BSLASHpnotecite] = ACTIONS(5261), - [anon_sym_BSLASHPnotecite] = ACTIONS(5261), - [anon_sym_BSLASHfnotecite] = ACTIONS(5261), - [anon_sym_BSLASHlabel] = ACTIONS(5261), - [anon_sym_BSLASHref] = ACTIONS(5261), - [anon_sym_BSLASHeqref] = ACTIONS(5261), - [anon_sym_BSLASHvref] = ACTIONS(5261), - [anon_sym_BSLASHVref] = ACTIONS(5261), - [anon_sym_BSLASHautoref] = ACTIONS(5261), - [anon_sym_BSLASHpageref] = ACTIONS(5261), - [anon_sym_BSLASHcref] = ACTIONS(5261), - [anon_sym_BSLASHCref] = ACTIONS(5261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnameCref] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), - [anon_sym_BSLASHlabelcref] = ACTIONS(5261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange] = ACTIONS(5261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), - [anon_sym_BSLASHnewlabel] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand] = ACTIONS(5261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdef] = ACTIONS(5261), - [anon_sym_BSLASHlet] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), - [anon_sym_BSLASHgls] = ACTIONS(5261), - [anon_sym_BSLASHGls] = ACTIONS(5261), - [anon_sym_BSLASHGLS] = ACTIONS(5261), - [anon_sym_BSLASHglspl] = ACTIONS(5261), - [anon_sym_BSLASHGlspl] = ACTIONS(5261), - [anon_sym_BSLASHGLSpl] = ACTIONS(5261), - [anon_sym_BSLASHglsdisp] = ACTIONS(5261), - [anon_sym_BSLASHglslink] = ACTIONS(5261), - [anon_sym_BSLASHglstext] = ACTIONS(5261), - [anon_sym_BSLASHGlstext] = ACTIONS(5261), - [anon_sym_BSLASHGLStext] = ACTIONS(5261), - [anon_sym_BSLASHglsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), - [anon_sym_BSLASHglsplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSplural] = ACTIONS(5261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), - [anon_sym_BSLASHglsname] = ACTIONS(5261), - [anon_sym_BSLASHGlsname] = ACTIONS(5261), - [anon_sym_BSLASHGLSname] = ACTIONS(5261), - [anon_sym_BSLASHglssymbol] = ACTIONS(5261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), - [anon_sym_BSLASHglsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), - [anon_sym_BSLASHglsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), - [anon_sym_BSLASHglsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), - [anon_sym_BSLASHglsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), - [anon_sym_BSLASHglsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), - [anon_sym_BSLASHnewacronym] = ACTIONS(5261), - [anon_sym_BSLASHacrshort] = ACTIONS(5261), - [anon_sym_BSLASHAcrshort] = ACTIONS(5261), - [anon_sym_BSLASHACRshort] = ACTIONS(5261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), - [anon_sym_BSLASHacrlong] = ACTIONS(5261), - [anon_sym_BSLASHAcrlong] = ACTIONS(5261), - [anon_sym_BSLASHACRlong] = ACTIONS(5261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), - [anon_sym_BSLASHacrfull] = ACTIONS(5261), - [anon_sym_BSLASHAcrfull] = ACTIONS(5261), - [anon_sym_BSLASHACRfull] = ACTIONS(5261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), - [anon_sym_BSLASHacs] = ACTIONS(5261), - [anon_sym_BSLASHAcs] = ACTIONS(5261), - [anon_sym_BSLASHacsp] = ACTIONS(5261), - [anon_sym_BSLASHAcsp] = ACTIONS(5261), - [anon_sym_BSLASHacl] = ACTIONS(5261), - [anon_sym_BSLASHAcl] = ACTIONS(5261), - [anon_sym_BSLASHaclp] = ACTIONS(5261), - [anon_sym_BSLASHAclp] = ACTIONS(5261), - [anon_sym_BSLASHacf] = ACTIONS(5261), - [anon_sym_BSLASHAcf] = ACTIONS(5261), - [anon_sym_BSLASHacfp] = ACTIONS(5261), - [anon_sym_BSLASHAcfp] = ACTIONS(5261), - [anon_sym_BSLASHac] = ACTIONS(5261), - [anon_sym_BSLASHAc] = ACTIONS(5261), - [anon_sym_BSLASHacp] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), - [anon_sym_BSLASHcolor] = ACTIONS(5261), - [anon_sym_BSLASHcolorbox] = ACTIONS(5261), - [anon_sym_BSLASHtextcolor] = ACTIONS(5261), - [anon_sym_BSLASHpagecolor] = ACTIONS(5261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), - [anon_sym_BSLASHtext] = ACTIONS(5261), - [anon_sym_BSLASHintertext] = ACTIONS(5261), - [anon_sym_shortintertext] = ACTIONS(5261), - }, - [1189] = { - [sym_command_name] = ACTIONS(5265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5265), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5263), - [anon_sym_BSLASHpart] = ACTIONS(5265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddpart] = ACTIONS(5265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), - [anon_sym_BSLASHchapter] = ACTIONS(5265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddchap] = ACTIONS(5265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsection] = ACTIONS(5265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHaddsec] = ACTIONS(5265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), - [anon_sym_BSLASHparagraph] = ACTIONS(5265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), - [anon_sym_BSLASHitem] = ACTIONS(5265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), - [anon_sym_LBRACE] = ACTIONS(5263), - [sym_word] = ACTIONS(5265), - [sym_placeholder] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(5265), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_STAR] = ACTIONS(5265), - [anon_sym_SLASH] = ACTIONS(5265), - [anon_sym_CARET] = ACTIONS(5265), - [anon_sym__] = ACTIONS(5265), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_BANG] = ACTIONS(5265), - [anon_sym_PIPE] = ACTIONS(5265), - [anon_sym_COLON] = ACTIONS(5265), - [anon_sym_SQUOTE] = ACTIONS(5265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), - [anon_sym_BSLASHbegin] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), - [anon_sym_BSLASHinclude] = ACTIONS(5265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), - [anon_sym_BSLASHinput] = ACTIONS(5265), - [anon_sym_BSLASHsubfile] = ACTIONS(5265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), - [anon_sym_BSLASHbibliography] = ACTIONS(5265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), - [anon_sym_BSLASHincludesvg] = ACTIONS(5265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), - [anon_sym_BSLASHimport] = ACTIONS(5265), - [anon_sym_BSLASHsubimport] = ACTIONS(5265), - [anon_sym_BSLASHinputfrom] = ACTIONS(5265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), - [anon_sym_BSLASHincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), - [anon_sym_BSLASHcaption] = ACTIONS(5265), - [anon_sym_BSLASHcite] = ACTIONS(5265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCite] = ACTIONS(5265), - [anon_sym_BSLASHnocite] = ACTIONS(5265), - [anon_sym_BSLASHcitet] = ACTIONS(5265), - [anon_sym_BSLASHcitep] = ACTIONS(5265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteyear] = ACTIONS(5265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), - [anon_sym_BSLASHcitedate] = ACTIONS(5265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), - [anon_sym_BSLASHciteurl] = ACTIONS(5265), - [anon_sym_BSLASHfullcite] = ACTIONS(5265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), - [anon_sym_BSLASHcitealt] = ACTIONS(5265), - [anon_sym_BSLASHcitealp] = ACTIONS(5265), - [anon_sym_BSLASHcitetext] = ACTIONS(5265), - [anon_sym_BSLASHparencite] = ACTIONS(5265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHParencite] = ACTIONS(5265), - [anon_sym_BSLASHfootcite] = ACTIONS(5265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), - [anon_sym_BSLASHtextcite] = ACTIONS(5265), - [anon_sym_BSLASHTextcite] = ACTIONS(5265), - [anon_sym_BSLASHsmartcite] = ACTIONS(5265), - [anon_sym_BSLASHSmartcite] = ACTIONS(5265), - [anon_sym_BSLASHsupercite] = ACTIONS(5265), - [anon_sym_BSLASHautocite] = ACTIONS(5265), - [anon_sym_BSLASHAutocite] = ACTIONS(5265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), - [anon_sym_BSLASHvolcite] = ACTIONS(5265), - [anon_sym_BSLASHVolcite] = ACTIONS(5265), - [anon_sym_BSLASHpvolcite] = ACTIONS(5265), - [anon_sym_BSLASHPvolcite] = ACTIONS(5265), - [anon_sym_BSLASHfvolcite] = ACTIONS(5265), - [anon_sym_BSLASHftvolcite] = ACTIONS(5265), - [anon_sym_BSLASHsvolcite] = ACTIONS(5265), - [anon_sym_BSLASHSvolcite] = ACTIONS(5265), - [anon_sym_BSLASHtvolcite] = ACTIONS(5265), - [anon_sym_BSLASHTvolcite] = ACTIONS(5265), - [anon_sym_BSLASHavolcite] = ACTIONS(5265), - [anon_sym_BSLASHAvolcite] = ACTIONS(5265), - [anon_sym_BSLASHnotecite] = ACTIONS(5265), - [anon_sym_BSLASHNotecite] = ACTIONS(5265), - [anon_sym_BSLASHpnotecite] = ACTIONS(5265), - [anon_sym_BSLASHPnotecite] = ACTIONS(5265), - [anon_sym_BSLASHfnotecite] = ACTIONS(5265), - [anon_sym_BSLASHlabel] = ACTIONS(5265), - [anon_sym_BSLASHref] = ACTIONS(5265), - [anon_sym_BSLASHeqref] = ACTIONS(5265), - [anon_sym_BSLASHvref] = ACTIONS(5265), - [anon_sym_BSLASHVref] = ACTIONS(5265), - [anon_sym_BSLASHautoref] = ACTIONS(5265), - [anon_sym_BSLASHpageref] = ACTIONS(5265), - [anon_sym_BSLASHcref] = ACTIONS(5265), - [anon_sym_BSLASHCref] = ACTIONS(5265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnameCref] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), - [anon_sym_BSLASHlabelcref] = ACTIONS(5265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange] = ACTIONS(5265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), - [anon_sym_BSLASHnewlabel] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand] = ACTIONS(5265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdef] = ACTIONS(5265), - [anon_sym_BSLASHlet] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), - [anon_sym_BSLASHgls] = ACTIONS(5265), - [anon_sym_BSLASHGls] = ACTIONS(5265), - [anon_sym_BSLASHGLS] = ACTIONS(5265), - [anon_sym_BSLASHglspl] = ACTIONS(5265), - [anon_sym_BSLASHGlspl] = ACTIONS(5265), - [anon_sym_BSLASHGLSpl] = ACTIONS(5265), - [anon_sym_BSLASHglsdisp] = ACTIONS(5265), - [anon_sym_BSLASHglslink] = ACTIONS(5265), - [anon_sym_BSLASHglstext] = ACTIONS(5265), - [anon_sym_BSLASHGlstext] = ACTIONS(5265), - [anon_sym_BSLASHGLStext] = ACTIONS(5265), - [anon_sym_BSLASHglsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), - [anon_sym_BSLASHglsplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSplural] = ACTIONS(5265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), - [anon_sym_BSLASHglsname] = ACTIONS(5265), - [anon_sym_BSLASHGlsname] = ACTIONS(5265), - [anon_sym_BSLASHGLSname] = ACTIONS(5265), - [anon_sym_BSLASHglssymbol] = ACTIONS(5265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), - [anon_sym_BSLASHglsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), - [anon_sym_BSLASHglsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), - [anon_sym_BSLASHglsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), - [anon_sym_BSLASHglsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), - [anon_sym_BSLASHglsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), - [anon_sym_BSLASHnewacronym] = ACTIONS(5265), - [anon_sym_BSLASHacrshort] = ACTIONS(5265), - [anon_sym_BSLASHAcrshort] = ACTIONS(5265), - [anon_sym_BSLASHACRshort] = ACTIONS(5265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), - [anon_sym_BSLASHacrlong] = ACTIONS(5265), - [anon_sym_BSLASHAcrlong] = ACTIONS(5265), - [anon_sym_BSLASHACRlong] = ACTIONS(5265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), - [anon_sym_BSLASHacrfull] = ACTIONS(5265), - [anon_sym_BSLASHAcrfull] = ACTIONS(5265), - [anon_sym_BSLASHACRfull] = ACTIONS(5265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), - [anon_sym_BSLASHacs] = ACTIONS(5265), - [anon_sym_BSLASHAcs] = ACTIONS(5265), - [anon_sym_BSLASHacsp] = ACTIONS(5265), - [anon_sym_BSLASHAcsp] = ACTIONS(5265), - [anon_sym_BSLASHacl] = ACTIONS(5265), - [anon_sym_BSLASHAcl] = ACTIONS(5265), - [anon_sym_BSLASHaclp] = ACTIONS(5265), - [anon_sym_BSLASHAclp] = ACTIONS(5265), - [anon_sym_BSLASHacf] = ACTIONS(5265), - [anon_sym_BSLASHAcf] = ACTIONS(5265), - [anon_sym_BSLASHacfp] = ACTIONS(5265), - [anon_sym_BSLASHAcfp] = ACTIONS(5265), - [anon_sym_BSLASHac] = ACTIONS(5265), - [anon_sym_BSLASHAc] = ACTIONS(5265), - [anon_sym_BSLASHacp] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), - [anon_sym_BSLASHcolor] = ACTIONS(5265), - [anon_sym_BSLASHcolorbox] = ACTIONS(5265), - [anon_sym_BSLASHtextcolor] = ACTIONS(5265), - [anon_sym_BSLASHpagecolor] = ACTIONS(5265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), - [anon_sym_BSLASHtext] = ACTIONS(5265), - [anon_sym_BSLASHintertext] = ACTIONS(5265), - [anon_sym_shortintertext] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1190] = { - [sym_command_name] = ACTIONS(5273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5273), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_RPAREN] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5271), - [anon_sym_RBRACK] = ACTIONS(5271), - [anon_sym_COMMA] = ACTIONS(5271), - [anon_sym_EQ] = ACTIONS(5271), - [anon_sym_BSLASHpart] = ACTIONS(5273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddpart] = ACTIONS(5273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), - [anon_sym_BSLASHchapter] = ACTIONS(5273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddchap] = ACTIONS(5273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsection] = ACTIONS(5273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHaddsec] = ACTIONS(5273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), - [anon_sym_BSLASHparagraph] = ACTIONS(5273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), - [anon_sym_BSLASHitem] = ACTIONS(5273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), - [anon_sym_LBRACE] = ACTIONS(5271), - [sym_word] = ACTIONS(5273), - [sym_placeholder] = ACTIONS(5271), - [anon_sym_PLUS] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(5273), - [anon_sym_STAR] = ACTIONS(5273), - [anon_sym_SLASH] = ACTIONS(5273), - [anon_sym_CARET] = ACTIONS(5273), - [anon_sym__] = ACTIONS(5273), - [anon_sym_LT] = ACTIONS(5273), - [anon_sym_GT] = ACTIONS(5273), - [anon_sym_BANG] = ACTIONS(5273), - [anon_sym_PIPE] = ACTIONS(5273), - [anon_sym_COLON] = ACTIONS(5273), - [anon_sym_SQUOTE] = ACTIONS(5273), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5271), - [anon_sym_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), - [anon_sym_BSLASHbegin] = ACTIONS(5273), - [anon_sym_BSLASHusepackage] = ACTIONS(5273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), - [anon_sym_BSLASHinclude] = ACTIONS(5273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), - [anon_sym_BSLASHinput] = ACTIONS(5273), - [anon_sym_BSLASHsubfile] = ACTIONS(5273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), - [anon_sym_BSLASHbibliography] = ACTIONS(5273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), - [anon_sym_BSLASHincludesvg] = ACTIONS(5273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), - [anon_sym_BSLASHimport] = ACTIONS(5273), - [anon_sym_BSLASHsubimport] = ACTIONS(5273), - [anon_sym_BSLASHinputfrom] = ACTIONS(5273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), - [anon_sym_BSLASHincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), - [anon_sym_BSLASHcaption] = ACTIONS(5273), - [anon_sym_BSLASHcite] = ACTIONS(5273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCite] = ACTIONS(5273), - [anon_sym_BSLASHnocite] = ACTIONS(5273), - [anon_sym_BSLASHcitet] = ACTIONS(5273), - [anon_sym_BSLASHcitep] = ACTIONS(5273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteyear] = ACTIONS(5273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), - [anon_sym_BSLASHcitedate] = ACTIONS(5273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), - [anon_sym_BSLASHciteurl] = ACTIONS(5273), - [anon_sym_BSLASHfullcite] = ACTIONS(5273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), - [anon_sym_BSLASHcitealt] = ACTIONS(5273), - [anon_sym_BSLASHcitealp] = ACTIONS(5273), - [anon_sym_BSLASHcitetext] = ACTIONS(5273), - [anon_sym_BSLASHparencite] = ACTIONS(5273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHParencite] = ACTIONS(5273), - [anon_sym_BSLASHfootcite] = ACTIONS(5273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), - [anon_sym_BSLASHtextcite] = ACTIONS(5273), - [anon_sym_BSLASHTextcite] = ACTIONS(5273), - [anon_sym_BSLASHsmartcite] = ACTIONS(5273), - [anon_sym_BSLASHSmartcite] = ACTIONS(5273), - [anon_sym_BSLASHsupercite] = ACTIONS(5273), - [anon_sym_BSLASHautocite] = ACTIONS(5273), - [anon_sym_BSLASHAutocite] = ACTIONS(5273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), - [anon_sym_BSLASHvolcite] = ACTIONS(5273), - [anon_sym_BSLASHVolcite] = ACTIONS(5273), - [anon_sym_BSLASHpvolcite] = ACTIONS(5273), - [anon_sym_BSLASHPvolcite] = ACTIONS(5273), - [anon_sym_BSLASHfvolcite] = ACTIONS(5273), - [anon_sym_BSLASHftvolcite] = ACTIONS(5273), - [anon_sym_BSLASHsvolcite] = ACTIONS(5273), - [anon_sym_BSLASHSvolcite] = ACTIONS(5273), - [anon_sym_BSLASHtvolcite] = ACTIONS(5273), - [anon_sym_BSLASHTvolcite] = ACTIONS(5273), - [anon_sym_BSLASHavolcite] = ACTIONS(5273), - [anon_sym_BSLASHAvolcite] = ACTIONS(5273), - [anon_sym_BSLASHnotecite] = ACTIONS(5273), - [anon_sym_BSLASHNotecite] = ACTIONS(5273), - [anon_sym_BSLASHpnotecite] = ACTIONS(5273), - [anon_sym_BSLASHPnotecite] = ACTIONS(5273), - [anon_sym_BSLASHfnotecite] = ACTIONS(5273), - [anon_sym_BSLASHlabel] = ACTIONS(5273), - [anon_sym_BSLASHref] = ACTIONS(5273), - [anon_sym_BSLASHeqref] = ACTIONS(5273), - [anon_sym_BSLASHvref] = ACTIONS(5273), - [anon_sym_BSLASHVref] = ACTIONS(5273), - [anon_sym_BSLASHautoref] = ACTIONS(5273), - [anon_sym_BSLASHpageref] = ACTIONS(5273), - [anon_sym_BSLASHcref] = ACTIONS(5273), - [anon_sym_BSLASHCref] = ACTIONS(5273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnameCref] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), - [anon_sym_BSLASHlabelcref] = ACTIONS(5273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange] = ACTIONS(5273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), - [anon_sym_BSLASHnewlabel] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand] = ACTIONS(5273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdef] = ACTIONS(5273), - [anon_sym_BSLASHlet] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), - [anon_sym_BSLASHgls] = ACTIONS(5273), - [anon_sym_BSLASHGls] = ACTIONS(5273), - [anon_sym_BSLASHGLS] = ACTIONS(5273), - [anon_sym_BSLASHglspl] = ACTIONS(5273), - [anon_sym_BSLASHGlspl] = ACTIONS(5273), - [anon_sym_BSLASHGLSpl] = ACTIONS(5273), - [anon_sym_BSLASHglsdisp] = ACTIONS(5273), - [anon_sym_BSLASHglslink] = ACTIONS(5273), - [anon_sym_BSLASHglstext] = ACTIONS(5273), - [anon_sym_BSLASHGlstext] = ACTIONS(5273), - [anon_sym_BSLASHGLStext] = ACTIONS(5273), - [anon_sym_BSLASHglsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), - [anon_sym_BSLASHglsplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSplural] = ACTIONS(5273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), - [anon_sym_BSLASHglsname] = ACTIONS(5273), - [anon_sym_BSLASHGlsname] = ACTIONS(5273), - [anon_sym_BSLASHGLSname] = ACTIONS(5273), - [anon_sym_BSLASHglssymbol] = ACTIONS(5273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), - [anon_sym_BSLASHglsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), - [anon_sym_BSLASHglsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), - [anon_sym_BSLASHglsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), - [anon_sym_BSLASHglsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), - [anon_sym_BSLASHglsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), - [anon_sym_BSLASHnewacronym] = ACTIONS(5273), - [anon_sym_BSLASHacrshort] = ACTIONS(5273), - [anon_sym_BSLASHAcrshort] = ACTIONS(5273), - [anon_sym_BSLASHACRshort] = ACTIONS(5273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), - [anon_sym_BSLASHacrlong] = ACTIONS(5273), - [anon_sym_BSLASHAcrlong] = ACTIONS(5273), - [anon_sym_BSLASHACRlong] = ACTIONS(5273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), - [anon_sym_BSLASHacrfull] = ACTIONS(5273), - [anon_sym_BSLASHAcrfull] = ACTIONS(5273), - [anon_sym_BSLASHACRfull] = ACTIONS(5273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), - [anon_sym_BSLASHacs] = ACTIONS(5273), - [anon_sym_BSLASHAcs] = ACTIONS(5273), - [anon_sym_BSLASHacsp] = ACTIONS(5273), - [anon_sym_BSLASHAcsp] = ACTIONS(5273), - [anon_sym_BSLASHacl] = ACTIONS(5273), - [anon_sym_BSLASHAcl] = ACTIONS(5273), - [anon_sym_BSLASHaclp] = ACTIONS(5273), - [anon_sym_BSLASHAclp] = ACTIONS(5273), - [anon_sym_BSLASHacf] = ACTIONS(5273), - [anon_sym_BSLASHAcf] = ACTIONS(5273), - [anon_sym_BSLASHacfp] = ACTIONS(5273), - [anon_sym_BSLASHAcfp] = ACTIONS(5273), - [anon_sym_BSLASHac] = ACTIONS(5273), - [anon_sym_BSLASHAc] = ACTIONS(5273), - [anon_sym_BSLASHacp] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), - [anon_sym_BSLASHcolor] = ACTIONS(5273), - [anon_sym_BSLASHcolorbox] = ACTIONS(5273), - [anon_sym_BSLASHtextcolor] = ACTIONS(5273), - [anon_sym_BSLASHpagecolor] = ACTIONS(5273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), - [anon_sym_BSLASHtext] = ACTIONS(5273), - [anon_sym_BSLASHintertext] = ACTIONS(5273), - [anon_sym_shortintertext] = ACTIONS(5273), + [653] = { + [sym__part_declaration] = STATE(142), + [sym_part] = STATE(561), + [aux_sym__section_repeat1] = STATE(561), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHaddpart] = ACTIONS(233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(235), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHend] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), }, - [1191] = { - [sym_command_name] = ACTIONS(5295), + [654] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5295), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - [anon_sym_BSLASHtext] = ACTIONS(5295), - [anon_sym_BSLASHintertext] = ACTIONS(5295), - [anon_sym_shortintertext] = ACTIONS(5295), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1192] = { - [sym_command_name] = ACTIONS(5303), + [655] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5323), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5303), - [anon_sym_LPAREN] = ACTIONS(5301), - [anon_sym_RPAREN] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5301), - [anon_sym_RBRACK] = ACTIONS(5301), - [anon_sym_COMMA] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_BSLASHpart] = ACTIONS(5303), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddpart] = ACTIONS(5303), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5301), - [anon_sym_BSLASHchapter] = ACTIONS(5303), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddchap] = ACTIONS(5303), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsection] = ACTIONS(5303), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHaddsec] = ACTIONS(5303), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5301), - [anon_sym_BSLASHparagraph] = ACTIONS(5303), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5301), - [anon_sym_BSLASHitem] = ACTIONS(5303), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5301), - [anon_sym_LBRACE] = ACTIONS(5301), - [sym_word] = ACTIONS(5303), - [sym_placeholder] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5303), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_SLASH] = ACTIONS(5303), - [anon_sym_CARET] = ACTIONS(5303), - [anon_sym__] = ACTIONS(5303), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_BANG] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(5303), - [anon_sym_SQUOTE] = ACTIONS(5303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5301), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5301), - [anon_sym_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5301), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5301), - [anon_sym_BSLASHbegin] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5303), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5303), - [anon_sym_BSLASHinclude] = ACTIONS(5303), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5303), - [anon_sym_BSLASHinput] = ACTIONS(5303), - [anon_sym_BSLASHsubfile] = ACTIONS(5303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5303), - [anon_sym_BSLASHbibliography] = ACTIONS(5303), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5303), - [anon_sym_BSLASHincludesvg] = ACTIONS(5303), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5303), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5303), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5303), - [anon_sym_BSLASHimport] = ACTIONS(5303), - [anon_sym_BSLASHsubimport] = ACTIONS(5303), - [anon_sym_BSLASHinputfrom] = ACTIONS(5303), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5303), - [anon_sym_BSLASHincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5303), - [anon_sym_BSLASHcaption] = ACTIONS(5303), - [anon_sym_BSLASHcite] = ACTIONS(5303), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCite] = ACTIONS(5303), - [anon_sym_BSLASHnocite] = ACTIONS(5303), - [anon_sym_BSLASHcitet] = ACTIONS(5303), - [anon_sym_BSLASHcitep] = ACTIONS(5303), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteauthor] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitetitle] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteyear] = ACTIONS(5303), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5301), - [anon_sym_BSLASHcitedate] = ACTIONS(5303), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5301), - [anon_sym_BSLASHciteurl] = ACTIONS(5303), - [anon_sym_BSLASHfullcite] = ACTIONS(5303), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5303), - [anon_sym_BSLASHcitealt] = ACTIONS(5303), - [anon_sym_BSLASHcitealp] = ACTIONS(5303), - [anon_sym_BSLASHcitetext] = ACTIONS(5303), - [anon_sym_BSLASHparencite] = ACTIONS(5303), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHParencite] = ACTIONS(5303), - [anon_sym_BSLASHfootcite] = ACTIONS(5303), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5303), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5303), - [anon_sym_BSLASHtextcite] = ACTIONS(5303), - [anon_sym_BSLASHTextcite] = ACTIONS(5303), - [anon_sym_BSLASHsmartcite] = ACTIONS(5303), - [anon_sym_BSLASHSmartcite] = ACTIONS(5303), - [anon_sym_BSLASHsupercite] = ACTIONS(5303), - [anon_sym_BSLASHautocite] = ACTIONS(5303), - [anon_sym_BSLASHAutocite] = ACTIONS(5303), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5301), - [anon_sym_BSLASHvolcite] = ACTIONS(5303), - [anon_sym_BSLASHVolcite] = ACTIONS(5303), - [anon_sym_BSLASHpvolcite] = ACTIONS(5303), - [anon_sym_BSLASHPvolcite] = ACTIONS(5303), - [anon_sym_BSLASHfvolcite] = ACTIONS(5303), - [anon_sym_BSLASHftvolcite] = ACTIONS(5303), - [anon_sym_BSLASHsvolcite] = ACTIONS(5303), - [anon_sym_BSLASHSvolcite] = ACTIONS(5303), - [anon_sym_BSLASHtvolcite] = ACTIONS(5303), - [anon_sym_BSLASHTvolcite] = ACTIONS(5303), - [anon_sym_BSLASHavolcite] = ACTIONS(5303), - [anon_sym_BSLASHAvolcite] = ACTIONS(5303), - [anon_sym_BSLASHnotecite] = ACTIONS(5303), - [anon_sym_BSLASHNotecite] = ACTIONS(5303), - [anon_sym_BSLASHpnotecite] = ACTIONS(5303), - [anon_sym_BSLASHPnotecite] = ACTIONS(5303), - [anon_sym_BSLASHfnotecite] = ACTIONS(5303), - [anon_sym_BSLASHlabel] = ACTIONS(5303), - [anon_sym_BSLASHref] = ACTIONS(5303), - [anon_sym_BSLASHeqref] = ACTIONS(5303), - [anon_sym_BSLASHvref] = ACTIONS(5303), - [anon_sym_BSLASHVref] = ACTIONS(5303), - [anon_sym_BSLASHautoref] = ACTIONS(5303), - [anon_sym_BSLASHpageref] = ACTIONS(5303), - [anon_sym_BSLASHcref] = ACTIONS(5303), - [anon_sym_BSLASHCref] = ACTIONS(5303), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnameCref] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5303), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5303), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5303), - [anon_sym_BSLASHlabelcref] = ACTIONS(5303), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange] = ACTIONS(5303), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHCrefrange] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5301), - [anon_sym_BSLASHnewlabel] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand] = ACTIONS(5303), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5301), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdef] = ACTIONS(5303), - [anon_sym_BSLASHlet] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5303), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5303), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5303), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5303), - [anon_sym_BSLASHgls] = ACTIONS(5303), - [anon_sym_BSLASHGls] = ACTIONS(5303), - [anon_sym_BSLASHGLS] = ACTIONS(5303), - [anon_sym_BSLASHglspl] = ACTIONS(5303), - [anon_sym_BSLASHGlspl] = ACTIONS(5303), - [anon_sym_BSLASHGLSpl] = ACTIONS(5303), - [anon_sym_BSLASHglsdisp] = ACTIONS(5303), - [anon_sym_BSLASHglslink] = ACTIONS(5303), - [anon_sym_BSLASHglstext] = ACTIONS(5303), - [anon_sym_BSLASHGlstext] = ACTIONS(5303), - [anon_sym_BSLASHGLStext] = ACTIONS(5303), - [anon_sym_BSLASHglsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5303), - [anon_sym_BSLASHglsplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSplural] = ACTIONS(5303), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5303), - [anon_sym_BSLASHglsname] = ACTIONS(5303), - [anon_sym_BSLASHGlsname] = ACTIONS(5303), - [anon_sym_BSLASHGLSname] = ACTIONS(5303), - [anon_sym_BSLASHglssymbol] = ACTIONS(5303), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5303), - [anon_sym_BSLASHglsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5303), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5303), - [anon_sym_BSLASHglsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5303), - [anon_sym_BSLASHglsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5303), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5303), - [anon_sym_BSLASHglsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5303), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5303), - [anon_sym_BSLASHglsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5303), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5303), - [anon_sym_BSLASHnewacronym] = ACTIONS(5303), - [anon_sym_BSLASHacrshort] = ACTIONS(5303), - [anon_sym_BSLASHAcrshort] = ACTIONS(5303), - [anon_sym_BSLASHACRshort] = ACTIONS(5303), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5303), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5303), - [anon_sym_BSLASHacrlong] = ACTIONS(5303), - [anon_sym_BSLASHAcrlong] = ACTIONS(5303), - [anon_sym_BSLASHACRlong] = ACTIONS(5303), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5303), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5303), - [anon_sym_BSLASHacrfull] = ACTIONS(5303), - [anon_sym_BSLASHAcrfull] = ACTIONS(5303), - [anon_sym_BSLASHACRfull] = ACTIONS(5303), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5303), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5303), - [anon_sym_BSLASHacs] = ACTIONS(5303), - [anon_sym_BSLASHAcs] = ACTIONS(5303), - [anon_sym_BSLASHacsp] = ACTIONS(5303), - [anon_sym_BSLASHAcsp] = ACTIONS(5303), - [anon_sym_BSLASHacl] = ACTIONS(5303), - [anon_sym_BSLASHAcl] = ACTIONS(5303), - [anon_sym_BSLASHaclp] = ACTIONS(5303), - [anon_sym_BSLASHAclp] = ACTIONS(5303), - [anon_sym_BSLASHacf] = ACTIONS(5303), - [anon_sym_BSLASHAcf] = ACTIONS(5303), - [anon_sym_BSLASHacfp] = ACTIONS(5303), - [anon_sym_BSLASHAcfp] = ACTIONS(5303), - [anon_sym_BSLASHac] = ACTIONS(5303), - [anon_sym_BSLASHAc] = ACTIONS(5303), - [anon_sym_BSLASHacp] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5303), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5303), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5303), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5301), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5303), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5303), - [anon_sym_BSLASHcolor] = ACTIONS(5303), - [anon_sym_BSLASHcolorbox] = ACTIONS(5303), - [anon_sym_BSLASHtextcolor] = ACTIONS(5303), - [anon_sym_BSLASHpagecolor] = ACTIONS(5303), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5303), - [anon_sym_BSLASHtext] = ACTIONS(5303), - [anon_sym_BSLASHintertext] = ACTIONS(5303), - [anon_sym_shortintertext] = ACTIONS(5303), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHtitle] = ACTIONS(5323), + [anon_sym_BSLASHauthor] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), }, - [1193] = { - [sym_command_name] = ACTIONS(5307), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5307), - [anon_sym_LPAREN] = ACTIONS(5305), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5305), - [anon_sym_COMMA] = ACTIONS(5305), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_BSLASHpart] = ACTIONS(5307), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddpart] = ACTIONS(5307), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5305), - [anon_sym_BSLASHchapter] = ACTIONS(5307), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddchap] = ACTIONS(5307), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsection] = ACTIONS(5307), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHaddsec] = ACTIONS(5307), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5307), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5305), - [anon_sym_BSLASHparagraph] = ACTIONS(5307), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5307), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5305), - [anon_sym_BSLASHitem] = ACTIONS(5307), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5305), - [anon_sym_LBRACE] = ACTIONS(5305), - [sym_word] = ACTIONS(5307), - [sym_placeholder] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5307), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_STAR] = ACTIONS(5307), - [anon_sym_SLASH] = ACTIONS(5307), - [anon_sym_CARET] = ACTIONS(5307), - [anon_sym__] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(5307), - [anon_sym_GT] = ACTIONS(5307), - [anon_sym_BANG] = ACTIONS(5307), - [anon_sym_PIPE] = ACTIONS(5307), - [anon_sym_COLON] = ACTIONS(5307), - [anon_sym_SQUOTE] = ACTIONS(5307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5305), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5305), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5305), - [anon_sym_BSLASHbegin] = ACTIONS(5307), - [anon_sym_BSLASHusepackage] = ACTIONS(5307), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5307), - [anon_sym_BSLASHinclude] = ACTIONS(5307), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5307), - [anon_sym_BSLASHinput] = ACTIONS(5307), - [anon_sym_BSLASHsubfile] = ACTIONS(5307), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5307), - [anon_sym_BSLASHbibliography] = ACTIONS(5307), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5307), - [anon_sym_BSLASHincludesvg] = ACTIONS(5307), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5307), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5307), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5307), - [anon_sym_BSLASHimport] = ACTIONS(5307), - [anon_sym_BSLASHsubimport] = ACTIONS(5307), - [anon_sym_BSLASHinputfrom] = ACTIONS(5307), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5307), - [anon_sym_BSLASHincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5307), - [anon_sym_BSLASHcaption] = ACTIONS(5307), - [anon_sym_BSLASHcite] = ACTIONS(5307), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCite] = ACTIONS(5307), - [anon_sym_BSLASHnocite] = ACTIONS(5307), - [anon_sym_BSLASHcitet] = ACTIONS(5307), - [anon_sym_BSLASHcitep] = ACTIONS(5307), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor] = ACTIONS(5307), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5307), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle] = ACTIONS(5307), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteyear] = ACTIONS(5307), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5305), - [anon_sym_BSLASHcitedate] = ACTIONS(5307), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5305), - [anon_sym_BSLASHciteurl] = ACTIONS(5307), - [anon_sym_BSLASHfullcite] = ACTIONS(5307), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5307), - [anon_sym_BSLASHcitealt] = ACTIONS(5307), - [anon_sym_BSLASHcitealp] = ACTIONS(5307), - [anon_sym_BSLASHcitetext] = ACTIONS(5307), - [anon_sym_BSLASHparencite] = ACTIONS(5307), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHParencite] = ACTIONS(5307), - [anon_sym_BSLASHfootcite] = ACTIONS(5307), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5307), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5307), - [anon_sym_BSLASHtextcite] = ACTIONS(5307), - [anon_sym_BSLASHTextcite] = ACTIONS(5307), - [anon_sym_BSLASHsmartcite] = ACTIONS(5307), - [anon_sym_BSLASHSmartcite] = ACTIONS(5307), - [anon_sym_BSLASHsupercite] = ACTIONS(5307), - [anon_sym_BSLASHautocite] = ACTIONS(5307), - [anon_sym_BSLASHAutocite] = ACTIONS(5307), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5305), - [anon_sym_BSLASHvolcite] = ACTIONS(5307), - [anon_sym_BSLASHVolcite] = ACTIONS(5307), - [anon_sym_BSLASHpvolcite] = ACTIONS(5307), - [anon_sym_BSLASHPvolcite] = ACTIONS(5307), - [anon_sym_BSLASHfvolcite] = ACTIONS(5307), - [anon_sym_BSLASHftvolcite] = ACTIONS(5307), - [anon_sym_BSLASHsvolcite] = ACTIONS(5307), - [anon_sym_BSLASHSvolcite] = ACTIONS(5307), - [anon_sym_BSLASHtvolcite] = ACTIONS(5307), - [anon_sym_BSLASHTvolcite] = ACTIONS(5307), - [anon_sym_BSLASHavolcite] = ACTIONS(5307), - [anon_sym_BSLASHAvolcite] = ACTIONS(5307), - [anon_sym_BSLASHnotecite] = ACTIONS(5307), - [anon_sym_BSLASHNotecite] = ACTIONS(5307), - [anon_sym_BSLASHpnotecite] = ACTIONS(5307), - [anon_sym_BSLASHPnotecite] = ACTIONS(5307), - [anon_sym_BSLASHfnotecite] = ACTIONS(5307), - [anon_sym_BSLASHlabel] = ACTIONS(5307), - [anon_sym_BSLASHref] = ACTIONS(5307), - [anon_sym_BSLASHeqref] = ACTIONS(5307), - [anon_sym_BSLASHvref] = ACTIONS(5307), - [anon_sym_BSLASHVref] = ACTIONS(5307), - [anon_sym_BSLASHautoref] = ACTIONS(5307), - [anon_sym_BSLASHpageref] = ACTIONS(5307), - [anon_sym_BSLASHcref] = ACTIONS(5307), - [anon_sym_BSLASHCref] = ACTIONS(5307), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnameCref] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5307), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5307), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5307), - [anon_sym_BSLASHlabelcref] = ACTIONS(5307), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange] = ACTIONS(5307), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange] = ACTIONS(5307), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5305), - [anon_sym_BSLASHnewlabel] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand] = ACTIONS(5307), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5307), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5307), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5307), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdef] = ACTIONS(5307), - [anon_sym_BSLASHlet] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5307), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5307), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5307), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5307), - [anon_sym_BSLASHgls] = ACTIONS(5307), - [anon_sym_BSLASHGls] = ACTIONS(5307), - [anon_sym_BSLASHGLS] = ACTIONS(5307), - [anon_sym_BSLASHglspl] = ACTIONS(5307), - [anon_sym_BSLASHGlspl] = ACTIONS(5307), - [anon_sym_BSLASHGLSpl] = ACTIONS(5307), - [anon_sym_BSLASHglsdisp] = ACTIONS(5307), - [anon_sym_BSLASHglslink] = ACTIONS(5307), - [anon_sym_BSLASHglstext] = ACTIONS(5307), - [anon_sym_BSLASHGlstext] = ACTIONS(5307), - [anon_sym_BSLASHGLStext] = ACTIONS(5307), - [anon_sym_BSLASHglsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5307), - [anon_sym_BSLASHglsplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSplural] = ACTIONS(5307), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5307), - [anon_sym_BSLASHglsname] = ACTIONS(5307), - [anon_sym_BSLASHGlsname] = ACTIONS(5307), - [anon_sym_BSLASHGLSname] = ACTIONS(5307), - [anon_sym_BSLASHglssymbol] = ACTIONS(5307), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5307), - [anon_sym_BSLASHglsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5307), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5307), - [anon_sym_BSLASHglsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5307), - [anon_sym_BSLASHglsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5307), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5307), - [anon_sym_BSLASHglsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5307), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5307), - [anon_sym_BSLASHglsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5307), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5307), - [anon_sym_BSLASHnewacronym] = ACTIONS(5307), - [anon_sym_BSLASHacrshort] = ACTIONS(5307), - [anon_sym_BSLASHAcrshort] = ACTIONS(5307), - [anon_sym_BSLASHACRshort] = ACTIONS(5307), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5307), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5307), - [anon_sym_BSLASHacrlong] = ACTIONS(5307), - [anon_sym_BSLASHAcrlong] = ACTIONS(5307), - [anon_sym_BSLASHACRlong] = ACTIONS(5307), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5307), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5307), - [anon_sym_BSLASHacrfull] = ACTIONS(5307), - [anon_sym_BSLASHAcrfull] = ACTIONS(5307), - [anon_sym_BSLASHACRfull] = ACTIONS(5307), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5307), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5307), - [anon_sym_BSLASHacs] = ACTIONS(5307), - [anon_sym_BSLASHAcs] = ACTIONS(5307), - [anon_sym_BSLASHacsp] = ACTIONS(5307), - [anon_sym_BSLASHAcsp] = ACTIONS(5307), - [anon_sym_BSLASHacl] = ACTIONS(5307), - [anon_sym_BSLASHAcl] = ACTIONS(5307), - [anon_sym_BSLASHaclp] = ACTIONS(5307), - [anon_sym_BSLASHAclp] = ACTIONS(5307), - [anon_sym_BSLASHacf] = ACTIONS(5307), - [anon_sym_BSLASHAcf] = ACTIONS(5307), - [anon_sym_BSLASHacfp] = ACTIONS(5307), - [anon_sym_BSLASHAcfp] = ACTIONS(5307), - [anon_sym_BSLASHac] = ACTIONS(5307), - [anon_sym_BSLASHAc] = ACTIONS(5307), - [anon_sym_BSLASHacp] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5307), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5307), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5307), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5307), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5307), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5307), - [anon_sym_BSLASHcolor] = ACTIONS(5307), - [anon_sym_BSLASHcolorbox] = ACTIONS(5307), - [anon_sym_BSLASHtextcolor] = ACTIONS(5307), - [anon_sym_BSLASHpagecolor] = ACTIONS(5307), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5307), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), - [anon_sym_BSLASHtext] = ACTIONS(5307), - [anon_sym_BSLASHintertext] = ACTIONS(5307), - [anon_sym_shortintertext] = ACTIONS(5307), + [656] = { + [sym__section_declaration] = STATE(161), + [sym_section] = STATE(465), + [aux_sym__section_repeat3] = STATE(465), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(595), + [anon_sym_BSLASHsection_STAR] = ACTIONS(597), + [anon_sym_BSLASHaddsec] = ACTIONS(595), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(597), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1194] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [657] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1195] = { - [sym_command_name] = ACTIONS(5327), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_BSLASHpart] = ACTIONS(5327), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddpart] = ACTIONS(5327), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), - [anon_sym_BSLASHchapter] = ACTIONS(5327), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddchap] = ACTIONS(5327), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsection] = ACTIONS(5327), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHaddsec] = ACTIONS(5327), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), - [anon_sym_BSLASHparagraph] = ACTIONS(5327), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), - [anon_sym_BSLASHitem] = ACTIONS(5327), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), + [658] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1196] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [659] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1197] = { - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_BSLASHpart] = ACTIONS(5071), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddpart] = ACTIONS(5071), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5069), - [anon_sym_BSLASHchapter] = ACTIONS(5071), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddchap] = ACTIONS(5071), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsection] = ACTIONS(5071), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHaddsec] = ACTIONS(5071), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5069), - [anon_sym_BSLASHparagraph] = ACTIONS(5071), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHend] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), + [660] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1198] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHend] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), + [661] = { + [sym_curly_group] = STATE(1170), + [sym_mixed_group] = STATE(1170), + [aux_sym_generic_command_repeat1] = STATE(638), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5587), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_BSLASHpart] = ACTIONS(5317), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddpart] = ACTIONS(5317), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHchapter] = ACTIONS(5317), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddchap] = ACTIONS(5317), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsection] = ACTIONS(5317), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddsec] = ACTIONS(5317), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHparagraph] = ACTIONS(5317), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHitem] = ACTIONS(5317), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHend] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [1199] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHend] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), + [662] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHtitle] = ACTIONS(5313), + [anon_sym_BSLASHauthor] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5313), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1200] = { - [sym_block_comment] = STATE(1588), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1200), - [sym_command_name] = ACTIONS(5493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5496), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [sym_word] = ACTIONS(5499), - [sym_placeholder] = ACTIONS(5502), - [anon_sym_PLUS] = ACTIONS(5505), - [anon_sym_DASH] = ACTIONS(5505), - [anon_sym_STAR] = ACTIONS(5505), - [anon_sym_SLASH] = ACTIONS(5505), - [anon_sym_CARET] = ACTIONS(5505), - [anon_sym__] = ACTIONS(5505), - [anon_sym_LT] = ACTIONS(5505), - [anon_sym_GT] = ACTIONS(5505), - [anon_sym_BANG] = ACTIONS(5505), - [anon_sym_PIPE] = ACTIONS(5505), - [anon_sym_COLON] = ACTIONS(5505), - [anon_sym_SQUOTE] = ACTIONS(5505), - [anon_sym_BSLASHusepackage] = ACTIONS(5508), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5508), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5511), - [anon_sym_BSLASHinclude] = ACTIONS(5514), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5514), - [anon_sym_BSLASHinput] = ACTIONS(5514), - [anon_sym_BSLASHsubfile] = ACTIONS(5514), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5517), - [anon_sym_BSLASHbibliography] = ACTIONS(5520), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5523), - [anon_sym_BSLASHincludesvg] = ACTIONS(5526), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5532), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5532), - [anon_sym_BSLASHimport] = ACTIONS(5535), - [anon_sym_BSLASHsubimport] = ACTIONS(5535), - [anon_sym_BSLASHinputfrom] = ACTIONS(5535), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5535), - [anon_sym_BSLASHincludefrom] = ACTIONS(5535), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5535), - [anon_sym_BSLASHcaption] = ACTIONS(5538), - [anon_sym_BSLASHcite] = ACTIONS(5541), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5544), - [anon_sym_BSLASHCite] = ACTIONS(5541), - [anon_sym_BSLASHnocite] = ACTIONS(5541), - [anon_sym_BSLASHcitet] = ACTIONS(5541), - [anon_sym_BSLASHcitep] = ACTIONS(5541), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5544), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5544), - [anon_sym_BSLASHciteauthor] = ACTIONS(5541), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5544), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5541), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5544), - [anon_sym_BSLASHcitetitle] = ACTIONS(5541), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5544), - [anon_sym_BSLASHciteyear] = ACTIONS(5541), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5544), - [anon_sym_BSLASHcitedate] = ACTIONS(5541), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5544), - [anon_sym_BSLASHciteurl] = ACTIONS(5541), - [anon_sym_BSLASHfullcite] = ACTIONS(5541), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5541), - [anon_sym_BSLASHcitealt] = ACTIONS(5541), - [anon_sym_BSLASHcitealp] = ACTIONS(5541), - [anon_sym_BSLASHcitetext] = ACTIONS(5541), - [anon_sym_BSLASHparencite] = ACTIONS(5541), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5544), - [anon_sym_BSLASHParencite] = ACTIONS(5541), - [anon_sym_BSLASHfootcite] = ACTIONS(5541), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5541), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5541), - [anon_sym_BSLASHtextcite] = ACTIONS(5541), - [anon_sym_BSLASHTextcite] = ACTIONS(5541), - [anon_sym_BSLASHsmartcite] = ACTIONS(5541), - [anon_sym_BSLASHSmartcite] = ACTIONS(5541), - [anon_sym_BSLASHsupercite] = ACTIONS(5541), - [anon_sym_BSLASHautocite] = ACTIONS(5541), - [anon_sym_BSLASHAutocite] = ACTIONS(5541), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5544), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5544), - [anon_sym_BSLASHvolcite] = ACTIONS(5541), - [anon_sym_BSLASHVolcite] = ACTIONS(5541), - [anon_sym_BSLASHpvolcite] = ACTIONS(5541), - [anon_sym_BSLASHPvolcite] = ACTIONS(5541), - [anon_sym_BSLASHfvolcite] = ACTIONS(5541), - [anon_sym_BSLASHftvolcite] = ACTIONS(5541), - [anon_sym_BSLASHsvolcite] = ACTIONS(5541), - [anon_sym_BSLASHSvolcite] = ACTIONS(5541), - [anon_sym_BSLASHtvolcite] = ACTIONS(5541), - [anon_sym_BSLASHTvolcite] = ACTIONS(5541), - [anon_sym_BSLASHavolcite] = ACTIONS(5541), - [anon_sym_BSLASHAvolcite] = ACTIONS(5541), - [anon_sym_BSLASHnotecite] = ACTIONS(5541), - [anon_sym_BSLASHNotecite] = ACTIONS(5541), - [anon_sym_BSLASHpnotecite] = ACTIONS(5541), - [anon_sym_BSLASHPnotecite] = ACTIONS(5541), - [anon_sym_BSLASHfnotecite] = ACTIONS(5541), - [anon_sym_BSLASHlabel] = ACTIONS(5547), - [anon_sym_BSLASHref] = ACTIONS(5550), - [anon_sym_BSLASHeqref] = ACTIONS(5550), - [anon_sym_BSLASHvref] = ACTIONS(5550), - [anon_sym_BSLASHVref] = ACTIONS(5550), - [anon_sym_BSLASHautoref] = ACTIONS(5550), - [anon_sym_BSLASHpageref] = ACTIONS(5550), - [anon_sym_BSLASHcref] = ACTIONS(5550), - [anon_sym_BSLASHCref] = ACTIONS(5550), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5553), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5553), - [anon_sym_BSLASHnamecref] = ACTIONS(5550), - [anon_sym_BSLASHnameCref] = ACTIONS(5550), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5550), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5550), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5550), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5550), - [anon_sym_BSLASHlabelcref] = ACTIONS(5550), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5550), - [anon_sym_BSLASHcrefrange] = ACTIONS(5556), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5559), - [anon_sym_BSLASHCrefrange] = ACTIONS(5556), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5559), - [anon_sym_BSLASHnewlabel] = ACTIONS(5562), - [anon_sym_BSLASHnewcommand] = ACTIONS(5565), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5568), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5565), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5568), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5565), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5568), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5565), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5568), - [anon_sym_BSLASHdef] = ACTIONS(5571), - [anon_sym_BSLASHlet] = ACTIONS(5574), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5577), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5577), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5580), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5583), - [anon_sym_BSLASHgls] = ACTIONS(5586), - [anon_sym_BSLASHGls] = ACTIONS(5586), - [anon_sym_BSLASHGLS] = ACTIONS(5586), - [anon_sym_BSLASHglspl] = ACTIONS(5586), - [anon_sym_BSLASHGlspl] = ACTIONS(5586), - [anon_sym_BSLASHGLSpl] = ACTIONS(5586), - [anon_sym_BSLASHglsdisp] = ACTIONS(5586), - [anon_sym_BSLASHglslink] = ACTIONS(5586), - [anon_sym_BSLASHglstext] = ACTIONS(5586), - [anon_sym_BSLASHGlstext] = ACTIONS(5586), - [anon_sym_BSLASHGLStext] = ACTIONS(5586), - [anon_sym_BSLASHglsfirst] = ACTIONS(5586), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5586), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5586), - [anon_sym_BSLASHglsplural] = ACTIONS(5586), - [anon_sym_BSLASHGlsplural] = ACTIONS(5586), - [anon_sym_BSLASHGLSplural] = ACTIONS(5586), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5586), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5586), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5586), - [anon_sym_BSLASHglsname] = ACTIONS(5586), - [anon_sym_BSLASHGlsname] = ACTIONS(5586), - [anon_sym_BSLASHGLSname] = ACTIONS(5586), - [anon_sym_BSLASHglssymbol] = ACTIONS(5586), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5586), - [anon_sym_BSLASHglsdesc] = ACTIONS(5586), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5586), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5586), - [anon_sym_BSLASHglsuseri] = ACTIONS(5586), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5586), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5586), - [anon_sym_BSLASHglsuserii] = ACTIONS(5586), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5586), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5586), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5586), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5586), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5586), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5586), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5586), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5586), - [anon_sym_BSLASHglsuserv] = ACTIONS(5586), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5586), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5586), - [anon_sym_BSLASHglsuservi] = ACTIONS(5586), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5586), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5586), - [anon_sym_BSLASHnewacronym] = ACTIONS(5589), - [anon_sym_BSLASHacrshort] = ACTIONS(5592), - [anon_sym_BSLASHAcrshort] = ACTIONS(5592), - [anon_sym_BSLASHACRshort] = ACTIONS(5592), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5592), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5592), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5592), - [anon_sym_BSLASHacrlong] = ACTIONS(5592), - [anon_sym_BSLASHAcrlong] = ACTIONS(5592), - [anon_sym_BSLASHACRlong] = ACTIONS(5592), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5592), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5592), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5592), - [anon_sym_BSLASHacrfull] = ACTIONS(5592), - [anon_sym_BSLASHAcrfull] = ACTIONS(5592), - [anon_sym_BSLASHACRfull] = ACTIONS(5592), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5592), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5592), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5592), - [anon_sym_BSLASHacs] = ACTIONS(5592), - [anon_sym_BSLASHAcs] = ACTIONS(5592), - [anon_sym_BSLASHacsp] = ACTIONS(5592), - [anon_sym_BSLASHAcsp] = ACTIONS(5592), - [anon_sym_BSLASHacl] = ACTIONS(5592), - [anon_sym_BSLASHAcl] = ACTIONS(5592), - [anon_sym_BSLASHaclp] = ACTIONS(5592), - [anon_sym_BSLASHAclp] = ACTIONS(5592), - [anon_sym_BSLASHacf] = ACTIONS(5592), - [anon_sym_BSLASHAcf] = ACTIONS(5592), - [anon_sym_BSLASHacfp] = ACTIONS(5592), - [anon_sym_BSLASHAcfp] = ACTIONS(5592), - [anon_sym_BSLASHac] = ACTIONS(5592), - [anon_sym_BSLASHAc] = ACTIONS(5592), - [anon_sym_BSLASHacp] = ACTIONS(5592), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5592), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5592), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5592), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5592), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5592), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5592), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5592), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5592), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5592), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5592), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5598), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5598), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5604), - [anon_sym_BSLASHcolor] = ACTIONS(5607), - [anon_sym_BSLASHcolorbox] = ACTIONS(5607), - [anon_sym_BSLASHtextcolor] = ACTIONS(5607), - [anon_sym_BSLASHpagecolor] = ACTIONS(5607), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5610), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5610), + [663] = { + [sym__subsection_declaration] = STATE(170), + [sym_subsection] = STATE(466), + [aux_sym__section_repeat4] = STATE(466), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(599), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(601), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1201] = { - [sym_block_comment] = STATE(1588), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1200), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_EQ] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [664] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1202] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASHpart] = ACTIONS(5319), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddpart] = ACTIONS(5319), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), - [anon_sym_BSLASHchapter] = ACTIONS(5319), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddchap] = ACTIONS(5319), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsection] = ACTIONS(5319), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHaddsec] = ACTIONS(5319), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), - [anon_sym_BSLASHparagraph] = ACTIONS(5319), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), - [anon_sym_BSLASHitem] = ACTIONS(5319), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHend] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), + [665] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), }, - [1203] = { + [666] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5225), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [667] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5227), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(5225), + [anon_sym_RBRACK] = ACTIONS(5225), + [anon_sym_COMMA] = ACTIONS(5225), + [anon_sym_EQ] = ACTIONS(5225), + [anon_sym_BSLASHpart] = ACTIONS(5227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddpart] = ACTIONS(5227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5225), + [anon_sym_BSLASHchapter] = ACTIONS(5227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddchap] = ACTIONS(5227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsection] = ACTIONS(5227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHaddsec] = ACTIONS(5227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5225), + [anon_sym_BSLASHparagraph] = ACTIONS(5227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5225), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5225), + [sym_word] = ACTIONS(5227), + [sym_placeholder] = ACTIONS(5225), + [anon_sym_PLUS] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5227), + [anon_sym_STAR] = ACTIONS(5227), + [anon_sym_SLASH] = ACTIONS(5227), + [anon_sym_CARET] = ACTIONS(5227), + [anon_sym__] = ACTIONS(5227), + [anon_sym_LT] = ACTIONS(5227), + [anon_sym_GT] = ACTIONS(5227), + [anon_sym_BANG] = ACTIONS(5227), + [anon_sym_PIPE] = ACTIONS(5227), + [anon_sym_COLON] = ACTIONS(5227), + [anon_sym_SQUOTE] = ACTIONS(5227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5225), + [anon_sym_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5225), + [anon_sym_BSLASHbegin] = ACTIONS(5227), + [anon_sym_BSLASHtitle] = ACTIONS(5227), + [anon_sym_BSLASHauthor] = ACTIONS(5227), + [anon_sym_BSLASHusepackage] = ACTIONS(5227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5227), + [anon_sym_BSLASHinclude] = ACTIONS(5227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5227), + [anon_sym_BSLASHinput] = ACTIONS(5227), + [anon_sym_BSLASHsubfile] = ACTIONS(5227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5227), + [anon_sym_BSLASHbibliography] = ACTIONS(5227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5227), + [anon_sym_BSLASHincludesvg] = ACTIONS(5227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5227), + [anon_sym_BSLASHimport] = ACTIONS(5227), + [anon_sym_BSLASHsubimport] = ACTIONS(5227), + [anon_sym_BSLASHinputfrom] = ACTIONS(5227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5227), + [anon_sym_BSLASHincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5227), + [anon_sym_BSLASHcaption] = ACTIONS(5227), + [anon_sym_BSLASHcite] = ACTIONS(5227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCite] = ACTIONS(5227), + [anon_sym_BSLASHnocite] = ACTIONS(5227), + [anon_sym_BSLASHcitet] = ACTIONS(5227), + [anon_sym_BSLASHcitep] = ACTIONS(5227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteyear] = ACTIONS(5227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5225), + [anon_sym_BSLASHcitedate] = ACTIONS(5227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5225), + [anon_sym_BSLASHciteurl] = ACTIONS(5227), + [anon_sym_BSLASHfullcite] = ACTIONS(5227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5227), + [anon_sym_BSLASHcitealt] = ACTIONS(5227), + [anon_sym_BSLASHcitealp] = ACTIONS(5227), + [anon_sym_BSLASHcitetext] = ACTIONS(5227), + [anon_sym_BSLASHparencite] = ACTIONS(5227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHParencite] = ACTIONS(5227), + [anon_sym_BSLASHfootcite] = ACTIONS(5227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5227), + [anon_sym_BSLASHtextcite] = ACTIONS(5227), + [anon_sym_BSLASHTextcite] = ACTIONS(5227), + [anon_sym_BSLASHsmartcite] = ACTIONS(5227), + [anon_sym_BSLASHSmartcite] = ACTIONS(5227), + [anon_sym_BSLASHsupercite] = ACTIONS(5227), + [anon_sym_BSLASHautocite] = ACTIONS(5227), + [anon_sym_BSLASHAutocite] = ACTIONS(5227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5225), + [anon_sym_BSLASHvolcite] = ACTIONS(5227), + [anon_sym_BSLASHVolcite] = ACTIONS(5227), + [anon_sym_BSLASHpvolcite] = ACTIONS(5227), + [anon_sym_BSLASHPvolcite] = ACTIONS(5227), + [anon_sym_BSLASHfvolcite] = ACTIONS(5227), + [anon_sym_BSLASHftvolcite] = ACTIONS(5227), + [anon_sym_BSLASHsvolcite] = ACTIONS(5227), + [anon_sym_BSLASHSvolcite] = ACTIONS(5227), + [anon_sym_BSLASHtvolcite] = ACTIONS(5227), + [anon_sym_BSLASHTvolcite] = ACTIONS(5227), + [anon_sym_BSLASHavolcite] = ACTIONS(5227), + [anon_sym_BSLASHAvolcite] = ACTIONS(5227), + [anon_sym_BSLASHnotecite] = ACTIONS(5227), + [anon_sym_BSLASHNotecite] = ACTIONS(5227), + [anon_sym_BSLASHpnotecite] = ACTIONS(5227), + [anon_sym_BSLASHPnotecite] = ACTIONS(5227), + [anon_sym_BSLASHfnotecite] = ACTIONS(5227), + [anon_sym_BSLASHlabel] = ACTIONS(5227), + [anon_sym_BSLASHref] = ACTIONS(5227), + [anon_sym_BSLASHeqref] = ACTIONS(5227), + [anon_sym_BSLASHvref] = ACTIONS(5227), + [anon_sym_BSLASHVref] = ACTIONS(5227), + [anon_sym_BSLASHautoref] = ACTIONS(5227), + [anon_sym_BSLASHpageref] = ACTIONS(5227), + [anon_sym_BSLASHcref] = ACTIONS(5227), + [anon_sym_BSLASHCref] = ACTIONS(5227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnameCref] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5227), + [anon_sym_BSLASHlabelcref] = ACTIONS(5227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange] = ACTIONS(5227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5225), + [anon_sym_BSLASHnewlabel] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand] = ACTIONS(5227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdef] = ACTIONS(5227), + [anon_sym_BSLASHlet] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), + [anon_sym_BSLASHgls] = ACTIONS(5227), + [anon_sym_BSLASHGls] = ACTIONS(5227), + [anon_sym_BSLASHGLS] = ACTIONS(5227), + [anon_sym_BSLASHglspl] = ACTIONS(5227), + [anon_sym_BSLASHGlspl] = ACTIONS(5227), + [anon_sym_BSLASHGLSpl] = ACTIONS(5227), + [anon_sym_BSLASHglsdisp] = ACTIONS(5227), + [anon_sym_BSLASHglslink] = ACTIONS(5227), + [anon_sym_BSLASHglstext] = ACTIONS(5227), + [anon_sym_BSLASHGlstext] = ACTIONS(5227), + [anon_sym_BSLASHGLStext] = ACTIONS(5227), + [anon_sym_BSLASHglsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5227), + [anon_sym_BSLASHglsplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSplural] = ACTIONS(5227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5227), + [anon_sym_BSLASHglsname] = ACTIONS(5227), + [anon_sym_BSLASHGlsname] = ACTIONS(5227), + [anon_sym_BSLASHGLSname] = ACTIONS(5227), + [anon_sym_BSLASHglssymbol] = ACTIONS(5227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5227), + [anon_sym_BSLASHglsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5227), + [anon_sym_BSLASHglsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5227), + [anon_sym_BSLASHglsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5227), + [anon_sym_BSLASHglsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5227), + [anon_sym_BSLASHglsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5227), + [anon_sym_BSLASHnewacronym] = ACTIONS(5227), + [anon_sym_BSLASHacrshort] = ACTIONS(5227), + [anon_sym_BSLASHAcrshort] = ACTIONS(5227), + [anon_sym_BSLASHACRshort] = ACTIONS(5227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5227), + [anon_sym_BSLASHacrlong] = ACTIONS(5227), + [anon_sym_BSLASHAcrlong] = ACTIONS(5227), + [anon_sym_BSLASHACRlong] = ACTIONS(5227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5227), + [anon_sym_BSLASHacrfull] = ACTIONS(5227), + [anon_sym_BSLASHAcrfull] = ACTIONS(5227), + [anon_sym_BSLASHACRfull] = ACTIONS(5227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5227), + [anon_sym_BSLASHacs] = ACTIONS(5227), + [anon_sym_BSLASHAcs] = ACTIONS(5227), + [anon_sym_BSLASHacsp] = ACTIONS(5227), + [anon_sym_BSLASHAcsp] = ACTIONS(5227), + [anon_sym_BSLASHacl] = ACTIONS(5227), + [anon_sym_BSLASHAcl] = ACTIONS(5227), + [anon_sym_BSLASHaclp] = ACTIONS(5227), + [anon_sym_BSLASHAclp] = ACTIONS(5227), + [anon_sym_BSLASHacf] = ACTIONS(5227), + [anon_sym_BSLASHAcf] = ACTIONS(5227), + [anon_sym_BSLASHacfp] = ACTIONS(5227), + [anon_sym_BSLASHAcfp] = ACTIONS(5227), + [anon_sym_BSLASHac] = ACTIONS(5227), + [anon_sym_BSLASHAc] = ACTIONS(5227), + [anon_sym_BSLASHacp] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5227), + [anon_sym_BSLASHcolor] = ACTIONS(5227), + [anon_sym_BSLASHcolorbox] = ACTIONS(5227), + [anon_sym_BSLASHtextcolor] = ACTIONS(5227), + [anon_sym_BSLASHpagecolor] = ACTIONS(5227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5227), + [anon_sym_BSLASHtext] = ACTIONS(5227), + [anon_sym_BSLASHintertext] = ACTIONS(5227), + [anon_sym_shortintertext] = ACTIONS(5227), + }, + [668] = { + [sym__subsubsection_declaration] = STATE(180), + [sym_subsubsection] = STATE(468), + [aux_sym__section_repeat5] = STATE(468), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(605), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [669] = { + [sym_curly_group] = STATE(1063), + [sym_mixed_group] = STATE(1063), + [aux_sym_generic_command_repeat1] = STATE(467), [sym_command_name] = ACTIONS(5337), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), + [anon_sym_LPAREN] = ACTIONS(5589), [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5589), [anon_sym_RBRACK] = ACTIONS(5335), [anon_sym_COMMA] = ACTIONS(5335), [anon_sym_EQ] = ACTIONS(5335), @@ -368791,7 +225301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), [anon_sym_BSLASHitem] = ACTIONS(5337), [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(1024), [sym_word] = ACTIONS(5337), [sym_placeholder] = ACTIONS(5335), [anon_sym_PLUS] = ACTIONS(5337), @@ -368810,9 +225320,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), [anon_sym_DOLLAR] = ACTIONS(5337), [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5335), [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHend] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), [anon_sym_BSLASHusepackage] = ACTIONS(5337), [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), @@ -369034,10223 +225546,8430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHintertext] = ACTIONS(5337), [anon_sym_shortintertext] = ACTIONS(5337), }, - [1204] = { - [sym_command_name] = ACTIONS(5341), + [670] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [671] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [672] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5231), + [anon_sym_LPAREN] = ACTIONS(5229), + [anon_sym_RPAREN] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_RBRACK] = ACTIONS(5229), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_BSLASHpart] = ACTIONS(5231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddpart] = ACTIONS(5231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), + [anon_sym_BSLASHchapter] = ACTIONS(5231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddchap] = ACTIONS(5231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsection] = ACTIONS(5231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHaddsec] = ACTIONS(5231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), + [anon_sym_BSLASHparagraph] = ACTIONS(5231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5229), + [sym_word] = ACTIONS(5231), + [sym_placeholder] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_SLASH] = ACTIONS(5231), + [anon_sym_CARET] = ACTIONS(5231), + [anon_sym__] = ACTIONS(5231), + [anon_sym_LT] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5231), + [anon_sym_COLON] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), + [anon_sym_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5229), + [anon_sym_BSLASHbegin] = ACTIONS(5231), + [anon_sym_BSLASHtitle] = ACTIONS(5231), + [anon_sym_BSLASHauthor] = ACTIONS(5231), + [anon_sym_BSLASHusepackage] = ACTIONS(5231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), + [anon_sym_BSLASHinclude] = ACTIONS(5231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), + [anon_sym_BSLASHinput] = ACTIONS(5231), + [anon_sym_BSLASHsubfile] = ACTIONS(5231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), + [anon_sym_BSLASHbibliography] = ACTIONS(5231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), + [anon_sym_BSLASHincludesvg] = ACTIONS(5231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), + [anon_sym_BSLASHimport] = ACTIONS(5231), + [anon_sym_BSLASHsubimport] = ACTIONS(5231), + [anon_sym_BSLASHinputfrom] = ACTIONS(5231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), + [anon_sym_BSLASHincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), + [anon_sym_BSLASHcaption] = ACTIONS(5231), + [anon_sym_BSLASHcite] = ACTIONS(5231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCite] = ACTIONS(5231), + [anon_sym_BSLASHnocite] = ACTIONS(5231), + [anon_sym_BSLASHcitet] = ACTIONS(5231), + [anon_sym_BSLASHcitep] = ACTIONS(5231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteyear] = ACTIONS(5231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), + [anon_sym_BSLASHcitedate] = ACTIONS(5231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), + [anon_sym_BSLASHciteurl] = ACTIONS(5231), + [anon_sym_BSLASHfullcite] = ACTIONS(5231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), + [anon_sym_BSLASHcitealt] = ACTIONS(5231), + [anon_sym_BSLASHcitealp] = ACTIONS(5231), + [anon_sym_BSLASHcitetext] = ACTIONS(5231), + [anon_sym_BSLASHparencite] = ACTIONS(5231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHParencite] = ACTIONS(5231), + [anon_sym_BSLASHfootcite] = ACTIONS(5231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), + [anon_sym_BSLASHtextcite] = ACTIONS(5231), + [anon_sym_BSLASHTextcite] = ACTIONS(5231), + [anon_sym_BSLASHsmartcite] = ACTIONS(5231), + [anon_sym_BSLASHSmartcite] = ACTIONS(5231), + [anon_sym_BSLASHsupercite] = ACTIONS(5231), + [anon_sym_BSLASHautocite] = ACTIONS(5231), + [anon_sym_BSLASHAutocite] = ACTIONS(5231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), + [anon_sym_BSLASHvolcite] = ACTIONS(5231), + [anon_sym_BSLASHVolcite] = ACTIONS(5231), + [anon_sym_BSLASHpvolcite] = ACTIONS(5231), + [anon_sym_BSLASHPvolcite] = ACTIONS(5231), + [anon_sym_BSLASHfvolcite] = ACTIONS(5231), + [anon_sym_BSLASHftvolcite] = ACTIONS(5231), + [anon_sym_BSLASHsvolcite] = ACTIONS(5231), + [anon_sym_BSLASHSvolcite] = ACTIONS(5231), + [anon_sym_BSLASHtvolcite] = ACTIONS(5231), + [anon_sym_BSLASHTvolcite] = ACTIONS(5231), + [anon_sym_BSLASHavolcite] = ACTIONS(5231), + [anon_sym_BSLASHAvolcite] = ACTIONS(5231), + [anon_sym_BSLASHnotecite] = ACTIONS(5231), + [anon_sym_BSLASHNotecite] = ACTIONS(5231), + [anon_sym_BSLASHpnotecite] = ACTIONS(5231), + [anon_sym_BSLASHPnotecite] = ACTIONS(5231), + [anon_sym_BSLASHfnotecite] = ACTIONS(5231), + [anon_sym_BSLASHlabel] = ACTIONS(5231), + [anon_sym_BSLASHref] = ACTIONS(5231), + [anon_sym_BSLASHeqref] = ACTIONS(5231), + [anon_sym_BSLASHvref] = ACTIONS(5231), + [anon_sym_BSLASHVref] = ACTIONS(5231), + [anon_sym_BSLASHautoref] = ACTIONS(5231), + [anon_sym_BSLASHpageref] = ACTIONS(5231), + [anon_sym_BSLASHcref] = ACTIONS(5231), + [anon_sym_BSLASHCref] = ACTIONS(5231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnameCref] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), + [anon_sym_BSLASHlabelcref] = ACTIONS(5231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange] = ACTIONS(5231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), + [anon_sym_BSLASHnewlabel] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand] = ACTIONS(5231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdef] = ACTIONS(5231), + [anon_sym_BSLASHlet] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), + [anon_sym_BSLASHgls] = ACTIONS(5231), + [anon_sym_BSLASHGls] = ACTIONS(5231), + [anon_sym_BSLASHGLS] = ACTIONS(5231), + [anon_sym_BSLASHglspl] = ACTIONS(5231), + [anon_sym_BSLASHGlspl] = ACTIONS(5231), + [anon_sym_BSLASHGLSpl] = ACTIONS(5231), + [anon_sym_BSLASHglsdisp] = ACTIONS(5231), + [anon_sym_BSLASHglslink] = ACTIONS(5231), + [anon_sym_BSLASHglstext] = ACTIONS(5231), + [anon_sym_BSLASHGlstext] = ACTIONS(5231), + [anon_sym_BSLASHGLStext] = ACTIONS(5231), + [anon_sym_BSLASHglsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), + [anon_sym_BSLASHglsplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSplural] = ACTIONS(5231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), + [anon_sym_BSLASHglsname] = ACTIONS(5231), + [anon_sym_BSLASHGlsname] = ACTIONS(5231), + [anon_sym_BSLASHGLSname] = ACTIONS(5231), + [anon_sym_BSLASHglssymbol] = ACTIONS(5231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), + [anon_sym_BSLASHglsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), + [anon_sym_BSLASHglsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), + [anon_sym_BSLASHglsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), + [anon_sym_BSLASHglsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), + [anon_sym_BSLASHglsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), + [anon_sym_BSLASHnewacronym] = ACTIONS(5231), + [anon_sym_BSLASHacrshort] = ACTIONS(5231), + [anon_sym_BSLASHAcrshort] = ACTIONS(5231), + [anon_sym_BSLASHACRshort] = ACTIONS(5231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), + [anon_sym_BSLASHacrlong] = ACTIONS(5231), + [anon_sym_BSLASHAcrlong] = ACTIONS(5231), + [anon_sym_BSLASHACRlong] = ACTIONS(5231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), + [anon_sym_BSLASHacrfull] = ACTIONS(5231), + [anon_sym_BSLASHAcrfull] = ACTIONS(5231), + [anon_sym_BSLASHACRfull] = ACTIONS(5231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), + [anon_sym_BSLASHacs] = ACTIONS(5231), + [anon_sym_BSLASHAcs] = ACTIONS(5231), + [anon_sym_BSLASHacsp] = ACTIONS(5231), + [anon_sym_BSLASHAcsp] = ACTIONS(5231), + [anon_sym_BSLASHacl] = ACTIONS(5231), + [anon_sym_BSLASHAcl] = ACTIONS(5231), + [anon_sym_BSLASHaclp] = ACTIONS(5231), + [anon_sym_BSLASHAclp] = ACTIONS(5231), + [anon_sym_BSLASHacf] = ACTIONS(5231), + [anon_sym_BSLASHAcf] = ACTIONS(5231), + [anon_sym_BSLASHacfp] = ACTIONS(5231), + [anon_sym_BSLASHAcfp] = ACTIONS(5231), + [anon_sym_BSLASHac] = ACTIONS(5231), + [anon_sym_BSLASHAc] = ACTIONS(5231), + [anon_sym_BSLASHacp] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), + [anon_sym_BSLASHcolor] = ACTIONS(5231), + [anon_sym_BSLASHcolorbox] = ACTIONS(5231), + [anon_sym_BSLASHtextcolor] = ACTIONS(5231), + [anon_sym_BSLASHpagecolor] = ACTIONS(5231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHtext] = ACTIONS(5231), + [anon_sym_BSLASHintertext] = ACTIONS(5231), + [anon_sym_shortintertext] = ACTIONS(5231), + }, + [673] = { + [sym__paragraph_declaration] = STATE(191), + [sym_paragraph] = STATE(472), + [aux_sym__section_repeat6] = STATE(472), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(607), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(609), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), + }, + [674] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), + }, + [675] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5235), + [anon_sym_LPAREN] = ACTIONS(5233), + [anon_sym_RPAREN] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_RBRACK] = ACTIONS(5233), + [anon_sym_COMMA] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_BSLASHpart] = ACTIONS(5235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddpart] = ACTIONS(5235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), + [anon_sym_BSLASHchapter] = ACTIONS(5235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddchap] = ACTIONS(5235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsection] = ACTIONS(5235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHaddsec] = ACTIONS(5235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), + [anon_sym_BSLASHparagraph] = ACTIONS(5235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5233), + [sym_word] = ACTIONS(5235), + [sym_placeholder] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_SLASH] = ACTIONS(5235), + [anon_sym_CARET] = ACTIONS(5235), + [anon_sym__] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), + [anon_sym_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5233), + [anon_sym_BSLASHbegin] = ACTIONS(5235), + [anon_sym_BSLASHtitle] = ACTIONS(5235), + [anon_sym_BSLASHauthor] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), + [anon_sym_BSLASHinclude] = ACTIONS(5235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), + [anon_sym_BSLASHinput] = ACTIONS(5235), + [anon_sym_BSLASHsubfile] = ACTIONS(5235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), + [anon_sym_BSLASHbibliography] = ACTIONS(5235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), + [anon_sym_BSLASHimport] = ACTIONS(5235), + [anon_sym_BSLASHsubimport] = ACTIONS(5235), + [anon_sym_BSLASHinputfrom] = ACTIONS(5235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), + [anon_sym_BSLASHincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), + [anon_sym_BSLASHcaption] = ACTIONS(5235), + [anon_sym_BSLASHcite] = ACTIONS(5235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCite] = ACTIONS(5235), + [anon_sym_BSLASHnocite] = ACTIONS(5235), + [anon_sym_BSLASHcitet] = ACTIONS(5235), + [anon_sym_BSLASHcitep] = ACTIONS(5235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteyear] = ACTIONS(5235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), + [anon_sym_BSLASHcitedate] = ACTIONS(5235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), + [anon_sym_BSLASHciteurl] = ACTIONS(5235), + [anon_sym_BSLASHfullcite] = ACTIONS(5235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), + [anon_sym_BSLASHcitealt] = ACTIONS(5235), + [anon_sym_BSLASHcitealp] = ACTIONS(5235), + [anon_sym_BSLASHcitetext] = ACTIONS(5235), + [anon_sym_BSLASHparencite] = ACTIONS(5235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHParencite] = ACTIONS(5235), + [anon_sym_BSLASHfootcite] = ACTIONS(5235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), + [anon_sym_BSLASHtextcite] = ACTIONS(5235), + [anon_sym_BSLASHTextcite] = ACTIONS(5235), + [anon_sym_BSLASHsmartcite] = ACTIONS(5235), + [anon_sym_BSLASHSmartcite] = ACTIONS(5235), + [anon_sym_BSLASHsupercite] = ACTIONS(5235), + [anon_sym_BSLASHautocite] = ACTIONS(5235), + [anon_sym_BSLASHAutocite] = ACTIONS(5235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), + [anon_sym_BSLASHvolcite] = ACTIONS(5235), + [anon_sym_BSLASHVolcite] = ACTIONS(5235), + [anon_sym_BSLASHpvolcite] = ACTIONS(5235), + [anon_sym_BSLASHPvolcite] = ACTIONS(5235), + [anon_sym_BSLASHfvolcite] = ACTIONS(5235), + [anon_sym_BSLASHftvolcite] = ACTIONS(5235), + [anon_sym_BSLASHsvolcite] = ACTIONS(5235), + [anon_sym_BSLASHSvolcite] = ACTIONS(5235), + [anon_sym_BSLASHtvolcite] = ACTIONS(5235), + [anon_sym_BSLASHTvolcite] = ACTIONS(5235), + [anon_sym_BSLASHavolcite] = ACTIONS(5235), + [anon_sym_BSLASHAvolcite] = ACTIONS(5235), + [anon_sym_BSLASHnotecite] = ACTIONS(5235), + [anon_sym_BSLASHNotecite] = ACTIONS(5235), + [anon_sym_BSLASHpnotecite] = ACTIONS(5235), + [anon_sym_BSLASHPnotecite] = ACTIONS(5235), + [anon_sym_BSLASHfnotecite] = ACTIONS(5235), + [anon_sym_BSLASHlabel] = ACTIONS(5235), + [anon_sym_BSLASHref] = ACTIONS(5235), + [anon_sym_BSLASHeqref] = ACTIONS(5235), + [anon_sym_BSLASHvref] = ACTIONS(5235), + [anon_sym_BSLASHVref] = ACTIONS(5235), + [anon_sym_BSLASHautoref] = ACTIONS(5235), + [anon_sym_BSLASHpageref] = ACTIONS(5235), + [anon_sym_BSLASHcref] = ACTIONS(5235), + [anon_sym_BSLASHCref] = ACTIONS(5235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnameCref] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), + [anon_sym_BSLASHlabelcref] = ACTIONS(5235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange] = ACTIONS(5235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), + [anon_sym_BSLASHnewlabel] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand] = ACTIONS(5235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdef] = ACTIONS(5235), + [anon_sym_BSLASHlet] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), + [anon_sym_BSLASHgls] = ACTIONS(5235), + [anon_sym_BSLASHGls] = ACTIONS(5235), + [anon_sym_BSLASHGLS] = ACTIONS(5235), + [anon_sym_BSLASHglspl] = ACTIONS(5235), + [anon_sym_BSLASHGlspl] = ACTIONS(5235), + [anon_sym_BSLASHGLSpl] = ACTIONS(5235), + [anon_sym_BSLASHglsdisp] = ACTIONS(5235), + [anon_sym_BSLASHglslink] = ACTIONS(5235), + [anon_sym_BSLASHglstext] = ACTIONS(5235), + [anon_sym_BSLASHGlstext] = ACTIONS(5235), + [anon_sym_BSLASHGLStext] = ACTIONS(5235), + [anon_sym_BSLASHglsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), + [anon_sym_BSLASHglsplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSplural] = ACTIONS(5235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), + [anon_sym_BSLASHglsname] = ACTIONS(5235), + [anon_sym_BSLASHGlsname] = ACTIONS(5235), + [anon_sym_BSLASHGLSname] = ACTIONS(5235), + [anon_sym_BSLASHglssymbol] = ACTIONS(5235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), + [anon_sym_BSLASHglsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), + [anon_sym_BSLASHglsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), + [anon_sym_BSLASHglsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), + [anon_sym_BSLASHglsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), + [anon_sym_BSLASHglsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), + [anon_sym_BSLASHnewacronym] = ACTIONS(5235), + [anon_sym_BSLASHacrshort] = ACTIONS(5235), + [anon_sym_BSLASHAcrshort] = ACTIONS(5235), + [anon_sym_BSLASHACRshort] = ACTIONS(5235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), + [anon_sym_BSLASHacrlong] = ACTIONS(5235), + [anon_sym_BSLASHAcrlong] = ACTIONS(5235), + [anon_sym_BSLASHACRlong] = ACTIONS(5235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), + [anon_sym_BSLASHacrfull] = ACTIONS(5235), + [anon_sym_BSLASHAcrfull] = ACTIONS(5235), + [anon_sym_BSLASHACRfull] = ACTIONS(5235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), + [anon_sym_BSLASHacs] = ACTIONS(5235), + [anon_sym_BSLASHAcs] = ACTIONS(5235), + [anon_sym_BSLASHacsp] = ACTIONS(5235), + [anon_sym_BSLASHAcsp] = ACTIONS(5235), + [anon_sym_BSLASHacl] = ACTIONS(5235), + [anon_sym_BSLASHAcl] = ACTIONS(5235), + [anon_sym_BSLASHaclp] = ACTIONS(5235), + [anon_sym_BSLASHAclp] = ACTIONS(5235), + [anon_sym_BSLASHacf] = ACTIONS(5235), + [anon_sym_BSLASHAcf] = ACTIONS(5235), + [anon_sym_BSLASHacfp] = ACTIONS(5235), + [anon_sym_BSLASHAcfp] = ACTIONS(5235), + [anon_sym_BSLASHac] = ACTIONS(5235), + [anon_sym_BSLASHAc] = ACTIONS(5235), + [anon_sym_BSLASHacp] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), + [anon_sym_BSLASHcolor] = ACTIONS(5235), + [anon_sym_BSLASHcolorbox] = ACTIONS(5235), + [anon_sym_BSLASHtextcolor] = ACTIONS(5235), + [anon_sym_BSLASHpagecolor] = ACTIONS(5235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [anon_sym_BSLASHtext] = ACTIONS(5235), + [anon_sym_BSLASHintertext] = ACTIONS(5235), + [anon_sym_shortintertext] = ACTIONS(5235), + }, + [676] = { + [sym_curly_group] = STATE(1063), + [sym_mixed_group] = STATE(1063), + [aux_sym_generic_command_repeat1] = STATE(669), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(5589), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_BSLASHpart] = ACTIONS(5317), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddpart] = ACTIONS(5317), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), + [anon_sym_BSLASHchapter] = ACTIONS(5317), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddchap] = ACTIONS(5317), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsection] = ACTIONS(5317), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHaddsec] = ACTIONS(5317), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), + [anon_sym_BSLASHparagraph] = ACTIONS(5317), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), + [anon_sym_BSLASHitem] = ACTIONS(5317), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), + }, + [677] = { + [sym__subparagraph_declaration] = STATE(196), + [sym_subparagraph] = STATE(497), + [aux_sym__section_repeat7] = STATE(497), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(611), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(613), + [anon_sym_BSLASHitem] = ACTIONS(5219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), + }, + [678] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_COMMA] = ACTIONS(5217), + [anon_sym_EQ] = ACTIONS(5217), + [anon_sym_BSLASHpart] = ACTIONS(5219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddpart] = ACTIONS(5219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5217), + [anon_sym_BSLASHchapter] = ACTIONS(5219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddchap] = ACTIONS(5219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsection] = ACTIONS(5219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHaddsec] = ACTIONS(5219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5217), + [anon_sym_BSLASHparagraph] = ACTIONS(5219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5217), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(5219), + [sym_placeholder] = ACTIONS(5217), + [anon_sym_PLUS] = ACTIONS(5219), + [anon_sym_DASH] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_SLASH] = ACTIONS(5219), + [anon_sym_CARET] = ACTIONS(5219), + [anon_sym__] = ACTIONS(5219), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_BANG] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5219), + [anon_sym_COLON] = ACTIONS(5219), + [anon_sym_SQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5217), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5217), + [anon_sym_BSLASHbegin] = ACTIONS(5219), + [anon_sym_BSLASHtitle] = ACTIONS(5219), + [anon_sym_BSLASHauthor] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5219), + [anon_sym_BSLASHinclude] = ACTIONS(5219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5219), + [anon_sym_BSLASHinput] = ACTIONS(5219), + [anon_sym_BSLASHsubfile] = ACTIONS(5219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5219), + [anon_sym_BSLASHbibliography] = ACTIONS(5219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5219), + [anon_sym_BSLASHincludesvg] = ACTIONS(5219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5219), + [anon_sym_BSLASHimport] = ACTIONS(5219), + [anon_sym_BSLASHsubimport] = ACTIONS(5219), + [anon_sym_BSLASHinputfrom] = ACTIONS(5219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5219), + [anon_sym_BSLASHincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5219), + [anon_sym_BSLASHcaption] = ACTIONS(5219), + [anon_sym_BSLASHcite] = ACTIONS(5219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCite] = ACTIONS(5219), + [anon_sym_BSLASHnocite] = ACTIONS(5219), + [anon_sym_BSLASHcitet] = ACTIONS(5219), + [anon_sym_BSLASHcitep] = ACTIONS(5219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteyear] = ACTIONS(5219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5217), + [anon_sym_BSLASHcitedate] = ACTIONS(5219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5217), + [anon_sym_BSLASHciteurl] = ACTIONS(5219), + [anon_sym_BSLASHfullcite] = ACTIONS(5219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5219), + [anon_sym_BSLASHcitealt] = ACTIONS(5219), + [anon_sym_BSLASHcitealp] = ACTIONS(5219), + [anon_sym_BSLASHcitetext] = ACTIONS(5219), + [anon_sym_BSLASHparencite] = ACTIONS(5219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHParencite] = ACTIONS(5219), + [anon_sym_BSLASHfootcite] = ACTIONS(5219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5219), + [anon_sym_BSLASHtextcite] = ACTIONS(5219), + [anon_sym_BSLASHTextcite] = ACTIONS(5219), + [anon_sym_BSLASHsmartcite] = ACTIONS(5219), + [anon_sym_BSLASHSmartcite] = ACTIONS(5219), + [anon_sym_BSLASHsupercite] = ACTIONS(5219), + [anon_sym_BSLASHautocite] = ACTIONS(5219), + [anon_sym_BSLASHAutocite] = ACTIONS(5219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5217), + [anon_sym_BSLASHvolcite] = ACTIONS(5219), + [anon_sym_BSLASHVolcite] = ACTIONS(5219), + [anon_sym_BSLASHpvolcite] = ACTIONS(5219), + [anon_sym_BSLASHPvolcite] = ACTIONS(5219), + [anon_sym_BSLASHfvolcite] = ACTIONS(5219), + [anon_sym_BSLASHftvolcite] = ACTIONS(5219), + [anon_sym_BSLASHsvolcite] = ACTIONS(5219), + [anon_sym_BSLASHSvolcite] = ACTIONS(5219), + [anon_sym_BSLASHtvolcite] = ACTIONS(5219), + [anon_sym_BSLASHTvolcite] = ACTIONS(5219), + [anon_sym_BSLASHavolcite] = ACTIONS(5219), + [anon_sym_BSLASHAvolcite] = ACTIONS(5219), + [anon_sym_BSLASHnotecite] = ACTIONS(5219), + [anon_sym_BSLASHNotecite] = ACTIONS(5219), + [anon_sym_BSLASHpnotecite] = ACTIONS(5219), + [anon_sym_BSLASHPnotecite] = ACTIONS(5219), + [anon_sym_BSLASHfnotecite] = ACTIONS(5219), + [anon_sym_BSLASHlabel] = ACTIONS(5219), + [anon_sym_BSLASHref] = ACTIONS(5219), + [anon_sym_BSLASHeqref] = ACTIONS(5219), + [anon_sym_BSLASHvref] = ACTIONS(5219), + [anon_sym_BSLASHVref] = ACTIONS(5219), + [anon_sym_BSLASHautoref] = ACTIONS(5219), + [anon_sym_BSLASHpageref] = ACTIONS(5219), + [anon_sym_BSLASHcref] = ACTIONS(5219), + [anon_sym_BSLASHCref] = ACTIONS(5219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnameCref] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5219), + [anon_sym_BSLASHlabelcref] = ACTIONS(5219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange] = ACTIONS(5219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5217), + [anon_sym_BSLASHnewlabel] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand] = ACTIONS(5219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdef] = ACTIONS(5219), + [anon_sym_BSLASHlet] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5219), + [anon_sym_BSLASHgls] = ACTIONS(5219), + [anon_sym_BSLASHGls] = ACTIONS(5219), + [anon_sym_BSLASHGLS] = ACTIONS(5219), + [anon_sym_BSLASHglspl] = ACTIONS(5219), + [anon_sym_BSLASHGlspl] = ACTIONS(5219), + [anon_sym_BSLASHGLSpl] = ACTIONS(5219), + [anon_sym_BSLASHglsdisp] = ACTIONS(5219), + [anon_sym_BSLASHglslink] = ACTIONS(5219), + [anon_sym_BSLASHglstext] = ACTIONS(5219), + [anon_sym_BSLASHGlstext] = ACTIONS(5219), + [anon_sym_BSLASHGLStext] = ACTIONS(5219), + [anon_sym_BSLASHglsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5219), + [anon_sym_BSLASHglsplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSplural] = ACTIONS(5219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5219), + [anon_sym_BSLASHglsname] = ACTIONS(5219), + [anon_sym_BSLASHGlsname] = ACTIONS(5219), + [anon_sym_BSLASHGLSname] = ACTIONS(5219), + [anon_sym_BSLASHglssymbol] = ACTIONS(5219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5219), + [anon_sym_BSLASHglsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5219), + [anon_sym_BSLASHglsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5219), + [anon_sym_BSLASHglsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5219), + [anon_sym_BSLASHglsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5219), + [anon_sym_BSLASHglsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5219), + [anon_sym_BSLASHnewacronym] = ACTIONS(5219), + [anon_sym_BSLASHacrshort] = ACTIONS(5219), + [anon_sym_BSLASHAcrshort] = ACTIONS(5219), + [anon_sym_BSLASHACRshort] = ACTIONS(5219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5219), + [anon_sym_BSLASHacrlong] = ACTIONS(5219), + [anon_sym_BSLASHAcrlong] = ACTIONS(5219), + [anon_sym_BSLASHACRlong] = ACTIONS(5219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5219), + [anon_sym_BSLASHacrfull] = ACTIONS(5219), + [anon_sym_BSLASHAcrfull] = ACTIONS(5219), + [anon_sym_BSLASHACRfull] = ACTIONS(5219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5219), + [anon_sym_BSLASHacs] = ACTIONS(5219), + [anon_sym_BSLASHAcs] = ACTIONS(5219), + [anon_sym_BSLASHacsp] = ACTIONS(5219), + [anon_sym_BSLASHAcsp] = ACTIONS(5219), + [anon_sym_BSLASHacl] = ACTIONS(5219), + [anon_sym_BSLASHAcl] = ACTIONS(5219), + [anon_sym_BSLASHaclp] = ACTIONS(5219), + [anon_sym_BSLASHAclp] = ACTIONS(5219), + [anon_sym_BSLASHacf] = ACTIONS(5219), + [anon_sym_BSLASHAcf] = ACTIONS(5219), + [anon_sym_BSLASHacfp] = ACTIONS(5219), + [anon_sym_BSLASHAcfp] = ACTIONS(5219), + [anon_sym_BSLASHac] = ACTIONS(5219), + [anon_sym_BSLASHAc] = ACTIONS(5219), + [anon_sym_BSLASHacp] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5219), + [anon_sym_BSLASHcolor] = ACTIONS(5219), + [anon_sym_BSLASHcolorbox] = ACTIONS(5219), + [anon_sym_BSLASHtextcolor] = ACTIONS(5219), + [anon_sym_BSLASHpagecolor] = ACTIONS(5219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5219), + [anon_sym_BSLASHtext] = ACTIONS(5219), + [anon_sym_BSLASHintertext] = ACTIONS(5219), + [anon_sym_shortintertext] = ACTIONS(5219), + }, + [679] = { + [sym__enum_itemdeclaration] = STATE(209), + [sym_enum_item] = STATE(515), + [aux_sym__section_repeat8] = STATE(515), + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(615), + [anon_sym_BSLASHitem_STAR] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHtitle] = ACTIONS(5249), + [anon_sym_BSLASHauthor] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [680] = { + [sym__enum_itemdeclaration] = STATE(213), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [681] = { + [sym__subparagraph_declaration] = STATE(199), + [sym_subparagraph] = STATE(526), + [aux_sym__section_repeat7] = STATE(526), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [682] = { + [sym__paragraph_declaration] = STATE(193), + [sym_paragraph] = STATE(530), + [aux_sym__section_repeat6] = STATE(530), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [683] = { + [sym__subsubsection_declaration] = STATE(178), + [sym_subsubsection] = STATE(533), + [aux_sym__section_repeat5] = STATE(533), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(211), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(213), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [684] = { + [sym__subsection_declaration] = STATE(166), + [sym_subsection] = STATE(535), + [aux_sym__section_repeat4] = STATE(535), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [685] = { + [sym__part_declaration] = STATE(139), + [sym_part] = STATE(538), + [aux_sym__section_repeat1] = STATE(538), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(195), + [anon_sym_BSLASHpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddpart] = ACTIONS(195), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [686] = { + [sym__chapter_declaration] = STATE(153), + [sym_chapter] = STATE(537), + [aux_sym__section_repeat2] = STATE(537), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(199), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddchap] = ACTIONS(199), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), + [anon_sym_BSLASHsection] = ACTIONS(5223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddsec] = ACTIONS(5223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [687] = { + [sym__section_declaration] = STATE(162), + [sym_section] = STATE(536), + [aux_sym__section_repeat3] = STATE(536), + [sym_command_name] = ACTIONS(5223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5223), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_RPAREN] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_COMMA] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), + [anon_sym_BSLASHpart] = ACTIONS(5223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddpart] = ACTIONS(5223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5221), + [anon_sym_BSLASHchapter] = ACTIONS(5223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5221), + [anon_sym_BSLASHaddchap] = ACTIONS(5223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsection] = ACTIONS(203), + [anon_sym_BSLASHsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHaddsec] = ACTIONS(203), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5221), + [anon_sym_BSLASHparagraph] = ACTIONS(5223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5221), + [anon_sym_BSLASHitem] = ACTIONS(5223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5221), + [anon_sym_LBRACE] = ACTIONS(5221), + [sym_word] = ACTIONS(5223), + [sym_placeholder] = ACTIONS(5221), + [anon_sym_PLUS] = ACTIONS(5223), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_STAR] = ACTIONS(5223), + [anon_sym_SLASH] = ACTIONS(5223), + [anon_sym_CARET] = ACTIONS(5223), + [anon_sym__] = ACTIONS(5223), + [anon_sym_LT] = ACTIONS(5223), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_BANG] = ACTIONS(5223), + [anon_sym_PIPE] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_SQUOTE] = ACTIONS(5223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5221), + [anon_sym_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5221), + [anon_sym_BSLASHbegin] = ACTIONS(5223), + [anon_sym_BSLASHtitle] = ACTIONS(5223), + [anon_sym_BSLASHauthor] = ACTIONS(5223), + [anon_sym_BSLASHusepackage] = ACTIONS(5223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5223), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5223), + [anon_sym_BSLASHsubfile] = ACTIONS(5223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5223), + [anon_sym_BSLASHbibliography] = ACTIONS(5223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5223), + [anon_sym_BSLASHincludesvg] = ACTIONS(5223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5223), + [anon_sym_BSLASHimport] = ACTIONS(5223), + [anon_sym_BSLASHsubimport] = ACTIONS(5223), + [anon_sym_BSLASHinputfrom] = ACTIONS(5223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5223), + [anon_sym_BSLASHincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5223), + [anon_sym_BSLASHcaption] = ACTIONS(5223), + [anon_sym_BSLASHcite] = ACTIONS(5223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCite] = ACTIONS(5223), + [anon_sym_BSLASHnocite] = ACTIONS(5223), + [anon_sym_BSLASHcitet] = ACTIONS(5223), + [anon_sym_BSLASHcitep] = ACTIONS(5223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteyear] = ACTIONS(5223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5221), + [anon_sym_BSLASHcitedate] = ACTIONS(5223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5221), + [anon_sym_BSLASHciteurl] = ACTIONS(5223), + [anon_sym_BSLASHfullcite] = ACTIONS(5223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5223), + [anon_sym_BSLASHcitealt] = ACTIONS(5223), + [anon_sym_BSLASHcitealp] = ACTIONS(5223), + [anon_sym_BSLASHcitetext] = ACTIONS(5223), + [anon_sym_BSLASHparencite] = ACTIONS(5223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHParencite] = ACTIONS(5223), + [anon_sym_BSLASHfootcite] = ACTIONS(5223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5223), + [anon_sym_BSLASHtextcite] = ACTIONS(5223), + [anon_sym_BSLASHTextcite] = ACTIONS(5223), + [anon_sym_BSLASHsmartcite] = ACTIONS(5223), + [anon_sym_BSLASHSmartcite] = ACTIONS(5223), + [anon_sym_BSLASHsupercite] = ACTIONS(5223), + [anon_sym_BSLASHautocite] = ACTIONS(5223), + [anon_sym_BSLASHAutocite] = ACTIONS(5223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5221), + [anon_sym_BSLASHvolcite] = ACTIONS(5223), + [anon_sym_BSLASHVolcite] = ACTIONS(5223), + [anon_sym_BSLASHpvolcite] = ACTIONS(5223), + [anon_sym_BSLASHPvolcite] = ACTIONS(5223), + [anon_sym_BSLASHfvolcite] = ACTIONS(5223), + [anon_sym_BSLASHftvolcite] = ACTIONS(5223), + [anon_sym_BSLASHsvolcite] = ACTIONS(5223), + [anon_sym_BSLASHSvolcite] = ACTIONS(5223), + [anon_sym_BSLASHtvolcite] = ACTIONS(5223), + [anon_sym_BSLASHTvolcite] = ACTIONS(5223), + [anon_sym_BSLASHavolcite] = ACTIONS(5223), + [anon_sym_BSLASHAvolcite] = ACTIONS(5223), + [anon_sym_BSLASHnotecite] = ACTIONS(5223), + [anon_sym_BSLASHNotecite] = ACTIONS(5223), + [anon_sym_BSLASHpnotecite] = ACTIONS(5223), + [anon_sym_BSLASHPnotecite] = ACTIONS(5223), + [anon_sym_BSLASHfnotecite] = ACTIONS(5223), + [anon_sym_BSLASHlabel] = ACTIONS(5223), + [anon_sym_BSLASHref] = ACTIONS(5223), + [anon_sym_BSLASHeqref] = ACTIONS(5223), + [anon_sym_BSLASHvref] = ACTIONS(5223), + [anon_sym_BSLASHVref] = ACTIONS(5223), + [anon_sym_BSLASHautoref] = ACTIONS(5223), + [anon_sym_BSLASHpageref] = ACTIONS(5223), + [anon_sym_BSLASHcref] = ACTIONS(5223), + [anon_sym_BSLASHCref] = ACTIONS(5223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnameCref] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5223), + [anon_sym_BSLASHlabelcref] = ACTIONS(5223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange] = ACTIONS(5223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5221), + [anon_sym_BSLASHnewlabel] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand] = ACTIONS(5223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdef] = ACTIONS(5223), + [anon_sym_BSLASHlet] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5223), + [anon_sym_BSLASHgls] = ACTIONS(5223), + [anon_sym_BSLASHGls] = ACTIONS(5223), + [anon_sym_BSLASHGLS] = ACTIONS(5223), + [anon_sym_BSLASHglspl] = ACTIONS(5223), + [anon_sym_BSLASHGlspl] = ACTIONS(5223), + [anon_sym_BSLASHGLSpl] = ACTIONS(5223), + [anon_sym_BSLASHglsdisp] = ACTIONS(5223), + [anon_sym_BSLASHglslink] = ACTIONS(5223), + [anon_sym_BSLASHglstext] = ACTIONS(5223), + [anon_sym_BSLASHGlstext] = ACTIONS(5223), + [anon_sym_BSLASHGLStext] = ACTIONS(5223), + [anon_sym_BSLASHglsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5223), + [anon_sym_BSLASHglsplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSplural] = ACTIONS(5223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5223), + [anon_sym_BSLASHglsname] = ACTIONS(5223), + [anon_sym_BSLASHGlsname] = ACTIONS(5223), + [anon_sym_BSLASHGLSname] = ACTIONS(5223), + [anon_sym_BSLASHglssymbol] = ACTIONS(5223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5223), + [anon_sym_BSLASHglsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5223), + [anon_sym_BSLASHglsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5223), + [anon_sym_BSLASHglsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5223), + [anon_sym_BSLASHglsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5223), + [anon_sym_BSLASHglsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5223), + [anon_sym_BSLASHnewacronym] = ACTIONS(5223), + [anon_sym_BSLASHacrshort] = ACTIONS(5223), + [anon_sym_BSLASHAcrshort] = ACTIONS(5223), + [anon_sym_BSLASHACRshort] = ACTIONS(5223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5223), + [anon_sym_BSLASHacrlong] = ACTIONS(5223), + [anon_sym_BSLASHAcrlong] = ACTIONS(5223), + [anon_sym_BSLASHACRlong] = ACTIONS(5223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5223), + [anon_sym_BSLASHacrfull] = ACTIONS(5223), + [anon_sym_BSLASHAcrfull] = ACTIONS(5223), + [anon_sym_BSLASHACRfull] = ACTIONS(5223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5223), + [anon_sym_BSLASHacs] = ACTIONS(5223), + [anon_sym_BSLASHAcs] = ACTIONS(5223), + [anon_sym_BSLASHacsp] = ACTIONS(5223), + [anon_sym_BSLASHAcsp] = ACTIONS(5223), + [anon_sym_BSLASHacl] = ACTIONS(5223), + [anon_sym_BSLASHAcl] = ACTIONS(5223), + [anon_sym_BSLASHaclp] = ACTIONS(5223), + [anon_sym_BSLASHAclp] = ACTIONS(5223), + [anon_sym_BSLASHacf] = ACTIONS(5223), + [anon_sym_BSLASHAcf] = ACTIONS(5223), + [anon_sym_BSLASHacfp] = ACTIONS(5223), + [anon_sym_BSLASHAcfp] = ACTIONS(5223), + [anon_sym_BSLASHac] = ACTIONS(5223), + [anon_sym_BSLASHAc] = ACTIONS(5223), + [anon_sym_BSLASHacp] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5223), + [anon_sym_BSLASHcolor] = ACTIONS(5223), + [anon_sym_BSLASHcolorbox] = ACTIONS(5223), + [anon_sym_BSLASHtextcolor] = ACTIONS(5223), + [anon_sym_BSLASHpagecolor] = ACTIONS(5223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5223), + [anon_sym_BSLASHtext] = ACTIONS(5223), + [anon_sym_BSLASHintertext] = ACTIONS(5223), + [anon_sym_shortintertext] = ACTIONS(5223), + }, + [688] = { + [sym_command_name] = ACTIONS(5403), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHend] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(5591), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5401), + [anon_sym_BSLASHpart] = ACTIONS(5403), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddpart] = ACTIONS(5403), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHchapter] = ACTIONS(5403), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddchap] = ACTIONS(5403), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsection] = ACTIONS(5403), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddsec] = ACTIONS(5403), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHparagraph] = ACTIONS(5403), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHitem] = ACTIONS(5403), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASHbegin] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(5593), }, - [1205] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHend] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), + [689] = { + [sym_command_name] = ACTIONS(5403), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(5595), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5401), + [anon_sym_BSLASHpart] = ACTIONS(5403), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddpart] = ACTIONS(5403), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHchapter] = ACTIONS(5403), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddchap] = ACTIONS(5403), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsection] = ACTIONS(5403), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddsec] = ACTIONS(5403), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHparagraph] = ACTIONS(5403), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHitem] = ACTIONS(5403), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5401), + [anon_sym_BSLASHbegin] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(5597), }, - [1206] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHend] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [690] = { + [sym_brack_group_text] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(5599), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_BSLASHpart] = ACTIONS(5601), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddpart] = ACTIONS(5601), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHchapter] = ACTIONS(5601), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddchap] = ACTIONS(5601), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsection] = ACTIONS(5601), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddsec] = ACTIONS(5601), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHparagraph] = ACTIONS(5601), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5601), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHitem] = ACTIONS(5601), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_RBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, - [1207] = { - [sym_command_name] = ACTIONS(5353), + [691] = { + [sym_curly_group] = STATE(739), + [sym_brack_group_text] = STATE(2093), + [sym_command_name] = ACTIONS(5417), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHend] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_BSLASHpart] = ACTIONS(5417), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddpart] = ACTIONS(5417), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHchapter] = ACTIONS(5417), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddchap] = ACTIONS(5417), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsection] = ACTIONS(5417), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddsec] = ACTIONS(5417), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHparagraph] = ACTIONS(5417), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5417), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHitem] = ACTIONS(5417), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1208] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHend] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), + [692] = { + [sym_curly_group] = STATE(759), + [ts_builtin_sym_end] = ACTIONS(5603), + [sym_command_name] = ACTIONS(5605), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_BSLASHpart] = ACTIONS(5605), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddpart] = ACTIONS(5605), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHchapter] = ACTIONS(5605), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddchap] = ACTIONS(5605), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsection] = ACTIONS(5605), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddsec] = ACTIONS(5605), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHparagraph] = ACTIONS(5605), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5605), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHitem] = ACTIONS(5605), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5603), + [sym_word] = ACTIONS(5605), + [sym_placeholder] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_SLASH] = ACTIONS(5605), + [anon_sym_CARET] = ACTIONS(5605), + [anon_sym__] = ACTIONS(5605), + [anon_sym_LT] = ACTIONS(5605), + [anon_sym_GT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5605), + [anon_sym_PIPE] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_SQUOTE] = ACTIONS(5605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5603), + [anon_sym_DOLLAR] = ACTIONS(5605), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5603), + [anon_sym_BSLASHbegin] = ACTIONS(5605), + [anon_sym_BSLASHtitle] = ACTIONS(5605), + [anon_sym_BSLASHauthor] = ACTIONS(5605), + [anon_sym_BSLASHusepackage] = ACTIONS(5605), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5605), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5605), + [anon_sym_BSLASHinclude] = ACTIONS(5605), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5605), + [anon_sym_BSLASHinput] = ACTIONS(5605), + [anon_sym_BSLASHsubfile] = ACTIONS(5605), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5605), + [anon_sym_BSLASHbibliography] = ACTIONS(5605), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5605), + [anon_sym_BSLASHincludesvg] = ACTIONS(5605), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5605), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5605), + [anon_sym_BSLASHimport] = ACTIONS(5605), + [anon_sym_BSLASHsubimport] = ACTIONS(5605), + [anon_sym_BSLASHinputfrom] = ACTIONS(5605), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5605), + [anon_sym_BSLASHincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHcaption] = ACTIONS(5605), + [anon_sym_BSLASHcite] = ACTIONS(5605), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCite] = ACTIONS(5605), + [anon_sym_BSLASHnocite] = ACTIONS(5605), + [anon_sym_BSLASHcitet] = ACTIONS(5605), + [anon_sym_BSLASHcitep] = ACTIONS(5605), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteauthor] = ACTIONS(5605), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5605), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitetitle] = ACTIONS(5605), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteyear] = ACTIONS(5605), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitedate] = ACTIONS(5605), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteurl] = ACTIONS(5605), + [anon_sym_BSLASHfullcite] = ACTIONS(5605), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5605), + [anon_sym_BSLASHcitealt] = ACTIONS(5605), + [anon_sym_BSLASHcitealp] = ACTIONS(5605), + [anon_sym_BSLASHcitetext] = ACTIONS(5605), + [anon_sym_BSLASHparencite] = ACTIONS(5605), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHParencite] = ACTIONS(5605), + [anon_sym_BSLASHfootcite] = ACTIONS(5605), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5605), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5605), + [anon_sym_BSLASHtextcite] = ACTIONS(5605), + [anon_sym_BSLASHTextcite] = ACTIONS(5605), + [anon_sym_BSLASHsmartcite] = ACTIONS(5605), + [anon_sym_BSLASHSmartcite] = ACTIONS(5605), + [anon_sym_BSLASHsupercite] = ACTIONS(5605), + [anon_sym_BSLASHautocite] = ACTIONS(5605), + [anon_sym_BSLASHAutocite] = ACTIONS(5605), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHvolcite] = ACTIONS(5605), + [anon_sym_BSLASHVolcite] = ACTIONS(5605), + [anon_sym_BSLASHpvolcite] = ACTIONS(5605), + [anon_sym_BSLASHPvolcite] = ACTIONS(5605), + [anon_sym_BSLASHfvolcite] = ACTIONS(5605), + [anon_sym_BSLASHftvolcite] = ACTIONS(5605), + [anon_sym_BSLASHsvolcite] = ACTIONS(5605), + [anon_sym_BSLASHSvolcite] = ACTIONS(5605), + [anon_sym_BSLASHtvolcite] = ACTIONS(5605), + [anon_sym_BSLASHTvolcite] = ACTIONS(5605), + [anon_sym_BSLASHavolcite] = ACTIONS(5605), + [anon_sym_BSLASHAvolcite] = ACTIONS(5605), + [anon_sym_BSLASHnotecite] = ACTIONS(5605), + [anon_sym_BSLASHNotecite] = ACTIONS(5605), + [anon_sym_BSLASHpnotecite] = ACTIONS(5605), + [anon_sym_BSLASHPnotecite] = ACTIONS(5605), + [anon_sym_BSLASHfnotecite] = ACTIONS(5605), + [anon_sym_BSLASHlabel] = ACTIONS(5605), + [anon_sym_BSLASHref] = ACTIONS(5605), + [anon_sym_BSLASHeqref] = ACTIONS(5605), + [anon_sym_BSLASHvref] = ACTIONS(5605), + [anon_sym_BSLASHVref] = ACTIONS(5605), + [anon_sym_BSLASHautoref] = ACTIONS(5605), + [anon_sym_BSLASHpageref] = ACTIONS(5605), + [anon_sym_BSLASHcref] = ACTIONS(5605), + [anon_sym_BSLASHCref] = ACTIONS(5605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnameCref] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHlabelcref] = ACTIONS(5605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCrefrange] = ACTIONS(5605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnewlabel] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5605), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5605), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5605), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdef] = ACTIONS(5605), + [anon_sym_BSLASHlet] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5605), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5605), + [anon_sym_BSLASHgls] = ACTIONS(5605), + [anon_sym_BSLASHGls] = ACTIONS(5605), + [anon_sym_BSLASHGLS] = ACTIONS(5605), + [anon_sym_BSLASHglspl] = ACTIONS(5605), + [anon_sym_BSLASHGlspl] = ACTIONS(5605), + [anon_sym_BSLASHGLSpl] = ACTIONS(5605), + [anon_sym_BSLASHglsdisp] = ACTIONS(5605), + [anon_sym_BSLASHglslink] = ACTIONS(5605), + [anon_sym_BSLASHglstext] = ACTIONS(5605), + [anon_sym_BSLASHGlstext] = ACTIONS(5605), + [anon_sym_BSLASHGLStext] = ACTIONS(5605), + [anon_sym_BSLASHglsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5605), + [anon_sym_BSLASHglsplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSplural] = ACTIONS(5605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHglsname] = ACTIONS(5605), + [anon_sym_BSLASHGlsname] = ACTIONS(5605), + [anon_sym_BSLASHGLSname] = ACTIONS(5605), + [anon_sym_BSLASHglssymbol] = ACTIONS(5605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5605), + [anon_sym_BSLASHglsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5605), + [anon_sym_BSLASHglsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5605), + [anon_sym_BSLASHglsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5605), + [anon_sym_BSLASHglsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5605), + [anon_sym_BSLASHglsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5605), + [anon_sym_BSLASHacrshort] = ACTIONS(5605), + [anon_sym_BSLASHAcrshort] = ACTIONS(5605), + [anon_sym_BSLASHACRshort] = ACTIONS(5605), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5605), + [anon_sym_BSLASHacrlong] = ACTIONS(5605), + [anon_sym_BSLASHAcrlong] = ACTIONS(5605), + [anon_sym_BSLASHACRlong] = ACTIONS(5605), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5605), + [anon_sym_BSLASHacrfull] = ACTIONS(5605), + [anon_sym_BSLASHAcrfull] = ACTIONS(5605), + [anon_sym_BSLASHACRfull] = ACTIONS(5605), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5605), + [anon_sym_BSLASHacs] = ACTIONS(5605), + [anon_sym_BSLASHAcs] = ACTIONS(5605), + [anon_sym_BSLASHacsp] = ACTIONS(5605), + [anon_sym_BSLASHAcsp] = ACTIONS(5605), + [anon_sym_BSLASHacl] = ACTIONS(5605), + [anon_sym_BSLASHAcl] = ACTIONS(5605), + [anon_sym_BSLASHaclp] = ACTIONS(5605), + [anon_sym_BSLASHAclp] = ACTIONS(5605), + [anon_sym_BSLASHacf] = ACTIONS(5605), + [anon_sym_BSLASHAcf] = ACTIONS(5605), + [anon_sym_BSLASHacfp] = ACTIONS(5605), + [anon_sym_BSLASHAcfp] = ACTIONS(5605), + [anon_sym_BSLASHac] = ACTIONS(5605), + [anon_sym_BSLASHAc] = ACTIONS(5605), + [anon_sym_BSLASHacp] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5605), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5605), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5605), + [anon_sym_BSLASHcolor] = ACTIONS(5605), + [anon_sym_BSLASHcolorbox] = ACTIONS(5605), + [anon_sym_BSLASHtextcolor] = ACTIONS(5605), + [anon_sym_BSLASHpagecolor] = ACTIONS(5605), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5605), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5605), + [anon_sym_BSLASHtext] = ACTIONS(5605), + [anon_sym_BSLASHintertext] = ACTIONS(5605), + [anon_sym_shortintertext] = ACTIONS(5605), }, - [1209] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHend] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), + [693] = { + [sym_curly_group] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(5607), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_BSLASHpart] = ACTIONS(5609), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddpart] = ACTIONS(5609), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHchapter] = ACTIONS(5609), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddchap] = ACTIONS(5609), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsection] = ACTIONS(5609), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddsec] = ACTIONS(5609), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHparagraph] = ACTIONS(5609), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5609), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHitem] = ACTIONS(5609), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5607), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), + }, + [694] = { + [sym_curly_group] = STATE(757), + [ts_builtin_sym_end] = ACTIONS(5611), + [sym_command_name] = ACTIONS(5613), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5613), + [anon_sym_LPAREN] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_BSLASHpart] = ACTIONS(5613), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddpart] = ACTIONS(5613), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHchapter] = ACTIONS(5613), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddchap] = ACTIONS(5613), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsection] = ACTIONS(5613), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddsec] = ACTIONS(5613), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHparagraph] = ACTIONS(5613), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHitem] = ACTIONS(5613), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5611), + [sym_word] = ACTIONS(5613), + [sym_placeholder] = ACTIONS(5611), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym__] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_BANG] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_SQUOTE] = ACTIONS(5613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5611), + [anon_sym_DOLLAR] = ACTIONS(5613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5611), + [anon_sym_BSLASHbegin] = ACTIONS(5613), + [anon_sym_BSLASHtitle] = ACTIONS(5613), + [anon_sym_BSLASHauthor] = ACTIONS(5613), + [anon_sym_BSLASHusepackage] = ACTIONS(5613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), + [anon_sym_BSLASHinclude] = ACTIONS(5613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), + [anon_sym_BSLASHinput] = ACTIONS(5613), + [anon_sym_BSLASHsubfile] = ACTIONS(5613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), + [anon_sym_BSLASHbibliography] = ACTIONS(5613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), + [anon_sym_BSLASHincludesvg] = ACTIONS(5613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), + [anon_sym_BSLASHimport] = ACTIONS(5613), + [anon_sym_BSLASHsubimport] = ACTIONS(5613), + [anon_sym_BSLASHinputfrom] = ACTIONS(5613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), + [anon_sym_BSLASHincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHcaption] = ACTIONS(5613), + [anon_sym_BSLASHcite] = ACTIONS(5613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCite] = ACTIONS(5613), + [anon_sym_BSLASHnocite] = ACTIONS(5613), + [anon_sym_BSLASHcitet] = ACTIONS(5613), + [anon_sym_BSLASHcitep] = ACTIONS(5613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteauthor] = ACTIONS(5613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitetitle] = ACTIONS(5613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteyear] = ACTIONS(5613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitedate] = ACTIONS(5613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteurl] = ACTIONS(5613), + [anon_sym_BSLASHfullcite] = ACTIONS(5613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), + [anon_sym_BSLASHcitealt] = ACTIONS(5613), + [anon_sym_BSLASHcitealp] = ACTIONS(5613), + [anon_sym_BSLASHcitetext] = ACTIONS(5613), + [anon_sym_BSLASHparencite] = ACTIONS(5613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHParencite] = ACTIONS(5613), + [anon_sym_BSLASHfootcite] = ACTIONS(5613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), + [anon_sym_BSLASHtextcite] = ACTIONS(5613), + [anon_sym_BSLASHTextcite] = ACTIONS(5613), + [anon_sym_BSLASHsmartcite] = ACTIONS(5613), + [anon_sym_BSLASHSmartcite] = ACTIONS(5613), + [anon_sym_BSLASHsupercite] = ACTIONS(5613), + [anon_sym_BSLASHautocite] = ACTIONS(5613), + [anon_sym_BSLASHAutocite] = ACTIONS(5613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHvolcite] = ACTIONS(5613), + [anon_sym_BSLASHVolcite] = ACTIONS(5613), + [anon_sym_BSLASHpvolcite] = ACTIONS(5613), + [anon_sym_BSLASHPvolcite] = ACTIONS(5613), + [anon_sym_BSLASHfvolcite] = ACTIONS(5613), + [anon_sym_BSLASHftvolcite] = ACTIONS(5613), + [anon_sym_BSLASHsvolcite] = ACTIONS(5613), + [anon_sym_BSLASHSvolcite] = ACTIONS(5613), + [anon_sym_BSLASHtvolcite] = ACTIONS(5613), + [anon_sym_BSLASHTvolcite] = ACTIONS(5613), + [anon_sym_BSLASHavolcite] = ACTIONS(5613), + [anon_sym_BSLASHAvolcite] = ACTIONS(5613), + [anon_sym_BSLASHnotecite] = ACTIONS(5613), + [anon_sym_BSLASHNotecite] = ACTIONS(5613), + [anon_sym_BSLASHpnotecite] = ACTIONS(5613), + [anon_sym_BSLASHPnotecite] = ACTIONS(5613), + [anon_sym_BSLASHfnotecite] = ACTIONS(5613), + [anon_sym_BSLASHlabel] = ACTIONS(5613), + [anon_sym_BSLASHref] = ACTIONS(5613), + [anon_sym_BSLASHeqref] = ACTIONS(5613), + [anon_sym_BSLASHvref] = ACTIONS(5613), + [anon_sym_BSLASHVref] = ACTIONS(5613), + [anon_sym_BSLASHautoref] = ACTIONS(5613), + [anon_sym_BSLASHpageref] = ACTIONS(5613), + [anon_sym_BSLASHcref] = ACTIONS(5613), + [anon_sym_BSLASHCref] = ACTIONS(5613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnameCref] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHlabelcref] = ACTIONS(5613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCrefrange] = ACTIONS(5613), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnewlabel] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdef] = ACTIONS(5613), + [anon_sym_BSLASHlet] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), + [anon_sym_BSLASHgls] = ACTIONS(5613), + [anon_sym_BSLASHGls] = ACTIONS(5613), + [anon_sym_BSLASHGLS] = ACTIONS(5613), + [anon_sym_BSLASHglspl] = ACTIONS(5613), + [anon_sym_BSLASHGlspl] = ACTIONS(5613), + [anon_sym_BSLASHGLSpl] = ACTIONS(5613), + [anon_sym_BSLASHglsdisp] = ACTIONS(5613), + [anon_sym_BSLASHglslink] = ACTIONS(5613), + [anon_sym_BSLASHglstext] = ACTIONS(5613), + [anon_sym_BSLASHGlstext] = ACTIONS(5613), + [anon_sym_BSLASHGLStext] = ACTIONS(5613), + [anon_sym_BSLASHglsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), + [anon_sym_BSLASHglsplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSplural] = ACTIONS(5613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHglsname] = ACTIONS(5613), + [anon_sym_BSLASHGlsname] = ACTIONS(5613), + [anon_sym_BSLASHGLSname] = ACTIONS(5613), + [anon_sym_BSLASHglssymbol] = ACTIONS(5613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), + [anon_sym_BSLASHglsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), + [anon_sym_BSLASHglsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), + [anon_sym_BSLASHglsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), + [anon_sym_BSLASHglsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), + [anon_sym_BSLASHglsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), + [anon_sym_BSLASHnewacronym] = ACTIONS(5613), + [anon_sym_BSLASHacrshort] = ACTIONS(5613), + [anon_sym_BSLASHAcrshort] = ACTIONS(5613), + [anon_sym_BSLASHACRshort] = ACTIONS(5613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), + [anon_sym_BSLASHacrlong] = ACTIONS(5613), + [anon_sym_BSLASHAcrlong] = ACTIONS(5613), + [anon_sym_BSLASHACRlong] = ACTIONS(5613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), + [anon_sym_BSLASHacrfull] = ACTIONS(5613), + [anon_sym_BSLASHAcrfull] = ACTIONS(5613), + [anon_sym_BSLASHACRfull] = ACTIONS(5613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), + [anon_sym_BSLASHacs] = ACTIONS(5613), + [anon_sym_BSLASHAcs] = ACTIONS(5613), + [anon_sym_BSLASHacsp] = ACTIONS(5613), + [anon_sym_BSLASHAcsp] = ACTIONS(5613), + [anon_sym_BSLASHacl] = ACTIONS(5613), + [anon_sym_BSLASHAcl] = ACTIONS(5613), + [anon_sym_BSLASHaclp] = ACTIONS(5613), + [anon_sym_BSLASHAclp] = ACTIONS(5613), + [anon_sym_BSLASHacf] = ACTIONS(5613), + [anon_sym_BSLASHAcf] = ACTIONS(5613), + [anon_sym_BSLASHacfp] = ACTIONS(5613), + [anon_sym_BSLASHAcfp] = ACTIONS(5613), + [anon_sym_BSLASHac] = ACTIONS(5613), + [anon_sym_BSLASHAc] = ACTIONS(5613), + [anon_sym_BSLASHacp] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), + [anon_sym_BSLASHcolor] = ACTIONS(5613), + [anon_sym_BSLASHcolorbox] = ACTIONS(5613), + [anon_sym_BSLASHtextcolor] = ACTIONS(5613), + [anon_sym_BSLASHpagecolor] = ACTIONS(5613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), + [anon_sym_BSLASHtext] = ACTIONS(5613), + [anon_sym_BSLASHintertext] = ACTIONS(5613), + [anon_sym_shortintertext] = ACTIONS(5613), }, - [1210] = { - [sym_command_name] = ACTIONS(5357), + [695] = { + [sym_curly_group] = STATE(755), + [ts_builtin_sym_end] = ACTIONS(5615), + [sym_command_name] = ACTIONS(5617), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHend] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), - }, - [1211] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_BSLASHpart] = ACTIONS(153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddpart] = ACTIONS(153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(151), - [anon_sym_BSLASHchapter] = ACTIONS(153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddchap] = ACTIONS(153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(151), - [anon_sym_BSLASHsection] = ACTIONS(153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHaddsec] = ACTIONS(153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(151), - [anon_sym_BSLASHparagraph] = ACTIONS(153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(151), - [anon_sym_BSLASHitem] = ACTIONS(153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHend] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), - }, - [1212] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHend] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), - }, - [1213] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddpart] = ACTIONS(149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), - [anon_sym_BSLASHchapter] = ACTIONS(149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddchap] = ACTIONS(149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), - [anon_sym_BSLASHsection] = ACTIONS(149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHaddsec] = ACTIONS(149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), - [anon_sym_BSLASHparagraph] = ACTIONS(149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), - [anon_sym_BSLASHitem] = ACTIONS(149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHend] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), - }, - [1214] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHend] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), - }, - [1215] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_BSLASHpart] = ACTIONS(5365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddpart] = ACTIONS(5365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5363), - [anon_sym_BSLASHchapter] = ACTIONS(5365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddchap] = ACTIONS(5365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsection] = ACTIONS(5365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHaddsec] = ACTIONS(5365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5363), - [anon_sym_BSLASHparagraph] = ACTIONS(5365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5363), - [anon_sym_BSLASHitem] = ACTIONS(5365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHend] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), - }, - [1216] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_BSLASHpart] = ACTIONS(5375), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddpart] = ACTIONS(5375), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5373), - [anon_sym_BSLASHchapter] = ACTIONS(5375), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddchap] = ACTIONS(5375), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsection] = ACTIONS(5375), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHaddsec] = ACTIONS(5375), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5373), - [anon_sym_BSLASHparagraph] = ACTIONS(5375), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5373), - [anon_sym_BSLASHitem] = ACTIONS(5375), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHend] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), - }, - [1217] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHend] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), - }, - [1218] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHend] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [1219] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHend] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [1220] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHend] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [1221] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHend] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [1222] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHend] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), - }, - [1223] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHend] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), - }, - [1224] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHend] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), - }, - [1225] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHend] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), - }, - [1226] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHend] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), - }, - [1227] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHend] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [1228] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHend] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [1229] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_BSLASHpart] = ACTIONS(5213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddpart] = ACTIONS(5213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), - [anon_sym_BSLASHchapter] = ACTIONS(5213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddchap] = ACTIONS(5213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsection] = ACTIONS(5213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHaddsec] = ACTIONS(5213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), - [anon_sym_BSLASHparagraph] = ACTIONS(5213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), - [anon_sym_BSLASHitem] = ACTIONS(5213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHend] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [1230] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_BSLASHpart] = ACTIONS(5269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddpart] = ACTIONS(5269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), - [anon_sym_BSLASHchapter] = ACTIONS(5269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddchap] = ACTIONS(5269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsection] = ACTIONS(5269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHaddsec] = ACTIONS(5269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), - [anon_sym_BSLASHparagraph] = ACTIONS(5269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), - [anon_sym_BSLASHitem] = ACTIONS(5269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHend] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), - }, - [1231] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHend] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), - }, - [1232] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHend] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), - }, - [1233] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_BSLASHpart] = ACTIONS(5229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddpart] = ACTIONS(5229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), - [anon_sym_BSLASHchapter] = ACTIONS(5229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddchap] = ACTIONS(5229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsection] = ACTIONS(5229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHaddsec] = ACTIONS(5229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), - [anon_sym_BSLASHparagraph] = ACTIONS(5229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), - [anon_sym_BSLASHitem] = ACTIONS(5229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHend] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), + [anon_sym_BSLASHiffalse] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_BSLASHpart] = ACTIONS(5617), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddpart] = ACTIONS(5617), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHchapter] = ACTIONS(5617), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddchap] = ACTIONS(5617), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsection] = ACTIONS(5617), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddsec] = ACTIONS(5617), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHparagraph] = ACTIONS(5617), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHitem] = ACTIONS(5617), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5615), + [sym_word] = ACTIONS(5617), + [sym_placeholder] = ACTIONS(5615), + [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5617), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LT] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_BANG] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_SQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), + [anon_sym_DOLLAR] = ACTIONS(5617), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), + [anon_sym_BSLASHbegin] = ACTIONS(5617), + [anon_sym_BSLASHtitle] = ACTIONS(5617), + [anon_sym_BSLASHauthor] = ACTIONS(5617), + [anon_sym_BSLASHusepackage] = ACTIONS(5617), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), + [anon_sym_BSLASHinclude] = ACTIONS(5617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), + [anon_sym_BSLASHinput] = ACTIONS(5617), + [anon_sym_BSLASHsubfile] = ACTIONS(5617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), + [anon_sym_BSLASHbibliography] = ACTIONS(5617), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), + [anon_sym_BSLASHincludesvg] = ACTIONS(5617), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), + [anon_sym_BSLASHimport] = ACTIONS(5617), + [anon_sym_BSLASHsubimport] = ACTIONS(5617), + [anon_sym_BSLASHinputfrom] = ACTIONS(5617), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), + [anon_sym_BSLASHincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHcaption] = ACTIONS(5617), + [anon_sym_BSLASHcite] = ACTIONS(5617), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCite] = ACTIONS(5617), + [anon_sym_BSLASHnocite] = ACTIONS(5617), + [anon_sym_BSLASHcitet] = ACTIONS(5617), + [anon_sym_BSLASHcitep] = ACTIONS(5617), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteauthor] = ACTIONS(5617), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitetitle] = ACTIONS(5617), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteyear] = ACTIONS(5617), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitedate] = ACTIONS(5617), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteurl] = ACTIONS(5617), + [anon_sym_BSLASHfullcite] = ACTIONS(5617), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), + [anon_sym_BSLASHcitealt] = ACTIONS(5617), + [anon_sym_BSLASHcitealp] = ACTIONS(5617), + [anon_sym_BSLASHcitetext] = ACTIONS(5617), + [anon_sym_BSLASHparencite] = ACTIONS(5617), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHParencite] = ACTIONS(5617), + [anon_sym_BSLASHfootcite] = ACTIONS(5617), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), + [anon_sym_BSLASHtextcite] = ACTIONS(5617), + [anon_sym_BSLASHTextcite] = ACTIONS(5617), + [anon_sym_BSLASHsmartcite] = ACTIONS(5617), + [anon_sym_BSLASHSmartcite] = ACTIONS(5617), + [anon_sym_BSLASHsupercite] = ACTIONS(5617), + [anon_sym_BSLASHautocite] = ACTIONS(5617), + [anon_sym_BSLASHAutocite] = ACTIONS(5617), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHvolcite] = ACTIONS(5617), + [anon_sym_BSLASHVolcite] = ACTIONS(5617), + [anon_sym_BSLASHpvolcite] = ACTIONS(5617), + [anon_sym_BSLASHPvolcite] = ACTIONS(5617), + [anon_sym_BSLASHfvolcite] = ACTIONS(5617), + [anon_sym_BSLASHftvolcite] = ACTIONS(5617), + [anon_sym_BSLASHsvolcite] = ACTIONS(5617), + [anon_sym_BSLASHSvolcite] = ACTIONS(5617), + [anon_sym_BSLASHtvolcite] = ACTIONS(5617), + [anon_sym_BSLASHTvolcite] = ACTIONS(5617), + [anon_sym_BSLASHavolcite] = ACTIONS(5617), + [anon_sym_BSLASHAvolcite] = ACTIONS(5617), + [anon_sym_BSLASHnotecite] = ACTIONS(5617), + [anon_sym_BSLASHNotecite] = ACTIONS(5617), + [anon_sym_BSLASHpnotecite] = ACTIONS(5617), + [anon_sym_BSLASHPnotecite] = ACTIONS(5617), + [anon_sym_BSLASHfnotecite] = ACTIONS(5617), + [anon_sym_BSLASHlabel] = ACTIONS(5617), + [anon_sym_BSLASHref] = ACTIONS(5617), + [anon_sym_BSLASHeqref] = ACTIONS(5617), + [anon_sym_BSLASHvref] = ACTIONS(5617), + [anon_sym_BSLASHVref] = ACTIONS(5617), + [anon_sym_BSLASHautoref] = ACTIONS(5617), + [anon_sym_BSLASHpageref] = ACTIONS(5617), + [anon_sym_BSLASHcref] = ACTIONS(5617), + [anon_sym_BSLASHCref] = ACTIONS(5617), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnameCref] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHlabelcref] = ACTIONS(5617), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCrefrange] = ACTIONS(5617), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnewlabel] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdef] = ACTIONS(5617), + [anon_sym_BSLASHlet] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), + [anon_sym_BSLASHgls] = ACTIONS(5617), + [anon_sym_BSLASHGls] = ACTIONS(5617), + [anon_sym_BSLASHGLS] = ACTIONS(5617), + [anon_sym_BSLASHglspl] = ACTIONS(5617), + [anon_sym_BSLASHGlspl] = ACTIONS(5617), + [anon_sym_BSLASHGLSpl] = ACTIONS(5617), + [anon_sym_BSLASHglsdisp] = ACTIONS(5617), + [anon_sym_BSLASHglslink] = ACTIONS(5617), + [anon_sym_BSLASHglstext] = ACTIONS(5617), + [anon_sym_BSLASHGlstext] = ACTIONS(5617), + [anon_sym_BSLASHGLStext] = ACTIONS(5617), + [anon_sym_BSLASHglsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), + [anon_sym_BSLASHglsplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSplural] = ACTIONS(5617), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHglsname] = ACTIONS(5617), + [anon_sym_BSLASHGlsname] = ACTIONS(5617), + [anon_sym_BSLASHGLSname] = ACTIONS(5617), + [anon_sym_BSLASHglssymbol] = ACTIONS(5617), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), + [anon_sym_BSLASHglsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), + [anon_sym_BSLASHglsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), + [anon_sym_BSLASHglsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), + [anon_sym_BSLASHglsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), + [anon_sym_BSLASHglsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), + [anon_sym_BSLASHnewacronym] = ACTIONS(5617), + [anon_sym_BSLASHacrshort] = ACTIONS(5617), + [anon_sym_BSLASHAcrshort] = ACTIONS(5617), + [anon_sym_BSLASHACRshort] = ACTIONS(5617), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), + [anon_sym_BSLASHacrlong] = ACTIONS(5617), + [anon_sym_BSLASHAcrlong] = ACTIONS(5617), + [anon_sym_BSLASHACRlong] = ACTIONS(5617), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), + [anon_sym_BSLASHacrfull] = ACTIONS(5617), + [anon_sym_BSLASHAcrfull] = ACTIONS(5617), + [anon_sym_BSLASHACRfull] = ACTIONS(5617), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), + [anon_sym_BSLASHacs] = ACTIONS(5617), + [anon_sym_BSLASHAcs] = ACTIONS(5617), + [anon_sym_BSLASHacsp] = ACTIONS(5617), + [anon_sym_BSLASHAcsp] = ACTIONS(5617), + [anon_sym_BSLASHacl] = ACTIONS(5617), + [anon_sym_BSLASHAcl] = ACTIONS(5617), + [anon_sym_BSLASHaclp] = ACTIONS(5617), + [anon_sym_BSLASHAclp] = ACTIONS(5617), + [anon_sym_BSLASHacf] = ACTIONS(5617), + [anon_sym_BSLASHAcf] = ACTIONS(5617), + [anon_sym_BSLASHacfp] = ACTIONS(5617), + [anon_sym_BSLASHAcfp] = ACTIONS(5617), + [anon_sym_BSLASHac] = ACTIONS(5617), + [anon_sym_BSLASHAc] = ACTIONS(5617), + [anon_sym_BSLASHacp] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), + [anon_sym_BSLASHcolor] = ACTIONS(5617), + [anon_sym_BSLASHcolorbox] = ACTIONS(5617), + [anon_sym_BSLASHtextcolor] = ACTIONS(5617), + [anon_sym_BSLASHpagecolor] = ACTIONS(5617), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), + [anon_sym_BSLASHtext] = ACTIONS(5617), + [anon_sym_BSLASHintertext] = ACTIONS(5617), + [anon_sym_shortintertext] = ACTIONS(5617), }, - [1234] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_BSLASHpart] = ACTIONS(5233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddpart] = ACTIONS(5233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), - [anon_sym_BSLASHchapter] = ACTIONS(5233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddchap] = ACTIONS(5233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsection] = ACTIONS(5233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHaddsec] = ACTIONS(5233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), - [anon_sym_BSLASHparagraph] = ACTIONS(5233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), - [anon_sym_BSLASHitem] = ACTIONS(5233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHend] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), + [696] = { + [sym_block_comment] = STATE(1724), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(696), + [sym_command_name] = ACTIONS(5619), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5622), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(5625), + [sym_placeholder] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5631), + [anon_sym_DASH] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_SLASH] = ACTIONS(5631), + [anon_sym_CARET] = ACTIONS(5631), + [anon_sym__] = ACTIONS(5631), + [anon_sym_LT] = ACTIONS(5631), + [anon_sym_GT] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_PIPE] = ACTIONS(5631), + [anon_sym_COLON] = ACTIONS(5631), + [anon_sym_SQUOTE] = ACTIONS(5631), + [anon_sym_BSLASHtitle] = ACTIONS(5634), + [anon_sym_BSLASHauthor] = ACTIONS(5637), + [anon_sym_BSLASHusepackage] = ACTIONS(5640), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5640), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5643), + [anon_sym_BSLASHinclude] = ACTIONS(5646), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5646), + [anon_sym_BSLASHinput] = ACTIONS(5646), + [anon_sym_BSLASHsubfile] = ACTIONS(5646), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5649), + [anon_sym_BSLASHbibliography] = ACTIONS(5652), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5655), + [anon_sym_BSLASHincludesvg] = ACTIONS(5658), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5661), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5664), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5664), + [anon_sym_BSLASHimport] = ACTIONS(5667), + [anon_sym_BSLASHsubimport] = ACTIONS(5667), + [anon_sym_BSLASHinputfrom] = ACTIONS(5667), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5667), + [anon_sym_BSLASHincludefrom] = ACTIONS(5667), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5667), + [anon_sym_BSLASHcaption] = ACTIONS(5670), + [anon_sym_BSLASHcite] = ACTIONS(5673), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5676), + [anon_sym_BSLASHCite] = ACTIONS(5673), + [anon_sym_BSLASHnocite] = ACTIONS(5673), + [anon_sym_BSLASHcitet] = ACTIONS(5673), + [anon_sym_BSLASHcitep] = ACTIONS(5673), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5676), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5676), + [anon_sym_BSLASHciteauthor] = ACTIONS(5673), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5676), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5673), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5676), + [anon_sym_BSLASHcitetitle] = ACTIONS(5673), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5676), + [anon_sym_BSLASHciteyear] = ACTIONS(5673), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5676), + [anon_sym_BSLASHcitedate] = ACTIONS(5673), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5676), + [anon_sym_BSLASHciteurl] = ACTIONS(5673), + [anon_sym_BSLASHfullcite] = ACTIONS(5673), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5673), + [anon_sym_BSLASHcitealt] = ACTIONS(5673), + [anon_sym_BSLASHcitealp] = ACTIONS(5673), + [anon_sym_BSLASHcitetext] = ACTIONS(5673), + [anon_sym_BSLASHparencite] = ACTIONS(5673), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5676), + [anon_sym_BSLASHParencite] = ACTIONS(5673), + [anon_sym_BSLASHfootcite] = ACTIONS(5673), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5673), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5673), + [anon_sym_BSLASHtextcite] = ACTIONS(5673), + [anon_sym_BSLASHTextcite] = ACTIONS(5673), + [anon_sym_BSLASHsmartcite] = ACTIONS(5673), + [anon_sym_BSLASHSmartcite] = ACTIONS(5673), + [anon_sym_BSLASHsupercite] = ACTIONS(5673), + [anon_sym_BSLASHautocite] = ACTIONS(5673), + [anon_sym_BSLASHAutocite] = ACTIONS(5673), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5676), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5676), + [anon_sym_BSLASHvolcite] = ACTIONS(5673), + [anon_sym_BSLASHVolcite] = ACTIONS(5673), + [anon_sym_BSLASHpvolcite] = ACTIONS(5673), + [anon_sym_BSLASHPvolcite] = ACTIONS(5673), + [anon_sym_BSLASHfvolcite] = ACTIONS(5673), + [anon_sym_BSLASHftvolcite] = ACTIONS(5673), + [anon_sym_BSLASHsvolcite] = ACTIONS(5673), + [anon_sym_BSLASHSvolcite] = ACTIONS(5673), + [anon_sym_BSLASHtvolcite] = ACTIONS(5673), + [anon_sym_BSLASHTvolcite] = ACTIONS(5673), + [anon_sym_BSLASHavolcite] = ACTIONS(5673), + [anon_sym_BSLASHAvolcite] = ACTIONS(5673), + [anon_sym_BSLASHnotecite] = ACTIONS(5673), + [anon_sym_BSLASHNotecite] = ACTIONS(5673), + [anon_sym_BSLASHpnotecite] = ACTIONS(5673), + [anon_sym_BSLASHPnotecite] = ACTIONS(5673), + [anon_sym_BSLASHfnotecite] = ACTIONS(5673), + [anon_sym_BSLASHlabel] = ACTIONS(5679), + [anon_sym_BSLASHref] = ACTIONS(5682), + [anon_sym_BSLASHeqref] = ACTIONS(5682), + [anon_sym_BSLASHvref] = ACTIONS(5682), + [anon_sym_BSLASHVref] = ACTIONS(5682), + [anon_sym_BSLASHautoref] = ACTIONS(5682), + [anon_sym_BSLASHpageref] = ACTIONS(5682), + [anon_sym_BSLASHcref] = ACTIONS(5682), + [anon_sym_BSLASHCref] = ACTIONS(5682), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5685), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5685), + [anon_sym_BSLASHnamecref] = ACTIONS(5682), + [anon_sym_BSLASHnameCref] = ACTIONS(5682), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5682), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5682), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5682), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5682), + [anon_sym_BSLASHlabelcref] = ACTIONS(5682), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5682), + [anon_sym_BSLASHcrefrange] = ACTIONS(5688), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5691), + [anon_sym_BSLASHCrefrange] = ACTIONS(5688), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5691), + [anon_sym_BSLASHnewlabel] = ACTIONS(5694), + [anon_sym_BSLASHnewcommand] = ACTIONS(5697), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5700), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5697), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5700), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5697), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5700), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5697), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5700), + [anon_sym_BSLASHdef] = ACTIONS(5703), + [anon_sym_BSLASHlet] = ACTIONS(5706), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5709), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5709), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5712), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5715), + [anon_sym_BSLASHgls] = ACTIONS(5718), + [anon_sym_BSLASHGls] = ACTIONS(5718), + [anon_sym_BSLASHGLS] = ACTIONS(5718), + [anon_sym_BSLASHglspl] = ACTIONS(5718), + [anon_sym_BSLASHGlspl] = ACTIONS(5718), + [anon_sym_BSLASHGLSpl] = ACTIONS(5718), + [anon_sym_BSLASHglsdisp] = ACTIONS(5718), + [anon_sym_BSLASHglslink] = ACTIONS(5718), + [anon_sym_BSLASHglstext] = ACTIONS(5718), + [anon_sym_BSLASHGlstext] = ACTIONS(5718), + [anon_sym_BSLASHGLStext] = ACTIONS(5718), + [anon_sym_BSLASHglsfirst] = ACTIONS(5718), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5718), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5718), + [anon_sym_BSLASHglsplural] = ACTIONS(5718), + [anon_sym_BSLASHGlsplural] = ACTIONS(5718), + [anon_sym_BSLASHGLSplural] = ACTIONS(5718), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5718), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5718), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5718), + [anon_sym_BSLASHglsname] = ACTIONS(5718), + [anon_sym_BSLASHGlsname] = ACTIONS(5718), + [anon_sym_BSLASHGLSname] = ACTIONS(5718), + [anon_sym_BSLASHglssymbol] = ACTIONS(5718), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5718), + [anon_sym_BSLASHglsdesc] = ACTIONS(5718), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5718), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5718), + [anon_sym_BSLASHglsuseri] = ACTIONS(5718), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5718), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5718), + [anon_sym_BSLASHglsuserii] = ACTIONS(5718), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5718), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5718), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5718), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5718), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5718), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5718), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5718), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5718), + [anon_sym_BSLASHglsuserv] = ACTIONS(5718), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5718), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5718), + [anon_sym_BSLASHglsuservi] = ACTIONS(5718), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5718), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5718), + [anon_sym_BSLASHnewacronym] = ACTIONS(5721), + [anon_sym_BSLASHacrshort] = ACTIONS(5724), + [anon_sym_BSLASHAcrshort] = ACTIONS(5724), + [anon_sym_BSLASHACRshort] = ACTIONS(5724), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5724), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5724), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5724), + [anon_sym_BSLASHacrlong] = ACTIONS(5724), + [anon_sym_BSLASHAcrlong] = ACTIONS(5724), + [anon_sym_BSLASHACRlong] = ACTIONS(5724), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5724), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5724), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5724), + [anon_sym_BSLASHacrfull] = ACTIONS(5724), + [anon_sym_BSLASHAcrfull] = ACTIONS(5724), + [anon_sym_BSLASHACRfull] = ACTIONS(5724), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5724), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5724), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5724), + [anon_sym_BSLASHacs] = ACTIONS(5724), + [anon_sym_BSLASHAcs] = ACTIONS(5724), + [anon_sym_BSLASHacsp] = ACTIONS(5724), + [anon_sym_BSLASHAcsp] = ACTIONS(5724), + [anon_sym_BSLASHacl] = ACTIONS(5724), + [anon_sym_BSLASHAcl] = ACTIONS(5724), + [anon_sym_BSLASHaclp] = ACTIONS(5724), + [anon_sym_BSLASHAclp] = ACTIONS(5724), + [anon_sym_BSLASHacf] = ACTIONS(5724), + [anon_sym_BSLASHAcf] = ACTIONS(5724), + [anon_sym_BSLASHacfp] = ACTIONS(5724), + [anon_sym_BSLASHAcfp] = ACTIONS(5724), + [anon_sym_BSLASHac] = ACTIONS(5724), + [anon_sym_BSLASHAc] = ACTIONS(5724), + [anon_sym_BSLASHacp] = ACTIONS(5724), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5724), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5724), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5724), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5724), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5724), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5724), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5724), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5724), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5724), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5724), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5727), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5730), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5727), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5730), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5733), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5736), + [anon_sym_BSLASHcolor] = ACTIONS(5739), + [anon_sym_BSLASHcolorbox] = ACTIONS(5739), + [anon_sym_BSLASHtextcolor] = ACTIONS(5739), + [anon_sym_BSLASHpagecolor] = ACTIONS(5739), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5742), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5742), }, - [1235] = { - [sym_command_name] = ACTIONS(5467), + [697] = { + [sym_command_name] = ACTIONS(5403), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_BSLASHpart] = ACTIONS(5467), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddpart] = ACTIONS(5467), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHchapter] = ACTIONS(5467), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddchap] = ACTIONS(5467), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsection] = ACTIONS(5467), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddsec] = ACTIONS(5467), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHparagraph] = ACTIONS(5467), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5467), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHitem] = ACTIONS(5467), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), - }, - [1236] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_BSLASHpart] = ACTIONS(5383), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddpart] = ACTIONS(5383), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5381), - [anon_sym_BSLASHchapter] = ACTIONS(5383), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddchap] = ACTIONS(5383), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsection] = ACTIONS(5383), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHaddsec] = ACTIONS(5383), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5381), - [anon_sym_BSLASHparagraph] = ACTIONS(5383), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5381), - [anon_sym_BSLASHitem] = ACTIONS(5383), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHend] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), - }, - [1237] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), - }, - [1238] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_BSLASHpart] = ACTIONS(5387), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddpart] = ACTIONS(5387), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5385), - [anon_sym_BSLASHchapter] = ACTIONS(5387), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddchap] = ACTIONS(5387), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsection] = ACTIONS(5387), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHaddsec] = ACTIONS(5387), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5387), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5385), - [anon_sym_BSLASHparagraph] = ACTIONS(5387), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5387), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5385), - [anon_sym_BSLASHitem] = ACTIONS(5387), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHend] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5401), + [anon_sym_BSLASHpart] = ACTIONS(5403), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddpart] = ACTIONS(5403), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5401), + [anon_sym_BSLASHchapter] = ACTIONS(5403), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddchap] = ACTIONS(5403), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsection] = ACTIONS(5403), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHaddsec] = ACTIONS(5403), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5403), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5401), + [anon_sym_BSLASHparagraph] = ACTIONS(5403), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5403), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5401), + [anon_sym_BSLASHitem] = ACTIONS(5403), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASHbegin] = ACTIONS(5403), + [anon_sym_BSLASHend] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(5747), }, - [1239] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_BSLASHpart] = ACTIONS(5391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddpart] = ACTIONS(5391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5389), - [anon_sym_BSLASHchapter] = ACTIONS(5391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddchap] = ACTIONS(5391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsection] = ACTIONS(5391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHaddsec] = ACTIONS(5391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5389), - [anon_sym_BSLASHparagraph] = ACTIONS(5391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5389), - [anon_sym_BSLASHitem] = ACTIONS(5391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHend] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), + [698] = { + [sym_curly_group] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(5749), + [sym_command_name] = ACTIONS(5751), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_BSLASHpart] = ACTIONS(5751), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddpart] = ACTIONS(5751), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHchapter] = ACTIONS(5751), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddchap] = ACTIONS(5751), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsection] = ACTIONS(5751), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddsec] = ACTIONS(5751), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHparagraph] = ACTIONS(5751), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5751), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHitem] = ACTIONS(5751), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5749), + [sym_word] = ACTIONS(5751), + [sym_placeholder] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym__] = ACTIONS(5751), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5751), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_SQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5749), + [anon_sym_BSLASHbegin] = ACTIONS(5751), + [anon_sym_BSLASHtitle] = ACTIONS(5751), + [anon_sym_BSLASHauthor] = ACTIONS(5751), + [anon_sym_BSLASHusepackage] = ACTIONS(5751), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5751), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5751), + [anon_sym_BSLASHinclude] = ACTIONS(5751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5751), + [anon_sym_BSLASHinput] = ACTIONS(5751), + [anon_sym_BSLASHsubfile] = ACTIONS(5751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5751), + [anon_sym_BSLASHbibliography] = ACTIONS(5751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5751), + [anon_sym_BSLASHincludesvg] = ACTIONS(5751), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5751), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5751), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5751), + [anon_sym_BSLASHimport] = ACTIONS(5751), + [anon_sym_BSLASHsubimport] = ACTIONS(5751), + [anon_sym_BSLASHinputfrom] = ACTIONS(5751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5751), + [anon_sym_BSLASHincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHcaption] = ACTIONS(5751), + [anon_sym_BSLASHcite] = ACTIONS(5751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCite] = ACTIONS(5751), + [anon_sym_BSLASHnocite] = ACTIONS(5751), + [anon_sym_BSLASHcitet] = ACTIONS(5751), + [anon_sym_BSLASHcitep] = ACTIONS(5751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteauthor] = ACTIONS(5751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitetitle] = ACTIONS(5751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteyear] = ACTIONS(5751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitedate] = ACTIONS(5751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteurl] = ACTIONS(5751), + [anon_sym_BSLASHfullcite] = ACTIONS(5751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5751), + [anon_sym_BSLASHcitealt] = ACTIONS(5751), + [anon_sym_BSLASHcitealp] = ACTIONS(5751), + [anon_sym_BSLASHcitetext] = ACTIONS(5751), + [anon_sym_BSLASHparencite] = ACTIONS(5751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHParencite] = ACTIONS(5751), + [anon_sym_BSLASHfootcite] = ACTIONS(5751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5751), + [anon_sym_BSLASHtextcite] = ACTIONS(5751), + [anon_sym_BSLASHTextcite] = ACTIONS(5751), + [anon_sym_BSLASHsmartcite] = ACTIONS(5751), + [anon_sym_BSLASHSmartcite] = ACTIONS(5751), + [anon_sym_BSLASHsupercite] = ACTIONS(5751), + [anon_sym_BSLASHautocite] = ACTIONS(5751), + [anon_sym_BSLASHAutocite] = ACTIONS(5751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHvolcite] = ACTIONS(5751), + [anon_sym_BSLASHVolcite] = ACTIONS(5751), + [anon_sym_BSLASHpvolcite] = ACTIONS(5751), + [anon_sym_BSLASHPvolcite] = ACTIONS(5751), + [anon_sym_BSLASHfvolcite] = ACTIONS(5751), + [anon_sym_BSLASHftvolcite] = ACTIONS(5751), + [anon_sym_BSLASHsvolcite] = ACTIONS(5751), + [anon_sym_BSLASHSvolcite] = ACTIONS(5751), + [anon_sym_BSLASHtvolcite] = ACTIONS(5751), + [anon_sym_BSLASHTvolcite] = ACTIONS(5751), + [anon_sym_BSLASHavolcite] = ACTIONS(5751), + [anon_sym_BSLASHAvolcite] = ACTIONS(5751), + [anon_sym_BSLASHnotecite] = ACTIONS(5751), + [anon_sym_BSLASHNotecite] = ACTIONS(5751), + [anon_sym_BSLASHpnotecite] = ACTIONS(5751), + [anon_sym_BSLASHPnotecite] = ACTIONS(5751), + [anon_sym_BSLASHfnotecite] = ACTIONS(5751), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [anon_sym_BSLASHref] = ACTIONS(5751), + [anon_sym_BSLASHeqref] = ACTIONS(5751), + [anon_sym_BSLASHvref] = ACTIONS(5751), + [anon_sym_BSLASHVref] = ACTIONS(5751), + [anon_sym_BSLASHautoref] = ACTIONS(5751), + [anon_sym_BSLASHpageref] = ACTIONS(5751), + [anon_sym_BSLASHcref] = ACTIONS(5751), + [anon_sym_BSLASHCref] = ACTIONS(5751), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnameCref] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHlabelcref] = ACTIONS(5751), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCrefrange] = ACTIONS(5751), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnewlabel] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5751), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5751), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5751), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdef] = ACTIONS(5751), + [anon_sym_BSLASHlet] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5751), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5751), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5751), + [anon_sym_BSLASHgls] = ACTIONS(5751), + [anon_sym_BSLASHGls] = ACTIONS(5751), + [anon_sym_BSLASHGLS] = ACTIONS(5751), + [anon_sym_BSLASHglspl] = ACTIONS(5751), + [anon_sym_BSLASHGlspl] = ACTIONS(5751), + [anon_sym_BSLASHGLSpl] = ACTIONS(5751), + [anon_sym_BSLASHglsdisp] = ACTIONS(5751), + [anon_sym_BSLASHglslink] = ACTIONS(5751), + [anon_sym_BSLASHglstext] = ACTIONS(5751), + [anon_sym_BSLASHGlstext] = ACTIONS(5751), + [anon_sym_BSLASHGLStext] = ACTIONS(5751), + [anon_sym_BSLASHglsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5751), + [anon_sym_BSLASHglsplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSplural] = ACTIONS(5751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHglsname] = ACTIONS(5751), + [anon_sym_BSLASHGlsname] = ACTIONS(5751), + [anon_sym_BSLASHGLSname] = ACTIONS(5751), + [anon_sym_BSLASHglssymbol] = ACTIONS(5751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5751), + [anon_sym_BSLASHglsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5751), + [anon_sym_BSLASHglsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5751), + [anon_sym_BSLASHglsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5751), + [anon_sym_BSLASHglsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5751), + [anon_sym_BSLASHglsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5751), + [anon_sym_BSLASHnewacronym] = ACTIONS(5751), + [anon_sym_BSLASHacrshort] = ACTIONS(5751), + [anon_sym_BSLASHAcrshort] = ACTIONS(5751), + [anon_sym_BSLASHACRshort] = ACTIONS(5751), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5751), + [anon_sym_BSLASHacrlong] = ACTIONS(5751), + [anon_sym_BSLASHAcrlong] = ACTIONS(5751), + [anon_sym_BSLASHACRlong] = ACTIONS(5751), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5751), + [anon_sym_BSLASHacrfull] = ACTIONS(5751), + [anon_sym_BSLASHAcrfull] = ACTIONS(5751), + [anon_sym_BSLASHACRfull] = ACTIONS(5751), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5751), + [anon_sym_BSLASHacs] = ACTIONS(5751), + [anon_sym_BSLASHAcs] = ACTIONS(5751), + [anon_sym_BSLASHacsp] = ACTIONS(5751), + [anon_sym_BSLASHAcsp] = ACTIONS(5751), + [anon_sym_BSLASHacl] = ACTIONS(5751), + [anon_sym_BSLASHAcl] = ACTIONS(5751), + [anon_sym_BSLASHaclp] = ACTIONS(5751), + [anon_sym_BSLASHAclp] = ACTIONS(5751), + [anon_sym_BSLASHacf] = ACTIONS(5751), + [anon_sym_BSLASHAcf] = ACTIONS(5751), + [anon_sym_BSLASHacfp] = ACTIONS(5751), + [anon_sym_BSLASHAcfp] = ACTIONS(5751), + [anon_sym_BSLASHac] = ACTIONS(5751), + [anon_sym_BSLASHAc] = ACTIONS(5751), + [anon_sym_BSLASHacp] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5751), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5751), + [anon_sym_BSLASHcolor] = ACTIONS(5751), + [anon_sym_BSLASHcolorbox] = ACTIONS(5751), + [anon_sym_BSLASHtextcolor] = ACTIONS(5751), + [anon_sym_BSLASHpagecolor] = ACTIONS(5751), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5751), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5751), + [anon_sym_BSLASHtext] = ACTIONS(5751), + [anon_sym_BSLASHintertext] = ACTIONS(5751), + [anon_sym_shortintertext] = ACTIONS(5751), }, - [1240] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_BSLASHpart] = ACTIONS(5395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddpart] = ACTIONS(5395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5393), - [anon_sym_BSLASHchapter] = ACTIONS(5395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddchap] = ACTIONS(5395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsection] = ACTIONS(5395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHaddsec] = ACTIONS(5395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5393), - [anon_sym_BSLASHparagraph] = ACTIONS(5395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5393), - [anon_sym_BSLASHitem] = ACTIONS(5395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHend] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), + [699] = { + [sym_curly_group] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(5753), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_BSLASHpart] = ACTIONS(5755), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddpart] = ACTIONS(5755), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHchapter] = ACTIONS(5755), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddchap] = ACTIONS(5755), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsection] = ACTIONS(5755), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddsec] = ACTIONS(5755), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHparagraph] = ACTIONS(5755), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5755), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHitem] = ACTIONS(5755), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5753), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), }, - [1241] = { + [700] = { [sym_command_name] = ACTIONS(5403), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(5757), [anon_sym_LPAREN] = ACTIONS(5401), [anon_sym_RPAREN] = ACTIONS(5401), [anon_sym_LBRACK] = ACTIONS(5401), @@ -379296,11 +234015,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(5403), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5401), [anon_sym_DOLLAR] = ACTIONS(5403), [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), [anon_sym_BSLASHbegin] = ACTIONS(5403), - [anon_sym_BSLASHend] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), [anon_sym_BSLASHusepackage] = ACTIONS(5403), [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), @@ -379521,39669 +234242,49823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHtext] = ACTIONS(5403), [anon_sym_BSLASHintertext] = ACTIONS(5403), [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(5759), }, - [1242] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5405), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5405), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5405), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHend] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), - }, - [1243] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHend] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [701] = { + [sym_curly_group] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(5761), + [sym_command_name] = ACTIONS(5763), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5763), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_BSLASHpart] = ACTIONS(5763), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddpart] = ACTIONS(5763), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHchapter] = ACTIONS(5763), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddchap] = ACTIONS(5763), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsection] = ACTIONS(5763), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddsec] = ACTIONS(5763), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHparagraph] = ACTIONS(5763), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5763), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5761), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5761), + [sym_word] = ACTIONS(5763), + [sym_placeholder] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5763), + [anon_sym_SLASH] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5763), + [anon_sym__] = ACTIONS(5763), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PIPE] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_SQUOTE] = ACTIONS(5763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5761), + [anon_sym_DOLLAR] = ACTIONS(5763), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5761), + [anon_sym_BSLASHbegin] = ACTIONS(5763), + [anon_sym_BSLASHtitle] = ACTIONS(5763), + [anon_sym_BSLASHauthor] = ACTIONS(5763), + [anon_sym_BSLASHusepackage] = ACTIONS(5763), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5763), + [anon_sym_BSLASHinclude] = ACTIONS(5763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5763), + [anon_sym_BSLASHinput] = ACTIONS(5763), + [anon_sym_BSLASHsubfile] = ACTIONS(5763), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5763), + [anon_sym_BSLASHbibliography] = ACTIONS(5763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5763), + [anon_sym_BSLASHincludesvg] = ACTIONS(5763), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5763), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5763), + [anon_sym_BSLASHimport] = ACTIONS(5763), + [anon_sym_BSLASHsubimport] = ACTIONS(5763), + [anon_sym_BSLASHinputfrom] = ACTIONS(5763), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5763), + [anon_sym_BSLASHincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHcaption] = ACTIONS(5763), + [anon_sym_BSLASHcite] = ACTIONS(5763), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCite] = ACTIONS(5763), + [anon_sym_BSLASHnocite] = ACTIONS(5763), + [anon_sym_BSLASHcitet] = ACTIONS(5763), + [anon_sym_BSLASHcitep] = ACTIONS(5763), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteauthor] = ACTIONS(5763), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5763), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitetitle] = ACTIONS(5763), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteyear] = ACTIONS(5763), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitedate] = ACTIONS(5763), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteurl] = ACTIONS(5763), + [anon_sym_BSLASHfullcite] = ACTIONS(5763), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5763), + [anon_sym_BSLASHcitealt] = ACTIONS(5763), + [anon_sym_BSLASHcitealp] = ACTIONS(5763), + [anon_sym_BSLASHcitetext] = ACTIONS(5763), + [anon_sym_BSLASHparencite] = ACTIONS(5763), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHParencite] = ACTIONS(5763), + [anon_sym_BSLASHfootcite] = ACTIONS(5763), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5763), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5763), + [anon_sym_BSLASHtextcite] = ACTIONS(5763), + [anon_sym_BSLASHTextcite] = ACTIONS(5763), + [anon_sym_BSLASHsmartcite] = ACTIONS(5763), + [anon_sym_BSLASHSmartcite] = ACTIONS(5763), + [anon_sym_BSLASHsupercite] = ACTIONS(5763), + [anon_sym_BSLASHautocite] = ACTIONS(5763), + [anon_sym_BSLASHAutocite] = ACTIONS(5763), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHvolcite] = ACTIONS(5763), + [anon_sym_BSLASHVolcite] = ACTIONS(5763), + [anon_sym_BSLASHpvolcite] = ACTIONS(5763), + [anon_sym_BSLASHPvolcite] = ACTIONS(5763), + [anon_sym_BSLASHfvolcite] = ACTIONS(5763), + [anon_sym_BSLASHftvolcite] = ACTIONS(5763), + [anon_sym_BSLASHsvolcite] = ACTIONS(5763), + [anon_sym_BSLASHSvolcite] = ACTIONS(5763), + [anon_sym_BSLASHtvolcite] = ACTIONS(5763), + [anon_sym_BSLASHTvolcite] = ACTIONS(5763), + [anon_sym_BSLASHavolcite] = ACTIONS(5763), + [anon_sym_BSLASHAvolcite] = ACTIONS(5763), + [anon_sym_BSLASHnotecite] = ACTIONS(5763), + [anon_sym_BSLASHNotecite] = ACTIONS(5763), + [anon_sym_BSLASHpnotecite] = ACTIONS(5763), + [anon_sym_BSLASHPnotecite] = ACTIONS(5763), + [anon_sym_BSLASHfnotecite] = ACTIONS(5763), + [anon_sym_BSLASHlabel] = ACTIONS(5763), + [anon_sym_BSLASHref] = ACTIONS(5763), + [anon_sym_BSLASHeqref] = ACTIONS(5763), + [anon_sym_BSLASHvref] = ACTIONS(5763), + [anon_sym_BSLASHVref] = ACTIONS(5763), + [anon_sym_BSLASHautoref] = ACTIONS(5763), + [anon_sym_BSLASHpageref] = ACTIONS(5763), + [anon_sym_BSLASHcref] = ACTIONS(5763), + [anon_sym_BSLASHCref] = ACTIONS(5763), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnameCref] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHlabelcref] = ACTIONS(5763), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCrefrange] = ACTIONS(5763), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnewlabel] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5763), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5763), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5763), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdef] = ACTIONS(5763), + [anon_sym_BSLASHlet] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5763), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5763), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5763), + [anon_sym_BSLASHgls] = ACTIONS(5763), + [anon_sym_BSLASHGls] = ACTIONS(5763), + [anon_sym_BSLASHGLS] = ACTIONS(5763), + [anon_sym_BSLASHglspl] = ACTIONS(5763), + [anon_sym_BSLASHGlspl] = ACTIONS(5763), + [anon_sym_BSLASHGLSpl] = ACTIONS(5763), + [anon_sym_BSLASHglsdisp] = ACTIONS(5763), + [anon_sym_BSLASHglslink] = ACTIONS(5763), + [anon_sym_BSLASHglstext] = ACTIONS(5763), + [anon_sym_BSLASHGlstext] = ACTIONS(5763), + [anon_sym_BSLASHGLStext] = ACTIONS(5763), + [anon_sym_BSLASHglsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5763), + [anon_sym_BSLASHglsplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSplural] = ACTIONS(5763), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHglsname] = ACTIONS(5763), + [anon_sym_BSLASHGlsname] = ACTIONS(5763), + [anon_sym_BSLASHGLSname] = ACTIONS(5763), + [anon_sym_BSLASHglssymbol] = ACTIONS(5763), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5763), + [anon_sym_BSLASHglsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5763), + [anon_sym_BSLASHglsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5763), + [anon_sym_BSLASHglsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5763), + [anon_sym_BSLASHglsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5763), + [anon_sym_BSLASHglsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5763), + [anon_sym_BSLASHnewacronym] = ACTIONS(5763), + [anon_sym_BSLASHacrshort] = ACTIONS(5763), + [anon_sym_BSLASHAcrshort] = ACTIONS(5763), + [anon_sym_BSLASHACRshort] = ACTIONS(5763), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5763), + [anon_sym_BSLASHacrlong] = ACTIONS(5763), + [anon_sym_BSLASHAcrlong] = ACTIONS(5763), + [anon_sym_BSLASHACRlong] = ACTIONS(5763), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5763), + [anon_sym_BSLASHacrfull] = ACTIONS(5763), + [anon_sym_BSLASHAcrfull] = ACTIONS(5763), + [anon_sym_BSLASHACRfull] = ACTIONS(5763), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5763), + [anon_sym_BSLASHacs] = ACTIONS(5763), + [anon_sym_BSLASHAcs] = ACTIONS(5763), + [anon_sym_BSLASHacsp] = ACTIONS(5763), + [anon_sym_BSLASHAcsp] = ACTIONS(5763), + [anon_sym_BSLASHacl] = ACTIONS(5763), + [anon_sym_BSLASHAcl] = ACTIONS(5763), + [anon_sym_BSLASHaclp] = ACTIONS(5763), + [anon_sym_BSLASHAclp] = ACTIONS(5763), + [anon_sym_BSLASHacf] = ACTIONS(5763), + [anon_sym_BSLASHAcf] = ACTIONS(5763), + [anon_sym_BSLASHacfp] = ACTIONS(5763), + [anon_sym_BSLASHAcfp] = ACTIONS(5763), + [anon_sym_BSLASHac] = ACTIONS(5763), + [anon_sym_BSLASHAc] = ACTIONS(5763), + [anon_sym_BSLASHacp] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5763), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5763), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5763), + [anon_sym_BSLASHcolor] = ACTIONS(5763), + [anon_sym_BSLASHcolorbox] = ACTIONS(5763), + [anon_sym_BSLASHtextcolor] = ACTIONS(5763), + [anon_sym_BSLASHpagecolor] = ACTIONS(5763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5763), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5763), + [anon_sym_BSLASHtext] = ACTIONS(5763), + [anon_sym_BSLASHintertext] = ACTIONS(5763), + [anon_sym_shortintertext] = ACTIONS(5763), }, - [1244] = { - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_BSLASHpart] = ACTIONS(5419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddpart] = ACTIONS(5419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5417), - [anon_sym_BSLASHchapter] = ACTIONS(5419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddchap] = ACTIONS(5419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsection] = ACTIONS(5419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHaddsec] = ACTIONS(5419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5417), - [anon_sym_BSLASHparagraph] = ACTIONS(5419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5417), - [anon_sym_BSLASHitem] = ACTIONS(5419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHend] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [702] = { + [sym_curly_group] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(5765), + [sym_command_name] = ACTIONS(5767), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_RBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_BSLASHpart] = ACTIONS(5767), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddpart] = ACTIONS(5767), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHchapter] = ACTIONS(5767), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddchap] = ACTIONS(5767), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsection] = ACTIONS(5767), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddsec] = ACTIONS(5767), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHparagraph] = ACTIONS(5767), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5767), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHitem] = ACTIONS(5767), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5765), + [sym_word] = ACTIONS(5767), + [sym_placeholder] = ACTIONS(5765), + [anon_sym_PLUS] = ACTIONS(5767), + [anon_sym_DASH] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_CARET] = ACTIONS(5767), + [anon_sym__] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5767), + [anon_sym_PIPE] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_SQUOTE] = ACTIONS(5767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5765), + [anon_sym_DOLLAR] = ACTIONS(5767), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5765), + [anon_sym_BSLASHbegin] = ACTIONS(5767), + [anon_sym_BSLASHtitle] = ACTIONS(5767), + [anon_sym_BSLASHauthor] = ACTIONS(5767), + [anon_sym_BSLASHusepackage] = ACTIONS(5767), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5767), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5767), + [anon_sym_BSLASHinclude] = ACTIONS(5767), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5767), + [anon_sym_BSLASHinput] = ACTIONS(5767), + [anon_sym_BSLASHsubfile] = ACTIONS(5767), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5767), + [anon_sym_BSLASHbibliography] = ACTIONS(5767), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5767), + [anon_sym_BSLASHincludesvg] = ACTIONS(5767), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5767), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5767), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5767), + [anon_sym_BSLASHimport] = ACTIONS(5767), + [anon_sym_BSLASHsubimport] = ACTIONS(5767), + [anon_sym_BSLASHinputfrom] = ACTIONS(5767), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5767), + [anon_sym_BSLASHincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHcaption] = ACTIONS(5767), + [anon_sym_BSLASHcite] = ACTIONS(5767), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCite] = ACTIONS(5767), + [anon_sym_BSLASHnocite] = ACTIONS(5767), + [anon_sym_BSLASHcitet] = ACTIONS(5767), + [anon_sym_BSLASHcitep] = ACTIONS(5767), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteauthor] = ACTIONS(5767), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5767), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitetitle] = ACTIONS(5767), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteyear] = ACTIONS(5767), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitedate] = ACTIONS(5767), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteurl] = ACTIONS(5767), + [anon_sym_BSLASHfullcite] = ACTIONS(5767), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5767), + [anon_sym_BSLASHcitealt] = ACTIONS(5767), + [anon_sym_BSLASHcitealp] = ACTIONS(5767), + [anon_sym_BSLASHcitetext] = ACTIONS(5767), + [anon_sym_BSLASHparencite] = ACTIONS(5767), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHParencite] = ACTIONS(5767), + [anon_sym_BSLASHfootcite] = ACTIONS(5767), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5767), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5767), + [anon_sym_BSLASHtextcite] = ACTIONS(5767), + [anon_sym_BSLASHTextcite] = ACTIONS(5767), + [anon_sym_BSLASHsmartcite] = ACTIONS(5767), + [anon_sym_BSLASHSmartcite] = ACTIONS(5767), + [anon_sym_BSLASHsupercite] = ACTIONS(5767), + [anon_sym_BSLASHautocite] = ACTIONS(5767), + [anon_sym_BSLASHAutocite] = ACTIONS(5767), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHvolcite] = ACTIONS(5767), + [anon_sym_BSLASHVolcite] = ACTIONS(5767), + [anon_sym_BSLASHpvolcite] = ACTIONS(5767), + [anon_sym_BSLASHPvolcite] = ACTIONS(5767), + [anon_sym_BSLASHfvolcite] = ACTIONS(5767), + [anon_sym_BSLASHftvolcite] = ACTIONS(5767), + [anon_sym_BSLASHsvolcite] = ACTIONS(5767), + [anon_sym_BSLASHSvolcite] = ACTIONS(5767), + [anon_sym_BSLASHtvolcite] = ACTIONS(5767), + [anon_sym_BSLASHTvolcite] = ACTIONS(5767), + [anon_sym_BSLASHavolcite] = ACTIONS(5767), + [anon_sym_BSLASHAvolcite] = ACTIONS(5767), + [anon_sym_BSLASHnotecite] = ACTIONS(5767), + [anon_sym_BSLASHNotecite] = ACTIONS(5767), + [anon_sym_BSLASHpnotecite] = ACTIONS(5767), + [anon_sym_BSLASHPnotecite] = ACTIONS(5767), + [anon_sym_BSLASHfnotecite] = ACTIONS(5767), + [anon_sym_BSLASHlabel] = ACTIONS(5767), + [anon_sym_BSLASHref] = ACTIONS(5767), + [anon_sym_BSLASHeqref] = ACTIONS(5767), + [anon_sym_BSLASHvref] = ACTIONS(5767), + [anon_sym_BSLASHVref] = ACTIONS(5767), + [anon_sym_BSLASHautoref] = ACTIONS(5767), + [anon_sym_BSLASHpageref] = ACTIONS(5767), + [anon_sym_BSLASHcref] = ACTIONS(5767), + [anon_sym_BSLASHCref] = ACTIONS(5767), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnameCref] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHlabelcref] = ACTIONS(5767), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCrefrange] = ACTIONS(5767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnewlabel] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5767), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5767), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5767), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdef] = ACTIONS(5767), + [anon_sym_BSLASHlet] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5767), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5767), + [anon_sym_BSLASHgls] = ACTIONS(5767), + [anon_sym_BSLASHGls] = ACTIONS(5767), + [anon_sym_BSLASHGLS] = ACTIONS(5767), + [anon_sym_BSLASHglspl] = ACTIONS(5767), + [anon_sym_BSLASHGlspl] = ACTIONS(5767), + [anon_sym_BSLASHGLSpl] = ACTIONS(5767), + [anon_sym_BSLASHglsdisp] = ACTIONS(5767), + [anon_sym_BSLASHglslink] = ACTIONS(5767), + [anon_sym_BSLASHglstext] = ACTIONS(5767), + [anon_sym_BSLASHGlstext] = ACTIONS(5767), + [anon_sym_BSLASHGLStext] = ACTIONS(5767), + [anon_sym_BSLASHglsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5767), + [anon_sym_BSLASHglsplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSplural] = ACTIONS(5767), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHglsname] = ACTIONS(5767), + [anon_sym_BSLASHGlsname] = ACTIONS(5767), + [anon_sym_BSLASHGLSname] = ACTIONS(5767), + [anon_sym_BSLASHglssymbol] = ACTIONS(5767), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5767), + [anon_sym_BSLASHglsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5767), + [anon_sym_BSLASHglsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5767), + [anon_sym_BSLASHglsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5767), + [anon_sym_BSLASHglsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5767), + [anon_sym_BSLASHglsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5767), + [anon_sym_BSLASHnewacronym] = ACTIONS(5767), + [anon_sym_BSLASHacrshort] = ACTIONS(5767), + [anon_sym_BSLASHAcrshort] = ACTIONS(5767), + [anon_sym_BSLASHACRshort] = ACTIONS(5767), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5767), + [anon_sym_BSLASHacrlong] = ACTIONS(5767), + [anon_sym_BSLASHAcrlong] = ACTIONS(5767), + [anon_sym_BSLASHACRlong] = ACTIONS(5767), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5767), + [anon_sym_BSLASHacrfull] = ACTIONS(5767), + [anon_sym_BSLASHAcrfull] = ACTIONS(5767), + [anon_sym_BSLASHACRfull] = ACTIONS(5767), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5767), + [anon_sym_BSLASHacs] = ACTIONS(5767), + [anon_sym_BSLASHAcs] = ACTIONS(5767), + [anon_sym_BSLASHacsp] = ACTIONS(5767), + [anon_sym_BSLASHAcsp] = ACTIONS(5767), + [anon_sym_BSLASHacl] = ACTIONS(5767), + [anon_sym_BSLASHAcl] = ACTIONS(5767), + [anon_sym_BSLASHaclp] = ACTIONS(5767), + [anon_sym_BSLASHAclp] = ACTIONS(5767), + [anon_sym_BSLASHacf] = ACTIONS(5767), + [anon_sym_BSLASHAcf] = ACTIONS(5767), + [anon_sym_BSLASHacfp] = ACTIONS(5767), + [anon_sym_BSLASHAcfp] = ACTIONS(5767), + [anon_sym_BSLASHac] = ACTIONS(5767), + [anon_sym_BSLASHAc] = ACTIONS(5767), + [anon_sym_BSLASHacp] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5767), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5767), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5767), + [anon_sym_BSLASHcolor] = ACTIONS(5767), + [anon_sym_BSLASHcolorbox] = ACTIONS(5767), + [anon_sym_BSLASHtextcolor] = ACTIONS(5767), + [anon_sym_BSLASHpagecolor] = ACTIONS(5767), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5767), + [anon_sym_BSLASHtext] = ACTIONS(5767), + [anon_sym_BSLASHintertext] = ACTIONS(5767), + [anon_sym_shortintertext] = ACTIONS(5767), }, - [1245] = { - [sym_command_name] = ACTIONS(5613), + [703] = { + [sym_curly_group] = STATE(872), + [sym_brack_group_text] = STATE(2332), + [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_EQ] = ACTIONS(5615), - [anon_sym_BSLASHpart] = ACTIONS(5613), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), - [anon_sym_BSLASHaddpart] = ACTIONS(5613), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), - [anon_sym_BSLASHchapter] = ACTIONS(5613), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), - [anon_sym_BSLASHaddchap] = ACTIONS(5613), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), - [anon_sym_BSLASHsection] = ACTIONS(5613), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), - [anon_sym_BSLASHaddsec] = ACTIONS(5613), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), - [anon_sym_BSLASHsubsection] = ACTIONS(5613), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), - [anon_sym_BSLASHparagraph] = ACTIONS(5613), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), - [anon_sym_LBRACE] = ACTIONS(5615), - [sym_word] = ACTIONS(5613), - [sym_placeholder] = ACTIONS(5615), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5613), - [anon_sym__] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_BANG] = ACTIONS(5613), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5613), - [anon_sym_SQUOTE] = ACTIONS(5613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), - [anon_sym_BSLASHbegin] = ACTIONS(5613), - [anon_sym_BSLASHend] = ACTIONS(5613), - [anon_sym_BSLASHusepackage] = ACTIONS(5613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), - [anon_sym_BSLASHinclude] = ACTIONS(5613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), - [anon_sym_BSLASHinput] = ACTIONS(5613), - [anon_sym_BSLASHsubfile] = ACTIONS(5613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), - [anon_sym_BSLASHbibliography] = ACTIONS(5613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), - [anon_sym_BSLASHincludesvg] = ACTIONS(5613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), - [anon_sym_BSLASHimport] = ACTIONS(5613), - [anon_sym_BSLASHsubimport] = ACTIONS(5613), - [anon_sym_BSLASHinputfrom] = ACTIONS(5613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), - [anon_sym_BSLASHincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHcaption] = ACTIONS(5613), - [anon_sym_BSLASHcite] = ACTIONS(5613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCite] = ACTIONS(5613), - [anon_sym_BSLASHnocite] = ACTIONS(5613), - [anon_sym_BSLASHcitet] = ACTIONS(5613), - [anon_sym_BSLASHcitep] = ACTIONS(5613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteauthor] = ACTIONS(5613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitetitle] = ACTIONS(5613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteyear] = ACTIONS(5613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitedate] = ACTIONS(5613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteurl] = ACTIONS(5613), - [anon_sym_BSLASHfullcite] = ACTIONS(5613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), - [anon_sym_BSLASHcitealt] = ACTIONS(5613), - [anon_sym_BSLASHcitealp] = ACTIONS(5613), - [anon_sym_BSLASHcitetext] = ACTIONS(5613), - [anon_sym_BSLASHparencite] = ACTIONS(5613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHParencite] = ACTIONS(5613), - [anon_sym_BSLASHfootcite] = ACTIONS(5613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), - [anon_sym_BSLASHtextcite] = ACTIONS(5613), - [anon_sym_BSLASHTextcite] = ACTIONS(5613), - [anon_sym_BSLASHsmartcite] = ACTIONS(5613), - [anon_sym_BSLASHSmartcite] = ACTIONS(5613), - [anon_sym_BSLASHsupercite] = ACTIONS(5613), - [anon_sym_BSLASHautocite] = ACTIONS(5613), - [anon_sym_BSLASHAutocite] = ACTIONS(5613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHvolcite] = ACTIONS(5613), - [anon_sym_BSLASHVolcite] = ACTIONS(5613), - [anon_sym_BSLASHpvolcite] = ACTIONS(5613), - [anon_sym_BSLASHPvolcite] = ACTIONS(5613), - [anon_sym_BSLASHfvolcite] = ACTIONS(5613), - [anon_sym_BSLASHftvolcite] = ACTIONS(5613), - [anon_sym_BSLASHsvolcite] = ACTIONS(5613), - [anon_sym_BSLASHSvolcite] = ACTIONS(5613), - [anon_sym_BSLASHtvolcite] = ACTIONS(5613), - [anon_sym_BSLASHTvolcite] = ACTIONS(5613), - [anon_sym_BSLASHavolcite] = ACTIONS(5613), - [anon_sym_BSLASHAvolcite] = ACTIONS(5613), - [anon_sym_BSLASHnotecite] = ACTIONS(5613), - [anon_sym_BSLASHNotecite] = ACTIONS(5613), - [anon_sym_BSLASHpnotecite] = ACTIONS(5613), - [anon_sym_BSLASHPnotecite] = ACTIONS(5613), - [anon_sym_BSLASHfnotecite] = ACTIONS(5613), - [anon_sym_BSLASHlabel] = ACTIONS(5613), - [anon_sym_BSLASHref] = ACTIONS(5613), - [anon_sym_BSLASHeqref] = ACTIONS(5613), - [anon_sym_BSLASHvref] = ACTIONS(5613), - [anon_sym_BSLASHVref] = ACTIONS(5613), - [anon_sym_BSLASHautoref] = ACTIONS(5613), - [anon_sym_BSLASHpageref] = ACTIONS(5613), - [anon_sym_BSLASHcref] = ACTIONS(5613), - [anon_sym_BSLASHCref] = ACTIONS(5613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnameCref] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHlabelcref] = ACTIONS(5613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCrefrange] = ACTIONS(5613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnewlabel] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdef] = ACTIONS(5613), - [anon_sym_BSLASHlet] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), - [anon_sym_BSLASHgls] = ACTIONS(5613), - [anon_sym_BSLASHGls] = ACTIONS(5613), - [anon_sym_BSLASHGLS] = ACTIONS(5613), - [anon_sym_BSLASHglspl] = ACTIONS(5613), - [anon_sym_BSLASHGlspl] = ACTIONS(5613), - [anon_sym_BSLASHGLSpl] = ACTIONS(5613), - [anon_sym_BSLASHglsdisp] = ACTIONS(5613), - [anon_sym_BSLASHglslink] = ACTIONS(5613), - [anon_sym_BSLASHglstext] = ACTIONS(5613), - [anon_sym_BSLASHGlstext] = ACTIONS(5613), - [anon_sym_BSLASHGLStext] = ACTIONS(5613), - [anon_sym_BSLASHglsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), - [anon_sym_BSLASHglsplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSplural] = ACTIONS(5613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHglsname] = ACTIONS(5613), - [anon_sym_BSLASHGlsname] = ACTIONS(5613), - [anon_sym_BSLASHGLSname] = ACTIONS(5613), - [anon_sym_BSLASHglssymbol] = ACTIONS(5613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), - [anon_sym_BSLASHglsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), - [anon_sym_BSLASHglsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), - [anon_sym_BSLASHglsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), - [anon_sym_BSLASHglsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), - [anon_sym_BSLASHglsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), - [anon_sym_BSLASHnewacronym] = ACTIONS(5613), - [anon_sym_BSLASHacrshort] = ACTIONS(5613), - [anon_sym_BSLASHAcrshort] = ACTIONS(5613), - [anon_sym_BSLASHACRshort] = ACTIONS(5613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), - [anon_sym_BSLASHacrlong] = ACTIONS(5613), - [anon_sym_BSLASHAcrlong] = ACTIONS(5613), - [anon_sym_BSLASHACRlong] = ACTIONS(5613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), - [anon_sym_BSLASHacrfull] = ACTIONS(5613), - [anon_sym_BSLASHAcrfull] = ACTIONS(5613), - [anon_sym_BSLASHACRfull] = ACTIONS(5613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), - [anon_sym_BSLASHacs] = ACTIONS(5613), - [anon_sym_BSLASHAcs] = ACTIONS(5613), - [anon_sym_BSLASHacsp] = ACTIONS(5613), - [anon_sym_BSLASHAcsp] = ACTIONS(5613), - [anon_sym_BSLASHacl] = ACTIONS(5613), - [anon_sym_BSLASHAcl] = ACTIONS(5613), - [anon_sym_BSLASHaclp] = ACTIONS(5613), - [anon_sym_BSLASHAclp] = ACTIONS(5613), - [anon_sym_BSLASHacf] = ACTIONS(5613), - [anon_sym_BSLASHAcf] = ACTIONS(5613), - [anon_sym_BSLASHacfp] = ACTIONS(5613), - [anon_sym_BSLASHAcfp] = ACTIONS(5613), - [anon_sym_BSLASHac] = ACTIONS(5613), - [anon_sym_BSLASHAc] = ACTIONS(5613), - [anon_sym_BSLASHacp] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), - [anon_sym_BSLASHcolor] = ACTIONS(5613), - [anon_sym_BSLASHcolorbox] = ACTIONS(5613), - [anon_sym_BSLASHtextcolor] = ACTIONS(5613), - [anon_sym_BSLASHpagecolor] = ACTIONS(5613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), - [anon_sym_BSLASHtext] = ACTIONS(5613), - [anon_sym_BSLASHintertext] = ACTIONS(5613), - [anon_sym_shortintertext] = ACTIONS(5613), - }, - [1246] = { - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_BSLASHpart] = ACTIONS(5423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddpart] = ACTIONS(5423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5421), - [anon_sym_BSLASHchapter] = ACTIONS(5423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddchap] = ACTIONS(5423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsection] = ACTIONS(5423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHaddsec] = ACTIONS(5423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5421), - [anon_sym_BSLASHparagraph] = ACTIONS(5423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5421), - [anon_sym_BSLASHitem] = ACTIONS(5423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHend] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), - }, - [1247] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_BSLASHpart] = ACTIONS(5427), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddpart] = ACTIONS(5427), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5425), - [anon_sym_BSLASHchapter] = ACTIONS(5427), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddchap] = ACTIONS(5427), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsection] = ACTIONS(5427), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHaddsec] = ACTIONS(5427), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5427), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5425), - [anon_sym_BSLASHparagraph] = ACTIONS(5427), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5427), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5425), - [anon_sym_BSLASHitem] = ACTIONS(5427), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHend] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_BSLASHpart] = ACTIONS(5353), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddpart] = ACTIONS(5353), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHchapter] = ACTIONS(5353), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddchap] = ACTIONS(5353), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsection] = ACTIONS(5353), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddsec] = ACTIONS(5353), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHparagraph] = ACTIONS(5353), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHitem] = ACTIONS(5353), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1248] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASHpart] = ACTIONS(5435), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddpart] = ACTIONS(5435), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5433), - [anon_sym_BSLASHchapter] = ACTIONS(5435), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddchap] = ACTIONS(5435), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsection] = ACTIONS(5435), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHaddsec] = ACTIONS(5435), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5435), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5433), - [anon_sym_BSLASHparagraph] = ACTIONS(5435), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5435), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5433), - [anon_sym_BSLASHitem] = ACTIONS(5435), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHend] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), + [704] = { + [sym_curly_group] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(5769), + [sym_command_name] = ACTIONS(5771), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_RBRACK] = ACTIONS(5769), + [anon_sym_COMMA] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5769), + [anon_sym_BSLASHpart] = ACTIONS(5771), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddpart] = ACTIONS(5771), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHchapter] = ACTIONS(5771), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddchap] = ACTIONS(5771), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsection] = ACTIONS(5771), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddsec] = ACTIONS(5771), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHparagraph] = ACTIONS(5771), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5771), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHitem] = ACTIONS(5771), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(5769), + [sym_word] = ACTIONS(5771), + [sym_placeholder] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_SLASH] = ACTIONS(5771), + [anon_sym_CARET] = ACTIONS(5771), + [anon_sym__] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5771), + [anon_sym_GT] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5771), + [anon_sym_PIPE] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_SQUOTE] = ACTIONS(5771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5771), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5769), + [anon_sym_BSLASHbegin] = ACTIONS(5771), + [anon_sym_BSLASHtitle] = ACTIONS(5771), + [anon_sym_BSLASHauthor] = ACTIONS(5771), + [anon_sym_BSLASHusepackage] = ACTIONS(5771), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5771), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5771), + [anon_sym_BSLASHinclude] = ACTIONS(5771), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5771), + [anon_sym_BSLASHinput] = ACTIONS(5771), + [anon_sym_BSLASHsubfile] = ACTIONS(5771), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5771), + [anon_sym_BSLASHbibliography] = ACTIONS(5771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5771), + [anon_sym_BSLASHincludesvg] = ACTIONS(5771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5771), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5771), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5771), + [anon_sym_BSLASHimport] = ACTIONS(5771), + [anon_sym_BSLASHsubimport] = ACTIONS(5771), + [anon_sym_BSLASHinputfrom] = ACTIONS(5771), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5771), + [anon_sym_BSLASHincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHcaption] = ACTIONS(5771), + [anon_sym_BSLASHcite] = ACTIONS(5771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCite] = ACTIONS(5771), + [anon_sym_BSLASHnocite] = ACTIONS(5771), + [anon_sym_BSLASHcitet] = ACTIONS(5771), + [anon_sym_BSLASHcitep] = ACTIONS(5771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteauthor] = ACTIONS(5771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitetitle] = ACTIONS(5771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteyear] = ACTIONS(5771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitedate] = ACTIONS(5771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteurl] = ACTIONS(5771), + [anon_sym_BSLASHfullcite] = ACTIONS(5771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5771), + [anon_sym_BSLASHcitealt] = ACTIONS(5771), + [anon_sym_BSLASHcitealp] = ACTIONS(5771), + [anon_sym_BSLASHcitetext] = ACTIONS(5771), + [anon_sym_BSLASHparencite] = ACTIONS(5771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHParencite] = ACTIONS(5771), + [anon_sym_BSLASHfootcite] = ACTIONS(5771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5771), + [anon_sym_BSLASHtextcite] = ACTIONS(5771), + [anon_sym_BSLASHTextcite] = ACTIONS(5771), + [anon_sym_BSLASHsmartcite] = ACTIONS(5771), + [anon_sym_BSLASHSmartcite] = ACTIONS(5771), + [anon_sym_BSLASHsupercite] = ACTIONS(5771), + [anon_sym_BSLASHautocite] = ACTIONS(5771), + [anon_sym_BSLASHAutocite] = ACTIONS(5771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHvolcite] = ACTIONS(5771), + [anon_sym_BSLASHVolcite] = ACTIONS(5771), + [anon_sym_BSLASHpvolcite] = ACTIONS(5771), + [anon_sym_BSLASHPvolcite] = ACTIONS(5771), + [anon_sym_BSLASHfvolcite] = ACTIONS(5771), + [anon_sym_BSLASHftvolcite] = ACTIONS(5771), + [anon_sym_BSLASHsvolcite] = ACTIONS(5771), + [anon_sym_BSLASHSvolcite] = ACTIONS(5771), + [anon_sym_BSLASHtvolcite] = ACTIONS(5771), + [anon_sym_BSLASHTvolcite] = ACTIONS(5771), + [anon_sym_BSLASHavolcite] = ACTIONS(5771), + [anon_sym_BSLASHAvolcite] = ACTIONS(5771), + [anon_sym_BSLASHnotecite] = ACTIONS(5771), + [anon_sym_BSLASHNotecite] = ACTIONS(5771), + [anon_sym_BSLASHpnotecite] = ACTIONS(5771), + [anon_sym_BSLASHPnotecite] = ACTIONS(5771), + [anon_sym_BSLASHfnotecite] = ACTIONS(5771), + [anon_sym_BSLASHlabel] = ACTIONS(5771), + [anon_sym_BSLASHref] = ACTIONS(5771), + [anon_sym_BSLASHeqref] = ACTIONS(5771), + [anon_sym_BSLASHvref] = ACTIONS(5771), + [anon_sym_BSLASHVref] = ACTIONS(5771), + [anon_sym_BSLASHautoref] = ACTIONS(5771), + [anon_sym_BSLASHpageref] = ACTIONS(5771), + [anon_sym_BSLASHcref] = ACTIONS(5771), + [anon_sym_BSLASHCref] = ACTIONS(5771), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnameCref] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHlabelcref] = ACTIONS(5771), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCrefrange] = ACTIONS(5771), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnewlabel] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5771), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5771), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5771), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdef] = ACTIONS(5771), + [anon_sym_BSLASHlet] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5771), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5771), + [anon_sym_BSLASHgls] = ACTIONS(5771), + [anon_sym_BSLASHGls] = ACTIONS(5771), + [anon_sym_BSLASHGLS] = ACTIONS(5771), + [anon_sym_BSLASHglspl] = ACTIONS(5771), + [anon_sym_BSLASHGlspl] = ACTIONS(5771), + [anon_sym_BSLASHGLSpl] = ACTIONS(5771), + [anon_sym_BSLASHglsdisp] = ACTIONS(5771), + [anon_sym_BSLASHglslink] = ACTIONS(5771), + [anon_sym_BSLASHglstext] = ACTIONS(5771), + [anon_sym_BSLASHGlstext] = ACTIONS(5771), + [anon_sym_BSLASHGLStext] = ACTIONS(5771), + [anon_sym_BSLASHglsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5771), + [anon_sym_BSLASHglsplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSplural] = ACTIONS(5771), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHglsname] = ACTIONS(5771), + [anon_sym_BSLASHGlsname] = ACTIONS(5771), + [anon_sym_BSLASHGLSname] = ACTIONS(5771), + [anon_sym_BSLASHglssymbol] = ACTIONS(5771), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5771), + [anon_sym_BSLASHglsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5771), + [anon_sym_BSLASHglsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5771), + [anon_sym_BSLASHglsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5771), + [anon_sym_BSLASHglsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5771), + [anon_sym_BSLASHglsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5771), + [anon_sym_BSLASHnewacronym] = ACTIONS(5771), + [anon_sym_BSLASHacrshort] = ACTIONS(5771), + [anon_sym_BSLASHAcrshort] = ACTIONS(5771), + [anon_sym_BSLASHACRshort] = ACTIONS(5771), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5771), + [anon_sym_BSLASHacrlong] = ACTIONS(5771), + [anon_sym_BSLASHAcrlong] = ACTIONS(5771), + [anon_sym_BSLASHACRlong] = ACTIONS(5771), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5771), + [anon_sym_BSLASHacrfull] = ACTIONS(5771), + [anon_sym_BSLASHAcrfull] = ACTIONS(5771), + [anon_sym_BSLASHACRfull] = ACTIONS(5771), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5771), + [anon_sym_BSLASHacs] = ACTIONS(5771), + [anon_sym_BSLASHAcs] = ACTIONS(5771), + [anon_sym_BSLASHacsp] = ACTIONS(5771), + [anon_sym_BSLASHAcsp] = ACTIONS(5771), + [anon_sym_BSLASHacl] = ACTIONS(5771), + [anon_sym_BSLASHAcl] = ACTIONS(5771), + [anon_sym_BSLASHaclp] = ACTIONS(5771), + [anon_sym_BSLASHAclp] = ACTIONS(5771), + [anon_sym_BSLASHacf] = ACTIONS(5771), + [anon_sym_BSLASHAcf] = ACTIONS(5771), + [anon_sym_BSLASHacfp] = ACTIONS(5771), + [anon_sym_BSLASHAcfp] = ACTIONS(5771), + [anon_sym_BSLASHac] = ACTIONS(5771), + [anon_sym_BSLASHAc] = ACTIONS(5771), + [anon_sym_BSLASHacp] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5771), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5771), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5771), + [anon_sym_BSLASHcolor] = ACTIONS(5771), + [anon_sym_BSLASHcolorbox] = ACTIONS(5771), + [anon_sym_BSLASHtextcolor] = ACTIONS(5771), + [anon_sym_BSLASHpagecolor] = ACTIONS(5771), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5771), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5771), + [anon_sym_BSLASHtext] = ACTIONS(5771), + [anon_sym_BSLASHintertext] = ACTIONS(5771), + [anon_sym_shortintertext] = ACTIONS(5771), }, - [1249] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_BSLASHpart] = ACTIONS(5439), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddpart] = ACTIONS(5439), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5437), - [anon_sym_BSLASHchapter] = ACTIONS(5439), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddchap] = ACTIONS(5439), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsection] = ACTIONS(5439), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHaddsec] = ACTIONS(5439), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5439), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5437), - [anon_sym_BSLASHparagraph] = ACTIONS(5439), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5439), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5437), - [anon_sym_BSLASHitem] = ACTIONS(5439), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHend] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), + [705] = { + [sym_brack_group_text] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(5773), + [sym_command_name] = ACTIONS(5775), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5773), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_BSLASHpart] = ACTIONS(5775), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddpart] = ACTIONS(5775), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHchapter] = ACTIONS(5775), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddchap] = ACTIONS(5775), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsection] = ACTIONS(5775), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddsec] = ACTIONS(5775), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHparagraph] = ACTIONS(5775), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5775), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHitem] = ACTIONS(5775), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5773), + [anon_sym_RBRACE] = ACTIONS(5773), + [sym_word] = ACTIONS(5775), + [sym_placeholder] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_SLASH] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5775), + [anon_sym__] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5775), + [anon_sym_PIPE] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_SQUOTE] = ACTIONS(5775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5775), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5773), + [anon_sym_BSLASHbegin] = ACTIONS(5775), + [anon_sym_BSLASHtitle] = ACTIONS(5775), + [anon_sym_BSLASHauthor] = ACTIONS(5775), + [anon_sym_BSLASHusepackage] = ACTIONS(5775), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5775), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5775), + [anon_sym_BSLASHinclude] = ACTIONS(5775), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5775), + [anon_sym_BSLASHinput] = ACTIONS(5775), + [anon_sym_BSLASHsubfile] = ACTIONS(5775), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5775), + [anon_sym_BSLASHbibliography] = ACTIONS(5775), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5775), + [anon_sym_BSLASHincludesvg] = ACTIONS(5775), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5775), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5775), + [anon_sym_BSLASHimport] = ACTIONS(5775), + [anon_sym_BSLASHsubimport] = ACTIONS(5775), + [anon_sym_BSLASHinputfrom] = ACTIONS(5775), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5775), + [anon_sym_BSLASHincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHcaption] = ACTIONS(5775), + [anon_sym_BSLASHcite] = ACTIONS(5775), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCite] = ACTIONS(5775), + [anon_sym_BSLASHnocite] = ACTIONS(5775), + [anon_sym_BSLASHcitet] = ACTIONS(5775), + [anon_sym_BSLASHcitep] = ACTIONS(5775), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteauthor] = ACTIONS(5775), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5775), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitetitle] = ACTIONS(5775), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteyear] = ACTIONS(5775), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitedate] = ACTIONS(5775), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteurl] = ACTIONS(5775), + [anon_sym_BSLASHfullcite] = ACTIONS(5775), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5775), + [anon_sym_BSLASHcitealt] = ACTIONS(5775), + [anon_sym_BSLASHcitealp] = ACTIONS(5775), + [anon_sym_BSLASHcitetext] = ACTIONS(5775), + [anon_sym_BSLASHparencite] = ACTIONS(5775), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHParencite] = ACTIONS(5775), + [anon_sym_BSLASHfootcite] = ACTIONS(5775), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5775), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5775), + [anon_sym_BSLASHtextcite] = ACTIONS(5775), + [anon_sym_BSLASHTextcite] = ACTIONS(5775), + [anon_sym_BSLASHsmartcite] = ACTIONS(5775), + [anon_sym_BSLASHSmartcite] = ACTIONS(5775), + [anon_sym_BSLASHsupercite] = ACTIONS(5775), + [anon_sym_BSLASHautocite] = ACTIONS(5775), + [anon_sym_BSLASHAutocite] = ACTIONS(5775), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHvolcite] = ACTIONS(5775), + [anon_sym_BSLASHVolcite] = ACTIONS(5775), + [anon_sym_BSLASHpvolcite] = ACTIONS(5775), + [anon_sym_BSLASHPvolcite] = ACTIONS(5775), + [anon_sym_BSLASHfvolcite] = ACTIONS(5775), + [anon_sym_BSLASHftvolcite] = ACTIONS(5775), + [anon_sym_BSLASHsvolcite] = ACTIONS(5775), + [anon_sym_BSLASHSvolcite] = ACTIONS(5775), + [anon_sym_BSLASHtvolcite] = ACTIONS(5775), + [anon_sym_BSLASHTvolcite] = ACTIONS(5775), + [anon_sym_BSLASHavolcite] = ACTIONS(5775), + [anon_sym_BSLASHAvolcite] = ACTIONS(5775), + [anon_sym_BSLASHnotecite] = ACTIONS(5775), + [anon_sym_BSLASHNotecite] = ACTIONS(5775), + [anon_sym_BSLASHpnotecite] = ACTIONS(5775), + [anon_sym_BSLASHPnotecite] = ACTIONS(5775), + [anon_sym_BSLASHfnotecite] = ACTIONS(5775), + [anon_sym_BSLASHlabel] = ACTIONS(5775), + [anon_sym_BSLASHref] = ACTIONS(5775), + [anon_sym_BSLASHeqref] = ACTIONS(5775), + [anon_sym_BSLASHvref] = ACTIONS(5775), + [anon_sym_BSLASHVref] = ACTIONS(5775), + [anon_sym_BSLASHautoref] = ACTIONS(5775), + [anon_sym_BSLASHpageref] = ACTIONS(5775), + [anon_sym_BSLASHcref] = ACTIONS(5775), + [anon_sym_BSLASHCref] = ACTIONS(5775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnameCref] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHlabelcref] = ACTIONS(5775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCrefrange] = ACTIONS(5775), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnewlabel] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5775), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5775), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5775), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdef] = ACTIONS(5775), + [anon_sym_BSLASHlet] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5775), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5775), + [anon_sym_BSLASHgls] = ACTIONS(5775), + [anon_sym_BSLASHGls] = ACTIONS(5775), + [anon_sym_BSLASHGLS] = ACTIONS(5775), + [anon_sym_BSLASHglspl] = ACTIONS(5775), + [anon_sym_BSLASHGlspl] = ACTIONS(5775), + [anon_sym_BSLASHGLSpl] = ACTIONS(5775), + [anon_sym_BSLASHglsdisp] = ACTIONS(5775), + [anon_sym_BSLASHglslink] = ACTIONS(5775), + [anon_sym_BSLASHglstext] = ACTIONS(5775), + [anon_sym_BSLASHGlstext] = ACTIONS(5775), + [anon_sym_BSLASHGLStext] = ACTIONS(5775), + [anon_sym_BSLASHglsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5775), + [anon_sym_BSLASHglsplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSplural] = ACTIONS(5775), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHglsname] = ACTIONS(5775), + [anon_sym_BSLASHGlsname] = ACTIONS(5775), + [anon_sym_BSLASHGLSname] = ACTIONS(5775), + [anon_sym_BSLASHglssymbol] = ACTIONS(5775), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5775), + [anon_sym_BSLASHglsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5775), + [anon_sym_BSLASHglsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5775), + [anon_sym_BSLASHglsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5775), + [anon_sym_BSLASHglsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5775), + [anon_sym_BSLASHglsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5775), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [anon_sym_BSLASHacrshort] = ACTIONS(5775), + [anon_sym_BSLASHAcrshort] = ACTIONS(5775), + [anon_sym_BSLASHACRshort] = ACTIONS(5775), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5775), + [anon_sym_BSLASHacrlong] = ACTIONS(5775), + [anon_sym_BSLASHAcrlong] = ACTIONS(5775), + [anon_sym_BSLASHACRlong] = ACTIONS(5775), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5775), + [anon_sym_BSLASHacrfull] = ACTIONS(5775), + [anon_sym_BSLASHAcrfull] = ACTIONS(5775), + [anon_sym_BSLASHACRfull] = ACTIONS(5775), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5775), + [anon_sym_BSLASHacs] = ACTIONS(5775), + [anon_sym_BSLASHAcs] = ACTIONS(5775), + [anon_sym_BSLASHacsp] = ACTIONS(5775), + [anon_sym_BSLASHAcsp] = ACTIONS(5775), + [anon_sym_BSLASHacl] = ACTIONS(5775), + [anon_sym_BSLASHAcl] = ACTIONS(5775), + [anon_sym_BSLASHaclp] = ACTIONS(5775), + [anon_sym_BSLASHAclp] = ACTIONS(5775), + [anon_sym_BSLASHacf] = ACTIONS(5775), + [anon_sym_BSLASHAcf] = ACTIONS(5775), + [anon_sym_BSLASHacfp] = ACTIONS(5775), + [anon_sym_BSLASHAcfp] = ACTIONS(5775), + [anon_sym_BSLASHac] = ACTIONS(5775), + [anon_sym_BSLASHAc] = ACTIONS(5775), + [anon_sym_BSLASHacp] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5775), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5775), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5775), + [anon_sym_BSLASHcolor] = ACTIONS(5775), + [anon_sym_BSLASHcolorbox] = ACTIONS(5775), + [anon_sym_BSLASHtextcolor] = ACTIONS(5775), + [anon_sym_BSLASHpagecolor] = ACTIONS(5775), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5775), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5775), + [anon_sym_BSLASHtext] = ACTIONS(5775), + [anon_sym_BSLASHintertext] = ACTIONS(5775), + [anon_sym_shortintertext] = ACTIONS(5775), }, - [1250] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASHpart] = ACTIONS(5443), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddpart] = ACTIONS(5443), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5441), - [anon_sym_BSLASHchapter] = ACTIONS(5443), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddchap] = ACTIONS(5443), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsection] = ACTIONS(5443), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHaddsec] = ACTIONS(5443), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5443), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5441), - [anon_sym_BSLASHparagraph] = ACTIONS(5443), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5443), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5441), - [anon_sym_BSLASHitem] = ACTIONS(5443), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHend] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), + [706] = { + [sym_block_comment] = STATE(1724), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(696), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1251] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_BSLASHpart] = ACTIONS(5447), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddpart] = ACTIONS(5447), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5445), - [anon_sym_BSLASHchapter] = ACTIONS(5447), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddchap] = ACTIONS(5447), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsection] = ACTIONS(5447), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHaddsec] = ACTIONS(5447), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5447), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5445), - [anon_sym_BSLASHparagraph] = ACTIONS(5447), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5447), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5445), - [anon_sym_BSLASHitem] = ACTIONS(5447), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHend] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), + [707] = { + [sym_curly_group] = STATE(840), + [sym_brack_group_text] = STATE(2100), + [sym_command_name] = ACTIONS(5353), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_BSLASHpart] = ACTIONS(5353), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddpart] = ACTIONS(5353), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHchapter] = ACTIONS(5353), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddchap] = ACTIONS(5353), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsection] = ACTIONS(5353), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddsec] = ACTIONS(5353), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHparagraph] = ACTIONS(5353), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHitem] = ACTIONS(5353), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1252] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASHpart] = ACTIONS(5451), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddpart] = ACTIONS(5451), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5449), - [anon_sym_BSLASHchapter] = ACTIONS(5451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddchap] = ACTIONS(5451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsection] = ACTIONS(5451), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHaddsec] = ACTIONS(5451), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5451), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5449), - [anon_sym_BSLASHparagraph] = ACTIONS(5451), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5451), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5449), - [anon_sym_BSLASHitem] = ACTIONS(5451), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHend] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), + [708] = { + [ts_builtin_sym_end] = ACTIONS(5777), + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(5781), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_BSLASHpart] = ACTIONS(5779), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddpart] = ACTIONS(5779), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHchapter] = ACTIONS(5779), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddchap] = ACTIONS(5779), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsection] = ACTIONS(5779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddsec] = ACTIONS(5779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHparagraph] = ACTIONS(5779), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5779), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHitem] = ACTIONS(5779), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), }, - [1253] = { - [sym_command_name] = ACTIONS(5125), + [709] = { + [sym_brack_group_text] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(5783), + [sym_command_name] = ACTIONS(5785), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHend] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_BSLASHpart] = ACTIONS(5785), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddpart] = ACTIONS(5785), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHchapter] = ACTIONS(5785), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddchap] = ACTIONS(5785), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsection] = ACTIONS(5785), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddsec] = ACTIONS(5785), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHparagraph] = ACTIONS(5785), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5785), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHitem] = ACTIONS(5785), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1254] = { - [sym_command_name] = ACTIONS(5617), + [710] = { + [sym_curly_group] = STATE(740), + [sym_brack_group_text] = STATE(2586), + [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5617), - [anon_sym_LPAREN] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_BSLASHpart] = ACTIONS(5617), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5619), - [anon_sym_BSLASHaddpart] = ACTIONS(5617), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5619), - [anon_sym_BSLASHchapter] = ACTIONS(5617), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5619), - [anon_sym_BSLASHaddchap] = ACTIONS(5617), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5619), - [anon_sym_BSLASHsection] = ACTIONS(5617), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5619), - [anon_sym_BSLASHaddsec] = ACTIONS(5617), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5619), - [anon_sym_BSLASHsubsection] = ACTIONS(5617), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5619), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5619), - [anon_sym_BSLASHparagraph] = ACTIONS(5617), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5619), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5619), - [anon_sym_BSLASHitem] = ACTIONS(5617), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5619), - [anon_sym_LBRACE] = ACTIONS(5619), - [sym_word] = ACTIONS(5617), - [sym_placeholder] = ACTIONS(5619), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym__] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_BANG] = ACTIONS(5617), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_SQUOTE] = ACTIONS(5617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5619), - [anon_sym_DOLLAR] = ACTIONS(5617), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5619), - [anon_sym_BSLASHbegin] = ACTIONS(5617), - [anon_sym_BSLASHend] = ACTIONS(5617), - [anon_sym_BSLASHusepackage] = ACTIONS(5617), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), - [anon_sym_BSLASHinclude] = ACTIONS(5617), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), - [anon_sym_BSLASHinput] = ACTIONS(5617), - [anon_sym_BSLASHsubfile] = ACTIONS(5617), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), - [anon_sym_BSLASHbibliography] = ACTIONS(5617), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), - [anon_sym_BSLASHincludesvg] = ACTIONS(5617), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), - [anon_sym_BSLASHimport] = ACTIONS(5617), - [anon_sym_BSLASHsubimport] = ACTIONS(5617), - [anon_sym_BSLASHinputfrom] = ACTIONS(5617), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), - [anon_sym_BSLASHincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHcaption] = ACTIONS(5617), - [anon_sym_BSLASHcite] = ACTIONS(5617), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCite] = ACTIONS(5617), - [anon_sym_BSLASHnocite] = ACTIONS(5617), - [anon_sym_BSLASHcitet] = ACTIONS(5617), - [anon_sym_BSLASHcitep] = ACTIONS(5617), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteauthor] = ACTIONS(5617), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitetitle] = ACTIONS(5617), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteyear] = ACTIONS(5617), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitedate] = ACTIONS(5617), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteurl] = ACTIONS(5617), - [anon_sym_BSLASHfullcite] = ACTIONS(5617), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), - [anon_sym_BSLASHcitealt] = ACTIONS(5617), - [anon_sym_BSLASHcitealp] = ACTIONS(5617), - [anon_sym_BSLASHcitetext] = ACTIONS(5617), - [anon_sym_BSLASHparencite] = ACTIONS(5617), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHParencite] = ACTIONS(5617), - [anon_sym_BSLASHfootcite] = ACTIONS(5617), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), - [anon_sym_BSLASHtextcite] = ACTIONS(5617), - [anon_sym_BSLASHTextcite] = ACTIONS(5617), - [anon_sym_BSLASHsmartcite] = ACTIONS(5617), - [anon_sym_BSLASHSmartcite] = ACTIONS(5617), - [anon_sym_BSLASHsupercite] = ACTIONS(5617), - [anon_sym_BSLASHautocite] = ACTIONS(5617), - [anon_sym_BSLASHAutocite] = ACTIONS(5617), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHvolcite] = ACTIONS(5617), - [anon_sym_BSLASHVolcite] = ACTIONS(5617), - [anon_sym_BSLASHpvolcite] = ACTIONS(5617), - [anon_sym_BSLASHPvolcite] = ACTIONS(5617), - [anon_sym_BSLASHfvolcite] = ACTIONS(5617), - [anon_sym_BSLASHftvolcite] = ACTIONS(5617), - [anon_sym_BSLASHsvolcite] = ACTIONS(5617), - [anon_sym_BSLASHSvolcite] = ACTIONS(5617), - [anon_sym_BSLASHtvolcite] = ACTIONS(5617), - [anon_sym_BSLASHTvolcite] = ACTIONS(5617), - [anon_sym_BSLASHavolcite] = ACTIONS(5617), - [anon_sym_BSLASHAvolcite] = ACTIONS(5617), - [anon_sym_BSLASHnotecite] = ACTIONS(5617), - [anon_sym_BSLASHNotecite] = ACTIONS(5617), - [anon_sym_BSLASHpnotecite] = ACTIONS(5617), - [anon_sym_BSLASHPnotecite] = ACTIONS(5617), - [anon_sym_BSLASHfnotecite] = ACTIONS(5617), - [anon_sym_BSLASHlabel] = ACTIONS(5617), - [anon_sym_BSLASHref] = ACTIONS(5617), - [anon_sym_BSLASHeqref] = ACTIONS(5617), - [anon_sym_BSLASHvref] = ACTIONS(5617), - [anon_sym_BSLASHVref] = ACTIONS(5617), - [anon_sym_BSLASHautoref] = ACTIONS(5617), - [anon_sym_BSLASHpageref] = ACTIONS(5617), - [anon_sym_BSLASHcref] = ACTIONS(5617), - [anon_sym_BSLASHCref] = ACTIONS(5617), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnameCref] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHlabelcref] = ACTIONS(5617), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCrefrange] = ACTIONS(5617), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnewlabel] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdef] = ACTIONS(5617), - [anon_sym_BSLASHlet] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), - [anon_sym_BSLASHgls] = ACTIONS(5617), - [anon_sym_BSLASHGls] = ACTIONS(5617), - [anon_sym_BSLASHGLS] = ACTIONS(5617), - [anon_sym_BSLASHglspl] = ACTIONS(5617), - [anon_sym_BSLASHGlspl] = ACTIONS(5617), - [anon_sym_BSLASHGLSpl] = ACTIONS(5617), - [anon_sym_BSLASHglsdisp] = ACTIONS(5617), - [anon_sym_BSLASHglslink] = ACTIONS(5617), - [anon_sym_BSLASHglstext] = ACTIONS(5617), - [anon_sym_BSLASHGlstext] = ACTIONS(5617), - [anon_sym_BSLASHGLStext] = ACTIONS(5617), - [anon_sym_BSLASHglsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), - [anon_sym_BSLASHglsplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSplural] = ACTIONS(5617), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHglsname] = ACTIONS(5617), - [anon_sym_BSLASHGlsname] = ACTIONS(5617), - [anon_sym_BSLASHGLSname] = ACTIONS(5617), - [anon_sym_BSLASHglssymbol] = ACTIONS(5617), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), - [anon_sym_BSLASHglsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), - [anon_sym_BSLASHglsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), - [anon_sym_BSLASHglsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), - [anon_sym_BSLASHglsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), - [anon_sym_BSLASHglsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), - [anon_sym_BSLASHnewacronym] = ACTIONS(5617), - [anon_sym_BSLASHacrshort] = ACTIONS(5617), - [anon_sym_BSLASHAcrshort] = ACTIONS(5617), - [anon_sym_BSLASHACRshort] = ACTIONS(5617), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), - [anon_sym_BSLASHacrlong] = ACTIONS(5617), - [anon_sym_BSLASHAcrlong] = ACTIONS(5617), - [anon_sym_BSLASHACRlong] = ACTIONS(5617), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), - [anon_sym_BSLASHacrfull] = ACTIONS(5617), - [anon_sym_BSLASHAcrfull] = ACTIONS(5617), - [anon_sym_BSLASHACRfull] = ACTIONS(5617), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), - [anon_sym_BSLASHacs] = ACTIONS(5617), - [anon_sym_BSLASHAcs] = ACTIONS(5617), - [anon_sym_BSLASHacsp] = ACTIONS(5617), - [anon_sym_BSLASHAcsp] = ACTIONS(5617), - [anon_sym_BSLASHacl] = ACTIONS(5617), - [anon_sym_BSLASHAcl] = ACTIONS(5617), - [anon_sym_BSLASHaclp] = ACTIONS(5617), - [anon_sym_BSLASHAclp] = ACTIONS(5617), - [anon_sym_BSLASHacf] = ACTIONS(5617), - [anon_sym_BSLASHAcf] = ACTIONS(5617), - [anon_sym_BSLASHacfp] = ACTIONS(5617), - [anon_sym_BSLASHAcfp] = ACTIONS(5617), - [anon_sym_BSLASHac] = ACTIONS(5617), - [anon_sym_BSLASHAc] = ACTIONS(5617), - [anon_sym_BSLASHacp] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), - [anon_sym_BSLASHcolor] = ACTIONS(5617), - [anon_sym_BSLASHcolorbox] = ACTIONS(5617), - [anon_sym_BSLASHtextcolor] = ACTIONS(5617), - [anon_sym_BSLASHpagecolor] = ACTIONS(5617), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), - [anon_sym_BSLASHtext] = ACTIONS(5617), - [anon_sym_BSLASHintertext] = ACTIONS(5617), - [anon_sym_shortintertext] = ACTIONS(5617), - }, - [1255] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), - }, - [1256] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_BSLASHpart] = ACTIONS(5459), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddpart] = ACTIONS(5459), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5457), - [anon_sym_BSLASHchapter] = ACTIONS(5459), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddchap] = ACTIONS(5459), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsection] = ACTIONS(5459), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHaddsec] = ACTIONS(5459), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5459), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5457), - [anon_sym_BSLASHparagraph] = ACTIONS(5459), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5459), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5457), - [anon_sym_BSLASHitem] = ACTIONS(5459), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHend] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), - }, - [1257] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_BSLASHpart] = ACTIONS(5463), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddpart] = ACTIONS(5463), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5461), - [anon_sym_BSLASHchapter] = ACTIONS(5463), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddchap] = ACTIONS(5463), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsection] = ACTIONS(5463), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHaddsec] = ACTIONS(5463), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5463), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5461), - [anon_sym_BSLASHparagraph] = ACTIONS(5463), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5463), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5461), - [anon_sym_BSLASHitem] = ACTIONS(5463), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHend] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_BSLASHpart] = ACTIONS(5353), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddpart] = ACTIONS(5353), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHchapter] = ACTIONS(5353), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddchap] = ACTIONS(5353), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsection] = ACTIONS(5353), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddsec] = ACTIONS(5353), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHparagraph] = ACTIONS(5353), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHitem] = ACTIONS(5353), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1258] = { - [sym_command_name] = ACTIONS(5467), + [711] = { + [sym_curly_group] = STATE(756), + [sym_brack_group_text] = STATE(2672), + [sym_command_name] = ACTIONS(5417), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_BSLASHpart] = ACTIONS(5467), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddpart] = ACTIONS(5467), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5465), - [anon_sym_BSLASHchapter] = ACTIONS(5467), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddchap] = ACTIONS(5467), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsection] = ACTIONS(5467), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHaddsec] = ACTIONS(5467), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5467), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5465), - [anon_sym_BSLASHparagraph] = ACTIONS(5467), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5467), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5465), - [anon_sym_BSLASHitem] = ACTIONS(5467), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHend] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), - }, - [1259] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_BSLASHpart] = ACTIONS(5471), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddpart] = ACTIONS(5471), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5469), - [anon_sym_BSLASHchapter] = ACTIONS(5471), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddchap] = ACTIONS(5471), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsection] = ACTIONS(5471), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHaddsec] = ACTIONS(5471), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5471), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5469), - [anon_sym_BSLASHparagraph] = ACTIONS(5471), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5471), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5469), - [anon_sym_BSLASHitem] = ACTIONS(5471), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHend] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), - }, - [1260] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_BSLASHpart] = ACTIONS(5475), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddpart] = ACTIONS(5475), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5473), - [anon_sym_BSLASHchapter] = ACTIONS(5475), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddchap] = ACTIONS(5475), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsection] = ACTIONS(5475), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHaddsec] = ACTIONS(5475), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5475), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5473), - [anon_sym_BSLASHparagraph] = ACTIONS(5475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5475), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5473), - [anon_sym_BSLASHitem] = ACTIONS(5475), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHend] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), - }, - [1261] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASHpart] = ACTIONS(5479), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddpart] = ACTIONS(5479), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5477), - [anon_sym_BSLASHchapter] = ACTIONS(5479), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddchap] = ACTIONS(5479), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsection] = ACTIONS(5479), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHaddsec] = ACTIONS(5479), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5477), - [anon_sym_BSLASHparagraph] = ACTIONS(5479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5479), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5477), - [anon_sym_BSLASHitem] = ACTIONS(5479), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHend] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), - }, - [1262] = { - [sym_command_name] = ACTIONS(5621), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5621), - [anon_sym_LPAREN] = ACTIONS(5623), - [anon_sym_RPAREN] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_RBRACK] = ACTIONS(5623), - [anon_sym_COMMA] = ACTIONS(5623), - [anon_sym_EQ] = ACTIONS(5623), - [anon_sym_BSLASHpart] = ACTIONS(5621), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5623), - [anon_sym_BSLASHaddpart] = ACTIONS(5621), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5623), - [anon_sym_BSLASHchapter] = ACTIONS(5621), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5623), - [anon_sym_BSLASHaddchap] = ACTIONS(5621), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5623), - [anon_sym_BSLASHsection] = ACTIONS(5621), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5623), - [anon_sym_BSLASHaddsec] = ACTIONS(5621), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5623), - [anon_sym_BSLASHsubsection] = ACTIONS(5621), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5623), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5621), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5623), - [anon_sym_BSLASHparagraph] = ACTIONS(5621), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5623), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5621), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5623), - [anon_sym_BSLASHitem] = ACTIONS(5621), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5623), - [anon_sym_LBRACE] = ACTIONS(5623), - [sym_word] = ACTIONS(5621), - [sym_placeholder] = ACTIONS(5623), - [anon_sym_PLUS] = ACTIONS(5621), - [anon_sym_DASH] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5621), - [anon_sym_SLASH] = ACTIONS(5621), - [anon_sym_CARET] = ACTIONS(5621), - [anon_sym__] = ACTIONS(5621), - [anon_sym_LT] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5621), - [anon_sym_BANG] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_COLON] = ACTIONS(5621), - [anon_sym_SQUOTE] = ACTIONS(5621), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5623), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5623), - [anon_sym_DOLLAR] = ACTIONS(5621), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5623), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5623), - [anon_sym_BSLASHbegin] = ACTIONS(5621), - [anon_sym_BSLASHend] = ACTIONS(5621), - [anon_sym_BSLASHusepackage] = ACTIONS(5621), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5621), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5621), - [anon_sym_BSLASHinclude] = ACTIONS(5621), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5621), - [anon_sym_BSLASHinput] = ACTIONS(5621), - [anon_sym_BSLASHsubfile] = ACTIONS(5621), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5621), - [anon_sym_BSLASHbibliography] = ACTIONS(5621), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5621), - [anon_sym_BSLASHincludesvg] = ACTIONS(5621), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5621), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5621), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5621), - [anon_sym_BSLASHimport] = ACTIONS(5621), - [anon_sym_BSLASHsubimport] = ACTIONS(5621), - [anon_sym_BSLASHinputfrom] = ACTIONS(5621), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5621), - [anon_sym_BSLASHincludefrom] = ACTIONS(5621), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5621), - [anon_sym_BSLASHcaption] = ACTIONS(5621), - [anon_sym_BSLASHcite] = ACTIONS(5621), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5623), - [anon_sym_BSLASHCite] = ACTIONS(5621), - [anon_sym_BSLASHnocite] = ACTIONS(5621), - [anon_sym_BSLASHcitet] = ACTIONS(5621), - [anon_sym_BSLASHcitep] = ACTIONS(5621), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5623), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5623), - [anon_sym_BSLASHciteauthor] = ACTIONS(5621), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5623), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5621), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5623), - [anon_sym_BSLASHcitetitle] = ACTIONS(5621), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5623), - [anon_sym_BSLASHciteyear] = ACTIONS(5621), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5623), - [anon_sym_BSLASHcitedate] = ACTIONS(5621), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5623), - [anon_sym_BSLASHciteurl] = ACTIONS(5621), - [anon_sym_BSLASHfullcite] = ACTIONS(5621), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5621), - [anon_sym_BSLASHcitealt] = ACTIONS(5621), - [anon_sym_BSLASHcitealp] = ACTIONS(5621), - [anon_sym_BSLASHcitetext] = ACTIONS(5621), - [anon_sym_BSLASHparencite] = ACTIONS(5621), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5623), - [anon_sym_BSLASHParencite] = ACTIONS(5621), - [anon_sym_BSLASHfootcite] = ACTIONS(5621), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5621), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5621), - [anon_sym_BSLASHtextcite] = ACTIONS(5621), - [anon_sym_BSLASHTextcite] = ACTIONS(5621), - [anon_sym_BSLASHsmartcite] = ACTIONS(5621), - [anon_sym_BSLASHSmartcite] = ACTIONS(5621), - [anon_sym_BSLASHsupercite] = ACTIONS(5621), - [anon_sym_BSLASHautocite] = ACTIONS(5621), - [anon_sym_BSLASHAutocite] = ACTIONS(5621), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5623), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5623), - [anon_sym_BSLASHvolcite] = ACTIONS(5621), - [anon_sym_BSLASHVolcite] = ACTIONS(5621), - [anon_sym_BSLASHpvolcite] = ACTIONS(5621), - [anon_sym_BSLASHPvolcite] = ACTIONS(5621), - [anon_sym_BSLASHfvolcite] = ACTIONS(5621), - [anon_sym_BSLASHftvolcite] = ACTIONS(5621), - [anon_sym_BSLASHsvolcite] = ACTIONS(5621), - [anon_sym_BSLASHSvolcite] = ACTIONS(5621), - [anon_sym_BSLASHtvolcite] = ACTIONS(5621), - [anon_sym_BSLASHTvolcite] = ACTIONS(5621), - [anon_sym_BSLASHavolcite] = ACTIONS(5621), - [anon_sym_BSLASHAvolcite] = ACTIONS(5621), - [anon_sym_BSLASHnotecite] = ACTIONS(5621), - [anon_sym_BSLASHNotecite] = ACTIONS(5621), - [anon_sym_BSLASHpnotecite] = ACTIONS(5621), - [anon_sym_BSLASHPnotecite] = ACTIONS(5621), - [anon_sym_BSLASHfnotecite] = ACTIONS(5621), - [anon_sym_BSLASHlabel] = ACTIONS(5621), - [anon_sym_BSLASHref] = ACTIONS(5621), - [anon_sym_BSLASHeqref] = ACTIONS(5621), - [anon_sym_BSLASHvref] = ACTIONS(5621), - [anon_sym_BSLASHVref] = ACTIONS(5621), - [anon_sym_BSLASHautoref] = ACTIONS(5621), - [anon_sym_BSLASHpageref] = ACTIONS(5621), - [anon_sym_BSLASHcref] = ACTIONS(5621), - [anon_sym_BSLASHCref] = ACTIONS(5621), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5623), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5623), - [anon_sym_BSLASHnamecref] = ACTIONS(5621), - [anon_sym_BSLASHnameCref] = ACTIONS(5621), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5621), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5621), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5621), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5621), - [anon_sym_BSLASHlabelcref] = ACTIONS(5621), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5621), - [anon_sym_BSLASHcrefrange] = ACTIONS(5621), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5623), - [anon_sym_BSLASHCrefrange] = ACTIONS(5621), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5623), - [anon_sym_BSLASHnewlabel] = ACTIONS(5621), - [anon_sym_BSLASHnewcommand] = ACTIONS(5621), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5623), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5621), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5623), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5621), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5623), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5621), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5623), - [anon_sym_BSLASHdef] = ACTIONS(5621), - [anon_sym_BSLASHlet] = ACTIONS(5621), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5621), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5621), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5621), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5621), - [anon_sym_BSLASHgls] = ACTIONS(5621), - [anon_sym_BSLASHGls] = ACTIONS(5621), - [anon_sym_BSLASHGLS] = ACTIONS(5621), - [anon_sym_BSLASHglspl] = ACTIONS(5621), - [anon_sym_BSLASHGlspl] = ACTIONS(5621), - [anon_sym_BSLASHGLSpl] = ACTIONS(5621), - [anon_sym_BSLASHglsdisp] = ACTIONS(5621), - [anon_sym_BSLASHglslink] = ACTIONS(5621), - [anon_sym_BSLASHglstext] = ACTIONS(5621), - [anon_sym_BSLASHGlstext] = ACTIONS(5621), - [anon_sym_BSLASHGLStext] = ACTIONS(5621), - [anon_sym_BSLASHglsfirst] = ACTIONS(5621), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5621), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5621), - [anon_sym_BSLASHglsplural] = ACTIONS(5621), - [anon_sym_BSLASHGlsplural] = ACTIONS(5621), - [anon_sym_BSLASHGLSplural] = ACTIONS(5621), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5621), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5621), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5621), - [anon_sym_BSLASHglsname] = ACTIONS(5621), - [anon_sym_BSLASHGlsname] = ACTIONS(5621), - [anon_sym_BSLASHGLSname] = ACTIONS(5621), - [anon_sym_BSLASHglssymbol] = ACTIONS(5621), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5621), - [anon_sym_BSLASHglsdesc] = ACTIONS(5621), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5621), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5621), - [anon_sym_BSLASHglsuseri] = ACTIONS(5621), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5621), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5621), - [anon_sym_BSLASHglsuserii] = ACTIONS(5621), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5621), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5621), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5621), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5621), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5621), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5621), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5621), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5621), - [anon_sym_BSLASHglsuserv] = ACTIONS(5621), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5621), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5621), - [anon_sym_BSLASHglsuservi] = ACTIONS(5621), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5621), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5621), - [anon_sym_BSLASHnewacronym] = ACTIONS(5621), - [anon_sym_BSLASHacrshort] = ACTIONS(5621), - [anon_sym_BSLASHAcrshort] = ACTIONS(5621), - [anon_sym_BSLASHACRshort] = ACTIONS(5621), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5621), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5621), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5621), - [anon_sym_BSLASHacrlong] = ACTIONS(5621), - [anon_sym_BSLASHAcrlong] = ACTIONS(5621), - [anon_sym_BSLASHACRlong] = ACTIONS(5621), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5621), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5621), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5621), - [anon_sym_BSLASHacrfull] = ACTIONS(5621), - [anon_sym_BSLASHAcrfull] = ACTIONS(5621), - [anon_sym_BSLASHACRfull] = ACTIONS(5621), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5621), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5621), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5621), - [anon_sym_BSLASHacs] = ACTIONS(5621), - [anon_sym_BSLASHAcs] = ACTIONS(5621), - [anon_sym_BSLASHacsp] = ACTIONS(5621), - [anon_sym_BSLASHAcsp] = ACTIONS(5621), - [anon_sym_BSLASHacl] = ACTIONS(5621), - [anon_sym_BSLASHAcl] = ACTIONS(5621), - [anon_sym_BSLASHaclp] = ACTIONS(5621), - [anon_sym_BSLASHAclp] = ACTIONS(5621), - [anon_sym_BSLASHacf] = ACTIONS(5621), - [anon_sym_BSLASHAcf] = ACTIONS(5621), - [anon_sym_BSLASHacfp] = ACTIONS(5621), - [anon_sym_BSLASHAcfp] = ACTIONS(5621), - [anon_sym_BSLASHac] = ACTIONS(5621), - [anon_sym_BSLASHAc] = ACTIONS(5621), - [anon_sym_BSLASHacp] = ACTIONS(5621), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5621), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5621), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5621), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5621), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5621), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5621), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5621), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5621), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5621), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5621), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5621), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5623), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5621), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5623), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5621), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5621), - [anon_sym_BSLASHcolor] = ACTIONS(5621), - [anon_sym_BSLASHcolorbox] = ACTIONS(5621), - [anon_sym_BSLASHtextcolor] = ACTIONS(5621), - [anon_sym_BSLASHpagecolor] = ACTIONS(5621), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5621), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5621), - [anon_sym_BSLASHtext] = ACTIONS(5621), - [anon_sym_BSLASHintertext] = ACTIONS(5621), - [anon_sym_shortintertext] = ACTIONS(5621), - }, - [1263] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_BSLASHpart] = ACTIONS(5487), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddpart] = ACTIONS(5487), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5485), - [anon_sym_BSLASHchapter] = ACTIONS(5487), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddchap] = ACTIONS(5487), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsection] = ACTIONS(5487), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHaddsec] = ACTIONS(5487), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5487), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5485), - [anon_sym_BSLASHparagraph] = ACTIONS(5487), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5487), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5485), - [anon_sym_BSLASHitem] = ACTIONS(5487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHend] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), - }, - [1264] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), - }, - [1265] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHend] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_BSLASHpart] = ACTIONS(5417), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddpart] = ACTIONS(5417), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHchapter] = ACTIONS(5417), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddchap] = ACTIONS(5417), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsection] = ACTIONS(5417), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddsec] = ACTIONS(5417), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHparagraph] = ACTIONS(5417), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5417), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHitem] = ACTIONS(5417), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1266] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_BSLASHpart] = ACTIONS(5241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddpart] = ACTIONS(5241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), - [anon_sym_BSLASHchapter] = ACTIONS(5241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddchap] = ACTIONS(5241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsection] = ACTIONS(5241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHaddsec] = ACTIONS(5241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), - [anon_sym_BSLASHparagraph] = ACTIONS(5241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), - [anon_sym_BSLASHitem] = ACTIONS(5241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHend] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), + [712] = { + [sym_curly_group] = STATE(769), + [sym_brack_group_text] = STATE(2186), + [sym_command_name] = ACTIONS(5417), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_BSLASHpart] = ACTIONS(5417), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddpart] = ACTIONS(5417), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHchapter] = ACTIONS(5417), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddchap] = ACTIONS(5417), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsection] = ACTIONS(5417), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddsec] = ACTIONS(5417), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHparagraph] = ACTIONS(5417), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5417), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHitem] = ACTIONS(5417), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHend] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1267] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHend] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), + [713] = { + [sym_curly_group] = STATE(810), + [sym_brack_group_text] = STATE(2384), + [sym_command_name] = ACTIONS(5417), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_BSLASHpart] = ACTIONS(5417), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddpart] = ACTIONS(5417), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5415), + [anon_sym_BSLASHchapter] = ACTIONS(5417), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddchap] = ACTIONS(5417), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsection] = ACTIONS(5417), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHaddsec] = ACTIONS(5417), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5417), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5415), + [anon_sym_BSLASHparagraph] = ACTIONS(5417), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5417), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5415), + [anon_sym_BSLASHitem] = ACTIONS(5417), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1268] = { - [sym_command_name] = ACTIONS(5249), + [714] = { + [sym_curly_group] = STATE(715), + [sym_brack_group_text] = STATE(2202), + [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_BSLASHpart] = ACTIONS(5249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddpart] = ACTIONS(5249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), - [anon_sym_BSLASHchapter] = ACTIONS(5249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddchap] = ACTIONS(5249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsection] = ACTIONS(5249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHaddsec] = ACTIONS(5249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), - [anon_sym_BSLASHparagraph] = ACTIONS(5249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), - [anon_sym_BSLASHitem] = ACTIONS(5249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [sym_word] = ACTIONS(5249), - [sym_placeholder] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5249), - [anon_sym_STAR] = ACTIONS(5249), - [anon_sym_SLASH] = ACTIONS(5249), - [anon_sym_CARET] = ACTIONS(5249), - [anon_sym__] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5249), - [anon_sym_PIPE] = ACTIONS(5249), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_SQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASHbegin] = ACTIONS(5249), - [anon_sym_BSLASHend] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), - [anon_sym_BSLASHinclude] = ACTIONS(5249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), - [anon_sym_BSLASHinput] = ACTIONS(5249), - [anon_sym_BSLASHsubfile] = ACTIONS(5249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), - [anon_sym_BSLASHbibliography] = ACTIONS(5249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), - [anon_sym_BSLASHincludesvg] = ACTIONS(5249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), - [anon_sym_BSLASHimport] = ACTIONS(5249), - [anon_sym_BSLASHsubimport] = ACTIONS(5249), - [anon_sym_BSLASHinputfrom] = ACTIONS(5249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), - [anon_sym_BSLASHincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [anon_sym_BSLASHcite] = ACTIONS(5249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCite] = ACTIONS(5249), - [anon_sym_BSLASHnocite] = ACTIONS(5249), - [anon_sym_BSLASHcitet] = ACTIONS(5249), - [anon_sym_BSLASHcitep] = ACTIONS(5249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteyear] = ACTIONS(5249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitedate] = ACTIONS(5249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteurl] = ACTIONS(5249), - [anon_sym_BSLASHfullcite] = ACTIONS(5249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), - [anon_sym_BSLASHcitealt] = ACTIONS(5249), - [anon_sym_BSLASHcitealp] = ACTIONS(5249), - [anon_sym_BSLASHcitetext] = ACTIONS(5249), - [anon_sym_BSLASHparencite] = ACTIONS(5249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHParencite] = ACTIONS(5249), - [anon_sym_BSLASHfootcite] = ACTIONS(5249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), - [anon_sym_BSLASHtextcite] = ACTIONS(5249), - [anon_sym_BSLASHTextcite] = ACTIONS(5249), - [anon_sym_BSLASHsmartcite] = ACTIONS(5249), - [anon_sym_BSLASHSmartcite] = ACTIONS(5249), - [anon_sym_BSLASHsupercite] = ACTIONS(5249), - [anon_sym_BSLASHautocite] = ACTIONS(5249), - [anon_sym_BSLASHAutocite] = ACTIONS(5249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHvolcite] = ACTIONS(5249), - [anon_sym_BSLASHVolcite] = ACTIONS(5249), - [anon_sym_BSLASHpvolcite] = ACTIONS(5249), - [anon_sym_BSLASHPvolcite] = ACTIONS(5249), - [anon_sym_BSLASHfvolcite] = ACTIONS(5249), - [anon_sym_BSLASHftvolcite] = ACTIONS(5249), - [anon_sym_BSLASHsvolcite] = ACTIONS(5249), - [anon_sym_BSLASHSvolcite] = ACTIONS(5249), - [anon_sym_BSLASHtvolcite] = ACTIONS(5249), - [anon_sym_BSLASHTvolcite] = ACTIONS(5249), - [anon_sym_BSLASHavolcite] = ACTIONS(5249), - [anon_sym_BSLASHAvolcite] = ACTIONS(5249), - [anon_sym_BSLASHnotecite] = ACTIONS(5249), - [anon_sym_BSLASHNotecite] = ACTIONS(5249), - [anon_sym_BSLASHpnotecite] = ACTIONS(5249), - [anon_sym_BSLASHPnotecite] = ACTIONS(5249), - [anon_sym_BSLASHfnotecite] = ACTIONS(5249), - [anon_sym_BSLASHlabel] = ACTIONS(5249), - [anon_sym_BSLASHref] = ACTIONS(5249), - [anon_sym_BSLASHeqref] = ACTIONS(5249), - [anon_sym_BSLASHvref] = ACTIONS(5249), - [anon_sym_BSLASHVref] = ACTIONS(5249), - [anon_sym_BSLASHautoref] = ACTIONS(5249), - [anon_sym_BSLASHpageref] = ACTIONS(5249), - [anon_sym_BSLASHcref] = ACTIONS(5249), - [anon_sym_BSLASHCref] = ACTIONS(5249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnameCref] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHlabelcref] = ACTIONS(5249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_BSLASHpart] = ACTIONS(5353), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddpart] = ACTIONS(5353), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), + [anon_sym_BSLASHchapter] = ACTIONS(5353), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddchap] = ACTIONS(5353), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsection] = ACTIONS(5353), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHaddsec] = ACTIONS(5353), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), + [anon_sym_BSLASHparagraph] = ACTIONS(5353), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), + [anon_sym_BSLASHitem] = ACTIONS(5353), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHend] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1269] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_BSLASHpart] = ACTIONS(5257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddpart] = ACTIONS(5257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), - [anon_sym_BSLASHchapter] = ACTIONS(5257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddchap] = ACTIONS(5257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsection] = ACTIONS(5257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHaddsec] = ACTIONS(5257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), - [anon_sym_BSLASHparagraph] = ACTIONS(5257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), - [anon_sym_BSLASHitem] = ACTIONS(5257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHend] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), + [715] = { + [sym_brack_group_text] = STATE(1347), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_BSLASHpart] = ACTIONS(5601), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddpart] = ACTIONS(5601), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHchapter] = ACTIONS(5601), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddchap] = ACTIONS(5601), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsection] = ACTIONS(5601), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddsec] = ACTIONS(5601), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHparagraph] = ACTIONS(5601), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5601), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHitem] = ACTIONS(5601), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHend] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, - [1270] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASHpart] = ACTIONS(5277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddpart] = ACTIONS(5277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), - [anon_sym_BSLASHchapter] = ACTIONS(5277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddchap] = ACTIONS(5277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsection] = ACTIONS(5277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHaddsec] = ACTIONS(5277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), - [anon_sym_BSLASHparagraph] = ACTIONS(5277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), - [anon_sym_BSLASHitem] = ACTIONS(5277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHend] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), + [716] = { + [ts_builtin_sym_end] = ACTIONS(5789), + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_BSLASHpart] = ACTIONS(5791), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddpart] = ACTIONS(5791), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHchapter] = ACTIONS(5791), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddchap] = ACTIONS(5791), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsection] = ACTIONS(5791), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddsec] = ACTIONS(5791), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHparagraph] = ACTIONS(5791), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5791), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHitem] = ACTIONS(5791), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [anon_sym_RBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), }, - [1271] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHend] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), + [717] = { + [sym_curly_group] = STATE(1070), + [sym_command_name] = ACTIONS(5771), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_RBRACK] = ACTIONS(5769), + [anon_sym_COMMA] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5769), + [anon_sym_BSLASHpart] = ACTIONS(5771), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddpart] = ACTIONS(5771), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHchapter] = ACTIONS(5771), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddchap] = ACTIONS(5771), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsection] = ACTIONS(5771), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddsec] = ACTIONS(5771), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHparagraph] = ACTIONS(5771), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5771), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHitem] = ACTIONS(5771), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5771), + [sym_placeholder] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_SLASH] = ACTIONS(5771), + [anon_sym_CARET] = ACTIONS(5771), + [anon_sym__] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5771), + [anon_sym_GT] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5771), + [anon_sym_PIPE] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_SQUOTE] = ACTIONS(5771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5771), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5769), + [anon_sym_BSLASHbegin] = ACTIONS(5771), + [anon_sym_BSLASHtitle] = ACTIONS(5771), + [anon_sym_BSLASHauthor] = ACTIONS(5771), + [anon_sym_BSLASHusepackage] = ACTIONS(5771), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5771), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5771), + [anon_sym_BSLASHinclude] = ACTIONS(5771), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5771), + [anon_sym_BSLASHinput] = ACTIONS(5771), + [anon_sym_BSLASHsubfile] = ACTIONS(5771), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5771), + [anon_sym_BSLASHbibliography] = ACTIONS(5771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5771), + [anon_sym_BSLASHincludesvg] = ACTIONS(5771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5771), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5771), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5771), + [anon_sym_BSLASHimport] = ACTIONS(5771), + [anon_sym_BSLASHsubimport] = ACTIONS(5771), + [anon_sym_BSLASHinputfrom] = ACTIONS(5771), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5771), + [anon_sym_BSLASHincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHcaption] = ACTIONS(5771), + [anon_sym_BSLASHcite] = ACTIONS(5771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCite] = ACTIONS(5771), + [anon_sym_BSLASHnocite] = ACTIONS(5771), + [anon_sym_BSLASHcitet] = ACTIONS(5771), + [anon_sym_BSLASHcitep] = ACTIONS(5771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteauthor] = ACTIONS(5771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitetitle] = ACTIONS(5771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteyear] = ACTIONS(5771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitedate] = ACTIONS(5771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteurl] = ACTIONS(5771), + [anon_sym_BSLASHfullcite] = ACTIONS(5771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5771), + [anon_sym_BSLASHcitealt] = ACTIONS(5771), + [anon_sym_BSLASHcitealp] = ACTIONS(5771), + [anon_sym_BSLASHcitetext] = ACTIONS(5771), + [anon_sym_BSLASHparencite] = ACTIONS(5771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHParencite] = ACTIONS(5771), + [anon_sym_BSLASHfootcite] = ACTIONS(5771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5771), + [anon_sym_BSLASHtextcite] = ACTIONS(5771), + [anon_sym_BSLASHTextcite] = ACTIONS(5771), + [anon_sym_BSLASHsmartcite] = ACTIONS(5771), + [anon_sym_BSLASHSmartcite] = ACTIONS(5771), + [anon_sym_BSLASHsupercite] = ACTIONS(5771), + [anon_sym_BSLASHautocite] = ACTIONS(5771), + [anon_sym_BSLASHAutocite] = ACTIONS(5771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHvolcite] = ACTIONS(5771), + [anon_sym_BSLASHVolcite] = ACTIONS(5771), + [anon_sym_BSLASHpvolcite] = ACTIONS(5771), + [anon_sym_BSLASHPvolcite] = ACTIONS(5771), + [anon_sym_BSLASHfvolcite] = ACTIONS(5771), + [anon_sym_BSLASHftvolcite] = ACTIONS(5771), + [anon_sym_BSLASHsvolcite] = ACTIONS(5771), + [anon_sym_BSLASHSvolcite] = ACTIONS(5771), + [anon_sym_BSLASHtvolcite] = ACTIONS(5771), + [anon_sym_BSLASHTvolcite] = ACTIONS(5771), + [anon_sym_BSLASHavolcite] = ACTIONS(5771), + [anon_sym_BSLASHAvolcite] = ACTIONS(5771), + [anon_sym_BSLASHnotecite] = ACTIONS(5771), + [anon_sym_BSLASHNotecite] = ACTIONS(5771), + [anon_sym_BSLASHpnotecite] = ACTIONS(5771), + [anon_sym_BSLASHPnotecite] = ACTIONS(5771), + [anon_sym_BSLASHfnotecite] = ACTIONS(5771), + [anon_sym_BSLASHlabel] = ACTIONS(5771), + [anon_sym_BSLASHref] = ACTIONS(5771), + [anon_sym_BSLASHeqref] = ACTIONS(5771), + [anon_sym_BSLASHvref] = ACTIONS(5771), + [anon_sym_BSLASHVref] = ACTIONS(5771), + [anon_sym_BSLASHautoref] = ACTIONS(5771), + [anon_sym_BSLASHpageref] = ACTIONS(5771), + [anon_sym_BSLASHcref] = ACTIONS(5771), + [anon_sym_BSLASHCref] = ACTIONS(5771), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnameCref] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHlabelcref] = ACTIONS(5771), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCrefrange] = ACTIONS(5771), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnewlabel] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5771), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5771), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5771), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdef] = ACTIONS(5771), + [anon_sym_BSLASHlet] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5771), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5771), + [anon_sym_BSLASHgls] = ACTIONS(5771), + [anon_sym_BSLASHGls] = ACTIONS(5771), + [anon_sym_BSLASHGLS] = ACTIONS(5771), + [anon_sym_BSLASHglspl] = ACTIONS(5771), + [anon_sym_BSLASHGlspl] = ACTIONS(5771), + [anon_sym_BSLASHGLSpl] = ACTIONS(5771), + [anon_sym_BSLASHglsdisp] = ACTIONS(5771), + [anon_sym_BSLASHglslink] = ACTIONS(5771), + [anon_sym_BSLASHglstext] = ACTIONS(5771), + [anon_sym_BSLASHGlstext] = ACTIONS(5771), + [anon_sym_BSLASHGLStext] = ACTIONS(5771), + [anon_sym_BSLASHglsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5771), + [anon_sym_BSLASHglsplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSplural] = ACTIONS(5771), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHglsname] = ACTIONS(5771), + [anon_sym_BSLASHGlsname] = ACTIONS(5771), + [anon_sym_BSLASHGLSname] = ACTIONS(5771), + [anon_sym_BSLASHglssymbol] = ACTIONS(5771), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5771), + [anon_sym_BSLASHglsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5771), + [anon_sym_BSLASHglsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5771), + [anon_sym_BSLASHglsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5771), + [anon_sym_BSLASHglsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5771), + [anon_sym_BSLASHglsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5771), + [anon_sym_BSLASHnewacronym] = ACTIONS(5771), + [anon_sym_BSLASHacrshort] = ACTIONS(5771), + [anon_sym_BSLASHAcrshort] = ACTIONS(5771), + [anon_sym_BSLASHACRshort] = ACTIONS(5771), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5771), + [anon_sym_BSLASHacrlong] = ACTIONS(5771), + [anon_sym_BSLASHAcrlong] = ACTIONS(5771), + [anon_sym_BSLASHACRlong] = ACTIONS(5771), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5771), + [anon_sym_BSLASHacrfull] = ACTIONS(5771), + [anon_sym_BSLASHAcrfull] = ACTIONS(5771), + [anon_sym_BSLASHACRfull] = ACTIONS(5771), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5771), + [anon_sym_BSLASHacs] = ACTIONS(5771), + [anon_sym_BSLASHAcs] = ACTIONS(5771), + [anon_sym_BSLASHacsp] = ACTIONS(5771), + [anon_sym_BSLASHAcsp] = ACTIONS(5771), + [anon_sym_BSLASHacl] = ACTIONS(5771), + [anon_sym_BSLASHAcl] = ACTIONS(5771), + [anon_sym_BSLASHaclp] = ACTIONS(5771), + [anon_sym_BSLASHAclp] = ACTIONS(5771), + [anon_sym_BSLASHacf] = ACTIONS(5771), + [anon_sym_BSLASHAcf] = ACTIONS(5771), + [anon_sym_BSLASHacfp] = ACTIONS(5771), + [anon_sym_BSLASHAcfp] = ACTIONS(5771), + [anon_sym_BSLASHac] = ACTIONS(5771), + [anon_sym_BSLASHAc] = ACTIONS(5771), + [anon_sym_BSLASHacp] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5771), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5771), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5771), + [anon_sym_BSLASHcolor] = ACTIONS(5771), + [anon_sym_BSLASHcolorbox] = ACTIONS(5771), + [anon_sym_BSLASHtextcolor] = ACTIONS(5771), + [anon_sym_BSLASHpagecolor] = ACTIONS(5771), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5771), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5771), + [anon_sym_BSLASHtext] = ACTIONS(5771), + [anon_sym_BSLASHintertext] = ACTIONS(5771), + [anon_sym_shortintertext] = ACTIONS(5771), }, - [1272] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHend] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), + [718] = { + [sym_curly_group] = STATE(1095), + [sym_command_name] = ACTIONS(5767), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_RBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_BSLASHpart] = ACTIONS(5767), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddpart] = ACTIONS(5767), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHchapter] = ACTIONS(5767), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddchap] = ACTIONS(5767), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsection] = ACTIONS(5767), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddsec] = ACTIONS(5767), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHparagraph] = ACTIONS(5767), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5767), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHitem] = ACTIONS(5767), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5767), + [sym_placeholder] = ACTIONS(5765), + [anon_sym_PLUS] = ACTIONS(5767), + [anon_sym_DASH] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_CARET] = ACTIONS(5767), + [anon_sym__] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5767), + [anon_sym_PIPE] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_SQUOTE] = ACTIONS(5767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5765), + [anon_sym_DOLLAR] = ACTIONS(5767), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5765), + [anon_sym_BSLASHbegin] = ACTIONS(5767), + [anon_sym_BSLASHtitle] = ACTIONS(5767), + [anon_sym_BSLASHauthor] = ACTIONS(5767), + [anon_sym_BSLASHusepackage] = ACTIONS(5767), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5767), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5767), + [anon_sym_BSLASHinclude] = ACTIONS(5767), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5767), + [anon_sym_BSLASHinput] = ACTIONS(5767), + [anon_sym_BSLASHsubfile] = ACTIONS(5767), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5767), + [anon_sym_BSLASHbibliography] = ACTIONS(5767), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5767), + [anon_sym_BSLASHincludesvg] = ACTIONS(5767), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5767), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5767), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5767), + [anon_sym_BSLASHimport] = ACTIONS(5767), + [anon_sym_BSLASHsubimport] = ACTIONS(5767), + [anon_sym_BSLASHinputfrom] = ACTIONS(5767), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5767), + [anon_sym_BSLASHincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHcaption] = ACTIONS(5767), + [anon_sym_BSLASHcite] = ACTIONS(5767), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCite] = ACTIONS(5767), + [anon_sym_BSLASHnocite] = ACTIONS(5767), + [anon_sym_BSLASHcitet] = ACTIONS(5767), + [anon_sym_BSLASHcitep] = ACTIONS(5767), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteauthor] = ACTIONS(5767), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5767), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitetitle] = ACTIONS(5767), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteyear] = ACTIONS(5767), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitedate] = ACTIONS(5767), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteurl] = ACTIONS(5767), + [anon_sym_BSLASHfullcite] = ACTIONS(5767), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5767), + [anon_sym_BSLASHcitealt] = ACTIONS(5767), + [anon_sym_BSLASHcitealp] = ACTIONS(5767), + [anon_sym_BSLASHcitetext] = ACTIONS(5767), + [anon_sym_BSLASHparencite] = ACTIONS(5767), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHParencite] = ACTIONS(5767), + [anon_sym_BSLASHfootcite] = ACTIONS(5767), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5767), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5767), + [anon_sym_BSLASHtextcite] = ACTIONS(5767), + [anon_sym_BSLASHTextcite] = ACTIONS(5767), + [anon_sym_BSLASHsmartcite] = ACTIONS(5767), + [anon_sym_BSLASHSmartcite] = ACTIONS(5767), + [anon_sym_BSLASHsupercite] = ACTIONS(5767), + [anon_sym_BSLASHautocite] = ACTIONS(5767), + [anon_sym_BSLASHAutocite] = ACTIONS(5767), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHvolcite] = ACTIONS(5767), + [anon_sym_BSLASHVolcite] = ACTIONS(5767), + [anon_sym_BSLASHpvolcite] = ACTIONS(5767), + [anon_sym_BSLASHPvolcite] = ACTIONS(5767), + [anon_sym_BSLASHfvolcite] = ACTIONS(5767), + [anon_sym_BSLASHftvolcite] = ACTIONS(5767), + [anon_sym_BSLASHsvolcite] = ACTIONS(5767), + [anon_sym_BSLASHSvolcite] = ACTIONS(5767), + [anon_sym_BSLASHtvolcite] = ACTIONS(5767), + [anon_sym_BSLASHTvolcite] = ACTIONS(5767), + [anon_sym_BSLASHavolcite] = ACTIONS(5767), + [anon_sym_BSLASHAvolcite] = ACTIONS(5767), + [anon_sym_BSLASHnotecite] = ACTIONS(5767), + [anon_sym_BSLASHNotecite] = ACTIONS(5767), + [anon_sym_BSLASHpnotecite] = ACTIONS(5767), + [anon_sym_BSLASHPnotecite] = ACTIONS(5767), + [anon_sym_BSLASHfnotecite] = ACTIONS(5767), + [anon_sym_BSLASHlabel] = ACTIONS(5767), + [anon_sym_BSLASHref] = ACTIONS(5767), + [anon_sym_BSLASHeqref] = ACTIONS(5767), + [anon_sym_BSLASHvref] = ACTIONS(5767), + [anon_sym_BSLASHVref] = ACTIONS(5767), + [anon_sym_BSLASHautoref] = ACTIONS(5767), + [anon_sym_BSLASHpageref] = ACTIONS(5767), + [anon_sym_BSLASHcref] = ACTIONS(5767), + [anon_sym_BSLASHCref] = ACTIONS(5767), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnameCref] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHlabelcref] = ACTIONS(5767), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCrefrange] = ACTIONS(5767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnewlabel] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5767), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5767), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5767), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdef] = ACTIONS(5767), + [anon_sym_BSLASHlet] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5767), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5767), + [anon_sym_BSLASHgls] = ACTIONS(5767), + [anon_sym_BSLASHGls] = ACTIONS(5767), + [anon_sym_BSLASHGLS] = ACTIONS(5767), + [anon_sym_BSLASHglspl] = ACTIONS(5767), + [anon_sym_BSLASHGlspl] = ACTIONS(5767), + [anon_sym_BSLASHGLSpl] = ACTIONS(5767), + [anon_sym_BSLASHglsdisp] = ACTIONS(5767), + [anon_sym_BSLASHglslink] = ACTIONS(5767), + [anon_sym_BSLASHglstext] = ACTIONS(5767), + [anon_sym_BSLASHGlstext] = ACTIONS(5767), + [anon_sym_BSLASHGLStext] = ACTIONS(5767), + [anon_sym_BSLASHglsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5767), + [anon_sym_BSLASHglsplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSplural] = ACTIONS(5767), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHglsname] = ACTIONS(5767), + [anon_sym_BSLASHGlsname] = ACTIONS(5767), + [anon_sym_BSLASHGLSname] = ACTIONS(5767), + [anon_sym_BSLASHglssymbol] = ACTIONS(5767), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5767), + [anon_sym_BSLASHglsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5767), + [anon_sym_BSLASHglsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5767), + [anon_sym_BSLASHglsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5767), + [anon_sym_BSLASHglsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5767), + [anon_sym_BSLASHglsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5767), + [anon_sym_BSLASHnewacronym] = ACTIONS(5767), + [anon_sym_BSLASHacrshort] = ACTIONS(5767), + [anon_sym_BSLASHAcrshort] = ACTIONS(5767), + [anon_sym_BSLASHACRshort] = ACTIONS(5767), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5767), + [anon_sym_BSLASHacrlong] = ACTIONS(5767), + [anon_sym_BSLASHAcrlong] = ACTIONS(5767), + [anon_sym_BSLASHACRlong] = ACTIONS(5767), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5767), + [anon_sym_BSLASHacrfull] = ACTIONS(5767), + [anon_sym_BSLASHAcrfull] = ACTIONS(5767), + [anon_sym_BSLASHACRfull] = ACTIONS(5767), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5767), + [anon_sym_BSLASHacs] = ACTIONS(5767), + [anon_sym_BSLASHAcs] = ACTIONS(5767), + [anon_sym_BSLASHacsp] = ACTIONS(5767), + [anon_sym_BSLASHAcsp] = ACTIONS(5767), + [anon_sym_BSLASHacl] = ACTIONS(5767), + [anon_sym_BSLASHAcl] = ACTIONS(5767), + [anon_sym_BSLASHaclp] = ACTIONS(5767), + [anon_sym_BSLASHAclp] = ACTIONS(5767), + [anon_sym_BSLASHacf] = ACTIONS(5767), + [anon_sym_BSLASHAcf] = ACTIONS(5767), + [anon_sym_BSLASHacfp] = ACTIONS(5767), + [anon_sym_BSLASHAcfp] = ACTIONS(5767), + [anon_sym_BSLASHac] = ACTIONS(5767), + [anon_sym_BSLASHAc] = ACTIONS(5767), + [anon_sym_BSLASHacp] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5767), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5767), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5767), + [anon_sym_BSLASHcolor] = ACTIONS(5767), + [anon_sym_BSLASHcolorbox] = ACTIONS(5767), + [anon_sym_BSLASHtextcolor] = ACTIONS(5767), + [anon_sym_BSLASHpagecolor] = ACTIONS(5767), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5767), + [anon_sym_BSLASHtext] = ACTIONS(5767), + [anon_sym_BSLASHintertext] = ACTIONS(5767), + [anon_sym_shortintertext] = ACTIONS(5767), }, - [1273] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHend] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [719] = { + [sym_curly_group] = STATE(1101), + [sym_command_name] = ACTIONS(5763), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5763), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_BSLASHpart] = ACTIONS(5763), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddpart] = ACTIONS(5763), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHchapter] = ACTIONS(5763), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddchap] = ACTIONS(5763), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsection] = ACTIONS(5763), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddsec] = ACTIONS(5763), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHparagraph] = ACTIONS(5763), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5763), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5761), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5763), + [sym_placeholder] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5763), + [anon_sym_SLASH] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5763), + [anon_sym__] = ACTIONS(5763), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PIPE] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_SQUOTE] = ACTIONS(5763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5761), + [anon_sym_DOLLAR] = ACTIONS(5763), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5761), + [anon_sym_BSLASHbegin] = ACTIONS(5763), + [anon_sym_BSLASHtitle] = ACTIONS(5763), + [anon_sym_BSLASHauthor] = ACTIONS(5763), + [anon_sym_BSLASHusepackage] = ACTIONS(5763), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5763), + [anon_sym_BSLASHinclude] = ACTIONS(5763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5763), + [anon_sym_BSLASHinput] = ACTIONS(5763), + [anon_sym_BSLASHsubfile] = ACTIONS(5763), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5763), + [anon_sym_BSLASHbibliography] = ACTIONS(5763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5763), + [anon_sym_BSLASHincludesvg] = ACTIONS(5763), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5763), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5763), + [anon_sym_BSLASHimport] = ACTIONS(5763), + [anon_sym_BSLASHsubimport] = ACTIONS(5763), + [anon_sym_BSLASHinputfrom] = ACTIONS(5763), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5763), + [anon_sym_BSLASHincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHcaption] = ACTIONS(5763), + [anon_sym_BSLASHcite] = ACTIONS(5763), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCite] = ACTIONS(5763), + [anon_sym_BSLASHnocite] = ACTIONS(5763), + [anon_sym_BSLASHcitet] = ACTIONS(5763), + [anon_sym_BSLASHcitep] = ACTIONS(5763), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteauthor] = ACTIONS(5763), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5763), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitetitle] = ACTIONS(5763), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteyear] = ACTIONS(5763), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitedate] = ACTIONS(5763), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteurl] = ACTIONS(5763), + [anon_sym_BSLASHfullcite] = ACTIONS(5763), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5763), + [anon_sym_BSLASHcitealt] = ACTIONS(5763), + [anon_sym_BSLASHcitealp] = ACTIONS(5763), + [anon_sym_BSLASHcitetext] = ACTIONS(5763), + [anon_sym_BSLASHparencite] = ACTIONS(5763), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHParencite] = ACTIONS(5763), + [anon_sym_BSLASHfootcite] = ACTIONS(5763), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5763), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5763), + [anon_sym_BSLASHtextcite] = ACTIONS(5763), + [anon_sym_BSLASHTextcite] = ACTIONS(5763), + [anon_sym_BSLASHsmartcite] = ACTIONS(5763), + [anon_sym_BSLASHSmartcite] = ACTIONS(5763), + [anon_sym_BSLASHsupercite] = ACTIONS(5763), + [anon_sym_BSLASHautocite] = ACTIONS(5763), + [anon_sym_BSLASHAutocite] = ACTIONS(5763), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHvolcite] = ACTIONS(5763), + [anon_sym_BSLASHVolcite] = ACTIONS(5763), + [anon_sym_BSLASHpvolcite] = ACTIONS(5763), + [anon_sym_BSLASHPvolcite] = ACTIONS(5763), + [anon_sym_BSLASHfvolcite] = ACTIONS(5763), + [anon_sym_BSLASHftvolcite] = ACTIONS(5763), + [anon_sym_BSLASHsvolcite] = ACTIONS(5763), + [anon_sym_BSLASHSvolcite] = ACTIONS(5763), + [anon_sym_BSLASHtvolcite] = ACTIONS(5763), + [anon_sym_BSLASHTvolcite] = ACTIONS(5763), + [anon_sym_BSLASHavolcite] = ACTIONS(5763), + [anon_sym_BSLASHAvolcite] = ACTIONS(5763), + [anon_sym_BSLASHnotecite] = ACTIONS(5763), + [anon_sym_BSLASHNotecite] = ACTIONS(5763), + [anon_sym_BSLASHpnotecite] = ACTIONS(5763), + [anon_sym_BSLASHPnotecite] = ACTIONS(5763), + [anon_sym_BSLASHfnotecite] = ACTIONS(5763), + [anon_sym_BSLASHlabel] = ACTIONS(5763), + [anon_sym_BSLASHref] = ACTIONS(5763), + [anon_sym_BSLASHeqref] = ACTIONS(5763), + [anon_sym_BSLASHvref] = ACTIONS(5763), + [anon_sym_BSLASHVref] = ACTIONS(5763), + [anon_sym_BSLASHautoref] = ACTIONS(5763), + [anon_sym_BSLASHpageref] = ACTIONS(5763), + [anon_sym_BSLASHcref] = ACTIONS(5763), + [anon_sym_BSLASHCref] = ACTIONS(5763), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnameCref] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHlabelcref] = ACTIONS(5763), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCrefrange] = ACTIONS(5763), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnewlabel] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5763), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5763), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5763), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdef] = ACTIONS(5763), + [anon_sym_BSLASHlet] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5763), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5763), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5763), + [anon_sym_BSLASHgls] = ACTIONS(5763), + [anon_sym_BSLASHGls] = ACTIONS(5763), + [anon_sym_BSLASHGLS] = ACTIONS(5763), + [anon_sym_BSLASHglspl] = ACTIONS(5763), + [anon_sym_BSLASHGlspl] = ACTIONS(5763), + [anon_sym_BSLASHGLSpl] = ACTIONS(5763), + [anon_sym_BSLASHglsdisp] = ACTIONS(5763), + [anon_sym_BSLASHglslink] = ACTIONS(5763), + [anon_sym_BSLASHglstext] = ACTIONS(5763), + [anon_sym_BSLASHGlstext] = ACTIONS(5763), + [anon_sym_BSLASHGLStext] = ACTIONS(5763), + [anon_sym_BSLASHglsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5763), + [anon_sym_BSLASHglsplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSplural] = ACTIONS(5763), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHglsname] = ACTIONS(5763), + [anon_sym_BSLASHGlsname] = ACTIONS(5763), + [anon_sym_BSLASHGLSname] = ACTIONS(5763), + [anon_sym_BSLASHglssymbol] = ACTIONS(5763), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5763), + [anon_sym_BSLASHglsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5763), + [anon_sym_BSLASHglsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5763), + [anon_sym_BSLASHglsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5763), + [anon_sym_BSLASHglsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5763), + [anon_sym_BSLASHglsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5763), + [anon_sym_BSLASHnewacronym] = ACTIONS(5763), + [anon_sym_BSLASHacrshort] = ACTIONS(5763), + [anon_sym_BSLASHAcrshort] = ACTIONS(5763), + [anon_sym_BSLASHACRshort] = ACTIONS(5763), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5763), + [anon_sym_BSLASHacrlong] = ACTIONS(5763), + [anon_sym_BSLASHAcrlong] = ACTIONS(5763), + [anon_sym_BSLASHACRlong] = ACTIONS(5763), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5763), + [anon_sym_BSLASHacrfull] = ACTIONS(5763), + [anon_sym_BSLASHAcrfull] = ACTIONS(5763), + [anon_sym_BSLASHACRfull] = ACTIONS(5763), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5763), + [anon_sym_BSLASHacs] = ACTIONS(5763), + [anon_sym_BSLASHAcs] = ACTIONS(5763), + [anon_sym_BSLASHacsp] = ACTIONS(5763), + [anon_sym_BSLASHAcsp] = ACTIONS(5763), + [anon_sym_BSLASHacl] = ACTIONS(5763), + [anon_sym_BSLASHAcl] = ACTIONS(5763), + [anon_sym_BSLASHaclp] = ACTIONS(5763), + [anon_sym_BSLASHAclp] = ACTIONS(5763), + [anon_sym_BSLASHacf] = ACTIONS(5763), + [anon_sym_BSLASHAcf] = ACTIONS(5763), + [anon_sym_BSLASHacfp] = ACTIONS(5763), + [anon_sym_BSLASHAcfp] = ACTIONS(5763), + [anon_sym_BSLASHac] = ACTIONS(5763), + [anon_sym_BSLASHAc] = ACTIONS(5763), + [anon_sym_BSLASHacp] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5763), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5763), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5763), + [anon_sym_BSLASHcolor] = ACTIONS(5763), + [anon_sym_BSLASHcolorbox] = ACTIONS(5763), + [anon_sym_BSLASHtextcolor] = ACTIONS(5763), + [anon_sym_BSLASHpagecolor] = ACTIONS(5763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5763), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5763), + [anon_sym_BSLASHtext] = ACTIONS(5763), + [anon_sym_BSLASHintertext] = ACTIONS(5763), + [anon_sym_shortintertext] = ACTIONS(5763), + }, + [720] = { + [sym_curly_group] = STATE(1114), + [sym_command_name] = ACTIONS(5751), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_BSLASHpart] = ACTIONS(5751), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddpart] = ACTIONS(5751), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHchapter] = ACTIONS(5751), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddchap] = ACTIONS(5751), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsection] = ACTIONS(5751), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddsec] = ACTIONS(5751), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHparagraph] = ACTIONS(5751), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5751), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHitem] = ACTIONS(5751), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5751), + [sym_placeholder] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym__] = ACTIONS(5751), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5751), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_SQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5749), + [anon_sym_BSLASHbegin] = ACTIONS(5751), + [anon_sym_BSLASHtitle] = ACTIONS(5751), + [anon_sym_BSLASHauthor] = ACTIONS(5751), + [anon_sym_BSLASHusepackage] = ACTIONS(5751), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5751), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5751), + [anon_sym_BSLASHinclude] = ACTIONS(5751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5751), + [anon_sym_BSLASHinput] = ACTIONS(5751), + [anon_sym_BSLASHsubfile] = ACTIONS(5751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5751), + [anon_sym_BSLASHbibliography] = ACTIONS(5751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5751), + [anon_sym_BSLASHincludesvg] = ACTIONS(5751), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5751), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5751), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5751), + [anon_sym_BSLASHimport] = ACTIONS(5751), + [anon_sym_BSLASHsubimport] = ACTIONS(5751), + [anon_sym_BSLASHinputfrom] = ACTIONS(5751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5751), + [anon_sym_BSLASHincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHcaption] = ACTIONS(5751), + [anon_sym_BSLASHcite] = ACTIONS(5751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCite] = ACTIONS(5751), + [anon_sym_BSLASHnocite] = ACTIONS(5751), + [anon_sym_BSLASHcitet] = ACTIONS(5751), + [anon_sym_BSLASHcitep] = ACTIONS(5751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteauthor] = ACTIONS(5751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitetitle] = ACTIONS(5751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteyear] = ACTIONS(5751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitedate] = ACTIONS(5751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteurl] = ACTIONS(5751), + [anon_sym_BSLASHfullcite] = ACTIONS(5751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5751), + [anon_sym_BSLASHcitealt] = ACTIONS(5751), + [anon_sym_BSLASHcitealp] = ACTIONS(5751), + [anon_sym_BSLASHcitetext] = ACTIONS(5751), + [anon_sym_BSLASHparencite] = ACTIONS(5751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHParencite] = ACTIONS(5751), + [anon_sym_BSLASHfootcite] = ACTIONS(5751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5751), + [anon_sym_BSLASHtextcite] = ACTIONS(5751), + [anon_sym_BSLASHTextcite] = ACTIONS(5751), + [anon_sym_BSLASHsmartcite] = ACTIONS(5751), + [anon_sym_BSLASHSmartcite] = ACTIONS(5751), + [anon_sym_BSLASHsupercite] = ACTIONS(5751), + [anon_sym_BSLASHautocite] = ACTIONS(5751), + [anon_sym_BSLASHAutocite] = ACTIONS(5751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHvolcite] = ACTIONS(5751), + [anon_sym_BSLASHVolcite] = ACTIONS(5751), + [anon_sym_BSLASHpvolcite] = ACTIONS(5751), + [anon_sym_BSLASHPvolcite] = ACTIONS(5751), + [anon_sym_BSLASHfvolcite] = ACTIONS(5751), + [anon_sym_BSLASHftvolcite] = ACTIONS(5751), + [anon_sym_BSLASHsvolcite] = ACTIONS(5751), + [anon_sym_BSLASHSvolcite] = ACTIONS(5751), + [anon_sym_BSLASHtvolcite] = ACTIONS(5751), + [anon_sym_BSLASHTvolcite] = ACTIONS(5751), + [anon_sym_BSLASHavolcite] = ACTIONS(5751), + [anon_sym_BSLASHAvolcite] = ACTIONS(5751), + [anon_sym_BSLASHnotecite] = ACTIONS(5751), + [anon_sym_BSLASHNotecite] = ACTIONS(5751), + [anon_sym_BSLASHpnotecite] = ACTIONS(5751), + [anon_sym_BSLASHPnotecite] = ACTIONS(5751), + [anon_sym_BSLASHfnotecite] = ACTIONS(5751), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [anon_sym_BSLASHref] = ACTIONS(5751), + [anon_sym_BSLASHeqref] = ACTIONS(5751), + [anon_sym_BSLASHvref] = ACTIONS(5751), + [anon_sym_BSLASHVref] = ACTIONS(5751), + [anon_sym_BSLASHautoref] = ACTIONS(5751), + [anon_sym_BSLASHpageref] = ACTIONS(5751), + [anon_sym_BSLASHcref] = ACTIONS(5751), + [anon_sym_BSLASHCref] = ACTIONS(5751), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnameCref] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHlabelcref] = ACTIONS(5751), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCrefrange] = ACTIONS(5751), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnewlabel] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5751), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5751), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5751), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdef] = ACTIONS(5751), + [anon_sym_BSLASHlet] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5751), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5751), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5751), + [anon_sym_BSLASHgls] = ACTIONS(5751), + [anon_sym_BSLASHGls] = ACTIONS(5751), + [anon_sym_BSLASHGLS] = ACTIONS(5751), + [anon_sym_BSLASHglspl] = ACTIONS(5751), + [anon_sym_BSLASHGlspl] = ACTIONS(5751), + [anon_sym_BSLASHGLSpl] = ACTIONS(5751), + [anon_sym_BSLASHglsdisp] = ACTIONS(5751), + [anon_sym_BSLASHglslink] = ACTIONS(5751), + [anon_sym_BSLASHglstext] = ACTIONS(5751), + [anon_sym_BSLASHGlstext] = ACTIONS(5751), + [anon_sym_BSLASHGLStext] = ACTIONS(5751), + [anon_sym_BSLASHglsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5751), + [anon_sym_BSLASHglsplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSplural] = ACTIONS(5751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHglsname] = ACTIONS(5751), + [anon_sym_BSLASHGlsname] = ACTIONS(5751), + [anon_sym_BSLASHGLSname] = ACTIONS(5751), + [anon_sym_BSLASHglssymbol] = ACTIONS(5751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5751), + [anon_sym_BSLASHglsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5751), + [anon_sym_BSLASHglsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5751), + [anon_sym_BSLASHglsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5751), + [anon_sym_BSLASHglsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5751), + [anon_sym_BSLASHglsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5751), + [anon_sym_BSLASHnewacronym] = ACTIONS(5751), + [anon_sym_BSLASHacrshort] = ACTIONS(5751), + [anon_sym_BSLASHAcrshort] = ACTIONS(5751), + [anon_sym_BSLASHACRshort] = ACTIONS(5751), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5751), + [anon_sym_BSLASHacrlong] = ACTIONS(5751), + [anon_sym_BSLASHAcrlong] = ACTIONS(5751), + [anon_sym_BSLASHACRlong] = ACTIONS(5751), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5751), + [anon_sym_BSLASHacrfull] = ACTIONS(5751), + [anon_sym_BSLASHAcrfull] = ACTIONS(5751), + [anon_sym_BSLASHACRfull] = ACTIONS(5751), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5751), + [anon_sym_BSLASHacs] = ACTIONS(5751), + [anon_sym_BSLASHAcs] = ACTIONS(5751), + [anon_sym_BSLASHacsp] = ACTIONS(5751), + [anon_sym_BSLASHAcsp] = ACTIONS(5751), + [anon_sym_BSLASHacl] = ACTIONS(5751), + [anon_sym_BSLASHAcl] = ACTIONS(5751), + [anon_sym_BSLASHaclp] = ACTIONS(5751), + [anon_sym_BSLASHAclp] = ACTIONS(5751), + [anon_sym_BSLASHacf] = ACTIONS(5751), + [anon_sym_BSLASHAcf] = ACTIONS(5751), + [anon_sym_BSLASHacfp] = ACTIONS(5751), + [anon_sym_BSLASHAcfp] = ACTIONS(5751), + [anon_sym_BSLASHac] = ACTIONS(5751), + [anon_sym_BSLASHAc] = ACTIONS(5751), + [anon_sym_BSLASHacp] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5751), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5751), + [anon_sym_BSLASHcolor] = ACTIONS(5751), + [anon_sym_BSLASHcolorbox] = ACTIONS(5751), + [anon_sym_BSLASHtextcolor] = ACTIONS(5751), + [anon_sym_BSLASHpagecolor] = ACTIONS(5751), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5751), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5751), + [anon_sym_BSLASHtext] = ACTIONS(5751), + [anon_sym_BSLASHintertext] = ACTIONS(5751), + [anon_sym_shortintertext] = ACTIONS(5751), + }, + [721] = { + [sym_curly_group] = STATE(1125), + [sym_command_name] = ACTIONS(5617), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_BSLASHpart] = ACTIONS(5617), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddpart] = ACTIONS(5617), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHchapter] = ACTIONS(5617), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddchap] = ACTIONS(5617), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsection] = ACTIONS(5617), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddsec] = ACTIONS(5617), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHparagraph] = ACTIONS(5617), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHitem] = ACTIONS(5617), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5617), + [sym_placeholder] = ACTIONS(5615), + [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5617), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LT] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_BANG] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_SQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), + [anon_sym_DOLLAR] = ACTIONS(5617), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), + [anon_sym_BSLASHbegin] = ACTIONS(5617), + [anon_sym_BSLASHtitle] = ACTIONS(5617), + [anon_sym_BSLASHauthor] = ACTIONS(5617), + [anon_sym_BSLASHusepackage] = ACTIONS(5617), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), + [anon_sym_BSLASHinclude] = ACTIONS(5617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), + [anon_sym_BSLASHinput] = ACTIONS(5617), + [anon_sym_BSLASHsubfile] = ACTIONS(5617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), + [anon_sym_BSLASHbibliography] = ACTIONS(5617), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), + [anon_sym_BSLASHincludesvg] = ACTIONS(5617), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), + [anon_sym_BSLASHimport] = ACTIONS(5617), + [anon_sym_BSLASHsubimport] = ACTIONS(5617), + [anon_sym_BSLASHinputfrom] = ACTIONS(5617), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), + [anon_sym_BSLASHincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHcaption] = ACTIONS(5617), + [anon_sym_BSLASHcite] = ACTIONS(5617), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCite] = ACTIONS(5617), + [anon_sym_BSLASHnocite] = ACTIONS(5617), + [anon_sym_BSLASHcitet] = ACTIONS(5617), + [anon_sym_BSLASHcitep] = ACTIONS(5617), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteauthor] = ACTIONS(5617), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitetitle] = ACTIONS(5617), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteyear] = ACTIONS(5617), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitedate] = ACTIONS(5617), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteurl] = ACTIONS(5617), + [anon_sym_BSLASHfullcite] = ACTIONS(5617), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), + [anon_sym_BSLASHcitealt] = ACTIONS(5617), + [anon_sym_BSLASHcitealp] = ACTIONS(5617), + [anon_sym_BSLASHcitetext] = ACTIONS(5617), + [anon_sym_BSLASHparencite] = ACTIONS(5617), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHParencite] = ACTIONS(5617), + [anon_sym_BSLASHfootcite] = ACTIONS(5617), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), + [anon_sym_BSLASHtextcite] = ACTIONS(5617), + [anon_sym_BSLASHTextcite] = ACTIONS(5617), + [anon_sym_BSLASHsmartcite] = ACTIONS(5617), + [anon_sym_BSLASHSmartcite] = ACTIONS(5617), + [anon_sym_BSLASHsupercite] = ACTIONS(5617), + [anon_sym_BSLASHautocite] = ACTIONS(5617), + [anon_sym_BSLASHAutocite] = ACTIONS(5617), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHvolcite] = ACTIONS(5617), + [anon_sym_BSLASHVolcite] = ACTIONS(5617), + [anon_sym_BSLASHpvolcite] = ACTIONS(5617), + [anon_sym_BSLASHPvolcite] = ACTIONS(5617), + [anon_sym_BSLASHfvolcite] = ACTIONS(5617), + [anon_sym_BSLASHftvolcite] = ACTIONS(5617), + [anon_sym_BSLASHsvolcite] = ACTIONS(5617), + [anon_sym_BSLASHSvolcite] = ACTIONS(5617), + [anon_sym_BSLASHtvolcite] = ACTIONS(5617), + [anon_sym_BSLASHTvolcite] = ACTIONS(5617), + [anon_sym_BSLASHavolcite] = ACTIONS(5617), + [anon_sym_BSLASHAvolcite] = ACTIONS(5617), + [anon_sym_BSLASHnotecite] = ACTIONS(5617), + [anon_sym_BSLASHNotecite] = ACTIONS(5617), + [anon_sym_BSLASHpnotecite] = ACTIONS(5617), + [anon_sym_BSLASHPnotecite] = ACTIONS(5617), + [anon_sym_BSLASHfnotecite] = ACTIONS(5617), + [anon_sym_BSLASHlabel] = ACTIONS(5617), + [anon_sym_BSLASHref] = ACTIONS(5617), + [anon_sym_BSLASHeqref] = ACTIONS(5617), + [anon_sym_BSLASHvref] = ACTIONS(5617), + [anon_sym_BSLASHVref] = ACTIONS(5617), + [anon_sym_BSLASHautoref] = ACTIONS(5617), + [anon_sym_BSLASHpageref] = ACTIONS(5617), + [anon_sym_BSLASHcref] = ACTIONS(5617), + [anon_sym_BSLASHCref] = ACTIONS(5617), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnameCref] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHlabelcref] = ACTIONS(5617), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCrefrange] = ACTIONS(5617), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnewlabel] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdef] = ACTIONS(5617), + [anon_sym_BSLASHlet] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), + [anon_sym_BSLASHgls] = ACTIONS(5617), + [anon_sym_BSLASHGls] = ACTIONS(5617), + [anon_sym_BSLASHGLS] = ACTIONS(5617), + [anon_sym_BSLASHglspl] = ACTIONS(5617), + [anon_sym_BSLASHGlspl] = ACTIONS(5617), + [anon_sym_BSLASHGLSpl] = ACTIONS(5617), + [anon_sym_BSLASHglsdisp] = ACTIONS(5617), + [anon_sym_BSLASHglslink] = ACTIONS(5617), + [anon_sym_BSLASHglstext] = ACTIONS(5617), + [anon_sym_BSLASHGlstext] = ACTIONS(5617), + [anon_sym_BSLASHGLStext] = ACTIONS(5617), + [anon_sym_BSLASHglsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), + [anon_sym_BSLASHglsplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSplural] = ACTIONS(5617), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHglsname] = ACTIONS(5617), + [anon_sym_BSLASHGlsname] = ACTIONS(5617), + [anon_sym_BSLASHGLSname] = ACTIONS(5617), + [anon_sym_BSLASHglssymbol] = ACTIONS(5617), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), + [anon_sym_BSLASHglsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), + [anon_sym_BSLASHglsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), + [anon_sym_BSLASHglsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), + [anon_sym_BSLASHglsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), + [anon_sym_BSLASHglsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), + [anon_sym_BSLASHnewacronym] = ACTIONS(5617), + [anon_sym_BSLASHacrshort] = ACTIONS(5617), + [anon_sym_BSLASHAcrshort] = ACTIONS(5617), + [anon_sym_BSLASHACRshort] = ACTIONS(5617), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), + [anon_sym_BSLASHacrlong] = ACTIONS(5617), + [anon_sym_BSLASHAcrlong] = ACTIONS(5617), + [anon_sym_BSLASHACRlong] = ACTIONS(5617), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), + [anon_sym_BSLASHacrfull] = ACTIONS(5617), + [anon_sym_BSLASHAcrfull] = ACTIONS(5617), + [anon_sym_BSLASHACRfull] = ACTIONS(5617), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), + [anon_sym_BSLASHacs] = ACTIONS(5617), + [anon_sym_BSLASHAcs] = ACTIONS(5617), + [anon_sym_BSLASHacsp] = ACTIONS(5617), + [anon_sym_BSLASHAcsp] = ACTIONS(5617), + [anon_sym_BSLASHacl] = ACTIONS(5617), + [anon_sym_BSLASHAcl] = ACTIONS(5617), + [anon_sym_BSLASHaclp] = ACTIONS(5617), + [anon_sym_BSLASHAclp] = ACTIONS(5617), + [anon_sym_BSLASHacf] = ACTIONS(5617), + [anon_sym_BSLASHAcf] = ACTIONS(5617), + [anon_sym_BSLASHacfp] = ACTIONS(5617), + [anon_sym_BSLASHAcfp] = ACTIONS(5617), + [anon_sym_BSLASHac] = ACTIONS(5617), + [anon_sym_BSLASHAc] = ACTIONS(5617), + [anon_sym_BSLASHacp] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), + [anon_sym_BSLASHcolor] = ACTIONS(5617), + [anon_sym_BSLASHcolorbox] = ACTIONS(5617), + [anon_sym_BSLASHtextcolor] = ACTIONS(5617), + [anon_sym_BSLASHpagecolor] = ACTIONS(5617), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), + [anon_sym_BSLASHtext] = ACTIONS(5617), + [anon_sym_BSLASHintertext] = ACTIONS(5617), + [anon_sym_shortintertext] = ACTIONS(5617), }, - [1274] = { - [sym_command_name] = ACTIONS(5125), + [722] = { + [sym_curly_group] = STATE(1126), + [sym_command_name] = ACTIONS(5613), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), - }, - [1275] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), - }, - [1276] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), - }, - [1277] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1799), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5625), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [anon_sym_BSLASHiffalse] = ACTIONS(5613), + [anon_sym_LPAREN] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_BSLASHpart] = ACTIONS(5613), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddpart] = ACTIONS(5613), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHchapter] = ACTIONS(5613), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddchap] = ACTIONS(5613), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsection] = ACTIONS(5613), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddsec] = ACTIONS(5613), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHparagraph] = ACTIONS(5613), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHitem] = ACTIONS(5613), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5613), + [sym_placeholder] = ACTIONS(5611), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym__] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_BANG] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_SQUOTE] = ACTIONS(5613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5611), + [anon_sym_DOLLAR] = ACTIONS(5613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5611), + [anon_sym_BSLASHbegin] = ACTIONS(5613), + [anon_sym_BSLASHtitle] = ACTIONS(5613), + [anon_sym_BSLASHauthor] = ACTIONS(5613), + [anon_sym_BSLASHusepackage] = ACTIONS(5613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), + [anon_sym_BSLASHinclude] = ACTIONS(5613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), + [anon_sym_BSLASHinput] = ACTIONS(5613), + [anon_sym_BSLASHsubfile] = ACTIONS(5613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), + [anon_sym_BSLASHbibliography] = ACTIONS(5613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), + [anon_sym_BSLASHincludesvg] = ACTIONS(5613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), + [anon_sym_BSLASHimport] = ACTIONS(5613), + [anon_sym_BSLASHsubimport] = ACTIONS(5613), + [anon_sym_BSLASHinputfrom] = ACTIONS(5613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), + [anon_sym_BSLASHincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHcaption] = ACTIONS(5613), + [anon_sym_BSLASHcite] = ACTIONS(5613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCite] = ACTIONS(5613), + [anon_sym_BSLASHnocite] = ACTIONS(5613), + [anon_sym_BSLASHcitet] = ACTIONS(5613), + [anon_sym_BSLASHcitep] = ACTIONS(5613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteauthor] = ACTIONS(5613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitetitle] = ACTIONS(5613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteyear] = ACTIONS(5613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitedate] = ACTIONS(5613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteurl] = ACTIONS(5613), + [anon_sym_BSLASHfullcite] = ACTIONS(5613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), + [anon_sym_BSLASHcitealt] = ACTIONS(5613), + [anon_sym_BSLASHcitealp] = ACTIONS(5613), + [anon_sym_BSLASHcitetext] = ACTIONS(5613), + [anon_sym_BSLASHparencite] = ACTIONS(5613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHParencite] = ACTIONS(5613), + [anon_sym_BSLASHfootcite] = ACTIONS(5613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), + [anon_sym_BSLASHtextcite] = ACTIONS(5613), + [anon_sym_BSLASHTextcite] = ACTIONS(5613), + [anon_sym_BSLASHsmartcite] = ACTIONS(5613), + [anon_sym_BSLASHSmartcite] = ACTIONS(5613), + [anon_sym_BSLASHsupercite] = ACTIONS(5613), + [anon_sym_BSLASHautocite] = ACTIONS(5613), + [anon_sym_BSLASHAutocite] = ACTIONS(5613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHvolcite] = ACTIONS(5613), + [anon_sym_BSLASHVolcite] = ACTIONS(5613), + [anon_sym_BSLASHpvolcite] = ACTIONS(5613), + [anon_sym_BSLASHPvolcite] = ACTIONS(5613), + [anon_sym_BSLASHfvolcite] = ACTIONS(5613), + [anon_sym_BSLASHftvolcite] = ACTIONS(5613), + [anon_sym_BSLASHsvolcite] = ACTIONS(5613), + [anon_sym_BSLASHSvolcite] = ACTIONS(5613), + [anon_sym_BSLASHtvolcite] = ACTIONS(5613), + [anon_sym_BSLASHTvolcite] = ACTIONS(5613), + [anon_sym_BSLASHavolcite] = ACTIONS(5613), + [anon_sym_BSLASHAvolcite] = ACTIONS(5613), + [anon_sym_BSLASHnotecite] = ACTIONS(5613), + [anon_sym_BSLASHNotecite] = ACTIONS(5613), + [anon_sym_BSLASHpnotecite] = ACTIONS(5613), + [anon_sym_BSLASHPnotecite] = ACTIONS(5613), + [anon_sym_BSLASHfnotecite] = ACTIONS(5613), + [anon_sym_BSLASHlabel] = ACTIONS(5613), + [anon_sym_BSLASHref] = ACTIONS(5613), + [anon_sym_BSLASHeqref] = ACTIONS(5613), + [anon_sym_BSLASHvref] = ACTIONS(5613), + [anon_sym_BSLASHVref] = ACTIONS(5613), + [anon_sym_BSLASHautoref] = ACTIONS(5613), + [anon_sym_BSLASHpageref] = ACTIONS(5613), + [anon_sym_BSLASHcref] = ACTIONS(5613), + [anon_sym_BSLASHCref] = ACTIONS(5613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnameCref] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHlabelcref] = ACTIONS(5613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCrefrange] = ACTIONS(5613), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnewlabel] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdef] = ACTIONS(5613), + [anon_sym_BSLASHlet] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), + [anon_sym_BSLASHgls] = ACTIONS(5613), + [anon_sym_BSLASHGls] = ACTIONS(5613), + [anon_sym_BSLASHGLS] = ACTIONS(5613), + [anon_sym_BSLASHglspl] = ACTIONS(5613), + [anon_sym_BSLASHGlspl] = ACTIONS(5613), + [anon_sym_BSLASHGLSpl] = ACTIONS(5613), + [anon_sym_BSLASHglsdisp] = ACTIONS(5613), + [anon_sym_BSLASHglslink] = ACTIONS(5613), + [anon_sym_BSLASHglstext] = ACTIONS(5613), + [anon_sym_BSLASHGlstext] = ACTIONS(5613), + [anon_sym_BSLASHGLStext] = ACTIONS(5613), + [anon_sym_BSLASHglsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), + [anon_sym_BSLASHglsplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSplural] = ACTIONS(5613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHglsname] = ACTIONS(5613), + [anon_sym_BSLASHGlsname] = ACTIONS(5613), + [anon_sym_BSLASHGLSname] = ACTIONS(5613), + [anon_sym_BSLASHglssymbol] = ACTIONS(5613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), + [anon_sym_BSLASHglsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), + [anon_sym_BSLASHglsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), + [anon_sym_BSLASHglsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), + [anon_sym_BSLASHglsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), + [anon_sym_BSLASHglsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), + [anon_sym_BSLASHnewacronym] = ACTIONS(5613), + [anon_sym_BSLASHacrshort] = ACTIONS(5613), + [anon_sym_BSLASHAcrshort] = ACTIONS(5613), + [anon_sym_BSLASHACRshort] = ACTIONS(5613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), + [anon_sym_BSLASHacrlong] = ACTIONS(5613), + [anon_sym_BSLASHAcrlong] = ACTIONS(5613), + [anon_sym_BSLASHACRlong] = ACTIONS(5613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), + [anon_sym_BSLASHacrfull] = ACTIONS(5613), + [anon_sym_BSLASHAcrfull] = ACTIONS(5613), + [anon_sym_BSLASHACRfull] = ACTIONS(5613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), + [anon_sym_BSLASHacs] = ACTIONS(5613), + [anon_sym_BSLASHAcs] = ACTIONS(5613), + [anon_sym_BSLASHacsp] = ACTIONS(5613), + [anon_sym_BSLASHAcsp] = ACTIONS(5613), + [anon_sym_BSLASHacl] = ACTIONS(5613), + [anon_sym_BSLASHAcl] = ACTIONS(5613), + [anon_sym_BSLASHaclp] = ACTIONS(5613), + [anon_sym_BSLASHAclp] = ACTIONS(5613), + [anon_sym_BSLASHacf] = ACTIONS(5613), + [anon_sym_BSLASHAcf] = ACTIONS(5613), + [anon_sym_BSLASHacfp] = ACTIONS(5613), + [anon_sym_BSLASHAcfp] = ACTIONS(5613), + [anon_sym_BSLASHac] = ACTIONS(5613), + [anon_sym_BSLASHAc] = ACTIONS(5613), + [anon_sym_BSLASHacp] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), + [anon_sym_BSLASHcolor] = ACTIONS(5613), + [anon_sym_BSLASHcolorbox] = ACTIONS(5613), + [anon_sym_BSLASHtextcolor] = ACTIONS(5613), + [anon_sym_BSLASHpagecolor] = ACTIONS(5613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), + [anon_sym_BSLASHtext] = ACTIONS(5613), + [anon_sym_BSLASHintertext] = ACTIONS(5613), + [anon_sym_shortintertext] = ACTIONS(5613), }, - [1278] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1830), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5627), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [723] = { + [sym_curly_group] = STATE(1127), + [sym_command_name] = ACTIONS(5605), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_BSLASHpart] = ACTIONS(5605), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddpart] = ACTIONS(5605), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHchapter] = ACTIONS(5605), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddchap] = ACTIONS(5605), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsection] = ACTIONS(5605), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddsec] = ACTIONS(5605), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHparagraph] = ACTIONS(5605), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5605), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHitem] = ACTIONS(5605), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5605), + [sym_placeholder] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_SLASH] = ACTIONS(5605), + [anon_sym_CARET] = ACTIONS(5605), + [anon_sym__] = ACTIONS(5605), + [anon_sym_LT] = ACTIONS(5605), + [anon_sym_GT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5605), + [anon_sym_PIPE] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_SQUOTE] = ACTIONS(5605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5603), + [anon_sym_DOLLAR] = ACTIONS(5605), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5603), + [anon_sym_BSLASHbegin] = ACTIONS(5605), + [anon_sym_BSLASHtitle] = ACTIONS(5605), + [anon_sym_BSLASHauthor] = ACTIONS(5605), + [anon_sym_BSLASHusepackage] = ACTIONS(5605), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5605), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5605), + [anon_sym_BSLASHinclude] = ACTIONS(5605), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5605), + [anon_sym_BSLASHinput] = ACTIONS(5605), + [anon_sym_BSLASHsubfile] = ACTIONS(5605), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5605), + [anon_sym_BSLASHbibliography] = ACTIONS(5605), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5605), + [anon_sym_BSLASHincludesvg] = ACTIONS(5605), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5605), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5605), + [anon_sym_BSLASHimport] = ACTIONS(5605), + [anon_sym_BSLASHsubimport] = ACTIONS(5605), + [anon_sym_BSLASHinputfrom] = ACTIONS(5605), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5605), + [anon_sym_BSLASHincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHcaption] = ACTIONS(5605), + [anon_sym_BSLASHcite] = ACTIONS(5605), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCite] = ACTIONS(5605), + [anon_sym_BSLASHnocite] = ACTIONS(5605), + [anon_sym_BSLASHcitet] = ACTIONS(5605), + [anon_sym_BSLASHcitep] = ACTIONS(5605), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteauthor] = ACTIONS(5605), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5605), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitetitle] = ACTIONS(5605), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteyear] = ACTIONS(5605), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitedate] = ACTIONS(5605), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteurl] = ACTIONS(5605), + [anon_sym_BSLASHfullcite] = ACTIONS(5605), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5605), + [anon_sym_BSLASHcitealt] = ACTIONS(5605), + [anon_sym_BSLASHcitealp] = ACTIONS(5605), + [anon_sym_BSLASHcitetext] = ACTIONS(5605), + [anon_sym_BSLASHparencite] = ACTIONS(5605), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHParencite] = ACTIONS(5605), + [anon_sym_BSLASHfootcite] = ACTIONS(5605), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5605), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5605), + [anon_sym_BSLASHtextcite] = ACTIONS(5605), + [anon_sym_BSLASHTextcite] = ACTIONS(5605), + [anon_sym_BSLASHsmartcite] = ACTIONS(5605), + [anon_sym_BSLASHSmartcite] = ACTIONS(5605), + [anon_sym_BSLASHsupercite] = ACTIONS(5605), + [anon_sym_BSLASHautocite] = ACTIONS(5605), + [anon_sym_BSLASHAutocite] = ACTIONS(5605), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHvolcite] = ACTIONS(5605), + [anon_sym_BSLASHVolcite] = ACTIONS(5605), + [anon_sym_BSLASHpvolcite] = ACTIONS(5605), + [anon_sym_BSLASHPvolcite] = ACTIONS(5605), + [anon_sym_BSLASHfvolcite] = ACTIONS(5605), + [anon_sym_BSLASHftvolcite] = ACTIONS(5605), + [anon_sym_BSLASHsvolcite] = ACTIONS(5605), + [anon_sym_BSLASHSvolcite] = ACTIONS(5605), + [anon_sym_BSLASHtvolcite] = ACTIONS(5605), + [anon_sym_BSLASHTvolcite] = ACTIONS(5605), + [anon_sym_BSLASHavolcite] = ACTIONS(5605), + [anon_sym_BSLASHAvolcite] = ACTIONS(5605), + [anon_sym_BSLASHnotecite] = ACTIONS(5605), + [anon_sym_BSLASHNotecite] = ACTIONS(5605), + [anon_sym_BSLASHpnotecite] = ACTIONS(5605), + [anon_sym_BSLASHPnotecite] = ACTIONS(5605), + [anon_sym_BSLASHfnotecite] = ACTIONS(5605), + [anon_sym_BSLASHlabel] = ACTIONS(5605), + [anon_sym_BSLASHref] = ACTIONS(5605), + [anon_sym_BSLASHeqref] = ACTIONS(5605), + [anon_sym_BSLASHvref] = ACTIONS(5605), + [anon_sym_BSLASHVref] = ACTIONS(5605), + [anon_sym_BSLASHautoref] = ACTIONS(5605), + [anon_sym_BSLASHpageref] = ACTIONS(5605), + [anon_sym_BSLASHcref] = ACTIONS(5605), + [anon_sym_BSLASHCref] = ACTIONS(5605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnameCref] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHlabelcref] = ACTIONS(5605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCrefrange] = ACTIONS(5605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnewlabel] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5605), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5605), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5605), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdef] = ACTIONS(5605), + [anon_sym_BSLASHlet] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5605), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5605), + [anon_sym_BSLASHgls] = ACTIONS(5605), + [anon_sym_BSLASHGls] = ACTIONS(5605), + [anon_sym_BSLASHGLS] = ACTIONS(5605), + [anon_sym_BSLASHglspl] = ACTIONS(5605), + [anon_sym_BSLASHGlspl] = ACTIONS(5605), + [anon_sym_BSLASHGLSpl] = ACTIONS(5605), + [anon_sym_BSLASHglsdisp] = ACTIONS(5605), + [anon_sym_BSLASHglslink] = ACTIONS(5605), + [anon_sym_BSLASHglstext] = ACTIONS(5605), + [anon_sym_BSLASHGlstext] = ACTIONS(5605), + [anon_sym_BSLASHGLStext] = ACTIONS(5605), + [anon_sym_BSLASHglsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5605), + [anon_sym_BSLASHglsplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSplural] = ACTIONS(5605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHglsname] = ACTIONS(5605), + [anon_sym_BSLASHGlsname] = ACTIONS(5605), + [anon_sym_BSLASHGLSname] = ACTIONS(5605), + [anon_sym_BSLASHglssymbol] = ACTIONS(5605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5605), + [anon_sym_BSLASHglsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5605), + [anon_sym_BSLASHglsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5605), + [anon_sym_BSLASHglsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5605), + [anon_sym_BSLASHglsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5605), + [anon_sym_BSLASHglsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5605), + [anon_sym_BSLASHacrshort] = ACTIONS(5605), + [anon_sym_BSLASHAcrshort] = ACTIONS(5605), + [anon_sym_BSLASHACRshort] = ACTIONS(5605), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5605), + [anon_sym_BSLASHacrlong] = ACTIONS(5605), + [anon_sym_BSLASHAcrlong] = ACTIONS(5605), + [anon_sym_BSLASHACRlong] = ACTIONS(5605), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5605), + [anon_sym_BSLASHacrfull] = ACTIONS(5605), + [anon_sym_BSLASHAcrfull] = ACTIONS(5605), + [anon_sym_BSLASHACRfull] = ACTIONS(5605), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5605), + [anon_sym_BSLASHacs] = ACTIONS(5605), + [anon_sym_BSLASHAcs] = ACTIONS(5605), + [anon_sym_BSLASHacsp] = ACTIONS(5605), + [anon_sym_BSLASHAcsp] = ACTIONS(5605), + [anon_sym_BSLASHacl] = ACTIONS(5605), + [anon_sym_BSLASHAcl] = ACTIONS(5605), + [anon_sym_BSLASHaclp] = ACTIONS(5605), + [anon_sym_BSLASHAclp] = ACTIONS(5605), + [anon_sym_BSLASHacf] = ACTIONS(5605), + [anon_sym_BSLASHAcf] = ACTIONS(5605), + [anon_sym_BSLASHacfp] = ACTIONS(5605), + [anon_sym_BSLASHAcfp] = ACTIONS(5605), + [anon_sym_BSLASHac] = ACTIONS(5605), + [anon_sym_BSLASHAc] = ACTIONS(5605), + [anon_sym_BSLASHacp] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5605), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5605), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5605), + [anon_sym_BSLASHcolor] = ACTIONS(5605), + [anon_sym_BSLASHcolorbox] = ACTIONS(5605), + [anon_sym_BSLASHtextcolor] = ACTIONS(5605), + [anon_sym_BSLASHpagecolor] = ACTIONS(5605), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5605), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5605), + [anon_sym_BSLASHtext] = ACTIONS(5605), + [anon_sym_BSLASHintertext] = ACTIONS(5605), + [anon_sym_shortintertext] = ACTIONS(5605), }, - [1279] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1843), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1845), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACK] = ACTIONS(5629), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [724] = { + [sym_curly_group] = STATE(1161), + [sym_command_name] = ACTIONS(5767), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_RBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_BSLASHpart] = ACTIONS(5767), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddpart] = ACTIONS(5767), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHchapter] = ACTIONS(5767), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddchap] = ACTIONS(5767), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsection] = ACTIONS(5767), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddsec] = ACTIONS(5767), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHparagraph] = ACTIONS(5767), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5767), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHitem] = ACTIONS(5767), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5767), + [sym_placeholder] = ACTIONS(5765), + [anon_sym_PLUS] = ACTIONS(5767), + [anon_sym_DASH] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_CARET] = ACTIONS(5767), + [anon_sym__] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5767), + [anon_sym_PIPE] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_SQUOTE] = ACTIONS(5767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5765), + [anon_sym_DOLLAR] = ACTIONS(5767), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5765), + [anon_sym_BSLASHbegin] = ACTIONS(5767), + [anon_sym_BSLASHend] = ACTIONS(5767), + [anon_sym_BSLASHtitle] = ACTIONS(5767), + [anon_sym_BSLASHauthor] = ACTIONS(5767), + [anon_sym_BSLASHusepackage] = ACTIONS(5767), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5767), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5767), + [anon_sym_BSLASHinclude] = ACTIONS(5767), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5767), + [anon_sym_BSLASHinput] = ACTIONS(5767), + [anon_sym_BSLASHsubfile] = ACTIONS(5767), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5767), + [anon_sym_BSLASHbibliography] = ACTIONS(5767), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5767), + [anon_sym_BSLASHincludesvg] = ACTIONS(5767), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5767), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5767), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5767), + [anon_sym_BSLASHimport] = ACTIONS(5767), + [anon_sym_BSLASHsubimport] = ACTIONS(5767), + [anon_sym_BSLASHinputfrom] = ACTIONS(5767), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5767), + [anon_sym_BSLASHincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHcaption] = ACTIONS(5767), + [anon_sym_BSLASHcite] = ACTIONS(5767), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCite] = ACTIONS(5767), + [anon_sym_BSLASHnocite] = ACTIONS(5767), + [anon_sym_BSLASHcitet] = ACTIONS(5767), + [anon_sym_BSLASHcitep] = ACTIONS(5767), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteauthor] = ACTIONS(5767), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5767), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitetitle] = ACTIONS(5767), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteyear] = ACTIONS(5767), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitedate] = ACTIONS(5767), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteurl] = ACTIONS(5767), + [anon_sym_BSLASHfullcite] = ACTIONS(5767), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5767), + [anon_sym_BSLASHcitealt] = ACTIONS(5767), + [anon_sym_BSLASHcitealp] = ACTIONS(5767), + [anon_sym_BSLASHcitetext] = ACTIONS(5767), + [anon_sym_BSLASHparencite] = ACTIONS(5767), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHParencite] = ACTIONS(5767), + [anon_sym_BSLASHfootcite] = ACTIONS(5767), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5767), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5767), + [anon_sym_BSLASHtextcite] = ACTIONS(5767), + [anon_sym_BSLASHTextcite] = ACTIONS(5767), + [anon_sym_BSLASHsmartcite] = ACTIONS(5767), + [anon_sym_BSLASHSmartcite] = ACTIONS(5767), + [anon_sym_BSLASHsupercite] = ACTIONS(5767), + [anon_sym_BSLASHautocite] = ACTIONS(5767), + [anon_sym_BSLASHAutocite] = ACTIONS(5767), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHvolcite] = ACTIONS(5767), + [anon_sym_BSLASHVolcite] = ACTIONS(5767), + [anon_sym_BSLASHpvolcite] = ACTIONS(5767), + [anon_sym_BSLASHPvolcite] = ACTIONS(5767), + [anon_sym_BSLASHfvolcite] = ACTIONS(5767), + [anon_sym_BSLASHftvolcite] = ACTIONS(5767), + [anon_sym_BSLASHsvolcite] = ACTIONS(5767), + [anon_sym_BSLASHSvolcite] = ACTIONS(5767), + [anon_sym_BSLASHtvolcite] = ACTIONS(5767), + [anon_sym_BSLASHTvolcite] = ACTIONS(5767), + [anon_sym_BSLASHavolcite] = ACTIONS(5767), + [anon_sym_BSLASHAvolcite] = ACTIONS(5767), + [anon_sym_BSLASHnotecite] = ACTIONS(5767), + [anon_sym_BSLASHNotecite] = ACTIONS(5767), + [anon_sym_BSLASHpnotecite] = ACTIONS(5767), + [anon_sym_BSLASHPnotecite] = ACTIONS(5767), + [anon_sym_BSLASHfnotecite] = ACTIONS(5767), + [anon_sym_BSLASHlabel] = ACTIONS(5767), + [anon_sym_BSLASHref] = ACTIONS(5767), + [anon_sym_BSLASHeqref] = ACTIONS(5767), + [anon_sym_BSLASHvref] = ACTIONS(5767), + [anon_sym_BSLASHVref] = ACTIONS(5767), + [anon_sym_BSLASHautoref] = ACTIONS(5767), + [anon_sym_BSLASHpageref] = ACTIONS(5767), + [anon_sym_BSLASHcref] = ACTIONS(5767), + [anon_sym_BSLASHCref] = ACTIONS(5767), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnameCref] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHlabelcref] = ACTIONS(5767), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCrefrange] = ACTIONS(5767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnewlabel] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5767), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5767), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5767), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdef] = ACTIONS(5767), + [anon_sym_BSLASHlet] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5767), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5767), + [anon_sym_BSLASHgls] = ACTIONS(5767), + [anon_sym_BSLASHGls] = ACTIONS(5767), + [anon_sym_BSLASHGLS] = ACTIONS(5767), + [anon_sym_BSLASHglspl] = ACTIONS(5767), + [anon_sym_BSLASHGlspl] = ACTIONS(5767), + [anon_sym_BSLASHGLSpl] = ACTIONS(5767), + [anon_sym_BSLASHglsdisp] = ACTIONS(5767), + [anon_sym_BSLASHglslink] = ACTIONS(5767), + [anon_sym_BSLASHglstext] = ACTIONS(5767), + [anon_sym_BSLASHGlstext] = ACTIONS(5767), + [anon_sym_BSLASHGLStext] = ACTIONS(5767), + [anon_sym_BSLASHglsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5767), + [anon_sym_BSLASHglsplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSplural] = ACTIONS(5767), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHglsname] = ACTIONS(5767), + [anon_sym_BSLASHGlsname] = ACTIONS(5767), + [anon_sym_BSLASHGLSname] = ACTIONS(5767), + [anon_sym_BSLASHglssymbol] = ACTIONS(5767), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5767), + [anon_sym_BSLASHglsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5767), + [anon_sym_BSLASHglsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5767), + [anon_sym_BSLASHglsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5767), + [anon_sym_BSLASHglsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5767), + [anon_sym_BSLASHglsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5767), + [anon_sym_BSLASHnewacronym] = ACTIONS(5767), + [anon_sym_BSLASHacrshort] = ACTIONS(5767), + [anon_sym_BSLASHAcrshort] = ACTIONS(5767), + [anon_sym_BSLASHACRshort] = ACTIONS(5767), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5767), + [anon_sym_BSLASHacrlong] = ACTIONS(5767), + [anon_sym_BSLASHAcrlong] = ACTIONS(5767), + [anon_sym_BSLASHACRlong] = ACTIONS(5767), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5767), + [anon_sym_BSLASHacrfull] = ACTIONS(5767), + [anon_sym_BSLASHAcrfull] = ACTIONS(5767), + [anon_sym_BSLASHACRfull] = ACTIONS(5767), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5767), + [anon_sym_BSLASHacs] = ACTIONS(5767), + [anon_sym_BSLASHAcs] = ACTIONS(5767), + [anon_sym_BSLASHacsp] = ACTIONS(5767), + [anon_sym_BSLASHAcsp] = ACTIONS(5767), + [anon_sym_BSLASHacl] = ACTIONS(5767), + [anon_sym_BSLASHAcl] = ACTIONS(5767), + [anon_sym_BSLASHaclp] = ACTIONS(5767), + [anon_sym_BSLASHAclp] = ACTIONS(5767), + [anon_sym_BSLASHacf] = ACTIONS(5767), + [anon_sym_BSLASHAcf] = ACTIONS(5767), + [anon_sym_BSLASHacfp] = ACTIONS(5767), + [anon_sym_BSLASHAcfp] = ACTIONS(5767), + [anon_sym_BSLASHac] = ACTIONS(5767), + [anon_sym_BSLASHAc] = ACTIONS(5767), + [anon_sym_BSLASHacp] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5767), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5767), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5767), + [anon_sym_BSLASHcolor] = ACTIONS(5767), + [anon_sym_BSLASHcolorbox] = ACTIONS(5767), + [anon_sym_BSLASHtextcolor] = ACTIONS(5767), + [anon_sym_BSLASHpagecolor] = ACTIONS(5767), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5767), + [anon_sym_BSLASHtext] = ACTIONS(5767), + [anon_sym_BSLASHintertext] = ACTIONS(5767), + [anon_sym_shortintertext] = ACTIONS(5767), }, - [1280] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1786), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5631), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [725] = { + [sym_curly_group] = STATE(1162), + [sym_command_name] = ACTIONS(5771), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_RBRACK] = ACTIONS(5769), + [anon_sym_COMMA] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5769), + [anon_sym_BSLASHpart] = ACTIONS(5771), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddpart] = ACTIONS(5771), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHchapter] = ACTIONS(5771), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddchap] = ACTIONS(5771), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsection] = ACTIONS(5771), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddsec] = ACTIONS(5771), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHparagraph] = ACTIONS(5771), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5771), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHitem] = ACTIONS(5771), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5771), + [sym_placeholder] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_SLASH] = ACTIONS(5771), + [anon_sym_CARET] = ACTIONS(5771), + [anon_sym__] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5771), + [anon_sym_GT] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5771), + [anon_sym_PIPE] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_SQUOTE] = ACTIONS(5771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5771), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5769), + [anon_sym_BSLASHbegin] = ACTIONS(5771), + [anon_sym_BSLASHend] = ACTIONS(5771), + [anon_sym_BSLASHtitle] = ACTIONS(5771), + [anon_sym_BSLASHauthor] = ACTIONS(5771), + [anon_sym_BSLASHusepackage] = ACTIONS(5771), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5771), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5771), + [anon_sym_BSLASHinclude] = ACTIONS(5771), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5771), + [anon_sym_BSLASHinput] = ACTIONS(5771), + [anon_sym_BSLASHsubfile] = ACTIONS(5771), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5771), + [anon_sym_BSLASHbibliography] = ACTIONS(5771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5771), + [anon_sym_BSLASHincludesvg] = ACTIONS(5771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5771), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5771), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5771), + [anon_sym_BSLASHimport] = ACTIONS(5771), + [anon_sym_BSLASHsubimport] = ACTIONS(5771), + [anon_sym_BSLASHinputfrom] = ACTIONS(5771), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5771), + [anon_sym_BSLASHincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHcaption] = ACTIONS(5771), + [anon_sym_BSLASHcite] = ACTIONS(5771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCite] = ACTIONS(5771), + [anon_sym_BSLASHnocite] = ACTIONS(5771), + [anon_sym_BSLASHcitet] = ACTIONS(5771), + [anon_sym_BSLASHcitep] = ACTIONS(5771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteauthor] = ACTIONS(5771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitetitle] = ACTIONS(5771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteyear] = ACTIONS(5771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitedate] = ACTIONS(5771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteurl] = ACTIONS(5771), + [anon_sym_BSLASHfullcite] = ACTIONS(5771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5771), + [anon_sym_BSLASHcitealt] = ACTIONS(5771), + [anon_sym_BSLASHcitealp] = ACTIONS(5771), + [anon_sym_BSLASHcitetext] = ACTIONS(5771), + [anon_sym_BSLASHparencite] = ACTIONS(5771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHParencite] = ACTIONS(5771), + [anon_sym_BSLASHfootcite] = ACTIONS(5771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5771), + [anon_sym_BSLASHtextcite] = ACTIONS(5771), + [anon_sym_BSLASHTextcite] = ACTIONS(5771), + [anon_sym_BSLASHsmartcite] = ACTIONS(5771), + [anon_sym_BSLASHSmartcite] = ACTIONS(5771), + [anon_sym_BSLASHsupercite] = ACTIONS(5771), + [anon_sym_BSLASHautocite] = ACTIONS(5771), + [anon_sym_BSLASHAutocite] = ACTIONS(5771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHvolcite] = ACTIONS(5771), + [anon_sym_BSLASHVolcite] = ACTIONS(5771), + [anon_sym_BSLASHpvolcite] = ACTIONS(5771), + [anon_sym_BSLASHPvolcite] = ACTIONS(5771), + [anon_sym_BSLASHfvolcite] = ACTIONS(5771), + [anon_sym_BSLASHftvolcite] = ACTIONS(5771), + [anon_sym_BSLASHsvolcite] = ACTIONS(5771), + [anon_sym_BSLASHSvolcite] = ACTIONS(5771), + [anon_sym_BSLASHtvolcite] = ACTIONS(5771), + [anon_sym_BSLASHTvolcite] = ACTIONS(5771), + [anon_sym_BSLASHavolcite] = ACTIONS(5771), + [anon_sym_BSLASHAvolcite] = ACTIONS(5771), + [anon_sym_BSLASHnotecite] = ACTIONS(5771), + [anon_sym_BSLASHNotecite] = ACTIONS(5771), + [anon_sym_BSLASHpnotecite] = ACTIONS(5771), + [anon_sym_BSLASHPnotecite] = ACTIONS(5771), + [anon_sym_BSLASHfnotecite] = ACTIONS(5771), + [anon_sym_BSLASHlabel] = ACTIONS(5771), + [anon_sym_BSLASHref] = ACTIONS(5771), + [anon_sym_BSLASHeqref] = ACTIONS(5771), + [anon_sym_BSLASHvref] = ACTIONS(5771), + [anon_sym_BSLASHVref] = ACTIONS(5771), + [anon_sym_BSLASHautoref] = ACTIONS(5771), + [anon_sym_BSLASHpageref] = ACTIONS(5771), + [anon_sym_BSLASHcref] = ACTIONS(5771), + [anon_sym_BSLASHCref] = ACTIONS(5771), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnameCref] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHlabelcref] = ACTIONS(5771), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCrefrange] = ACTIONS(5771), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnewlabel] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5771), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5771), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5771), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdef] = ACTIONS(5771), + [anon_sym_BSLASHlet] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5771), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5771), + [anon_sym_BSLASHgls] = ACTIONS(5771), + [anon_sym_BSLASHGls] = ACTIONS(5771), + [anon_sym_BSLASHGLS] = ACTIONS(5771), + [anon_sym_BSLASHglspl] = ACTIONS(5771), + [anon_sym_BSLASHGlspl] = ACTIONS(5771), + [anon_sym_BSLASHGLSpl] = ACTIONS(5771), + [anon_sym_BSLASHglsdisp] = ACTIONS(5771), + [anon_sym_BSLASHglslink] = ACTIONS(5771), + [anon_sym_BSLASHglstext] = ACTIONS(5771), + [anon_sym_BSLASHGlstext] = ACTIONS(5771), + [anon_sym_BSLASHGLStext] = ACTIONS(5771), + [anon_sym_BSLASHglsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5771), + [anon_sym_BSLASHglsplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSplural] = ACTIONS(5771), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHglsname] = ACTIONS(5771), + [anon_sym_BSLASHGlsname] = ACTIONS(5771), + [anon_sym_BSLASHGLSname] = ACTIONS(5771), + [anon_sym_BSLASHglssymbol] = ACTIONS(5771), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5771), + [anon_sym_BSLASHglsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5771), + [anon_sym_BSLASHglsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5771), + [anon_sym_BSLASHglsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5771), + [anon_sym_BSLASHglsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5771), + [anon_sym_BSLASHglsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5771), + [anon_sym_BSLASHnewacronym] = ACTIONS(5771), + [anon_sym_BSLASHacrshort] = ACTIONS(5771), + [anon_sym_BSLASHAcrshort] = ACTIONS(5771), + [anon_sym_BSLASHACRshort] = ACTIONS(5771), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5771), + [anon_sym_BSLASHacrlong] = ACTIONS(5771), + [anon_sym_BSLASHAcrlong] = ACTIONS(5771), + [anon_sym_BSLASHACRlong] = ACTIONS(5771), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5771), + [anon_sym_BSLASHacrfull] = ACTIONS(5771), + [anon_sym_BSLASHAcrfull] = ACTIONS(5771), + [anon_sym_BSLASHACRfull] = ACTIONS(5771), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5771), + [anon_sym_BSLASHacs] = ACTIONS(5771), + [anon_sym_BSLASHAcs] = ACTIONS(5771), + [anon_sym_BSLASHacsp] = ACTIONS(5771), + [anon_sym_BSLASHAcsp] = ACTIONS(5771), + [anon_sym_BSLASHacl] = ACTIONS(5771), + [anon_sym_BSLASHAcl] = ACTIONS(5771), + [anon_sym_BSLASHaclp] = ACTIONS(5771), + [anon_sym_BSLASHAclp] = ACTIONS(5771), + [anon_sym_BSLASHacf] = ACTIONS(5771), + [anon_sym_BSLASHAcf] = ACTIONS(5771), + [anon_sym_BSLASHacfp] = ACTIONS(5771), + [anon_sym_BSLASHAcfp] = ACTIONS(5771), + [anon_sym_BSLASHac] = ACTIONS(5771), + [anon_sym_BSLASHAc] = ACTIONS(5771), + [anon_sym_BSLASHacp] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5771), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5771), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5771), + [anon_sym_BSLASHcolor] = ACTIONS(5771), + [anon_sym_BSLASHcolorbox] = ACTIONS(5771), + [anon_sym_BSLASHtextcolor] = ACTIONS(5771), + [anon_sym_BSLASHpagecolor] = ACTIONS(5771), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5771), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5771), + [anon_sym_BSLASHtext] = ACTIONS(5771), + [anon_sym_BSLASHintertext] = ACTIONS(5771), + [anon_sym_shortintertext] = ACTIONS(5771), }, - [1281] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1837), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5633), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [726] = { + [sym_brack_group_text] = STATE(1163), + [sym_command_name] = ACTIONS(5775), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_RBRACK] = ACTIONS(5773), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_BSLASHpart] = ACTIONS(5775), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddpart] = ACTIONS(5775), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHchapter] = ACTIONS(5775), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddchap] = ACTIONS(5775), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsection] = ACTIONS(5775), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddsec] = ACTIONS(5775), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHparagraph] = ACTIONS(5775), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5775), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHitem] = ACTIONS(5775), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5773), + [sym_word] = ACTIONS(5775), + [sym_placeholder] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_SLASH] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5775), + [anon_sym__] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5775), + [anon_sym_PIPE] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_SQUOTE] = ACTIONS(5775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5775), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5773), + [anon_sym_BSLASHbegin] = ACTIONS(5775), + [anon_sym_BSLASHend] = ACTIONS(5775), + [anon_sym_BSLASHtitle] = ACTIONS(5775), + [anon_sym_BSLASHauthor] = ACTIONS(5775), + [anon_sym_BSLASHusepackage] = ACTIONS(5775), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5775), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5775), + [anon_sym_BSLASHinclude] = ACTIONS(5775), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5775), + [anon_sym_BSLASHinput] = ACTIONS(5775), + [anon_sym_BSLASHsubfile] = ACTIONS(5775), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5775), + [anon_sym_BSLASHbibliography] = ACTIONS(5775), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5775), + [anon_sym_BSLASHincludesvg] = ACTIONS(5775), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5775), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5775), + [anon_sym_BSLASHimport] = ACTIONS(5775), + [anon_sym_BSLASHsubimport] = ACTIONS(5775), + [anon_sym_BSLASHinputfrom] = ACTIONS(5775), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5775), + [anon_sym_BSLASHincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHcaption] = ACTIONS(5775), + [anon_sym_BSLASHcite] = ACTIONS(5775), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCite] = ACTIONS(5775), + [anon_sym_BSLASHnocite] = ACTIONS(5775), + [anon_sym_BSLASHcitet] = ACTIONS(5775), + [anon_sym_BSLASHcitep] = ACTIONS(5775), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteauthor] = ACTIONS(5775), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5775), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitetitle] = ACTIONS(5775), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteyear] = ACTIONS(5775), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitedate] = ACTIONS(5775), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteurl] = ACTIONS(5775), + [anon_sym_BSLASHfullcite] = ACTIONS(5775), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5775), + [anon_sym_BSLASHcitealt] = ACTIONS(5775), + [anon_sym_BSLASHcitealp] = ACTIONS(5775), + [anon_sym_BSLASHcitetext] = ACTIONS(5775), + [anon_sym_BSLASHparencite] = ACTIONS(5775), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHParencite] = ACTIONS(5775), + [anon_sym_BSLASHfootcite] = ACTIONS(5775), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5775), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5775), + [anon_sym_BSLASHtextcite] = ACTIONS(5775), + [anon_sym_BSLASHTextcite] = ACTIONS(5775), + [anon_sym_BSLASHsmartcite] = ACTIONS(5775), + [anon_sym_BSLASHSmartcite] = ACTIONS(5775), + [anon_sym_BSLASHsupercite] = ACTIONS(5775), + [anon_sym_BSLASHautocite] = ACTIONS(5775), + [anon_sym_BSLASHAutocite] = ACTIONS(5775), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHvolcite] = ACTIONS(5775), + [anon_sym_BSLASHVolcite] = ACTIONS(5775), + [anon_sym_BSLASHpvolcite] = ACTIONS(5775), + [anon_sym_BSLASHPvolcite] = ACTIONS(5775), + [anon_sym_BSLASHfvolcite] = ACTIONS(5775), + [anon_sym_BSLASHftvolcite] = ACTIONS(5775), + [anon_sym_BSLASHsvolcite] = ACTIONS(5775), + [anon_sym_BSLASHSvolcite] = ACTIONS(5775), + [anon_sym_BSLASHtvolcite] = ACTIONS(5775), + [anon_sym_BSLASHTvolcite] = ACTIONS(5775), + [anon_sym_BSLASHavolcite] = ACTIONS(5775), + [anon_sym_BSLASHAvolcite] = ACTIONS(5775), + [anon_sym_BSLASHnotecite] = ACTIONS(5775), + [anon_sym_BSLASHNotecite] = ACTIONS(5775), + [anon_sym_BSLASHpnotecite] = ACTIONS(5775), + [anon_sym_BSLASHPnotecite] = ACTIONS(5775), + [anon_sym_BSLASHfnotecite] = ACTIONS(5775), + [anon_sym_BSLASHlabel] = ACTIONS(5775), + [anon_sym_BSLASHref] = ACTIONS(5775), + [anon_sym_BSLASHeqref] = ACTIONS(5775), + [anon_sym_BSLASHvref] = ACTIONS(5775), + [anon_sym_BSLASHVref] = ACTIONS(5775), + [anon_sym_BSLASHautoref] = ACTIONS(5775), + [anon_sym_BSLASHpageref] = ACTIONS(5775), + [anon_sym_BSLASHcref] = ACTIONS(5775), + [anon_sym_BSLASHCref] = ACTIONS(5775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnameCref] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHlabelcref] = ACTIONS(5775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCrefrange] = ACTIONS(5775), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnewlabel] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5775), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5775), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5775), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdef] = ACTIONS(5775), + [anon_sym_BSLASHlet] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5775), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5775), + [anon_sym_BSLASHgls] = ACTIONS(5775), + [anon_sym_BSLASHGls] = ACTIONS(5775), + [anon_sym_BSLASHGLS] = ACTIONS(5775), + [anon_sym_BSLASHglspl] = ACTIONS(5775), + [anon_sym_BSLASHGlspl] = ACTIONS(5775), + [anon_sym_BSLASHGLSpl] = ACTIONS(5775), + [anon_sym_BSLASHglsdisp] = ACTIONS(5775), + [anon_sym_BSLASHglslink] = ACTIONS(5775), + [anon_sym_BSLASHglstext] = ACTIONS(5775), + [anon_sym_BSLASHGlstext] = ACTIONS(5775), + [anon_sym_BSLASHGLStext] = ACTIONS(5775), + [anon_sym_BSLASHglsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5775), + [anon_sym_BSLASHglsplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSplural] = ACTIONS(5775), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHglsname] = ACTIONS(5775), + [anon_sym_BSLASHGlsname] = ACTIONS(5775), + [anon_sym_BSLASHGLSname] = ACTIONS(5775), + [anon_sym_BSLASHglssymbol] = ACTIONS(5775), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5775), + [anon_sym_BSLASHglsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5775), + [anon_sym_BSLASHglsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5775), + [anon_sym_BSLASHglsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5775), + [anon_sym_BSLASHglsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5775), + [anon_sym_BSLASHglsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5775), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [anon_sym_BSLASHacrshort] = ACTIONS(5775), + [anon_sym_BSLASHAcrshort] = ACTIONS(5775), + [anon_sym_BSLASHACRshort] = ACTIONS(5775), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5775), + [anon_sym_BSLASHacrlong] = ACTIONS(5775), + [anon_sym_BSLASHAcrlong] = ACTIONS(5775), + [anon_sym_BSLASHACRlong] = ACTIONS(5775), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5775), + [anon_sym_BSLASHacrfull] = ACTIONS(5775), + [anon_sym_BSLASHAcrfull] = ACTIONS(5775), + [anon_sym_BSLASHACRfull] = ACTIONS(5775), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5775), + [anon_sym_BSLASHacs] = ACTIONS(5775), + [anon_sym_BSLASHAcs] = ACTIONS(5775), + [anon_sym_BSLASHacsp] = ACTIONS(5775), + [anon_sym_BSLASHAcsp] = ACTIONS(5775), + [anon_sym_BSLASHacl] = ACTIONS(5775), + [anon_sym_BSLASHAcl] = ACTIONS(5775), + [anon_sym_BSLASHaclp] = ACTIONS(5775), + [anon_sym_BSLASHAclp] = ACTIONS(5775), + [anon_sym_BSLASHacf] = ACTIONS(5775), + [anon_sym_BSLASHAcf] = ACTIONS(5775), + [anon_sym_BSLASHacfp] = ACTIONS(5775), + [anon_sym_BSLASHAcfp] = ACTIONS(5775), + [anon_sym_BSLASHac] = ACTIONS(5775), + [anon_sym_BSLASHAc] = ACTIONS(5775), + [anon_sym_BSLASHacp] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5775), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5775), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5775), + [anon_sym_BSLASHcolor] = ACTIONS(5775), + [anon_sym_BSLASHcolorbox] = ACTIONS(5775), + [anon_sym_BSLASHtextcolor] = ACTIONS(5775), + [anon_sym_BSLASHpagecolor] = ACTIONS(5775), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5775), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5775), + [anon_sym_BSLASHtext] = ACTIONS(5775), + [anon_sym_BSLASHintertext] = ACTIONS(5775), + [anon_sym_shortintertext] = ACTIONS(5775), }, - [1282] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1816), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5635), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [727] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2013), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5793), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1283] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1794), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5637), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [728] = { + [sym_brack_group] = STATE(1066), + [sym_command_name] = ACTIONS(5795), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5795), + [anon_sym_LPAREN] = ACTIONS(5797), + [anon_sym_RPAREN] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5799), + [anon_sym_RBRACK] = ACTIONS(5797), + [anon_sym_COMMA] = ACTIONS(5797), + [anon_sym_EQ] = ACTIONS(5797), + [anon_sym_BSLASHpart] = ACTIONS(5795), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5797), + [anon_sym_BSLASHaddpart] = ACTIONS(5795), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5797), + [anon_sym_BSLASHchapter] = ACTIONS(5795), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5797), + [anon_sym_BSLASHaddchap] = ACTIONS(5795), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5797), + [anon_sym_BSLASHsection] = ACTIONS(5795), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5797), + [anon_sym_BSLASHaddsec] = ACTIONS(5795), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5797), + [anon_sym_BSLASHsubsection] = ACTIONS(5795), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5797), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5795), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5797), + [anon_sym_BSLASHparagraph] = ACTIONS(5795), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5797), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5795), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5797), + [anon_sym_BSLASHitem] = ACTIONS(5795), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5797), + [anon_sym_LBRACE] = ACTIONS(5797), + [sym_word] = ACTIONS(5795), + [sym_placeholder] = ACTIONS(5797), + [anon_sym_PLUS] = ACTIONS(5795), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_SLASH] = ACTIONS(5795), + [anon_sym_CARET] = ACTIONS(5795), + [anon_sym__] = ACTIONS(5795), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_BANG] = ACTIONS(5795), + [anon_sym_PIPE] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(5795), + [anon_sym_SQUOTE] = ACTIONS(5795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5797), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5797), + [anon_sym_DOLLAR] = ACTIONS(5795), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5797), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5797), + [anon_sym_BSLASHbegin] = ACTIONS(5795), + [anon_sym_BSLASHend] = ACTIONS(5795), + [anon_sym_BSLASHtitle] = ACTIONS(5795), + [anon_sym_BSLASHauthor] = ACTIONS(5795), + [anon_sym_BSLASHusepackage] = ACTIONS(5795), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5795), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5795), + [anon_sym_BSLASHinclude] = ACTIONS(5795), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5795), + [anon_sym_BSLASHinput] = ACTIONS(5795), + [anon_sym_BSLASHsubfile] = ACTIONS(5795), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5795), + [anon_sym_BSLASHbibliography] = ACTIONS(5795), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5795), + [anon_sym_BSLASHincludesvg] = ACTIONS(5795), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5795), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5795), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5795), + [anon_sym_BSLASHimport] = ACTIONS(5795), + [anon_sym_BSLASHsubimport] = ACTIONS(5795), + [anon_sym_BSLASHinputfrom] = ACTIONS(5795), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5795), + [anon_sym_BSLASHincludefrom] = ACTIONS(5795), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5795), + [anon_sym_BSLASHcaption] = ACTIONS(5795), + [anon_sym_BSLASHcite] = ACTIONS(5795), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5797), + [anon_sym_BSLASHCite] = ACTIONS(5795), + [anon_sym_BSLASHnocite] = ACTIONS(5795), + [anon_sym_BSLASHcitet] = ACTIONS(5795), + [anon_sym_BSLASHcitep] = ACTIONS(5795), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5797), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5797), + [anon_sym_BSLASHciteauthor] = ACTIONS(5795), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5797), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5795), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5797), + [anon_sym_BSLASHcitetitle] = ACTIONS(5795), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5797), + [anon_sym_BSLASHciteyear] = ACTIONS(5795), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5797), + [anon_sym_BSLASHcitedate] = ACTIONS(5795), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5797), + [anon_sym_BSLASHciteurl] = ACTIONS(5795), + [anon_sym_BSLASHfullcite] = ACTIONS(5795), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5795), + [anon_sym_BSLASHcitealt] = ACTIONS(5795), + [anon_sym_BSLASHcitealp] = ACTIONS(5795), + [anon_sym_BSLASHcitetext] = ACTIONS(5795), + [anon_sym_BSLASHparencite] = ACTIONS(5795), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5797), + [anon_sym_BSLASHParencite] = ACTIONS(5795), + [anon_sym_BSLASHfootcite] = ACTIONS(5795), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5795), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5795), + [anon_sym_BSLASHtextcite] = ACTIONS(5795), + [anon_sym_BSLASHTextcite] = ACTIONS(5795), + [anon_sym_BSLASHsmartcite] = ACTIONS(5795), + [anon_sym_BSLASHSmartcite] = ACTIONS(5795), + [anon_sym_BSLASHsupercite] = ACTIONS(5795), + [anon_sym_BSLASHautocite] = ACTIONS(5795), + [anon_sym_BSLASHAutocite] = ACTIONS(5795), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5797), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5797), + [anon_sym_BSLASHvolcite] = ACTIONS(5795), + [anon_sym_BSLASHVolcite] = ACTIONS(5795), + [anon_sym_BSLASHpvolcite] = ACTIONS(5795), + [anon_sym_BSLASHPvolcite] = ACTIONS(5795), + [anon_sym_BSLASHfvolcite] = ACTIONS(5795), + [anon_sym_BSLASHftvolcite] = ACTIONS(5795), + [anon_sym_BSLASHsvolcite] = ACTIONS(5795), + [anon_sym_BSLASHSvolcite] = ACTIONS(5795), + [anon_sym_BSLASHtvolcite] = ACTIONS(5795), + [anon_sym_BSLASHTvolcite] = ACTIONS(5795), + [anon_sym_BSLASHavolcite] = ACTIONS(5795), + [anon_sym_BSLASHAvolcite] = ACTIONS(5795), + [anon_sym_BSLASHnotecite] = ACTIONS(5795), + [anon_sym_BSLASHNotecite] = ACTIONS(5795), + [anon_sym_BSLASHpnotecite] = ACTIONS(5795), + [anon_sym_BSLASHPnotecite] = ACTIONS(5795), + [anon_sym_BSLASHfnotecite] = ACTIONS(5795), + [anon_sym_BSLASHlabel] = ACTIONS(5795), + [anon_sym_BSLASHref] = ACTIONS(5795), + [anon_sym_BSLASHeqref] = ACTIONS(5795), + [anon_sym_BSLASHvref] = ACTIONS(5795), + [anon_sym_BSLASHVref] = ACTIONS(5795), + [anon_sym_BSLASHautoref] = ACTIONS(5795), + [anon_sym_BSLASHpageref] = ACTIONS(5795), + [anon_sym_BSLASHcref] = ACTIONS(5795), + [anon_sym_BSLASHCref] = ACTIONS(5795), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5797), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5797), + [anon_sym_BSLASHnamecref] = ACTIONS(5795), + [anon_sym_BSLASHnameCref] = ACTIONS(5795), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5795), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5795), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5795), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5795), + [anon_sym_BSLASHlabelcref] = ACTIONS(5795), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5795), + [anon_sym_BSLASHcrefrange] = ACTIONS(5795), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5797), + [anon_sym_BSLASHCrefrange] = ACTIONS(5795), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5797), + [anon_sym_BSLASHnewlabel] = ACTIONS(5795), + [anon_sym_BSLASHnewcommand] = ACTIONS(5795), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5797), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5795), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5797), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5795), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5797), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5795), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5797), + [anon_sym_BSLASHdef] = ACTIONS(5795), + [anon_sym_BSLASHlet] = ACTIONS(5795), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5795), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5795), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5795), + [anon_sym_BSLASHgls] = ACTIONS(5795), + [anon_sym_BSLASHGls] = ACTIONS(5795), + [anon_sym_BSLASHGLS] = ACTIONS(5795), + [anon_sym_BSLASHglspl] = ACTIONS(5795), + [anon_sym_BSLASHGlspl] = ACTIONS(5795), + [anon_sym_BSLASHGLSpl] = ACTIONS(5795), + [anon_sym_BSLASHglsdisp] = ACTIONS(5795), + [anon_sym_BSLASHglslink] = ACTIONS(5795), + [anon_sym_BSLASHglstext] = ACTIONS(5795), + [anon_sym_BSLASHGlstext] = ACTIONS(5795), + [anon_sym_BSLASHGLStext] = ACTIONS(5795), + [anon_sym_BSLASHglsfirst] = ACTIONS(5795), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5795), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5795), + [anon_sym_BSLASHglsplural] = ACTIONS(5795), + [anon_sym_BSLASHGlsplural] = ACTIONS(5795), + [anon_sym_BSLASHGLSplural] = ACTIONS(5795), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5795), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5795), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5795), + [anon_sym_BSLASHglsname] = ACTIONS(5795), + [anon_sym_BSLASHGlsname] = ACTIONS(5795), + [anon_sym_BSLASHGLSname] = ACTIONS(5795), + [anon_sym_BSLASHglssymbol] = ACTIONS(5795), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5795), + [anon_sym_BSLASHglsdesc] = ACTIONS(5795), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5795), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5795), + [anon_sym_BSLASHglsuseri] = ACTIONS(5795), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5795), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5795), + [anon_sym_BSLASHglsuserii] = ACTIONS(5795), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5795), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5795), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5795), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5795), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5795), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5795), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5795), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5795), + [anon_sym_BSLASHglsuserv] = ACTIONS(5795), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5795), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5795), + [anon_sym_BSLASHglsuservi] = ACTIONS(5795), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5795), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5795), + [anon_sym_BSLASHnewacronym] = ACTIONS(5795), + [anon_sym_BSLASHacrshort] = ACTIONS(5795), + [anon_sym_BSLASHAcrshort] = ACTIONS(5795), + [anon_sym_BSLASHACRshort] = ACTIONS(5795), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5795), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5795), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5795), + [anon_sym_BSLASHacrlong] = ACTIONS(5795), + [anon_sym_BSLASHAcrlong] = ACTIONS(5795), + [anon_sym_BSLASHACRlong] = ACTIONS(5795), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5795), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5795), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5795), + [anon_sym_BSLASHacrfull] = ACTIONS(5795), + [anon_sym_BSLASHAcrfull] = ACTIONS(5795), + [anon_sym_BSLASHACRfull] = ACTIONS(5795), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5795), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5795), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5795), + [anon_sym_BSLASHacs] = ACTIONS(5795), + [anon_sym_BSLASHAcs] = ACTIONS(5795), + [anon_sym_BSLASHacsp] = ACTIONS(5795), + [anon_sym_BSLASHAcsp] = ACTIONS(5795), + [anon_sym_BSLASHacl] = ACTIONS(5795), + [anon_sym_BSLASHAcl] = ACTIONS(5795), + [anon_sym_BSLASHaclp] = ACTIONS(5795), + [anon_sym_BSLASHAclp] = ACTIONS(5795), + [anon_sym_BSLASHacf] = ACTIONS(5795), + [anon_sym_BSLASHAcf] = ACTIONS(5795), + [anon_sym_BSLASHacfp] = ACTIONS(5795), + [anon_sym_BSLASHAcfp] = ACTIONS(5795), + [anon_sym_BSLASHac] = ACTIONS(5795), + [anon_sym_BSLASHAc] = ACTIONS(5795), + [anon_sym_BSLASHacp] = ACTIONS(5795), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5795), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5795), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5795), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5795), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5795), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5795), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5795), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5795), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5795), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5795), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5795), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5797), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5795), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5797), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5795), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5795), + [anon_sym_BSLASHcolor] = ACTIONS(5795), + [anon_sym_BSLASHcolorbox] = ACTIONS(5795), + [anon_sym_BSLASHtextcolor] = ACTIONS(5795), + [anon_sym_BSLASHpagecolor] = ACTIONS(5795), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5795), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5795), + [anon_sym_BSLASHtext] = ACTIONS(5795), + [anon_sym_BSLASHintertext] = ACTIONS(5795), + [anon_sym_shortintertext] = ACTIONS(5795), }, - [1284] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1833), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5639), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [729] = { + [ts_builtin_sym_end] = ACTIONS(5801), + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_BSLASHpart] = ACTIONS(5803), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddpart] = ACTIONS(5803), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHchapter] = ACTIONS(5803), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddchap] = ACTIONS(5803), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsection] = ACTIONS(5803), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddsec] = ACTIONS(5803), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHparagraph] = ACTIONS(5803), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHitem] = ACTIONS(5803), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), }, - [1285] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1852), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5641), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [730] = { + [ts_builtin_sym_end] = ACTIONS(183), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, - [1286] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1820), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5643), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [731] = { + [ts_builtin_sym_end] = ACTIONS(179), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [1287] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1807), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5645), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [732] = { + [ts_builtin_sym_end] = ACTIONS(5805), + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_BSLASHpart] = ACTIONS(5807), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddpart] = ACTIONS(5807), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHchapter] = ACTIONS(5807), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddchap] = ACTIONS(5807), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsection] = ACTIONS(5807), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddsec] = ACTIONS(5807), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHparagraph] = ACTIONS(5807), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5807), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHitem] = ACTIONS(5807), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), }, - [1288] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1843), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1818), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [733] = { + [ts_builtin_sym_end] = ACTIONS(5809), + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_BSLASHpart] = ACTIONS(5811), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddpart] = ACTIONS(5811), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHchapter] = ACTIONS(5811), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddchap] = ACTIONS(5811), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsection] = ACTIONS(5811), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddsec] = ACTIONS(5811), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHparagraph] = ACTIONS(5811), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5811), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHitem] = ACTIONS(5811), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), }, - [1289] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1855), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5647), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [734] = { + [sym_curly_group] = STATE(1136), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_BSLASHpart] = ACTIONS(5755), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddpart] = ACTIONS(5755), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHchapter] = ACTIONS(5755), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddchap] = ACTIONS(5755), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsection] = ACTIONS(5755), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddsec] = ACTIONS(5755), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHparagraph] = ACTIONS(5755), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5755), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHitem] = ACTIONS(5755), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), }, - [1290] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1847), - [sym_operator] = STATE(1588), - [sym_key_value_pair] = STATE(1818), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [735] = { + [ts_builtin_sym_end] = ACTIONS(5813), + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_BSLASHpart] = ACTIONS(5815), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddpart] = ACTIONS(5815), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHchapter] = ACTIONS(5815), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddchap] = ACTIONS(5815), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsection] = ACTIONS(5815), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddsec] = ACTIONS(5815), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHparagraph] = ACTIONS(5815), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5815), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHitem] = ACTIONS(5815), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), }, - [1291] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1777), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5649), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [736] = { + [ts_builtin_sym_end] = ACTIONS(5817), + [sym_command_name] = ACTIONS(5819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5819), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_BSLASHpart] = ACTIONS(5819), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddpart] = ACTIONS(5819), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHchapter] = ACTIONS(5819), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddchap] = ACTIONS(5819), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsection] = ACTIONS(5819), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddsec] = ACTIONS(5819), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHparagraph] = ACTIONS(5819), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5819), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHitem] = ACTIONS(5819), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [sym_word] = ACTIONS(5819), + [sym_placeholder] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym__] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5819), + [anon_sym_SQUOTE] = ACTIONS(5819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5817), + [anon_sym_DOLLAR] = ACTIONS(5819), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5817), + [anon_sym_BSLASHbegin] = ACTIONS(5819), + [anon_sym_BSLASHtitle] = ACTIONS(5819), + [anon_sym_BSLASHauthor] = ACTIONS(5819), + [anon_sym_BSLASHusepackage] = ACTIONS(5819), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5819), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5819), + [anon_sym_BSLASHinclude] = ACTIONS(5819), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5819), + [anon_sym_BSLASHinput] = ACTIONS(5819), + [anon_sym_BSLASHsubfile] = ACTIONS(5819), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5819), + [anon_sym_BSLASHbibliography] = ACTIONS(5819), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5819), + [anon_sym_BSLASHincludesvg] = ACTIONS(5819), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5819), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5819), + [anon_sym_BSLASHimport] = ACTIONS(5819), + [anon_sym_BSLASHsubimport] = ACTIONS(5819), + [anon_sym_BSLASHinputfrom] = ACTIONS(5819), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5819), + [anon_sym_BSLASHincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHcaption] = ACTIONS(5819), + [anon_sym_BSLASHcite] = ACTIONS(5819), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCite] = ACTIONS(5819), + [anon_sym_BSLASHnocite] = ACTIONS(5819), + [anon_sym_BSLASHcitet] = ACTIONS(5819), + [anon_sym_BSLASHcitep] = ACTIONS(5819), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteauthor] = ACTIONS(5819), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5819), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitetitle] = ACTIONS(5819), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteyear] = ACTIONS(5819), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitedate] = ACTIONS(5819), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteurl] = ACTIONS(5819), + [anon_sym_BSLASHfullcite] = ACTIONS(5819), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5819), + [anon_sym_BSLASHcitealt] = ACTIONS(5819), + [anon_sym_BSLASHcitealp] = ACTIONS(5819), + [anon_sym_BSLASHcitetext] = ACTIONS(5819), + [anon_sym_BSLASHparencite] = ACTIONS(5819), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHParencite] = ACTIONS(5819), + [anon_sym_BSLASHfootcite] = ACTIONS(5819), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5819), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5819), + [anon_sym_BSLASHtextcite] = ACTIONS(5819), + [anon_sym_BSLASHTextcite] = ACTIONS(5819), + [anon_sym_BSLASHsmartcite] = ACTIONS(5819), + [anon_sym_BSLASHSmartcite] = ACTIONS(5819), + [anon_sym_BSLASHsupercite] = ACTIONS(5819), + [anon_sym_BSLASHautocite] = ACTIONS(5819), + [anon_sym_BSLASHAutocite] = ACTIONS(5819), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHvolcite] = ACTIONS(5819), + [anon_sym_BSLASHVolcite] = ACTIONS(5819), + [anon_sym_BSLASHpvolcite] = ACTIONS(5819), + [anon_sym_BSLASHPvolcite] = ACTIONS(5819), + [anon_sym_BSLASHfvolcite] = ACTIONS(5819), + [anon_sym_BSLASHftvolcite] = ACTIONS(5819), + [anon_sym_BSLASHsvolcite] = ACTIONS(5819), + [anon_sym_BSLASHSvolcite] = ACTIONS(5819), + [anon_sym_BSLASHtvolcite] = ACTIONS(5819), + [anon_sym_BSLASHTvolcite] = ACTIONS(5819), + [anon_sym_BSLASHavolcite] = ACTIONS(5819), + [anon_sym_BSLASHAvolcite] = ACTIONS(5819), + [anon_sym_BSLASHnotecite] = ACTIONS(5819), + [anon_sym_BSLASHNotecite] = ACTIONS(5819), + [anon_sym_BSLASHpnotecite] = ACTIONS(5819), + [anon_sym_BSLASHPnotecite] = ACTIONS(5819), + [anon_sym_BSLASHfnotecite] = ACTIONS(5819), + [anon_sym_BSLASHlabel] = ACTIONS(5819), + [anon_sym_BSLASHref] = ACTIONS(5819), + [anon_sym_BSLASHeqref] = ACTIONS(5819), + [anon_sym_BSLASHvref] = ACTIONS(5819), + [anon_sym_BSLASHVref] = ACTIONS(5819), + [anon_sym_BSLASHautoref] = ACTIONS(5819), + [anon_sym_BSLASHpageref] = ACTIONS(5819), + [anon_sym_BSLASHcref] = ACTIONS(5819), + [anon_sym_BSLASHCref] = ACTIONS(5819), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnameCref] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHlabelcref] = ACTIONS(5819), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCrefrange] = ACTIONS(5819), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnewlabel] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5819), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5819), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5819), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdef] = ACTIONS(5819), + [anon_sym_BSLASHlet] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5819), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5819), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5819), + [anon_sym_BSLASHgls] = ACTIONS(5819), + [anon_sym_BSLASHGls] = ACTIONS(5819), + [anon_sym_BSLASHGLS] = ACTIONS(5819), + [anon_sym_BSLASHglspl] = ACTIONS(5819), + [anon_sym_BSLASHGlspl] = ACTIONS(5819), + [anon_sym_BSLASHGLSpl] = ACTIONS(5819), + [anon_sym_BSLASHglsdisp] = ACTIONS(5819), + [anon_sym_BSLASHglslink] = ACTIONS(5819), + [anon_sym_BSLASHglstext] = ACTIONS(5819), + [anon_sym_BSLASHGlstext] = ACTIONS(5819), + [anon_sym_BSLASHGLStext] = ACTIONS(5819), + [anon_sym_BSLASHglsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5819), + [anon_sym_BSLASHglsplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSplural] = ACTIONS(5819), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHglsname] = ACTIONS(5819), + [anon_sym_BSLASHGlsname] = ACTIONS(5819), + [anon_sym_BSLASHGLSname] = ACTIONS(5819), + [anon_sym_BSLASHglssymbol] = ACTIONS(5819), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5819), + [anon_sym_BSLASHglsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5819), + [anon_sym_BSLASHglsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5819), + [anon_sym_BSLASHglsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5819), + [anon_sym_BSLASHglsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5819), + [anon_sym_BSLASHglsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5819), + [anon_sym_BSLASHnewacronym] = ACTIONS(5819), + [anon_sym_BSLASHacrshort] = ACTIONS(5819), + [anon_sym_BSLASHAcrshort] = ACTIONS(5819), + [anon_sym_BSLASHACRshort] = ACTIONS(5819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5819), + [anon_sym_BSLASHacrlong] = ACTIONS(5819), + [anon_sym_BSLASHAcrlong] = ACTIONS(5819), + [anon_sym_BSLASHACRlong] = ACTIONS(5819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5819), + [anon_sym_BSLASHacrfull] = ACTIONS(5819), + [anon_sym_BSLASHAcrfull] = ACTIONS(5819), + [anon_sym_BSLASHACRfull] = ACTIONS(5819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5819), + [anon_sym_BSLASHacs] = ACTIONS(5819), + [anon_sym_BSLASHAcs] = ACTIONS(5819), + [anon_sym_BSLASHacsp] = ACTIONS(5819), + [anon_sym_BSLASHAcsp] = ACTIONS(5819), + [anon_sym_BSLASHacl] = ACTIONS(5819), + [anon_sym_BSLASHAcl] = ACTIONS(5819), + [anon_sym_BSLASHaclp] = ACTIONS(5819), + [anon_sym_BSLASHAclp] = ACTIONS(5819), + [anon_sym_BSLASHacf] = ACTIONS(5819), + [anon_sym_BSLASHAcf] = ACTIONS(5819), + [anon_sym_BSLASHacfp] = ACTIONS(5819), + [anon_sym_BSLASHAcfp] = ACTIONS(5819), + [anon_sym_BSLASHac] = ACTIONS(5819), + [anon_sym_BSLASHAc] = ACTIONS(5819), + [anon_sym_BSLASHacp] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5819), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5819), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5819), + [anon_sym_BSLASHcolor] = ACTIONS(5819), + [anon_sym_BSLASHcolorbox] = ACTIONS(5819), + [anon_sym_BSLASHtextcolor] = ACTIONS(5819), + [anon_sym_BSLASHpagecolor] = ACTIONS(5819), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5819), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5819), + [anon_sym_BSLASHtext] = ACTIONS(5819), + [anon_sym_BSLASHintertext] = ACTIONS(5819), + [anon_sym_shortintertext] = ACTIONS(5819), }, - [1292] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1860), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5651), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [737] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_BSLASHpart] = ACTIONS(5779), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddpart] = ACTIONS(5779), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHchapter] = ACTIONS(5779), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddchap] = ACTIONS(5779), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsection] = ACTIONS(5779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddsec] = ACTIONS(5779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHparagraph] = ACTIONS(5779), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5779), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHitem] = ACTIONS(5779), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHend] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), }, - [1293] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1808), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5653), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [738] = { + [ts_builtin_sym_end] = ACTIONS(5823), + [sym_command_name] = ACTIONS(5825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5825), + [anon_sym_LPAREN] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_BSLASHpart] = ACTIONS(5825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddpart] = ACTIONS(5825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHchapter] = ACTIONS(5825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddchap] = ACTIONS(5825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsection] = ACTIONS(5825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddsec] = ACTIONS(5825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHparagraph] = ACTIONS(5825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHitem] = ACTIONS(5825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5823), + [anon_sym_RBRACE] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [sym_placeholder] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym__] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_SQUOTE] = ACTIONS(5825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5823), + [anon_sym_DOLLAR] = ACTIONS(5825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5823), + [anon_sym_BSLASHbegin] = ACTIONS(5825), + [anon_sym_BSLASHtitle] = ACTIONS(5825), + [anon_sym_BSLASHauthor] = ACTIONS(5825), + [anon_sym_BSLASHusepackage] = ACTIONS(5825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5825), + [anon_sym_BSLASHinclude] = ACTIONS(5825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5825), + [anon_sym_BSLASHinput] = ACTIONS(5825), + [anon_sym_BSLASHsubfile] = ACTIONS(5825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5825), + [anon_sym_BSLASHbibliography] = ACTIONS(5825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5825), + [anon_sym_BSLASHincludesvg] = ACTIONS(5825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5825), + [anon_sym_BSLASHimport] = ACTIONS(5825), + [anon_sym_BSLASHsubimport] = ACTIONS(5825), + [anon_sym_BSLASHinputfrom] = ACTIONS(5825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5825), + [anon_sym_BSLASHincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHcaption] = ACTIONS(5825), + [anon_sym_BSLASHcite] = ACTIONS(5825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCite] = ACTIONS(5825), + [anon_sym_BSLASHnocite] = ACTIONS(5825), + [anon_sym_BSLASHcitet] = ACTIONS(5825), + [anon_sym_BSLASHcitep] = ACTIONS(5825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteauthor] = ACTIONS(5825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitetitle] = ACTIONS(5825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteyear] = ACTIONS(5825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitedate] = ACTIONS(5825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteurl] = ACTIONS(5825), + [anon_sym_BSLASHfullcite] = ACTIONS(5825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5825), + [anon_sym_BSLASHcitealt] = ACTIONS(5825), + [anon_sym_BSLASHcitealp] = ACTIONS(5825), + [anon_sym_BSLASHcitetext] = ACTIONS(5825), + [anon_sym_BSLASHparencite] = ACTIONS(5825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHParencite] = ACTIONS(5825), + [anon_sym_BSLASHfootcite] = ACTIONS(5825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5825), + [anon_sym_BSLASHtextcite] = ACTIONS(5825), + [anon_sym_BSLASHTextcite] = ACTIONS(5825), + [anon_sym_BSLASHsmartcite] = ACTIONS(5825), + [anon_sym_BSLASHSmartcite] = ACTIONS(5825), + [anon_sym_BSLASHsupercite] = ACTIONS(5825), + [anon_sym_BSLASHautocite] = ACTIONS(5825), + [anon_sym_BSLASHAutocite] = ACTIONS(5825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHvolcite] = ACTIONS(5825), + [anon_sym_BSLASHVolcite] = ACTIONS(5825), + [anon_sym_BSLASHpvolcite] = ACTIONS(5825), + [anon_sym_BSLASHPvolcite] = ACTIONS(5825), + [anon_sym_BSLASHfvolcite] = ACTIONS(5825), + [anon_sym_BSLASHftvolcite] = ACTIONS(5825), + [anon_sym_BSLASHsvolcite] = ACTIONS(5825), + [anon_sym_BSLASHSvolcite] = ACTIONS(5825), + [anon_sym_BSLASHtvolcite] = ACTIONS(5825), + [anon_sym_BSLASHTvolcite] = ACTIONS(5825), + [anon_sym_BSLASHavolcite] = ACTIONS(5825), + [anon_sym_BSLASHAvolcite] = ACTIONS(5825), + [anon_sym_BSLASHnotecite] = ACTIONS(5825), + [anon_sym_BSLASHNotecite] = ACTIONS(5825), + [anon_sym_BSLASHpnotecite] = ACTIONS(5825), + [anon_sym_BSLASHPnotecite] = ACTIONS(5825), + [anon_sym_BSLASHfnotecite] = ACTIONS(5825), + [anon_sym_BSLASHlabel] = ACTIONS(5825), + [anon_sym_BSLASHref] = ACTIONS(5825), + [anon_sym_BSLASHeqref] = ACTIONS(5825), + [anon_sym_BSLASHvref] = ACTIONS(5825), + [anon_sym_BSLASHVref] = ACTIONS(5825), + [anon_sym_BSLASHautoref] = ACTIONS(5825), + [anon_sym_BSLASHpageref] = ACTIONS(5825), + [anon_sym_BSLASHcref] = ACTIONS(5825), + [anon_sym_BSLASHCref] = ACTIONS(5825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnameCref] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHlabelcref] = ACTIONS(5825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCrefrange] = ACTIONS(5825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnewlabel] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdef] = ACTIONS(5825), + [anon_sym_BSLASHlet] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5825), + [anon_sym_BSLASHgls] = ACTIONS(5825), + [anon_sym_BSLASHGls] = ACTIONS(5825), + [anon_sym_BSLASHGLS] = ACTIONS(5825), + [anon_sym_BSLASHglspl] = ACTIONS(5825), + [anon_sym_BSLASHGlspl] = ACTIONS(5825), + [anon_sym_BSLASHGLSpl] = ACTIONS(5825), + [anon_sym_BSLASHglsdisp] = ACTIONS(5825), + [anon_sym_BSLASHglslink] = ACTIONS(5825), + [anon_sym_BSLASHglstext] = ACTIONS(5825), + [anon_sym_BSLASHGlstext] = ACTIONS(5825), + [anon_sym_BSLASHGLStext] = ACTIONS(5825), + [anon_sym_BSLASHglsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5825), + [anon_sym_BSLASHglsplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSplural] = ACTIONS(5825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHglsname] = ACTIONS(5825), + [anon_sym_BSLASHGlsname] = ACTIONS(5825), + [anon_sym_BSLASHGLSname] = ACTIONS(5825), + [anon_sym_BSLASHglssymbol] = ACTIONS(5825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5825), + [anon_sym_BSLASHglsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5825), + [anon_sym_BSLASHglsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5825), + [anon_sym_BSLASHglsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5825), + [anon_sym_BSLASHglsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5825), + [anon_sym_BSLASHglsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5825), + [anon_sym_BSLASHnewacronym] = ACTIONS(5825), + [anon_sym_BSLASHacrshort] = ACTIONS(5825), + [anon_sym_BSLASHAcrshort] = ACTIONS(5825), + [anon_sym_BSLASHACRshort] = ACTIONS(5825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5825), + [anon_sym_BSLASHacrlong] = ACTIONS(5825), + [anon_sym_BSLASHAcrlong] = ACTIONS(5825), + [anon_sym_BSLASHACRlong] = ACTIONS(5825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5825), + [anon_sym_BSLASHacrfull] = ACTIONS(5825), + [anon_sym_BSLASHAcrfull] = ACTIONS(5825), + [anon_sym_BSLASHACRfull] = ACTIONS(5825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5825), + [anon_sym_BSLASHacs] = ACTIONS(5825), + [anon_sym_BSLASHAcs] = ACTIONS(5825), + [anon_sym_BSLASHacsp] = ACTIONS(5825), + [anon_sym_BSLASHAcsp] = ACTIONS(5825), + [anon_sym_BSLASHacl] = ACTIONS(5825), + [anon_sym_BSLASHAcl] = ACTIONS(5825), + [anon_sym_BSLASHaclp] = ACTIONS(5825), + [anon_sym_BSLASHAclp] = ACTIONS(5825), + [anon_sym_BSLASHacf] = ACTIONS(5825), + [anon_sym_BSLASHAcf] = ACTIONS(5825), + [anon_sym_BSLASHacfp] = ACTIONS(5825), + [anon_sym_BSLASHAcfp] = ACTIONS(5825), + [anon_sym_BSLASHac] = ACTIONS(5825), + [anon_sym_BSLASHAc] = ACTIONS(5825), + [anon_sym_BSLASHacp] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5825), + [anon_sym_BSLASHcolor] = ACTIONS(5825), + [anon_sym_BSLASHcolorbox] = ACTIONS(5825), + [anon_sym_BSLASHtextcolor] = ACTIONS(5825), + [anon_sym_BSLASHpagecolor] = ACTIONS(5825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5825), + [anon_sym_BSLASHtext] = ACTIONS(5825), + [anon_sym_BSLASHintertext] = ACTIONS(5825), + [anon_sym_shortintertext] = ACTIONS(5825), }, - [1294] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1791), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5655), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [739] = { + [sym_brack_group_text] = STATE(1099), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5827), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_BSLASHpart] = ACTIONS(5785), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddpart] = ACTIONS(5785), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHchapter] = ACTIONS(5785), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddchap] = ACTIONS(5785), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsection] = ACTIONS(5785), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddsec] = ACTIONS(5785), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHparagraph] = ACTIONS(5785), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5785), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHitem] = ACTIONS(5785), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1295] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1826), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(5657), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [740] = { + [sym_brack_group_text] = STATE(1140), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_BSLASHpart] = ACTIONS(5601), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddpart] = ACTIONS(5601), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHchapter] = ACTIONS(5601), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddchap] = ACTIONS(5601), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsection] = ACTIONS(5601), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddsec] = ACTIONS(5601), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHparagraph] = ACTIONS(5601), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5601), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHitem] = ACTIONS(5601), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, - [1296] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(1904), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [741] = { + [ts_builtin_sym_end] = ACTIONS(5831), + [sym_command_name] = ACTIONS(5833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5833), + [anon_sym_LPAREN] = ACTIONS(5831), + [anon_sym_RPAREN] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACK] = ACTIONS(5831), + [anon_sym_COMMA] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_BSLASHpart] = ACTIONS(5833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddpart] = ACTIONS(5833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHchapter] = ACTIONS(5833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddchap] = ACTIONS(5833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsection] = ACTIONS(5833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddsec] = ACTIONS(5833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHparagraph] = ACTIONS(5833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHitem] = ACTIONS(5833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5831), + [sym_word] = ACTIONS(5833), + [sym_placeholder] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5833), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5833), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym__] = ACTIONS(5833), + [anon_sym_LT] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_BANG] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5831), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5831), + [anon_sym_BSLASHbegin] = ACTIONS(5833), + [anon_sym_BSLASHtitle] = ACTIONS(5833), + [anon_sym_BSLASHauthor] = ACTIONS(5833), + [anon_sym_BSLASHusepackage] = ACTIONS(5833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5833), + [anon_sym_BSLASHinclude] = ACTIONS(5833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5833), + [anon_sym_BSLASHinput] = ACTIONS(5833), + [anon_sym_BSLASHsubfile] = ACTIONS(5833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5833), + [anon_sym_BSLASHbibliography] = ACTIONS(5833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5833), + [anon_sym_BSLASHincludesvg] = ACTIONS(5833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5833), + [anon_sym_BSLASHimport] = ACTIONS(5833), + [anon_sym_BSLASHsubimport] = ACTIONS(5833), + [anon_sym_BSLASHinputfrom] = ACTIONS(5833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5833), + [anon_sym_BSLASHincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHcaption] = ACTIONS(5833), + [anon_sym_BSLASHcite] = ACTIONS(5833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCite] = ACTIONS(5833), + [anon_sym_BSLASHnocite] = ACTIONS(5833), + [anon_sym_BSLASHcitet] = ACTIONS(5833), + [anon_sym_BSLASHcitep] = ACTIONS(5833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteauthor] = ACTIONS(5833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitetitle] = ACTIONS(5833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteyear] = ACTIONS(5833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitedate] = ACTIONS(5833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteurl] = ACTIONS(5833), + [anon_sym_BSLASHfullcite] = ACTIONS(5833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5833), + [anon_sym_BSLASHcitealt] = ACTIONS(5833), + [anon_sym_BSLASHcitealp] = ACTIONS(5833), + [anon_sym_BSLASHcitetext] = ACTIONS(5833), + [anon_sym_BSLASHparencite] = ACTIONS(5833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHParencite] = ACTIONS(5833), + [anon_sym_BSLASHfootcite] = ACTIONS(5833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5833), + [anon_sym_BSLASHtextcite] = ACTIONS(5833), + [anon_sym_BSLASHTextcite] = ACTIONS(5833), + [anon_sym_BSLASHsmartcite] = ACTIONS(5833), + [anon_sym_BSLASHSmartcite] = ACTIONS(5833), + [anon_sym_BSLASHsupercite] = ACTIONS(5833), + [anon_sym_BSLASHautocite] = ACTIONS(5833), + [anon_sym_BSLASHAutocite] = ACTIONS(5833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHvolcite] = ACTIONS(5833), + [anon_sym_BSLASHVolcite] = ACTIONS(5833), + [anon_sym_BSLASHpvolcite] = ACTIONS(5833), + [anon_sym_BSLASHPvolcite] = ACTIONS(5833), + [anon_sym_BSLASHfvolcite] = ACTIONS(5833), + [anon_sym_BSLASHftvolcite] = ACTIONS(5833), + [anon_sym_BSLASHsvolcite] = ACTIONS(5833), + [anon_sym_BSLASHSvolcite] = ACTIONS(5833), + [anon_sym_BSLASHtvolcite] = ACTIONS(5833), + [anon_sym_BSLASHTvolcite] = ACTIONS(5833), + [anon_sym_BSLASHavolcite] = ACTIONS(5833), + [anon_sym_BSLASHAvolcite] = ACTIONS(5833), + [anon_sym_BSLASHnotecite] = ACTIONS(5833), + [anon_sym_BSLASHNotecite] = ACTIONS(5833), + [anon_sym_BSLASHpnotecite] = ACTIONS(5833), + [anon_sym_BSLASHPnotecite] = ACTIONS(5833), + [anon_sym_BSLASHfnotecite] = ACTIONS(5833), + [anon_sym_BSLASHlabel] = ACTIONS(5833), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCrefrange] = ACTIONS(5833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnewlabel] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdef] = ACTIONS(5833), + [anon_sym_BSLASHlet] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5833), + [anon_sym_BSLASHgls] = ACTIONS(5833), + [anon_sym_BSLASHGls] = ACTIONS(5833), + [anon_sym_BSLASHGLS] = ACTIONS(5833), + [anon_sym_BSLASHglspl] = ACTIONS(5833), + [anon_sym_BSLASHGlspl] = ACTIONS(5833), + [anon_sym_BSLASHGLSpl] = ACTIONS(5833), + [anon_sym_BSLASHglsdisp] = ACTIONS(5833), + [anon_sym_BSLASHglslink] = ACTIONS(5833), + [anon_sym_BSLASHglstext] = ACTIONS(5833), + [anon_sym_BSLASHGlstext] = ACTIONS(5833), + [anon_sym_BSLASHGLStext] = ACTIONS(5833), + [anon_sym_BSLASHglsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5833), + [anon_sym_BSLASHglsplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSplural] = ACTIONS(5833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHglsname] = ACTIONS(5833), + [anon_sym_BSLASHGlsname] = ACTIONS(5833), + [anon_sym_BSLASHGLSname] = ACTIONS(5833), + [anon_sym_BSLASHglssymbol] = ACTIONS(5833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5833), + [anon_sym_BSLASHglsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5833), + [anon_sym_BSLASHglsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5833), + [anon_sym_BSLASHglsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5833), + [anon_sym_BSLASHglsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5833), + [anon_sym_BSLASHglsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5833), + [anon_sym_BSLASHnewacronym] = ACTIONS(5833), + [anon_sym_BSLASHacrshort] = ACTIONS(5833), + [anon_sym_BSLASHAcrshort] = ACTIONS(5833), + [anon_sym_BSLASHACRshort] = ACTIONS(5833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5833), + [anon_sym_BSLASHacrlong] = ACTIONS(5833), + [anon_sym_BSLASHAcrlong] = ACTIONS(5833), + [anon_sym_BSLASHACRlong] = ACTIONS(5833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5833), + [anon_sym_BSLASHacrfull] = ACTIONS(5833), + [anon_sym_BSLASHAcrfull] = ACTIONS(5833), + [anon_sym_BSLASHACRfull] = ACTIONS(5833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5833), + [anon_sym_BSLASHacs] = ACTIONS(5833), + [anon_sym_BSLASHAcs] = ACTIONS(5833), + [anon_sym_BSLASHacsp] = ACTIONS(5833), + [anon_sym_BSLASHAcsp] = ACTIONS(5833), + [anon_sym_BSLASHacl] = ACTIONS(5833), + [anon_sym_BSLASHAcl] = ACTIONS(5833), + [anon_sym_BSLASHaclp] = ACTIONS(5833), + [anon_sym_BSLASHAclp] = ACTIONS(5833), + [anon_sym_BSLASHacf] = ACTIONS(5833), + [anon_sym_BSLASHAcf] = ACTIONS(5833), + [anon_sym_BSLASHacfp] = ACTIONS(5833), + [anon_sym_BSLASHAcfp] = ACTIONS(5833), + [anon_sym_BSLASHac] = ACTIONS(5833), + [anon_sym_BSLASHAc] = ACTIONS(5833), + [anon_sym_BSLASHacp] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5833), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5833), + [anon_sym_BSLASHcolor] = ACTIONS(5833), + [anon_sym_BSLASHcolorbox] = ACTIONS(5833), + [anon_sym_BSLASHtextcolor] = ACTIONS(5833), + [anon_sym_BSLASHpagecolor] = ACTIONS(5833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5833), + [anon_sym_BSLASHtext] = ACTIONS(5833), + [anon_sym_BSLASHintertext] = ACTIONS(5833), + [anon_sym_shortintertext] = ACTIONS(5833), }, - [1297] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2509), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [742] = { + [ts_builtin_sym_end] = ACTIONS(5835), + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_BSLASHpart] = ACTIONS(5837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddpart] = ACTIONS(5837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHchapter] = ACTIONS(5837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddchap] = ACTIONS(5837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsection] = ACTIONS(5837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddsec] = ACTIONS(5837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHparagraph] = ACTIONS(5837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHitem] = ACTIONS(5837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [anon_sym_RBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), }, - [1298] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2538), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [743] = { + [sym_curly_group] = STATE(893), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_BSLASHpart] = ACTIONS(5609), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddpart] = ACTIONS(5609), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHchapter] = ACTIONS(5609), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddchap] = ACTIONS(5609), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsection] = ACTIONS(5609), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddsec] = ACTIONS(5609), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHparagraph] = ACTIONS(5609), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5609), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHitem] = ACTIONS(5609), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), }, - [1299] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2539), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [744] = { + [ts_builtin_sym_end] = ACTIONS(5839), + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_BSLASHpart] = ACTIONS(5841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddpart] = ACTIONS(5841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHchapter] = ACTIONS(5841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddchap] = ACTIONS(5841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsection] = ACTIONS(5841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddsec] = ACTIONS(5841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHparagraph] = ACTIONS(5841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHitem] = ACTIONS(5841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [anon_sym_RBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), }, - [1300] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2552), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [745] = { + [ts_builtin_sym_end] = ACTIONS(5843), + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_BSLASHpart] = ACTIONS(5845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddpart] = ACTIONS(5845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHchapter] = ACTIONS(5845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddchap] = ACTIONS(5845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsection] = ACTIONS(5845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddsec] = ACTIONS(5845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHparagraph] = ACTIONS(5845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHitem] = ACTIONS(5845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [anon_sym_RBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), }, - [1301] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2553), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [746] = { + [ts_builtin_sym_end] = ACTIONS(5847), + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_BSLASHpart] = ACTIONS(5849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddpart] = ACTIONS(5849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHchapter] = ACTIONS(5849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddchap] = ACTIONS(5849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsection] = ACTIONS(5849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddsec] = ACTIONS(5849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHparagraph] = ACTIONS(5849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHitem] = ACTIONS(5849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [anon_sym_RBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), }, - [1302] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2519), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [747] = { + [ts_builtin_sym_end] = ACTIONS(5851), + [sym_command_name] = ACTIONS(5853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5851), + [anon_sym_BSLASHpart] = ACTIONS(5853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddpart] = ACTIONS(5853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHchapter] = ACTIONS(5853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddchap] = ACTIONS(5853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsection] = ACTIONS(5853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddsec] = ACTIONS(5853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHparagraph] = ACTIONS(5853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHitem] = ACTIONS(5853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5851), + [anon_sym_LBRACE] = ACTIONS(5851), + [anon_sym_RBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(5853), + [sym_placeholder] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym__] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_SQUOTE] = ACTIONS(5853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5851), + [anon_sym_DOLLAR] = ACTIONS(5853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5851), + [anon_sym_BSLASHbegin] = ACTIONS(5853), + [anon_sym_BSLASHtitle] = ACTIONS(5853), + [anon_sym_BSLASHauthor] = ACTIONS(5853), + [anon_sym_BSLASHusepackage] = ACTIONS(5853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5853), + [anon_sym_BSLASHinclude] = ACTIONS(5853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5853), + [anon_sym_BSLASHinput] = ACTIONS(5853), + [anon_sym_BSLASHsubfile] = ACTIONS(5853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5853), + [anon_sym_BSLASHbibliography] = ACTIONS(5853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5853), + [anon_sym_BSLASHincludesvg] = ACTIONS(5853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5853), + [anon_sym_BSLASHimport] = ACTIONS(5853), + [anon_sym_BSLASHsubimport] = ACTIONS(5853), + [anon_sym_BSLASHinputfrom] = ACTIONS(5853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5853), + [anon_sym_BSLASHincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHcaption] = ACTIONS(5853), + [anon_sym_BSLASHcite] = ACTIONS(5853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCite] = ACTIONS(5853), + [anon_sym_BSLASHnocite] = ACTIONS(5853), + [anon_sym_BSLASHcitet] = ACTIONS(5853), + [anon_sym_BSLASHcitep] = ACTIONS(5853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteauthor] = ACTIONS(5853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitetitle] = ACTIONS(5853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteyear] = ACTIONS(5853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitedate] = ACTIONS(5853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteurl] = ACTIONS(5853), + [anon_sym_BSLASHfullcite] = ACTIONS(5853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5853), + [anon_sym_BSLASHcitealt] = ACTIONS(5853), + [anon_sym_BSLASHcitealp] = ACTIONS(5853), + [anon_sym_BSLASHcitetext] = ACTIONS(5853), + [anon_sym_BSLASHparencite] = ACTIONS(5853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHParencite] = ACTIONS(5853), + [anon_sym_BSLASHfootcite] = ACTIONS(5853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5853), + [anon_sym_BSLASHtextcite] = ACTIONS(5853), + [anon_sym_BSLASHTextcite] = ACTIONS(5853), + [anon_sym_BSLASHsmartcite] = ACTIONS(5853), + [anon_sym_BSLASHSmartcite] = ACTIONS(5853), + [anon_sym_BSLASHsupercite] = ACTIONS(5853), + [anon_sym_BSLASHautocite] = ACTIONS(5853), + [anon_sym_BSLASHAutocite] = ACTIONS(5853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHvolcite] = ACTIONS(5853), + [anon_sym_BSLASHVolcite] = ACTIONS(5853), + [anon_sym_BSLASHpvolcite] = ACTIONS(5853), + [anon_sym_BSLASHPvolcite] = ACTIONS(5853), + [anon_sym_BSLASHfvolcite] = ACTIONS(5853), + [anon_sym_BSLASHftvolcite] = ACTIONS(5853), + [anon_sym_BSLASHsvolcite] = ACTIONS(5853), + [anon_sym_BSLASHSvolcite] = ACTIONS(5853), + [anon_sym_BSLASHtvolcite] = ACTIONS(5853), + [anon_sym_BSLASHTvolcite] = ACTIONS(5853), + [anon_sym_BSLASHavolcite] = ACTIONS(5853), + [anon_sym_BSLASHAvolcite] = ACTIONS(5853), + [anon_sym_BSLASHnotecite] = ACTIONS(5853), + [anon_sym_BSLASHNotecite] = ACTIONS(5853), + [anon_sym_BSLASHpnotecite] = ACTIONS(5853), + [anon_sym_BSLASHPnotecite] = ACTIONS(5853), + [anon_sym_BSLASHfnotecite] = ACTIONS(5853), + [anon_sym_BSLASHlabel] = ACTIONS(5853), + [anon_sym_BSLASHref] = ACTIONS(5853), + [anon_sym_BSLASHeqref] = ACTIONS(5853), + [anon_sym_BSLASHvref] = ACTIONS(5853), + [anon_sym_BSLASHVref] = ACTIONS(5853), + [anon_sym_BSLASHautoref] = ACTIONS(5853), + [anon_sym_BSLASHpageref] = ACTIONS(5853), + [anon_sym_BSLASHcref] = ACTIONS(5853), + [anon_sym_BSLASHCref] = ACTIONS(5853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnameCref] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHlabelcref] = ACTIONS(5853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCrefrange] = ACTIONS(5853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnewlabel] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdef] = ACTIONS(5853), + [anon_sym_BSLASHlet] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5853), + [anon_sym_BSLASHgls] = ACTIONS(5853), + [anon_sym_BSLASHGls] = ACTIONS(5853), + [anon_sym_BSLASHGLS] = ACTIONS(5853), + [anon_sym_BSLASHglspl] = ACTIONS(5853), + [anon_sym_BSLASHGlspl] = ACTIONS(5853), + [anon_sym_BSLASHGLSpl] = ACTIONS(5853), + [anon_sym_BSLASHglsdisp] = ACTIONS(5853), + [anon_sym_BSLASHglslink] = ACTIONS(5853), + [anon_sym_BSLASHglstext] = ACTIONS(5853), + [anon_sym_BSLASHGlstext] = ACTIONS(5853), + [anon_sym_BSLASHGLStext] = ACTIONS(5853), + [anon_sym_BSLASHglsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5853), + [anon_sym_BSLASHglsplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSplural] = ACTIONS(5853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHglsname] = ACTIONS(5853), + [anon_sym_BSLASHGlsname] = ACTIONS(5853), + [anon_sym_BSLASHGLSname] = ACTIONS(5853), + [anon_sym_BSLASHglssymbol] = ACTIONS(5853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5853), + [anon_sym_BSLASHglsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5853), + [anon_sym_BSLASHglsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5853), + [anon_sym_BSLASHglsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5853), + [anon_sym_BSLASHglsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5853), + [anon_sym_BSLASHglsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5853), + [anon_sym_BSLASHnewacronym] = ACTIONS(5853), + [anon_sym_BSLASHacrshort] = ACTIONS(5853), + [anon_sym_BSLASHAcrshort] = ACTIONS(5853), + [anon_sym_BSLASHACRshort] = ACTIONS(5853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5853), + [anon_sym_BSLASHacrlong] = ACTIONS(5853), + [anon_sym_BSLASHAcrlong] = ACTIONS(5853), + [anon_sym_BSLASHACRlong] = ACTIONS(5853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5853), + [anon_sym_BSLASHacrfull] = ACTIONS(5853), + [anon_sym_BSLASHAcrfull] = ACTIONS(5853), + [anon_sym_BSLASHACRfull] = ACTIONS(5853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5853), + [anon_sym_BSLASHacs] = ACTIONS(5853), + [anon_sym_BSLASHAcs] = ACTIONS(5853), + [anon_sym_BSLASHacsp] = ACTIONS(5853), + [anon_sym_BSLASHAcsp] = ACTIONS(5853), + [anon_sym_BSLASHacl] = ACTIONS(5853), + [anon_sym_BSLASHAcl] = ACTIONS(5853), + [anon_sym_BSLASHaclp] = ACTIONS(5853), + [anon_sym_BSLASHAclp] = ACTIONS(5853), + [anon_sym_BSLASHacf] = ACTIONS(5853), + [anon_sym_BSLASHAcf] = ACTIONS(5853), + [anon_sym_BSLASHacfp] = ACTIONS(5853), + [anon_sym_BSLASHAcfp] = ACTIONS(5853), + [anon_sym_BSLASHac] = ACTIONS(5853), + [anon_sym_BSLASHAc] = ACTIONS(5853), + [anon_sym_BSLASHacp] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5853), + [anon_sym_BSLASHcolor] = ACTIONS(5853), + [anon_sym_BSLASHcolorbox] = ACTIONS(5853), + [anon_sym_BSLASHtextcolor] = ACTIONS(5853), + [anon_sym_BSLASHpagecolor] = ACTIONS(5853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5853), + [anon_sym_BSLASHtext] = ACTIONS(5853), + [anon_sym_BSLASHintertext] = ACTIONS(5853), + [anon_sym_shortintertext] = ACTIONS(5853), }, - [1303] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2518), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [748] = { + [ts_builtin_sym_end] = ACTIONS(5855), + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_BSLASHpart] = ACTIONS(5857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddpart] = ACTIONS(5857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHchapter] = ACTIONS(5857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddchap] = ACTIONS(5857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsection] = ACTIONS(5857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddsec] = ACTIONS(5857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHparagraph] = ACTIONS(5857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHitem] = ACTIONS(5857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), }, - [1304] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2446), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [749] = { + [ts_builtin_sym_end] = ACTIONS(5859), + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_BSLASHpart] = ACTIONS(5861), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddpart] = ACTIONS(5861), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHchapter] = ACTIONS(5861), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddchap] = ACTIONS(5861), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsection] = ACTIONS(5861), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddsec] = ACTIONS(5861), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHparagraph] = ACTIONS(5861), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5861), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHitem] = ACTIONS(5861), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [anon_sym_RBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), }, - [1305] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2483), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [750] = { + [ts_builtin_sym_end] = ACTIONS(5863), + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_BSLASHpart] = ACTIONS(5865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddpart] = ACTIONS(5865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHchapter] = ACTIONS(5865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddchap] = ACTIONS(5865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsection] = ACTIONS(5865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddsec] = ACTIONS(5865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHparagraph] = ACTIONS(5865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHitem] = ACTIONS(5865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [anon_sym_RBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), }, - [1306] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2447), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [751] = { + [ts_builtin_sym_end] = ACTIONS(5867), + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_BSLASHpart] = ACTIONS(5869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddpart] = ACTIONS(5869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHchapter] = ACTIONS(5869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddchap] = ACTIONS(5869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsection] = ACTIONS(5869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddsec] = ACTIONS(5869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHparagraph] = ACTIONS(5869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHitem] = ACTIONS(5869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [anon_sym_RBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), }, - [1307] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2460), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [752] = { + [ts_builtin_sym_end] = ACTIONS(5871), + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_BSLASHpart] = ACTIONS(5873), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddpart] = ACTIONS(5873), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHchapter] = ACTIONS(5873), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddchap] = ACTIONS(5873), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsection] = ACTIONS(5873), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddsec] = ACTIONS(5873), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHparagraph] = ACTIONS(5873), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5873), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHitem] = ACTIONS(5873), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [anon_sym_RBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), }, - [1308] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2482), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [753] = { + [ts_builtin_sym_end] = ACTIONS(189), + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, - [1309] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2459), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [754] = { + [ts_builtin_sym_end] = ACTIONS(5875), + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_BSLASHpart] = ACTIONS(5877), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddpart] = ACTIONS(5877), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHchapter] = ACTIONS(5877), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddchap] = ACTIONS(5877), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsection] = ACTIONS(5877), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddsec] = ACTIONS(5877), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHparagraph] = ACTIONS(5877), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5877), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHitem] = ACTIONS(5877), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [anon_sym_RBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), }, - [1310] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2449), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [755] = { + [ts_builtin_sym_end] = ACTIONS(5879), + [sym_command_name] = ACTIONS(5881), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5881), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_BSLASHpart] = ACTIONS(5881), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddpart] = ACTIONS(5881), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHchapter] = ACTIONS(5881), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddchap] = ACTIONS(5881), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsection] = ACTIONS(5881), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddsec] = ACTIONS(5881), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHparagraph] = ACTIONS(5881), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5881), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHitem] = ACTIONS(5881), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5879), + [anon_sym_LBRACE] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(5881), + [sym_placeholder] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym__] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_SQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5879), + [anon_sym_BSLASHbegin] = ACTIONS(5881), + [anon_sym_BSLASHtitle] = ACTIONS(5881), + [anon_sym_BSLASHauthor] = ACTIONS(5881), + [anon_sym_BSLASHusepackage] = ACTIONS(5881), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5881), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5881), + [anon_sym_BSLASHinclude] = ACTIONS(5881), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5881), + [anon_sym_BSLASHinput] = ACTIONS(5881), + [anon_sym_BSLASHsubfile] = ACTIONS(5881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5881), + [anon_sym_BSLASHbibliography] = ACTIONS(5881), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5881), + [anon_sym_BSLASHincludesvg] = ACTIONS(5881), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5881), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5881), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5881), + [anon_sym_BSLASHimport] = ACTIONS(5881), + [anon_sym_BSLASHsubimport] = ACTIONS(5881), + [anon_sym_BSLASHinputfrom] = ACTIONS(5881), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5881), + [anon_sym_BSLASHincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHcaption] = ACTIONS(5881), + [anon_sym_BSLASHcite] = ACTIONS(5881), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCite] = ACTIONS(5881), + [anon_sym_BSLASHnocite] = ACTIONS(5881), + [anon_sym_BSLASHcitet] = ACTIONS(5881), + [anon_sym_BSLASHcitep] = ACTIONS(5881), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteauthor] = ACTIONS(5881), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5881), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitetitle] = ACTIONS(5881), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteyear] = ACTIONS(5881), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitedate] = ACTIONS(5881), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteurl] = ACTIONS(5881), + [anon_sym_BSLASHfullcite] = ACTIONS(5881), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5881), + [anon_sym_BSLASHcitealt] = ACTIONS(5881), + [anon_sym_BSLASHcitealp] = ACTIONS(5881), + [anon_sym_BSLASHcitetext] = ACTIONS(5881), + [anon_sym_BSLASHparencite] = ACTIONS(5881), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHParencite] = ACTIONS(5881), + [anon_sym_BSLASHfootcite] = ACTIONS(5881), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5881), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5881), + [anon_sym_BSLASHtextcite] = ACTIONS(5881), + [anon_sym_BSLASHTextcite] = ACTIONS(5881), + [anon_sym_BSLASHsmartcite] = ACTIONS(5881), + [anon_sym_BSLASHSmartcite] = ACTIONS(5881), + [anon_sym_BSLASHsupercite] = ACTIONS(5881), + [anon_sym_BSLASHautocite] = ACTIONS(5881), + [anon_sym_BSLASHAutocite] = ACTIONS(5881), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHvolcite] = ACTIONS(5881), + [anon_sym_BSLASHVolcite] = ACTIONS(5881), + [anon_sym_BSLASHpvolcite] = ACTIONS(5881), + [anon_sym_BSLASHPvolcite] = ACTIONS(5881), + [anon_sym_BSLASHfvolcite] = ACTIONS(5881), + [anon_sym_BSLASHftvolcite] = ACTIONS(5881), + [anon_sym_BSLASHsvolcite] = ACTIONS(5881), + [anon_sym_BSLASHSvolcite] = ACTIONS(5881), + [anon_sym_BSLASHtvolcite] = ACTIONS(5881), + [anon_sym_BSLASHTvolcite] = ACTIONS(5881), + [anon_sym_BSLASHavolcite] = ACTIONS(5881), + [anon_sym_BSLASHAvolcite] = ACTIONS(5881), + [anon_sym_BSLASHnotecite] = ACTIONS(5881), + [anon_sym_BSLASHNotecite] = ACTIONS(5881), + [anon_sym_BSLASHpnotecite] = ACTIONS(5881), + [anon_sym_BSLASHPnotecite] = ACTIONS(5881), + [anon_sym_BSLASHfnotecite] = ACTIONS(5881), + [anon_sym_BSLASHlabel] = ACTIONS(5881), + [anon_sym_BSLASHref] = ACTIONS(5881), + [anon_sym_BSLASHeqref] = ACTIONS(5881), + [anon_sym_BSLASHvref] = ACTIONS(5881), + [anon_sym_BSLASHVref] = ACTIONS(5881), + [anon_sym_BSLASHautoref] = ACTIONS(5881), + [anon_sym_BSLASHpageref] = ACTIONS(5881), + [anon_sym_BSLASHcref] = ACTIONS(5881), + [anon_sym_BSLASHCref] = ACTIONS(5881), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnameCref] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHlabelcref] = ACTIONS(5881), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCrefrange] = ACTIONS(5881), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnewlabel] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5881), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5881), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5881), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdef] = ACTIONS(5881), + [anon_sym_BSLASHlet] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5881), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5881), + [anon_sym_BSLASHgls] = ACTIONS(5881), + [anon_sym_BSLASHGls] = ACTIONS(5881), + [anon_sym_BSLASHGLS] = ACTIONS(5881), + [anon_sym_BSLASHglspl] = ACTIONS(5881), + [anon_sym_BSLASHGlspl] = ACTIONS(5881), + [anon_sym_BSLASHGLSpl] = ACTIONS(5881), + [anon_sym_BSLASHglsdisp] = ACTIONS(5881), + [anon_sym_BSLASHglslink] = ACTIONS(5881), + [anon_sym_BSLASHglstext] = ACTIONS(5881), + [anon_sym_BSLASHGlstext] = ACTIONS(5881), + [anon_sym_BSLASHGLStext] = ACTIONS(5881), + [anon_sym_BSLASHglsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5881), + [anon_sym_BSLASHglsplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSplural] = ACTIONS(5881), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHglsname] = ACTIONS(5881), + [anon_sym_BSLASHGlsname] = ACTIONS(5881), + [anon_sym_BSLASHGLSname] = ACTIONS(5881), + [anon_sym_BSLASHglssymbol] = ACTIONS(5881), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5881), + [anon_sym_BSLASHglsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5881), + [anon_sym_BSLASHglsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5881), + [anon_sym_BSLASHglsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5881), + [anon_sym_BSLASHglsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5881), + [anon_sym_BSLASHglsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5881), + [anon_sym_BSLASHnewacronym] = ACTIONS(5881), + [anon_sym_BSLASHacrshort] = ACTIONS(5881), + [anon_sym_BSLASHAcrshort] = ACTIONS(5881), + [anon_sym_BSLASHACRshort] = ACTIONS(5881), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5881), + [anon_sym_BSLASHacrlong] = ACTIONS(5881), + [anon_sym_BSLASHAcrlong] = ACTIONS(5881), + [anon_sym_BSLASHACRlong] = ACTIONS(5881), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5881), + [anon_sym_BSLASHacrfull] = ACTIONS(5881), + [anon_sym_BSLASHAcrfull] = ACTIONS(5881), + [anon_sym_BSLASHACRfull] = ACTIONS(5881), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5881), + [anon_sym_BSLASHacs] = ACTIONS(5881), + [anon_sym_BSLASHAcs] = ACTIONS(5881), + [anon_sym_BSLASHacsp] = ACTIONS(5881), + [anon_sym_BSLASHAcsp] = ACTIONS(5881), + [anon_sym_BSLASHacl] = ACTIONS(5881), + [anon_sym_BSLASHAcl] = ACTIONS(5881), + [anon_sym_BSLASHaclp] = ACTIONS(5881), + [anon_sym_BSLASHAclp] = ACTIONS(5881), + [anon_sym_BSLASHacf] = ACTIONS(5881), + [anon_sym_BSLASHAcf] = ACTIONS(5881), + [anon_sym_BSLASHacfp] = ACTIONS(5881), + [anon_sym_BSLASHAcfp] = ACTIONS(5881), + [anon_sym_BSLASHac] = ACTIONS(5881), + [anon_sym_BSLASHAc] = ACTIONS(5881), + [anon_sym_BSLASHacp] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5881), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5881), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHcolor] = ACTIONS(5881), + [anon_sym_BSLASHcolorbox] = ACTIONS(5881), + [anon_sym_BSLASHtextcolor] = ACTIONS(5881), + [anon_sym_BSLASHpagecolor] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5881), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5881), + [anon_sym_BSLASHtext] = ACTIONS(5881), + [anon_sym_BSLASHintertext] = ACTIONS(5881), + [anon_sym_shortintertext] = ACTIONS(5881), }, - [1311] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2510), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [756] = { + [sym_brack_group_text] = STATE(892), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_BSLASHpart] = ACTIONS(5785), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddpart] = ACTIONS(5785), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHchapter] = ACTIONS(5785), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddchap] = ACTIONS(5785), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsection] = ACTIONS(5785), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddsec] = ACTIONS(5785), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHparagraph] = ACTIONS(5785), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5785), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHitem] = ACTIONS(5785), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1312] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2480), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [757] = { + [ts_builtin_sym_end] = ACTIONS(5883), + [sym_command_name] = ACTIONS(5885), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5885), + [anon_sym_LPAREN] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_BSLASHpart] = ACTIONS(5885), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddpart] = ACTIONS(5885), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHchapter] = ACTIONS(5885), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddchap] = ACTIONS(5885), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsection] = ACTIONS(5885), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddsec] = ACTIONS(5885), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHparagraph] = ACTIONS(5885), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5885), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHitem] = ACTIONS(5885), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(5883), + [anon_sym_RBRACE] = ACTIONS(5883), + [sym_word] = ACTIONS(5885), + [sym_placeholder] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym__] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_SQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5883), + [anon_sym_BSLASHbegin] = ACTIONS(5885), + [anon_sym_BSLASHtitle] = ACTIONS(5885), + [anon_sym_BSLASHauthor] = ACTIONS(5885), + [anon_sym_BSLASHusepackage] = ACTIONS(5885), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5885), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5885), + [anon_sym_BSLASHinclude] = ACTIONS(5885), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5885), + [anon_sym_BSLASHinput] = ACTIONS(5885), + [anon_sym_BSLASHsubfile] = ACTIONS(5885), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5885), + [anon_sym_BSLASHbibliography] = ACTIONS(5885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5885), + [anon_sym_BSLASHincludesvg] = ACTIONS(5885), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5885), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5885), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5885), + [anon_sym_BSLASHimport] = ACTIONS(5885), + [anon_sym_BSLASHsubimport] = ACTIONS(5885), + [anon_sym_BSLASHinputfrom] = ACTIONS(5885), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5885), + [anon_sym_BSLASHincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHcaption] = ACTIONS(5885), + [anon_sym_BSLASHcite] = ACTIONS(5885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCite] = ACTIONS(5885), + [anon_sym_BSLASHnocite] = ACTIONS(5885), + [anon_sym_BSLASHcitet] = ACTIONS(5885), + [anon_sym_BSLASHcitep] = ACTIONS(5885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteauthor] = ACTIONS(5885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitetitle] = ACTIONS(5885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteyear] = ACTIONS(5885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitedate] = ACTIONS(5885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteurl] = ACTIONS(5885), + [anon_sym_BSLASHfullcite] = ACTIONS(5885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5885), + [anon_sym_BSLASHcitealt] = ACTIONS(5885), + [anon_sym_BSLASHcitealp] = ACTIONS(5885), + [anon_sym_BSLASHcitetext] = ACTIONS(5885), + [anon_sym_BSLASHparencite] = ACTIONS(5885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHParencite] = ACTIONS(5885), + [anon_sym_BSLASHfootcite] = ACTIONS(5885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5885), + [anon_sym_BSLASHtextcite] = ACTIONS(5885), + [anon_sym_BSLASHTextcite] = ACTIONS(5885), + [anon_sym_BSLASHsmartcite] = ACTIONS(5885), + [anon_sym_BSLASHSmartcite] = ACTIONS(5885), + [anon_sym_BSLASHsupercite] = ACTIONS(5885), + [anon_sym_BSLASHautocite] = ACTIONS(5885), + [anon_sym_BSLASHAutocite] = ACTIONS(5885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHvolcite] = ACTIONS(5885), + [anon_sym_BSLASHVolcite] = ACTIONS(5885), + [anon_sym_BSLASHpvolcite] = ACTIONS(5885), + [anon_sym_BSLASHPvolcite] = ACTIONS(5885), + [anon_sym_BSLASHfvolcite] = ACTIONS(5885), + [anon_sym_BSLASHftvolcite] = ACTIONS(5885), + [anon_sym_BSLASHsvolcite] = ACTIONS(5885), + [anon_sym_BSLASHSvolcite] = ACTIONS(5885), + [anon_sym_BSLASHtvolcite] = ACTIONS(5885), + [anon_sym_BSLASHTvolcite] = ACTIONS(5885), + [anon_sym_BSLASHavolcite] = ACTIONS(5885), + [anon_sym_BSLASHAvolcite] = ACTIONS(5885), + [anon_sym_BSLASHnotecite] = ACTIONS(5885), + [anon_sym_BSLASHNotecite] = ACTIONS(5885), + [anon_sym_BSLASHpnotecite] = ACTIONS(5885), + [anon_sym_BSLASHPnotecite] = ACTIONS(5885), + [anon_sym_BSLASHfnotecite] = ACTIONS(5885), + [anon_sym_BSLASHlabel] = ACTIONS(5885), + [anon_sym_BSLASHref] = ACTIONS(5885), + [anon_sym_BSLASHeqref] = ACTIONS(5885), + [anon_sym_BSLASHvref] = ACTIONS(5885), + [anon_sym_BSLASHVref] = ACTIONS(5885), + [anon_sym_BSLASHautoref] = ACTIONS(5885), + [anon_sym_BSLASHpageref] = ACTIONS(5885), + [anon_sym_BSLASHcref] = ACTIONS(5885), + [anon_sym_BSLASHCref] = ACTIONS(5885), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnameCref] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHlabelcref] = ACTIONS(5885), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCrefrange] = ACTIONS(5885), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnewlabel] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5885), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5885), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5885), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdef] = ACTIONS(5885), + [anon_sym_BSLASHlet] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5885), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5885), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5885), + [anon_sym_BSLASHgls] = ACTIONS(5885), + [anon_sym_BSLASHGls] = ACTIONS(5885), + [anon_sym_BSLASHGLS] = ACTIONS(5885), + [anon_sym_BSLASHglspl] = ACTIONS(5885), + [anon_sym_BSLASHGlspl] = ACTIONS(5885), + [anon_sym_BSLASHGLSpl] = ACTIONS(5885), + [anon_sym_BSLASHglsdisp] = ACTIONS(5885), + [anon_sym_BSLASHglslink] = ACTIONS(5885), + [anon_sym_BSLASHglstext] = ACTIONS(5885), + [anon_sym_BSLASHGlstext] = ACTIONS(5885), + [anon_sym_BSLASHGLStext] = ACTIONS(5885), + [anon_sym_BSLASHglsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5885), + [anon_sym_BSLASHglsplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSplural] = ACTIONS(5885), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHglsname] = ACTIONS(5885), + [anon_sym_BSLASHGlsname] = ACTIONS(5885), + [anon_sym_BSLASHGLSname] = ACTIONS(5885), + [anon_sym_BSLASHglssymbol] = ACTIONS(5885), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5885), + [anon_sym_BSLASHglsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5885), + [anon_sym_BSLASHglsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5885), + [anon_sym_BSLASHglsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5885), + [anon_sym_BSLASHglsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5885), + [anon_sym_BSLASHglsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5885), + [anon_sym_BSLASHnewacronym] = ACTIONS(5885), + [anon_sym_BSLASHacrshort] = ACTIONS(5885), + [anon_sym_BSLASHAcrshort] = ACTIONS(5885), + [anon_sym_BSLASHACRshort] = ACTIONS(5885), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5885), + [anon_sym_BSLASHacrlong] = ACTIONS(5885), + [anon_sym_BSLASHAcrlong] = ACTIONS(5885), + [anon_sym_BSLASHACRlong] = ACTIONS(5885), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5885), + [anon_sym_BSLASHacrfull] = ACTIONS(5885), + [anon_sym_BSLASHAcrfull] = ACTIONS(5885), + [anon_sym_BSLASHACRfull] = ACTIONS(5885), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5885), + [anon_sym_BSLASHacs] = ACTIONS(5885), + [anon_sym_BSLASHAcs] = ACTIONS(5885), + [anon_sym_BSLASHacsp] = ACTIONS(5885), + [anon_sym_BSLASHAcsp] = ACTIONS(5885), + [anon_sym_BSLASHacl] = ACTIONS(5885), + [anon_sym_BSLASHAcl] = ACTIONS(5885), + [anon_sym_BSLASHaclp] = ACTIONS(5885), + [anon_sym_BSLASHAclp] = ACTIONS(5885), + [anon_sym_BSLASHacf] = ACTIONS(5885), + [anon_sym_BSLASHAcf] = ACTIONS(5885), + [anon_sym_BSLASHacfp] = ACTIONS(5885), + [anon_sym_BSLASHAcfp] = ACTIONS(5885), + [anon_sym_BSLASHac] = ACTIONS(5885), + [anon_sym_BSLASHAc] = ACTIONS(5885), + [anon_sym_BSLASHacp] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5885), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5885), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5885), + [anon_sym_BSLASHcolor] = ACTIONS(5885), + [anon_sym_BSLASHcolorbox] = ACTIONS(5885), + [anon_sym_BSLASHtextcolor] = ACTIONS(5885), + [anon_sym_BSLASHpagecolor] = ACTIONS(5885), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5885), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5885), + [anon_sym_BSLASHtext] = ACTIONS(5885), + [anon_sym_BSLASHintertext] = ACTIONS(5885), + [anon_sym_shortintertext] = ACTIONS(5885), }, - [1313] = { - [sym_block_comment] = STATE(1588), - [sym_text] = STATE(2497), - [sym_operator] = STATE(1588), - [sym__command] = STATE(1588), - [sym_generic_command] = STATE(1588), - [sym_package_include] = STATE(1588), - [sym_class_include] = STATE(1588), - [sym_latex_include] = STATE(1588), - [sym_biblatex_include] = STATE(1588), - [sym_bibtex_include] = STATE(1588), - [sym_graphics_include] = STATE(1588), - [sym_svg_include] = STATE(1588), - [sym_inkscape_include] = STATE(1588), - [sym_verbatim_include] = STATE(1588), - [sym_import_include] = STATE(1588), - [sym_caption] = STATE(1588), - [sym_citation] = STATE(1588), - [sym_label_definition] = STATE(1588), - [sym_label_reference] = STATE(1588), - [sym_label_reference_range] = STATE(1588), - [sym_label_number] = STATE(1588), - [sym_new_command_definition] = STATE(1588), - [sym_old_command_definition] = STATE(1588), - [sym_let_command_definition] = STATE(1588), - [sym_paired_delimiter_definition] = STATE(1588), - [sym_environment_definition] = STATE(1588), - [sym_glossary_entry_definition] = STATE(1588), - [sym_glossary_entry_reference] = STATE(1588), - [sym_acronym_definition] = STATE(1588), - [sym_acronym_reference] = STATE(1588), - [sym_theorem_definition] = STATE(1588), - [sym_color_definition] = STATE(1588), - [sym_color_set_definition] = STATE(1588), - [sym_color_reference] = STATE(1588), - [sym_tikz_library_import] = STATE(1588), - [aux_sym_text_repeat1] = STATE(1201), - [sym_command_name] = ACTIONS(4517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4519), - [sym_word] = ACTIONS(4521), - [sym_placeholder] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_STAR] = ACTIONS(4525), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_CARET] = ACTIONS(4525), - [anon_sym__] = ACTIONS(4525), - [anon_sym_LT] = ACTIONS(4525), - [anon_sym_GT] = ACTIONS(4525), - [anon_sym_BANG] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_BSLASHusepackage] = ACTIONS(4537), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4537), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4539), - [anon_sym_BSLASHinclude] = ACTIONS(4541), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4541), - [anon_sym_BSLASHinput] = ACTIONS(4541), - [anon_sym_BSLASHsubfile] = ACTIONS(4541), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4543), - [anon_sym_BSLASHbibliography] = ACTIONS(4545), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4547), - [anon_sym_BSLASHincludesvg] = ACTIONS(4549), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4551), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4553), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4553), - [anon_sym_BSLASHimport] = ACTIONS(4555), - [anon_sym_BSLASHsubimport] = ACTIONS(4555), - [anon_sym_BSLASHinputfrom] = ACTIONS(4555), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), - [anon_sym_BSLASHincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), - [anon_sym_BSLASHcaption] = ACTIONS(4557), - [anon_sym_BSLASHcite] = ACTIONS(4559), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCite] = ACTIONS(4559), - [anon_sym_BSLASHnocite] = ACTIONS(4559), - [anon_sym_BSLASHcitet] = ACTIONS(4559), - [anon_sym_BSLASHcitep] = ACTIONS(4559), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteauthor] = ACTIONS(4559), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4559), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitetitle] = ACTIONS(4559), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteyear] = ACTIONS(4559), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4561), - [anon_sym_BSLASHcitedate] = ACTIONS(4559), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4561), - [anon_sym_BSLASHciteurl] = ACTIONS(4559), - [anon_sym_BSLASHfullcite] = ACTIONS(4559), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4559), - [anon_sym_BSLASHcitealt] = ACTIONS(4559), - [anon_sym_BSLASHcitealp] = ACTIONS(4559), - [anon_sym_BSLASHcitetext] = ACTIONS(4559), - [anon_sym_BSLASHparencite] = ACTIONS(4559), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHParencite] = ACTIONS(4559), - [anon_sym_BSLASHfootcite] = ACTIONS(4559), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4559), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4559), - [anon_sym_BSLASHtextcite] = ACTIONS(4559), - [anon_sym_BSLASHTextcite] = ACTIONS(4559), - [anon_sym_BSLASHsmartcite] = ACTIONS(4559), - [anon_sym_BSLASHSmartcite] = ACTIONS(4559), - [anon_sym_BSLASHsupercite] = ACTIONS(4559), - [anon_sym_BSLASHautocite] = ACTIONS(4559), - [anon_sym_BSLASHAutocite] = ACTIONS(4559), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4561), - [anon_sym_BSLASHvolcite] = ACTIONS(4559), - [anon_sym_BSLASHVolcite] = ACTIONS(4559), - [anon_sym_BSLASHpvolcite] = ACTIONS(4559), - [anon_sym_BSLASHPvolcite] = ACTIONS(4559), - [anon_sym_BSLASHfvolcite] = ACTIONS(4559), - [anon_sym_BSLASHftvolcite] = ACTIONS(4559), - [anon_sym_BSLASHsvolcite] = ACTIONS(4559), - [anon_sym_BSLASHSvolcite] = ACTIONS(4559), - [anon_sym_BSLASHtvolcite] = ACTIONS(4559), - [anon_sym_BSLASHTvolcite] = ACTIONS(4559), - [anon_sym_BSLASHavolcite] = ACTIONS(4559), - [anon_sym_BSLASHAvolcite] = ACTIONS(4559), - [anon_sym_BSLASHnotecite] = ACTIONS(4559), - [anon_sym_BSLASHNotecite] = ACTIONS(4559), - [anon_sym_BSLASHpnotecite] = ACTIONS(4559), - [anon_sym_BSLASHPnotecite] = ACTIONS(4559), - [anon_sym_BSLASHfnotecite] = ACTIONS(4559), - [anon_sym_BSLASHlabel] = ACTIONS(4563), - [anon_sym_BSLASHref] = ACTIONS(4565), - [anon_sym_BSLASHeqref] = ACTIONS(4565), - [anon_sym_BSLASHvref] = ACTIONS(4565), - [anon_sym_BSLASHVref] = ACTIONS(4565), - [anon_sym_BSLASHautoref] = ACTIONS(4565), - [anon_sym_BSLASHpageref] = ACTIONS(4565), - [anon_sym_BSLASHcref] = ACTIONS(4565), - [anon_sym_BSLASHCref] = ACTIONS(4565), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), - [anon_sym_BSLASHnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnameCref] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), - [anon_sym_BSLASHlabelcref] = ACTIONS(4565), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), - [anon_sym_BSLASHcrefrange] = ACTIONS(4569), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHCrefrange] = ACTIONS(4569), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4571), - [anon_sym_BSLASHnewlabel] = ACTIONS(4573), - [anon_sym_BSLASHnewcommand] = ACTIONS(4575), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4575), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4575), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4575), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4577), - [anon_sym_BSLASHdef] = ACTIONS(4579), - [anon_sym_BSLASHlet] = ACTIONS(4581), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4583), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4585), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4589), - [anon_sym_BSLASHGls] = ACTIONS(4589), - [anon_sym_BSLASHGLS] = ACTIONS(4589), - [anon_sym_BSLASHglspl] = ACTIONS(4589), - [anon_sym_BSLASHGlspl] = ACTIONS(4589), - [anon_sym_BSLASHGLSpl] = ACTIONS(4589), - [anon_sym_BSLASHglsdisp] = ACTIONS(4589), - [anon_sym_BSLASHglslink] = ACTIONS(4589), - [anon_sym_BSLASHglstext] = ACTIONS(4589), - [anon_sym_BSLASHGlstext] = ACTIONS(4589), - [anon_sym_BSLASHGLStext] = ACTIONS(4589), - [anon_sym_BSLASHglsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4589), - [anon_sym_BSLASHglsplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSplural] = ACTIONS(4589), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4589), - [anon_sym_BSLASHglsname] = ACTIONS(4589), - [anon_sym_BSLASHGlsname] = ACTIONS(4589), - [anon_sym_BSLASHGLSname] = ACTIONS(4589), - [anon_sym_BSLASHglssymbol] = ACTIONS(4589), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4589), - [anon_sym_BSLASHglsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4589), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4589), - [anon_sym_BSLASHglsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4589), - [anon_sym_BSLASHglsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4589), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4589), - [anon_sym_BSLASHglsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4589), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4589), - [anon_sym_BSLASHglsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4589), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4589), - [anon_sym_BSLASHnewacronym] = ACTIONS(4591), - [anon_sym_BSLASHacrshort] = ACTIONS(4593), - [anon_sym_BSLASHAcrshort] = ACTIONS(4593), - [anon_sym_BSLASHACRshort] = ACTIONS(4593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4593), - [anon_sym_BSLASHacrlong] = ACTIONS(4593), - [anon_sym_BSLASHAcrlong] = ACTIONS(4593), - [anon_sym_BSLASHACRlong] = ACTIONS(4593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4593), - [anon_sym_BSLASHacrfull] = ACTIONS(4593), - [anon_sym_BSLASHAcrfull] = ACTIONS(4593), - [anon_sym_BSLASHACRfull] = ACTIONS(4593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4593), - [anon_sym_BSLASHacs] = ACTIONS(4593), - [anon_sym_BSLASHAcs] = ACTIONS(4593), - [anon_sym_BSLASHacsp] = ACTIONS(4593), - [anon_sym_BSLASHAcsp] = ACTIONS(4593), - [anon_sym_BSLASHacl] = ACTIONS(4593), - [anon_sym_BSLASHAcl] = ACTIONS(4593), - [anon_sym_BSLASHaclp] = ACTIONS(4593), - [anon_sym_BSLASHAclp] = ACTIONS(4593), - [anon_sym_BSLASHacf] = ACTIONS(4593), - [anon_sym_BSLASHAcf] = ACTIONS(4593), - [anon_sym_BSLASHacfp] = ACTIONS(4593), - [anon_sym_BSLASHAcfp] = ACTIONS(4593), - [anon_sym_BSLASHac] = ACTIONS(4593), - [anon_sym_BSLASHAc] = ACTIONS(4593), - [anon_sym_BSLASHacp] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4595), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4595), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4597), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4601), - [anon_sym_BSLASHcolor] = ACTIONS(4603), - [anon_sym_BSLASHcolorbox] = ACTIONS(4603), - [anon_sym_BSLASHtextcolor] = ACTIONS(4603), - [anon_sym_BSLASHpagecolor] = ACTIONS(4603), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4605), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4605), + [758] = { + [ts_builtin_sym_end] = ACTIONS(175), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [1314] = { - [sym_curly_group] = STATE(1420), - [sym_mixed_group] = STATE(1420), - [aux_sym_generic_command_repeat1] = STATE(1316), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHbegin] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), + [759] = { + [ts_builtin_sym_end] = ACTIONS(5887), + [sym_command_name] = ACTIONS(5889), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5889), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_BSLASHpart] = ACTIONS(5889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddpart] = ACTIONS(5889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHchapter] = ACTIONS(5889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddchap] = ACTIONS(5889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsection] = ACTIONS(5889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddsec] = ACTIONS(5889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHparagraph] = ACTIONS(5889), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5889), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHitem] = ACTIONS(5889), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(5889), + [sym_placeholder] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5889), + [anon_sym_SLASH] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5889), + [anon_sym__] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_SQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5887), + [anon_sym_BSLASHbegin] = ACTIONS(5889), + [anon_sym_BSLASHtitle] = ACTIONS(5889), + [anon_sym_BSLASHauthor] = ACTIONS(5889), + [anon_sym_BSLASHusepackage] = ACTIONS(5889), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5889), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5889), + [anon_sym_BSLASHinclude] = ACTIONS(5889), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5889), + [anon_sym_BSLASHinput] = ACTIONS(5889), + [anon_sym_BSLASHsubfile] = ACTIONS(5889), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5889), + [anon_sym_BSLASHbibliography] = ACTIONS(5889), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5889), + [anon_sym_BSLASHincludesvg] = ACTIONS(5889), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5889), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5889), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5889), + [anon_sym_BSLASHimport] = ACTIONS(5889), + [anon_sym_BSLASHsubimport] = ACTIONS(5889), + [anon_sym_BSLASHinputfrom] = ACTIONS(5889), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5889), + [anon_sym_BSLASHincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHcaption] = ACTIONS(5889), + [anon_sym_BSLASHcite] = ACTIONS(5889), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCite] = ACTIONS(5889), + [anon_sym_BSLASHnocite] = ACTIONS(5889), + [anon_sym_BSLASHcitet] = ACTIONS(5889), + [anon_sym_BSLASHcitep] = ACTIONS(5889), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteauthor] = ACTIONS(5889), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5889), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitetitle] = ACTIONS(5889), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteyear] = ACTIONS(5889), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitedate] = ACTIONS(5889), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteurl] = ACTIONS(5889), + [anon_sym_BSLASHfullcite] = ACTIONS(5889), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5889), + [anon_sym_BSLASHcitealt] = ACTIONS(5889), + [anon_sym_BSLASHcitealp] = ACTIONS(5889), + [anon_sym_BSLASHcitetext] = ACTIONS(5889), + [anon_sym_BSLASHparencite] = ACTIONS(5889), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHParencite] = ACTIONS(5889), + [anon_sym_BSLASHfootcite] = ACTIONS(5889), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5889), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5889), + [anon_sym_BSLASHtextcite] = ACTIONS(5889), + [anon_sym_BSLASHTextcite] = ACTIONS(5889), + [anon_sym_BSLASHsmartcite] = ACTIONS(5889), + [anon_sym_BSLASHSmartcite] = ACTIONS(5889), + [anon_sym_BSLASHsupercite] = ACTIONS(5889), + [anon_sym_BSLASHautocite] = ACTIONS(5889), + [anon_sym_BSLASHAutocite] = ACTIONS(5889), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHvolcite] = ACTIONS(5889), + [anon_sym_BSLASHVolcite] = ACTIONS(5889), + [anon_sym_BSLASHpvolcite] = ACTIONS(5889), + [anon_sym_BSLASHPvolcite] = ACTIONS(5889), + [anon_sym_BSLASHfvolcite] = ACTIONS(5889), + [anon_sym_BSLASHftvolcite] = ACTIONS(5889), + [anon_sym_BSLASHsvolcite] = ACTIONS(5889), + [anon_sym_BSLASHSvolcite] = ACTIONS(5889), + [anon_sym_BSLASHtvolcite] = ACTIONS(5889), + [anon_sym_BSLASHTvolcite] = ACTIONS(5889), + [anon_sym_BSLASHavolcite] = ACTIONS(5889), + [anon_sym_BSLASHAvolcite] = ACTIONS(5889), + [anon_sym_BSLASHnotecite] = ACTIONS(5889), + [anon_sym_BSLASHNotecite] = ACTIONS(5889), + [anon_sym_BSLASHpnotecite] = ACTIONS(5889), + [anon_sym_BSLASHPnotecite] = ACTIONS(5889), + [anon_sym_BSLASHfnotecite] = ACTIONS(5889), + [anon_sym_BSLASHlabel] = ACTIONS(5889), + [anon_sym_BSLASHref] = ACTIONS(5889), + [anon_sym_BSLASHeqref] = ACTIONS(5889), + [anon_sym_BSLASHvref] = ACTIONS(5889), + [anon_sym_BSLASHVref] = ACTIONS(5889), + [anon_sym_BSLASHautoref] = ACTIONS(5889), + [anon_sym_BSLASHpageref] = ACTIONS(5889), + [anon_sym_BSLASHcref] = ACTIONS(5889), + [anon_sym_BSLASHCref] = ACTIONS(5889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnameCref] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHlabelcref] = ACTIONS(5889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCrefrange] = ACTIONS(5889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnewlabel] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5889), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5889), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5889), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdef] = ACTIONS(5889), + [anon_sym_BSLASHlet] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5889), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5889), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5889), + [anon_sym_BSLASHgls] = ACTIONS(5889), + [anon_sym_BSLASHGls] = ACTIONS(5889), + [anon_sym_BSLASHGLS] = ACTIONS(5889), + [anon_sym_BSLASHglspl] = ACTIONS(5889), + [anon_sym_BSLASHGlspl] = ACTIONS(5889), + [anon_sym_BSLASHGLSpl] = ACTIONS(5889), + [anon_sym_BSLASHglsdisp] = ACTIONS(5889), + [anon_sym_BSLASHglslink] = ACTIONS(5889), + [anon_sym_BSLASHglstext] = ACTIONS(5889), + [anon_sym_BSLASHGlstext] = ACTIONS(5889), + [anon_sym_BSLASHGLStext] = ACTIONS(5889), + [anon_sym_BSLASHglsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5889), + [anon_sym_BSLASHglsplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSplural] = ACTIONS(5889), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHglsname] = ACTIONS(5889), + [anon_sym_BSLASHGlsname] = ACTIONS(5889), + [anon_sym_BSLASHGLSname] = ACTIONS(5889), + [anon_sym_BSLASHglssymbol] = ACTIONS(5889), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5889), + [anon_sym_BSLASHglsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5889), + [anon_sym_BSLASHglsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5889), + [anon_sym_BSLASHglsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5889), + [anon_sym_BSLASHglsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5889), + [anon_sym_BSLASHglsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5889), + [anon_sym_BSLASHnewacronym] = ACTIONS(5889), + [anon_sym_BSLASHacrshort] = ACTIONS(5889), + [anon_sym_BSLASHAcrshort] = ACTIONS(5889), + [anon_sym_BSLASHACRshort] = ACTIONS(5889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5889), + [anon_sym_BSLASHacrlong] = ACTIONS(5889), + [anon_sym_BSLASHAcrlong] = ACTIONS(5889), + [anon_sym_BSLASHACRlong] = ACTIONS(5889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5889), + [anon_sym_BSLASHacrfull] = ACTIONS(5889), + [anon_sym_BSLASHAcrfull] = ACTIONS(5889), + [anon_sym_BSLASHACRfull] = ACTIONS(5889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5889), + [anon_sym_BSLASHacs] = ACTIONS(5889), + [anon_sym_BSLASHAcs] = ACTIONS(5889), + [anon_sym_BSLASHacsp] = ACTIONS(5889), + [anon_sym_BSLASHAcsp] = ACTIONS(5889), + [anon_sym_BSLASHacl] = ACTIONS(5889), + [anon_sym_BSLASHAcl] = ACTIONS(5889), + [anon_sym_BSLASHaclp] = ACTIONS(5889), + [anon_sym_BSLASHAclp] = ACTIONS(5889), + [anon_sym_BSLASHacf] = ACTIONS(5889), + [anon_sym_BSLASHAcf] = ACTIONS(5889), + [anon_sym_BSLASHacfp] = ACTIONS(5889), + [anon_sym_BSLASHAcfp] = ACTIONS(5889), + [anon_sym_BSLASHac] = ACTIONS(5889), + [anon_sym_BSLASHAc] = ACTIONS(5889), + [anon_sym_BSLASHacp] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5889), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5889), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5889), + [anon_sym_BSLASHcolor] = ACTIONS(5889), + [anon_sym_BSLASHcolorbox] = ACTIONS(5889), + [anon_sym_BSLASHtextcolor] = ACTIONS(5889), + [anon_sym_BSLASHpagecolor] = ACTIONS(5889), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5889), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5889), + [anon_sym_BSLASHtext] = ACTIONS(5889), + [anon_sym_BSLASHintertext] = ACTIONS(5889), + [anon_sym_shortintertext] = ACTIONS(5889), }, - [1315] = { - [sym_curly_group] = STATE(1420), - [sym_mixed_group] = STATE(1420), - [aux_sym_generic_command_repeat1] = STATE(1314), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHbegin] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), + [760] = { + [ts_builtin_sym_end] = ACTIONS(5891), + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_BSLASHpart] = ACTIONS(5893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddpart] = ACTIONS(5893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHchapter] = ACTIONS(5893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddchap] = ACTIONS(5893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsection] = ACTIONS(5893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddsec] = ACTIONS(5893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHparagraph] = ACTIONS(5893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHitem] = ACTIONS(5893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), }, - [1316] = { - [sym_curly_group] = STATE(1420), - [sym_mixed_group] = STATE(1420), - [aux_sym_generic_command_repeat1] = STATE(1316), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(5659), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(5659), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(5662), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHbegin] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), + [761] = { + [ts_builtin_sym_end] = ACTIONS(5895), + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_BSLASHpart] = ACTIONS(5897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddpart] = ACTIONS(5897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHchapter] = ACTIONS(5897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddchap] = ACTIONS(5897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsection] = ACTIONS(5897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddsec] = ACTIONS(5897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHparagraph] = ACTIONS(5897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHitem] = ACTIONS(5897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), }, - [1317] = { - [sym_curly_group] = STATE(1328), - [sym_brack_group_text] = STATE(2196), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), + [762] = { + [ts_builtin_sym_end] = ACTIONS(5899), + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_BSLASHpart] = ACTIONS(5901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddpart] = ACTIONS(5901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHchapter] = ACTIONS(5901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddchap] = ACTIONS(5901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsection] = ACTIONS(5901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddsec] = ACTIONS(5901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHparagraph] = ACTIONS(5901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), }, - [1318] = { - [sym_curly_group] = STATE(1487), - [sym_mixed_group] = STATE(1487), - [aux_sym_generic_command_repeat1] = STATE(1318), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(5665), - [anon_sym_RPAREN] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(5665), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(5668), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4617), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4617), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4617), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), - [anon_sym_BSLASHtext] = ACTIONS(4619), - [anon_sym_BSLASHintertext] = ACTIONS(4619), - [anon_sym_shortintertext] = ACTIONS(4619), + [763] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2033), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5903), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1319] = { - [sym_curly_group] = STATE(1329), - [sym_brack_group_text] = STATE(2206), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHbegin] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), + [764] = { + [ts_builtin_sym_end] = ACTIONS(5905), + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_BSLASHpart] = ACTIONS(5907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddpart] = ACTIONS(5907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHchapter] = ACTIONS(5907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddchap] = ACTIONS(5907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsection] = ACTIONS(5907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddsec] = ACTIONS(5907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHparagraph] = ACTIONS(5907), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5907), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHitem] = ACTIONS(5907), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), }, - [1320] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5671), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHbegin] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5673), + [765] = { + [ts_builtin_sym_end] = ACTIONS(5909), + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_BSLASHpart] = ACTIONS(5911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddpart] = ACTIONS(5911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHchapter] = ACTIONS(5911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddchap] = ACTIONS(5911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsection] = ACTIONS(5911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddsec] = ACTIONS(5911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHparagraph] = ACTIONS(5911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHitem] = ACTIONS(5911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), }, - [1321] = { - [sym_curly_group] = STATE(1487), - [sym_mixed_group] = STATE(1487), - [aux_sym_generic_command_repeat1] = STATE(1318), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(5675), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(5675), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4611), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4611), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4611), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), - [anon_sym_BSLASHtext] = ACTIONS(4613), - [anon_sym_BSLASHintertext] = ACTIONS(4613), - [anon_sym_shortintertext] = ACTIONS(4613), + [766] = { + [ts_builtin_sym_end] = ACTIONS(5913), + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_BSLASHpart] = ACTIONS(5915), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddpart] = ACTIONS(5915), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHchapter] = ACTIONS(5915), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddchap] = ACTIONS(5915), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsection] = ACTIONS(5915), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddsec] = ACTIONS(5915), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHparagraph] = ACTIONS(5915), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5915), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHitem] = ACTIONS(5915), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), }, - [1322] = { - [sym_curly_group] = STATE(1487), - [sym_mixed_group] = STATE(1487), - [aux_sym_generic_command_repeat1] = STATE(1321), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(5675), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(5675), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4627), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4629), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4627), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4627), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), - [anon_sym_BSLASHtext] = ACTIONS(4629), - [anon_sym_BSLASHintertext] = ACTIONS(4629), - [anon_sym_shortintertext] = ACTIONS(4629), + [767] = { + [ts_builtin_sym_end] = ACTIONS(5917), + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_BSLASHpart] = ACTIONS(5919), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddpart] = ACTIONS(5919), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHchapter] = ACTIONS(5919), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddchap] = ACTIONS(5919), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsection] = ACTIONS(5919), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddsec] = ACTIONS(5919), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHparagraph] = ACTIONS(5919), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5919), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHitem] = ACTIONS(5919), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), }, - [1323] = { - [sym_curly_group] = STATE(1340), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), + [768] = { + [sym_curly_group] = STATE(931), + [sym_command_name] = ACTIONS(5763), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5763), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_BSLASHpart] = ACTIONS(5763), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddpart] = ACTIONS(5763), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHchapter] = ACTIONS(5763), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddchap] = ACTIONS(5763), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsection] = ACTIONS(5763), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddsec] = ACTIONS(5763), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHparagraph] = ACTIONS(5763), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5763), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5761), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5763), + [sym_placeholder] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5763), + [anon_sym_SLASH] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5763), + [anon_sym__] = ACTIONS(5763), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PIPE] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_SQUOTE] = ACTIONS(5763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5761), + [anon_sym_DOLLAR] = ACTIONS(5763), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5761), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5761), + [anon_sym_BSLASHbegin] = ACTIONS(5763), + [anon_sym_BSLASHtitle] = ACTIONS(5763), + [anon_sym_BSLASHauthor] = ACTIONS(5763), + [anon_sym_BSLASHusepackage] = ACTIONS(5763), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5763), + [anon_sym_BSLASHinclude] = ACTIONS(5763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5763), + [anon_sym_BSLASHinput] = ACTIONS(5763), + [anon_sym_BSLASHsubfile] = ACTIONS(5763), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5763), + [anon_sym_BSLASHbibliography] = ACTIONS(5763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5763), + [anon_sym_BSLASHincludesvg] = ACTIONS(5763), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5763), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5763), + [anon_sym_BSLASHimport] = ACTIONS(5763), + [anon_sym_BSLASHsubimport] = ACTIONS(5763), + [anon_sym_BSLASHinputfrom] = ACTIONS(5763), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5763), + [anon_sym_BSLASHincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHcaption] = ACTIONS(5763), + [anon_sym_BSLASHcite] = ACTIONS(5763), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCite] = ACTIONS(5763), + [anon_sym_BSLASHnocite] = ACTIONS(5763), + [anon_sym_BSLASHcitet] = ACTIONS(5763), + [anon_sym_BSLASHcitep] = ACTIONS(5763), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteauthor] = ACTIONS(5763), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5763), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitetitle] = ACTIONS(5763), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteyear] = ACTIONS(5763), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitedate] = ACTIONS(5763), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteurl] = ACTIONS(5763), + [anon_sym_BSLASHfullcite] = ACTIONS(5763), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5763), + [anon_sym_BSLASHcitealt] = ACTIONS(5763), + [anon_sym_BSLASHcitealp] = ACTIONS(5763), + [anon_sym_BSLASHcitetext] = ACTIONS(5763), + [anon_sym_BSLASHparencite] = ACTIONS(5763), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHParencite] = ACTIONS(5763), + [anon_sym_BSLASHfootcite] = ACTIONS(5763), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5763), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5763), + [anon_sym_BSLASHtextcite] = ACTIONS(5763), + [anon_sym_BSLASHTextcite] = ACTIONS(5763), + [anon_sym_BSLASHsmartcite] = ACTIONS(5763), + [anon_sym_BSLASHSmartcite] = ACTIONS(5763), + [anon_sym_BSLASHsupercite] = ACTIONS(5763), + [anon_sym_BSLASHautocite] = ACTIONS(5763), + [anon_sym_BSLASHAutocite] = ACTIONS(5763), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHvolcite] = ACTIONS(5763), + [anon_sym_BSLASHVolcite] = ACTIONS(5763), + [anon_sym_BSLASHpvolcite] = ACTIONS(5763), + [anon_sym_BSLASHPvolcite] = ACTIONS(5763), + [anon_sym_BSLASHfvolcite] = ACTIONS(5763), + [anon_sym_BSLASHftvolcite] = ACTIONS(5763), + [anon_sym_BSLASHsvolcite] = ACTIONS(5763), + [anon_sym_BSLASHSvolcite] = ACTIONS(5763), + [anon_sym_BSLASHtvolcite] = ACTIONS(5763), + [anon_sym_BSLASHTvolcite] = ACTIONS(5763), + [anon_sym_BSLASHavolcite] = ACTIONS(5763), + [anon_sym_BSLASHAvolcite] = ACTIONS(5763), + [anon_sym_BSLASHnotecite] = ACTIONS(5763), + [anon_sym_BSLASHNotecite] = ACTIONS(5763), + [anon_sym_BSLASHpnotecite] = ACTIONS(5763), + [anon_sym_BSLASHPnotecite] = ACTIONS(5763), + [anon_sym_BSLASHfnotecite] = ACTIONS(5763), + [anon_sym_BSLASHlabel] = ACTIONS(5763), + [anon_sym_BSLASHref] = ACTIONS(5763), + [anon_sym_BSLASHeqref] = ACTIONS(5763), + [anon_sym_BSLASHvref] = ACTIONS(5763), + [anon_sym_BSLASHVref] = ACTIONS(5763), + [anon_sym_BSLASHautoref] = ACTIONS(5763), + [anon_sym_BSLASHpageref] = ACTIONS(5763), + [anon_sym_BSLASHcref] = ACTIONS(5763), + [anon_sym_BSLASHCref] = ACTIONS(5763), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnameCref] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHlabelcref] = ACTIONS(5763), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCrefrange] = ACTIONS(5763), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnewlabel] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5763), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5763), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5763), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdef] = ACTIONS(5763), + [anon_sym_BSLASHlet] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5763), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5763), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5763), + [anon_sym_BSLASHgls] = ACTIONS(5763), + [anon_sym_BSLASHGls] = ACTIONS(5763), + [anon_sym_BSLASHGLS] = ACTIONS(5763), + [anon_sym_BSLASHglspl] = ACTIONS(5763), + [anon_sym_BSLASHGlspl] = ACTIONS(5763), + [anon_sym_BSLASHGLSpl] = ACTIONS(5763), + [anon_sym_BSLASHglsdisp] = ACTIONS(5763), + [anon_sym_BSLASHglslink] = ACTIONS(5763), + [anon_sym_BSLASHglstext] = ACTIONS(5763), + [anon_sym_BSLASHGlstext] = ACTIONS(5763), + [anon_sym_BSLASHGLStext] = ACTIONS(5763), + [anon_sym_BSLASHglsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5763), + [anon_sym_BSLASHglsplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSplural] = ACTIONS(5763), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHglsname] = ACTIONS(5763), + [anon_sym_BSLASHGlsname] = ACTIONS(5763), + [anon_sym_BSLASHGLSname] = ACTIONS(5763), + [anon_sym_BSLASHglssymbol] = ACTIONS(5763), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5763), + [anon_sym_BSLASHglsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5763), + [anon_sym_BSLASHglsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5763), + [anon_sym_BSLASHglsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5763), + [anon_sym_BSLASHglsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5763), + [anon_sym_BSLASHglsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5763), + [anon_sym_BSLASHnewacronym] = ACTIONS(5763), + [anon_sym_BSLASHacrshort] = ACTIONS(5763), + [anon_sym_BSLASHAcrshort] = ACTIONS(5763), + [anon_sym_BSLASHACRshort] = ACTIONS(5763), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5763), + [anon_sym_BSLASHacrlong] = ACTIONS(5763), + [anon_sym_BSLASHAcrlong] = ACTIONS(5763), + [anon_sym_BSLASHACRlong] = ACTIONS(5763), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5763), + [anon_sym_BSLASHacrfull] = ACTIONS(5763), + [anon_sym_BSLASHAcrfull] = ACTIONS(5763), + [anon_sym_BSLASHACRfull] = ACTIONS(5763), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5763), + [anon_sym_BSLASHacs] = ACTIONS(5763), + [anon_sym_BSLASHAcs] = ACTIONS(5763), + [anon_sym_BSLASHacsp] = ACTIONS(5763), + [anon_sym_BSLASHAcsp] = ACTIONS(5763), + [anon_sym_BSLASHacl] = ACTIONS(5763), + [anon_sym_BSLASHAcl] = ACTIONS(5763), + [anon_sym_BSLASHaclp] = ACTIONS(5763), + [anon_sym_BSLASHAclp] = ACTIONS(5763), + [anon_sym_BSLASHacf] = ACTIONS(5763), + [anon_sym_BSLASHAcf] = ACTIONS(5763), + [anon_sym_BSLASHacfp] = ACTIONS(5763), + [anon_sym_BSLASHAcfp] = ACTIONS(5763), + [anon_sym_BSLASHac] = ACTIONS(5763), + [anon_sym_BSLASHAc] = ACTIONS(5763), + [anon_sym_BSLASHacp] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5763), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5763), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5763), + [anon_sym_BSLASHcolor] = ACTIONS(5763), + [anon_sym_BSLASHcolorbox] = ACTIONS(5763), + [anon_sym_BSLASHtextcolor] = ACTIONS(5763), + [anon_sym_BSLASHpagecolor] = ACTIONS(5763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5763), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5763), + [anon_sym_BSLASHtext] = ACTIONS(5763), + [anon_sym_BSLASHintertext] = ACTIONS(5763), + [anon_sym_shortintertext] = ACTIONS(5763), }, - [1324] = { - [sym_curly_group] = STATE(1410), - [sym_brack_group_text] = STATE(2281), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4851), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), - [anon_sym_BSLASHtext] = ACTIONS(4853), - [anon_sym_BSLASHintertext] = ACTIONS(4853), - [anon_sym_shortintertext] = ACTIONS(4853), + [769] = { + [sym_brack_group_text] = STATE(1328), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_BSLASHpart] = ACTIONS(5785), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddpart] = ACTIONS(5785), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHchapter] = ACTIONS(5785), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddchap] = ACTIONS(5785), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsection] = ACTIONS(5785), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddsec] = ACTIONS(5785), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHparagraph] = ACTIONS(5785), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5785), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHitem] = ACTIONS(5785), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHend] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1325] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5677), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), - [anon_sym_DOLLAR] = ACTIONS(4909), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [anon_sym_BSLASHtext] = ACTIONS(4909), - [anon_sym_BSLASHintertext] = ACTIONS(4909), - [anon_sym_shortintertext] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5679), + [770] = { + [ts_builtin_sym_end] = ACTIONS(5921), + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_BSLASHpart] = ACTIONS(5923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddpart] = ACTIONS(5923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHchapter] = ACTIONS(5923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddchap] = ACTIONS(5923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsection] = ACTIONS(5923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddsec] = ACTIONS(5923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHparagraph] = ACTIONS(5923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHitem] = ACTIONS(5923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), }, - [1326] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5681), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHbegin] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), + [771] = { + [ts_builtin_sym_end] = ACTIONS(5925), + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_BSLASHpart] = ACTIONS(5927), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddpart] = ACTIONS(5927), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHchapter] = ACTIONS(5927), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddchap] = ACTIONS(5927), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsection] = ACTIONS(5927), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddsec] = ACTIONS(5927), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHparagraph] = ACTIONS(5927), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5927), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHitem] = ACTIONS(5927), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [anon_sym_RBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), }, - [1327] = { - [sym_curly_group] = STATE(1436), - [sym_brack_group_text] = STATE(2271), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), - [anon_sym_BSLASHtext] = ACTIONS(4973), - [anon_sym_BSLASHintertext] = ACTIONS(4973), - [anon_sym_shortintertext] = ACTIONS(4973), + [772] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2012), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5929), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1328] = { - [sym_brack_group_text] = STATE(1346), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5683), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHbegin] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), + [773] = { + [ts_builtin_sym_end] = ACTIONS(5931), + [sym_command_name] = ACTIONS(5933), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_BSLASHpart] = ACTIONS(5933), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddpart] = ACTIONS(5933), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHchapter] = ACTIONS(5933), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddchap] = ACTIONS(5933), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsection] = ACTIONS(5933), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddsec] = ACTIONS(5933), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHparagraph] = ACTIONS(5933), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5933), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHitem] = ACTIONS(5933), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5931), + [sym_word] = ACTIONS(5933), + [sym_placeholder] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym__] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_SQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5931), + [anon_sym_BSLASHbegin] = ACTIONS(5933), + [anon_sym_BSLASHtitle] = ACTIONS(5933), + [anon_sym_BSLASHauthor] = ACTIONS(5933), + [anon_sym_BSLASHusepackage] = ACTIONS(5933), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5933), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5933), + [anon_sym_BSLASHinclude] = ACTIONS(5933), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5933), + [anon_sym_BSLASHinput] = ACTIONS(5933), + [anon_sym_BSLASHsubfile] = ACTIONS(5933), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5933), + [anon_sym_BSLASHbibliography] = ACTIONS(5933), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5933), + [anon_sym_BSLASHincludesvg] = ACTIONS(5933), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5933), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5933), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5933), + [anon_sym_BSLASHimport] = ACTIONS(5933), + [anon_sym_BSLASHsubimport] = ACTIONS(5933), + [anon_sym_BSLASHinputfrom] = ACTIONS(5933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5933), + [anon_sym_BSLASHincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHcaption] = ACTIONS(5933), + [anon_sym_BSLASHcite] = ACTIONS(5933), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCite] = ACTIONS(5933), + [anon_sym_BSLASHnocite] = ACTIONS(5933), + [anon_sym_BSLASHcitet] = ACTIONS(5933), + [anon_sym_BSLASHcitep] = ACTIONS(5933), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteauthor] = ACTIONS(5933), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5933), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitetitle] = ACTIONS(5933), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteyear] = ACTIONS(5933), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitedate] = ACTIONS(5933), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteurl] = ACTIONS(5933), + [anon_sym_BSLASHfullcite] = ACTIONS(5933), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5933), + [anon_sym_BSLASHcitealt] = ACTIONS(5933), + [anon_sym_BSLASHcitealp] = ACTIONS(5933), + [anon_sym_BSLASHcitetext] = ACTIONS(5933), + [anon_sym_BSLASHparencite] = ACTIONS(5933), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHParencite] = ACTIONS(5933), + [anon_sym_BSLASHfootcite] = ACTIONS(5933), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5933), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5933), + [anon_sym_BSLASHtextcite] = ACTIONS(5933), + [anon_sym_BSLASHTextcite] = ACTIONS(5933), + [anon_sym_BSLASHsmartcite] = ACTIONS(5933), + [anon_sym_BSLASHSmartcite] = ACTIONS(5933), + [anon_sym_BSLASHsupercite] = ACTIONS(5933), + [anon_sym_BSLASHautocite] = ACTIONS(5933), + [anon_sym_BSLASHAutocite] = ACTIONS(5933), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHvolcite] = ACTIONS(5933), + [anon_sym_BSLASHVolcite] = ACTIONS(5933), + [anon_sym_BSLASHpvolcite] = ACTIONS(5933), + [anon_sym_BSLASHPvolcite] = ACTIONS(5933), + [anon_sym_BSLASHfvolcite] = ACTIONS(5933), + [anon_sym_BSLASHftvolcite] = ACTIONS(5933), + [anon_sym_BSLASHsvolcite] = ACTIONS(5933), + [anon_sym_BSLASHSvolcite] = ACTIONS(5933), + [anon_sym_BSLASHtvolcite] = ACTIONS(5933), + [anon_sym_BSLASHTvolcite] = ACTIONS(5933), + [anon_sym_BSLASHavolcite] = ACTIONS(5933), + [anon_sym_BSLASHAvolcite] = ACTIONS(5933), + [anon_sym_BSLASHnotecite] = ACTIONS(5933), + [anon_sym_BSLASHNotecite] = ACTIONS(5933), + [anon_sym_BSLASHpnotecite] = ACTIONS(5933), + [anon_sym_BSLASHPnotecite] = ACTIONS(5933), + [anon_sym_BSLASHfnotecite] = ACTIONS(5933), + [anon_sym_BSLASHlabel] = ACTIONS(5933), + [anon_sym_BSLASHref] = ACTIONS(5933), + [anon_sym_BSLASHeqref] = ACTIONS(5933), + [anon_sym_BSLASHvref] = ACTIONS(5933), + [anon_sym_BSLASHVref] = ACTIONS(5933), + [anon_sym_BSLASHautoref] = ACTIONS(5933), + [anon_sym_BSLASHpageref] = ACTIONS(5933), + [anon_sym_BSLASHcref] = ACTIONS(5933), + [anon_sym_BSLASHCref] = ACTIONS(5933), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnameCref] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHlabelcref] = ACTIONS(5933), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCrefrange] = ACTIONS(5933), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnewlabel] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5933), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5933), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5933), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdef] = ACTIONS(5933), + [anon_sym_BSLASHlet] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5933), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5933), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5933), + [anon_sym_BSLASHgls] = ACTIONS(5933), + [anon_sym_BSLASHGls] = ACTIONS(5933), + [anon_sym_BSLASHGLS] = ACTIONS(5933), + [anon_sym_BSLASHglspl] = ACTIONS(5933), + [anon_sym_BSLASHGlspl] = ACTIONS(5933), + [anon_sym_BSLASHGLSpl] = ACTIONS(5933), + [anon_sym_BSLASHglsdisp] = ACTIONS(5933), + [anon_sym_BSLASHglslink] = ACTIONS(5933), + [anon_sym_BSLASHglstext] = ACTIONS(5933), + [anon_sym_BSLASHGlstext] = ACTIONS(5933), + [anon_sym_BSLASHGLStext] = ACTIONS(5933), + [anon_sym_BSLASHglsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5933), + [anon_sym_BSLASHglsplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSplural] = ACTIONS(5933), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHglsname] = ACTIONS(5933), + [anon_sym_BSLASHGlsname] = ACTIONS(5933), + [anon_sym_BSLASHGLSname] = ACTIONS(5933), + [anon_sym_BSLASHglssymbol] = ACTIONS(5933), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5933), + [anon_sym_BSLASHglsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5933), + [anon_sym_BSLASHglsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5933), + [anon_sym_BSLASHglsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5933), + [anon_sym_BSLASHglsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5933), + [anon_sym_BSLASHglsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5933), + [anon_sym_BSLASHnewacronym] = ACTIONS(5933), + [anon_sym_BSLASHacrshort] = ACTIONS(5933), + [anon_sym_BSLASHAcrshort] = ACTIONS(5933), + [anon_sym_BSLASHACRshort] = ACTIONS(5933), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5933), + [anon_sym_BSLASHacrlong] = ACTIONS(5933), + [anon_sym_BSLASHAcrlong] = ACTIONS(5933), + [anon_sym_BSLASHACRlong] = ACTIONS(5933), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5933), + [anon_sym_BSLASHacrfull] = ACTIONS(5933), + [anon_sym_BSLASHAcrfull] = ACTIONS(5933), + [anon_sym_BSLASHACRfull] = ACTIONS(5933), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5933), + [anon_sym_BSLASHacs] = ACTIONS(5933), + [anon_sym_BSLASHAcs] = ACTIONS(5933), + [anon_sym_BSLASHacsp] = ACTIONS(5933), + [anon_sym_BSLASHAcsp] = ACTIONS(5933), + [anon_sym_BSLASHacl] = ACTIONS(5933), + [anon_sym_BSLASHAcl] = ACTIONS(5933), + [anon_sym_BSLASHaclp] = ACTIONS(5933), + [anon_sym_BSLASHAclp] = ACTIONS(5933), + [anon_sym_BSLASHacf] = ACTIONS(5933), + [anon_sym_BSLASHAcf] = ACTIONS(5933), + [anon_sym_BSLASHacfp] = ACTIONS(5933), + [anon_sym_BSLASHAcfp] = ACTIONS(5933), + [anon_sym_BSLASHac] = ACTIONS(5933), + [anon_sym_BSLASHAc] = ACTIONS(5933), + [anon_sym_BSLASHacp] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5933), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5933), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5933), + [anon_sym_BSLASHcolor] = ACTIONS(5933), + [anon_sym_BSLASHcolorbox] = ACTIONS(5933), + [anon_sym_BSLASHtextcolor] = ACTIONS(5933), + [anon_sym_BSLASHpagecolor] = ACTIONS(5933), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5933), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5933), + [anon_sym_BSLASHtext] = ACTIONS(5933), + [anon_sym_BSLASHintertext] = ACTIONS(5933), + [anon_sym_shortintertext] = ACTIONS(5933), }, - [1329] = { - [sym_brack_group_text] = STATE(1336), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5683), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), + [774] = { + [ts_builtin_sym_end] = ACTIONS(5935), + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_BSLASHpart] = ACTIONS(5937), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddpart] = ACTIONS(5937), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHchapter] = ACTIONS(5937), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddchap] = ACTIONS(5937), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsection] = ACTIONS(5937), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddsec] = ACTIONS(5937), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHparagraph] = ACTIONS(5937), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5937), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHitem] = ACTIONS(5937), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), }, - [1330] = { - [sym_curly_group] = STATE(1394), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(3373), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHbegin] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), + [775] = { + [ts_builtin_sym_end] = ACTIONS(5939), + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_BSLASHpart] = ACTIONS(5941), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddpart] = ACTIONS(5941), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHchapter] = ACTIONS(5941), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddchap] = ACTIONS(5941), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsection] = ACTIONS(5941), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddsec] = ACTIONS(5941), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHparagraph] = ACTIONS(5941), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5941), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHitem] = ACTIONS(5941), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), }, - [1331] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), + [776] = { + [ts_builtin_sym_end] = ACTIONS(5943), + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_BSLASHpart] = ACTIONS(5945), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddpart] = ACTIONS(5945), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHchapter] = ACTIONS(5945), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddchap] = ACTIONS(5945), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsection] = ACTIONS(5945), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddsec] = ACTIONS(5945), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHparagraph] = ACTIONS(5945), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5945), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHitem] = ACTIONS(5945), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), }, - [1332] = { - [sym_command_name] = ACTIONS(5241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5241), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5239), - [anon_sym_COMMA] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [sym_placeholder] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_STAR] = ACTIONS(5241), - [anon_sym_SLASH] = ACTIONS(5241), - [anon_sym_CARET] = ACTIONS(5241), - [anon_sym__] = ACTIONS(5241), - [anon_sym_LT] = ACTIONS(5241), - [anon_sym_GT] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(5241), - [anon_sym_PIPE] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(5241), - [anon_sym_SQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), - [anon_sym_BSLASHbegin] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), - [anon_sym_BSLASHinclude] = ACTIONS(5241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), - [anon_sym_BSLASHinput] = ACTIONS(5241), - [anon_sym_BSLASHsubfile] = ACTIONS(5241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), - [anon_sym_BSLASHbibliography] = ACTIONS(5241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), - [anon_sym_BSLASHincludesvg] = ACTIONS(5241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), - [anon_sym_BSLASHimport] = ACTIONS(5241), - [anon_sym_BSLASHsubimport] = ACTIONS(5241), - [anon_sym_BSLASHinputfrom] = ACTIONS(5241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), - [anon_sym_BSLASHincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), - [anon_sym_BSLASHcaption] = ACTIONS(5241), - [anon_sym_BSLASHcite] = ACTIONS(5241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCite] = ACTIONS(5241), - [anon_sym_BSLASHnocite] = ACTIONS(5241), - [anon_sym_BSLASHcitet] = ACTIONS(5241), - [anon_sym_BSLASHcitep] = ACTIONS(5241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteyear] = ACTIONS(5241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), - [anon_sym_BSLASHcitedate] = ACTIONS(5241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), - [anon_sym_BSLASHciteurl] = ACTIONS(5241), - [anon_sym_BSLASHfullcite] = ACTIONS(5241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), - [anon_sym_BSLASHcitealt] = ACTIONS(5241), - [anon_sym_BSLASHcitealp] = ACTIONS(5241), - [anon_sym_BSLASHcitetext] = ACTIONS(5241), - [anon_sym_BSLASHparencite] = ACTIONS(5241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHParencite] = ACTIONS(5241), - [anon_sym_BSLASHfootcite] = ACTIONS(5241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), - [anon_sym_BSLASHtextcite] = ACTIONS(5241), - [anon_sym_BSLASHTextcite] = ACTIONS(5241), - [anon_sym_BSLASHsmartcite] = ACTIONS(5241), - [anon_sym_BSLASHSmartcite] = ACTIONS(5241), - [anon_sym_BSLASHsupercite] = ACTIONS(5241), - [anon_sym_BSLASHautocite] = ACTIONS(5241), - [anon_sym_BSLASHAutocite] = ACTIONS(5241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), - [anon_sym_BSLASHvolcite] = ACTIONS(5241), - [anon_sym_BSLASHVolcite] = ACTIONS(5241), - [anon_sym_BSLASHpvolcite] = ACTIONS(5241), - [anon_sym_BSLASHPvolcite] = ACTIONS(5241), - [anon_sym_BSLASHfvolcite] = ACTIONS(5241), - [anon_sym_BSLASHftvolcite] = ACTIONS(5241), - [anon_sym_BSLASHsvolcite] = ACTIONS(5241), - [anon_sym_BSLASHSvolcite] = ACTIONS(5241), - [anon_sym_BSLASHtvolcite] = ACTIONS(5241), - [anon_sym_BSLASHTvolcite] = ACTIONS(5241), - [anon_sym_BSLASHavolcite] = ACTIONS(5241), - [anon_sym_BSLASHAvolcite] = ACTIONS(5241), - [anon_sym_BSLASHnotecite] = ACTIONS(5241), - [anon_sym_BSLASHNotecite] = ACTIONS(5241), - [anon_sym_BSLASHpnotecite] = ACTIONS(5241), - [anon_sym_BSLASHPnotecite] = ACTIONS(5241), - [anon_sym_BSLASHfnotecite] = ACTIONS(5241), - [anon_sym_BSLASHlabel] = ACTIONS(5241), - [anon_sym_BSLASHref] = ACTIONS(5241), - [anon_sym_BSLASHeqref] = ACTIONS(5241), - [anon_sym_BSLASHvref] = ACTIONS(5241), - [anon_sym_BSLASHVref] = ACTIONS(5241), - [anon_sym_BSLASHautoref] = ACTIONS(5241), - [anon_sym_BSLASHpageref] = ACTIONS(5241), - [anon_sym_BSLASHcref] = ACTIONS(5241), - [anon_sym_BSLASHCref] = ACTIONS(5241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnameCref] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), - [anon_sym_BSLASHlabelcref] = ACTIONS(5241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange] = ACTIONS(5241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), - [anon_sym_BSLASHnewlabel] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand] = ACTIONS(5241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdef] = ACTIONS(5241), - [anon_sym_BSLASHlet] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), - [anon_sym_BSLASHgls] = ACTIONS(5241), - [anon_sym_BSLASHGls] = ACTIONS(5241), - [anon_sym_BSLASHGLS] = ACTIONS(5241), - [anon_sym_BSLASHglspl] = ACTIONS(5241), - [anon_sym_BSLASHGlspl] = ACTIONS(5241), - [anon_sym_BSLASHGLSpl] = ACTIONS(5241), - [anon_sym_BSLASHglsdisp] = ACTIONS(5241), - [anon_sym_BSLASHglslink] = ACTIONS(5241), - [anon_sym_BSLASHglstext] = ACTIONS(5241), - [anon_sym_BSLASHGlstext] = ACTIONS(5241), - [anon_sym_BSLASHGLStext] = ACTIONS(5241), - [anon_sym_BSLASHglsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), - [anon_sym_BSLASHglsplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSplural] = ACTIONS(5241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), - [anon_sym_BSLASHglsname] = ACTIONS(5241), - [anon_sym_BSLASHGlsname] = ACTIONS(5241), - [anon_sym_BSLASHGLSname] = ACTIONS(5241), - [anon_sym_BSLASHglssymbol] = ACTIONS(5241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), - [anon_sym_BSLASHglsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), - [anon_sym_BSLASHglsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), - [anon_sym_BSLASHglsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), - [anon_sym_BSLASHglsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), - [anon_sym_BSLASHglsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), - [anon_sym_BSLASHnewacronym] = ACTIONS(5241), - [anon_sym_BSLASHacrshort] = ACTIONS(5241), - [anon_sym_BSLASHAcrshort] = ACTIONS(5241), - [anon_sym_BSLASHACRshort] = ACTIONS(5241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), - [anon_sym_BSLASHacrlong] = ACTIONS(5241), - [anon_sym_BSLASHAcrlong] = ACTIONS(5241), - [anon_sym_BSLASHACRlong] = ACTIONS(5241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), - [anon_sym_BSLASHacrfull] = ACTIONS(5241), - [anon_sym_BSLASHAcrfull] = ACTIONS(5241), - [anon_sym_BSLASHACRfull] = ACTIONS(5241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), - [anon_sym_BSLASHacs] = ACTIONS(5241), - [anon_sym_BSLASHAcs] = ACTIONS(5241), - [anon_sym_BSLASHacsp] = ACTIONS(5241), - [anon_sym_BSLASHAcsp] = ACTIONS(5241), - [anon_sym_BSLASHacl] = ACTIONS(5241), - [anon_sym_BSLASHAcl] = ACTIONS(5241), - [anon_sym_BSLASHaclp] = ACTIONS(5241), - [anon_sym_BSLASHAclp] = ACTIONS(5241), - [anon_sym_BSLASHacf] = ACTIONS(5241), - [anon_sym_BSLASHAcf] = ACTIONS(5241), - [anon_sym_BSLASHacfp] = ACTIONS(5241), - [anon_sym_BSLASHAcfp] = ACTIONS(5241), - [anon_sym_BSLASHac] = ACTIONS(5241), - [anon_sym_BSLASHAc] = ACTIONS(5241), - [anon_sym_BSLASHacp] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), - [anon_sym_BSLASHcolor] = ACTIONS(5241), - [anon_sym_BSLASHcolorbox] = ACTIONS(5241), - [anon_sym_BSLASHtextcolor] = ACTIONS(5241), - [anon_sym_BSLASHpagecolor] = ACTIONS(5241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), - [anon_sym_BSLASHtext] = ACTIONS(5241), - [anon_sym_BSLASHintertext] = ACTIONS(5241), - [anon_sym_shortintertext] = ACTIONS(5241), + [777] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2081), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5947), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1333] = { - [sym_command_name] = ACTIONS(5353), + [778] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2020), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5949), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1334] = { - [sym_command_name] = ACTIONS(143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHbegin] = ACTIONS(143), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), + [779] = { + [ts_builtin_sym_end] = ACTIONS(5951), + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_BSLASHpart] = ACTIONS(5953), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddpart] = ACTIONS(5953), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHchapter] = ACTIONS(5953), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddchap] = ACTIONS(5953), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsection] = ACTIONS(5953), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddsec] = ACTIONS(5953), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHparagraph] = ACTIONS(5953), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5953), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHitem] = ACTIONS(5953), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), }, - [1335] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_EQ] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHbegin] = ACTIONS(5431), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), + [780] = { + [ts_builtin_sym_end] = ACTIONS(5955), + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_BSLASHpart] = ACTIONS(5957), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddpart] = ACTIONS(5957), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHchapter] = ACTIONS(5957), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddchap] = ACTIONS(5957), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsection] = ACTIONS(5957), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddsec] = ACTIONS(5957), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHparagraph] = ACTIONS(5957), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5957), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHitem] = ACTIONS(5957), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), }, - [1336] = { - [sym_command_name] = ACTIONS(5357), + [781] = { + [ts_builtin_sym_end] = ACTIONS(5959), + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_BSLASHpart] = ACTIONS(5961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddpart] = ACTIONS(5961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHchapter] = ACTIONS(5961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddchap] = ACTIONS(5961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsection] = ACTIONS(5961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddsec] = ACTIONS(5961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHparagraph] = ACTIONS(5961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHitem] = ACTIONS(5961), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [782] = { + [ts_builtin_sym_end] = ACTIONS(5963), + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_BSLASHpart] = ACTIONS(5965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddpart] = ACTIONS(5965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHchapter] = ACTIONS(5965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddchap] = ACTIONS(5965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsection] = ACTIONS(5965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddsec] = ACTIONS(5965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHparagraph] = ACTIONS(5965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHitem] = ACTIONS(5965), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(5967), + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_BSLASHpart] = ACTIONS(5969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddpart] = ACTIONS(5969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHchapter] = ACTIONS(5969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddchap] = ACTIONS(5969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsection] = ACTIONS(5969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddsec] = ACTIONS(5969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHparagraph] = ACTIONS(5969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHitem] = ACTIONS(5969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [784] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2056), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2057), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), - }, - [1337] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5971), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1338] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHbegin] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), + [785] = { + [ts_builtin_sym_end] = ACTIONS(5973), + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_BSLASHpart] = ACTIONS(5975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddpart] = ACTIONS(5975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHchapter] = ACTIONS(5975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddchap] = ACTIONS(5975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsection] = ACTIONS(5975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddsec] = ACTIONS(5975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHparagraph] = ACTIONS(5975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHitem] = ACTIONS(5975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [anon_sym_RBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), }, - [1339] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHbegin] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), + [786] = { + [ts_builtin_sym_end] = ACTIONS(5977), + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_BSLASHpart] = ACTIONS(5979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddpart] = ACTIONS(5979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHchapter] = ACTIONS(5979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddchap] = ACTIONS(5979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsection] = ACTIONS(5979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddsec] = ACTIONS(5979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHparagraph] = ACTIONS(5979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHitem] = ACTIONS(5979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [anon_sym_RBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), }, - [1340] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHbegin] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), + [787] = { + [ts_builtin_sym_end] = ACTIONS(5981), + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_BSLASHpart] = ACTIONS(5983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddpart] = ACTIONS(5983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHchapter] = ACTIONS(5983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddchap] = ACTIONS(5983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsection] = ACTIONS(5983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddsec] = ACTIONS(5983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHparagraph] = ACTIONS(5983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHitem] = ACTIONS(5983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [anon_sym_RBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), }, - [1341] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHbegin] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), + [788] = { + [sym_curly_group] = STATE(1342), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_BSLASHpart] = ACTIONS(5609), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddpart] = ACTIONS(5609), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHchapter] = ACTIONS(5609), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddchap] = ACTIONS(5609), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsection] = ACTIONS(5609), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddsec] = ACTIONS(5609), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHparagraph] = ACTIONS(5609), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5609), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHitem] = ACTIONS(5609), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHend] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), }, - [1342] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHbegin] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), + [789] = { + [ts_builtin_sym_end] = ACTIONS(5985), + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_BSLASHpart] = ACTIONS(5987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddpart] = ACTIONS(5987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHchapter] = ACTIONS(5987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddchap] = ACTIONS(5987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsection] = ACTIONS(5987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddsec] = ACTIONS(5987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHparagraph] = ACTIONS(5987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHitem] = ACTIONS(5987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), }, - [1343] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHbegin] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), + [790] = { + [sym_curly_group] = STATE(1351), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_BSLASHpart] = ACTIONS(5755), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddpart] = ACTIONS(5755), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHchapter] = ACTIONS(5755), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddchap] = ACTIONS(5755), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsection] = ACTIONS(5755), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddsec] = ACTIONS(5755), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHparagraph] = ACTIONS(5755), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5755), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHitem] = ACTIONS(5755), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHend] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), }, - [1344] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHbegin] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), + [791] = { + [ts_builtin_sym_end] = ACTIONS(5989), + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_BSLASHpart] = ACTIONS(5991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddpart] = ACTIONS(5991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHchapter] = ACTIONS(5991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddchap] = ACTIONS(5991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsection] = ACTIONS(5991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddsec] = ACTIONS(5991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHparagraph] = ACTIONS(5991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHitem] = ACTIONS(5991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [anon_sym_RBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), }, - [1345] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHbegin] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), + [792] = { + [ts_builtin_sym_end] = ACTIONS(5993), + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_BSLASHpart] = ACTIONS(5995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddpart] = ACTIONS(5995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHchapter] = ACTIONS(5995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddchap] = ACTIONS(5995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsection] = ACTIONS(5995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddsec] = ACTIONS(5995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHparagraph] = ACTIONS(5995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHitem] = ACTIONS(5995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [anon_sym_RBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), }, - [1346] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHbegin] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), + [793] = { + [ts_builtin_sym_end] = ACTIONS(5997), + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_BSLASHpart] = ACTIONS(5999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddpart] = ACTIONS(5999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHchapter] = ACTIONS(5999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddchap] = ACTIONS(5999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsection] = ACTIONS(5999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddsec] = ACTIONS(5999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHparagraph] = ACTIONS(5999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHitem] = ACTIONS(5999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [anon_sym_RBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), }, - [1347] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHbegin] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), + [794] = { + [ts_builtin_sym_end] = ACTIONS(6001), + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_BSLASHpart] = ACTIONS(6003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddpart] = ACTIONS(6003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHchapter] = ACTIONS(6003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddchap] = ACTIONS(6003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsection] = ACTIONS(6003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddsec] = ACTIONS(6003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHparagraph] = ACTIONS(6003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHitem] = ACTIONS(6003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [anon_sym_RBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), }, - [1348] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHbegin] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), + [795] = { + [ts_builtin_sym_end] = ACTIONS(6005), + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_BSLASHpart] = ACTIONS(6007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddpart] = ACTIONS(6007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHchapter] = ACTIONS(6007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddchap] = ACTIONS(6007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsection] = ACTIONS(6007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddsec] = ACTIONS(6007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHparagraph] = ACTIONS(6007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHitem] = ACTIONS(6007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [anon_sym_RBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), }, - [1349] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHbegin] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), + [796] = { + [sym_curly_group] = STATE(1160), + [sym_command_name] = ACTIONS(5763), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5763), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_BSLASHpart] = ACTIONS(5763), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddpart] = ACTIONS(5763), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHchapter] = ACTIONS(5763), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddchap] = ACTIONS(5763), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsection] = ACTIONS(5763), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddsec] = ACTIONS(5763), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHparagraph] = ACTIONS(5763), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5763), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5761), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5763), + [sym_placeholder] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5763), + [anon_sym_SLASH] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5763), + [anon_sym__] = ACTIONS(5763), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PIPE] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_SQUOTE] = ACTIONS(5763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5761), + [anon_sym_DOLLAR] = ACTIONS(5763), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5761), + [anon_sym_BSLASHbegin] = ACTIONS(5763), + [anon_sym_BSLASHend] = ACTIONS(5763), + [anon_sym_BSLASHtitle] = ACTIONS(5763), + [anon_sym_BSLASHauthor] = ACTIONS(5763), + [anon_sym_BSLASHusepackage] = ACTIONS(5763), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5763), + [anon_sym_BSLASHinclude] = ACTIONS(5763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5763), + [anon_sym_BSLASHinput] = ACTIONS(5763), + [anon_sym_BSLASHsubfile] = ACTIONS(5763), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5763), + [anon_sym_BSLASHbibliography] = ACTIONS(5763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5763), + [anon_sym_BSLASHincludesvg] = ACTIONS(5763), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5763), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5763), + [anon_sym_BSLASHimport] = ACTIONS(5763), + [anon_sym_BSLASHsubimport] = ACTIONS(5763), + [anon_sym_BSLASHinputfrom] = ACTIONS(5763), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5763), + [anon_sym_BSLASHincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHcaption] = ACTIONS(5763), + [anon_sym_BSLASHcite] = ACTIONS(5763), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCite] = ACTIONS(5763), + [anon_sym_BSLASHnocite] = ACTIONS(5763), + [anon_sym_BSLASHcitet] = ACTIONS(5763), + [anon_sym_BSLASHcitep] = ACTIONS(5763), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteauthor] = ACTIONS(5763), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5763), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitetitle] = ACTIONS(5763), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteyear] = ACTIONS(5763), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitedate] = ACTIONS(5763), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteurl] = ACTIONS(5763), + [anon_sym_BSLASHfullcite] = ACTIONS(5763), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5763), + [anon_sym_BSLASHcitealt] = ACTIONS(5763), + [anon_sym_BSLASHcitealp] = ACTIONS(5763), + [anon_sym_BSLASHcitetext] = ACTIONS(5763), + [anon_sym_BSLASHparencite] = ACTIONS(5763), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHParencite] = ACTIONS(5763), + [anon_sym_BSLASHfootcite] = ACTIONS(5763), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5763), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5763), + [anon_sym_BSLASHtextcite] = ACTIONS(5763), + [anon_sym_BSLASHTextcite] = ACTIONS(5763), + [anon_sym_BSLASHsmartcite] = ACTIONS(5763), + [anon_sym_BSLASHSmartcite] = ACTIONS(5763), + [anon_sym_BSLASHsupercite] = ACTIONS(5763), + [anon_sym_BSLASHautocite] = ACTIONS(5763), + [anon_sym_BSLASHAutocite] = ACTIONS(5763), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHvolcite] = ACTIONS(5763), + [anon_sym_BSLASHVolcite] = ACTIONS(5763), + [anon_sym_BSLASHpvolcite] = ACTIONS(5763), + [anon_sym_BSLASHPvolcite] = ACTIONS(5763), + [anon_sym_BSLASHfvolcite] = ACTIONS(5763), + [anon_sym_BSLASHftvolcite] = ACTIONS(5763), + [anon_sym_BSLASHsvolcite] = ACTIONS(5763), + [anon_sym_BSLASHSvolcite] = ACTIONS(5763), + [anon_sym_BSLASHtvolcite] = ACTIONS(5763), + [anon_sym_BSLASHTvolcite] = ACTIONS(5763), + [anon_sym_BSLASHavolcite] = ACTIONS(5763), + [anon_sym_BSLASHAvolcite] = ACTIONS(5763), + [anon_sym_BSLASHnotecite] = ACTIONS(5763), + [anon_sym_BSLASHNotecite] = ACTIONS(5763), + [anon_sym_BSLASHpnotecite] = ACTIONS(5763), + [anon_sym_BSLASHPnotecite] = ACTIONS(5763), + [anon_sym_BSLASHfnotecite] = ACTIONS(5763), + [anon_sym_BSLASHlabel] = ACTIONS(5763), + [anon_sym_BSLASHref] = ACTIONS(5763), + [anon_sym_BSLASHeqref] = ACTIONS(5763), + [anon_sym_BSLASHvref] = ACTIONS(5763), + [anon_sym_BSLASHVref] = ACTIONS(5763), + [anon_sym_BSLASHautoref] = ACTIONS(5763), + [anon_sym_BSLASHpageref] = ACTIONS(5763), + [anon_sym_BSLASHcref] = ACTIONS(5763), + [anon_sym_BSLASHCref] = ACTIONS(5763), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnameCref] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHlabelcref] = ACTIONS(5763), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCrefrange] = ACTIONS(5763), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnewlabel] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5763), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5763), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5763), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdef] = ACTIONS(5763), + [anon_sym_BSLASHlet] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5763), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5763), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5763), + [anon_sym_BSLASHgls] = ACTIONS(5763), + [anon_sym_BSLASHGls] = ACTIONS(5763), + [anon_sym_BSLASHGLS] = ACTIONS(5763), + [anon_sym_BSLASHglspl] = ACTIONS(5763), + [anon_sym_BSLASHGlspl] = ACTIONS(5763), + [anon_sym_BSLASHGLSpl] = ACTIONS(5763), + [anon_sym_BSLASHglsdisp] = ACTIONS(5763), + [anon_sym_BSLASHglslink] = ACTIONS(5763), + [anon_sym_BSLASHglstext] = ACTIONS(5763), + [anon_sym_BSLASHGlstext] = ACTIONS(5763), + [anon_sym_BSLASHGLStext] = ACTIONS(5763), + [anon_sym_BSLASHglsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5763), + [anon_sym_BSLASHglsplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSplural] = ACTIONS(5763), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHglsname] = ACTIONS(5763), + [anon_sym_BSLASHGlsname] = ACTIONS(5763), + [anon_sym_BSLASHGLSname] = ACTIONS(5763), + [anon_sym_BSLASHglssymbol] = ACTIONS(5763), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5763), + [anon_sym_BSLASHglsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5763), + [anon_sym_BSLASHglsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5763), + [anon_sym_BSLASHglsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5763), + [anon_sym_BSLASHglsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5763), + [anon_sym_BSLASHglsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5763), + [anon_sym_BSLASHnewacronym] = ACTIONS(5763), + [anon_sym_BSLASHacrshort] = ACTIONS(5763), + [anon_sym_BSLASHAcrshort] = ACTIONS(5763), + [anon_sym_BSLASHACRshort] = ACTIONS(5763), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5763), + [anon_sym_BSLASHacrlong] = ACTIONS(5763), + [anon_sym_BSLASHAcrlong] = ACTIONS(5763), + [anon_sym_BSLASHACRlong] = ACTIONS(5763), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5763), + [anon_sym_BSLASHacrfull] = ACTIONS(5763), + [anon_sym_BSLASHAcrfull] = ACTIONS(5763), + [anon_sym_BSLASHACRfull] = ACTIONS(5763), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5763), + [anon_sym_BSLASHacs] = ACTIONS(5763), + [anon_sym_BSLASHAcs] = ACTIONS(5763), + [anon_sym_BSLASHacsp] = ACTIONS(5763), + [anon_sym_BSLASHAcsp] = ACTIONS(5763), + [anon_sym_BSLASHacl] = ACTIONS(5763), + [anon_sym_BSLASHAcl] = ACTIONS(5763), + [anon_sym_BSLASHaclp] = ACTIONS(5763), + [anon_sym_BSLASHAclp] = ACTIONS(5763), + [anon_sym_BSLASHacf] = ACTIONS(5763), + [anon_sym_BSLASHAcf] = ACTIONS(5763), + [anon_sym_BSLASHacfp] = ACTIONS(5763), + [anon_sym_BSLASHAcfp] = ACTIONS(5763), + [anon_sym_BSLASHac] = ACTIONS(5763), + [anon_sym_BSLASHAc] = ACTIONS(5763), + [anon_sym_BSLASHacp] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5763), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5763), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5763), + [anon_sym_BSLASHcolor] = ACTIONS(5763), + [anon_sym_BSLASHcolorbox] = ACTIONS(5763), + [anon_sym_BSLASHtextcolor] = ACTIONS(5763), + [anon_sym_BSLASHpagecolor] = ACTIONS(5763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5763), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5763), + [anon_sym_BSLASHtext] = ACTIONS(5763), + [anon_sym_BSLASHintertext] = ACTIONS(5763), + [anon_sym_shortintertext] = ACTIONS(5763), }, - [1350] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHbegin] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), + [797] = { + [ts_builtin_sym_end] = ACTIONS(6009), + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_BSLASHpart] = ACTIONS(6011), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddpart] = ACTIONS(6011), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHchapter] = ACTIONS(6011), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddchap] = ACTIONS(6011), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsection] = ACTIONS(6011), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddsec] = ACTIONS(6011), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHparagraph] = ACTIONS(6011), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6011), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHitem] = ACTIONS(6011), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [anon_sym_RBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), }, - [1351] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHbegin] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), + [798] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6013), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_BSLASHpart] = ACTIONS(5779), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddpart] = ACTIONS(5779), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHchapter] = ACTIONS(5779), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddchap] = ACTIONS(5779), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsection] = ACTIONS(5779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddsec] = ACTIONS(5779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHparagraph] = ACTIONS(5779), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5779), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHitem] = ACTIONS(5779), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), }, - [1352] = { - [sym_command_name] = ACTIONS(5467), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHbegin] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), + [799] = { + [ts_builtin_sym_end] = ACTIONS(6015), + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_BSLASHpart] = ACTIONS(6017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddpart] = ACTIONS(6017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHchapter] = ACTIONS(6017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddchap] = ACTIONS(6017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsection] = ACTIONS(6017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddsec] = ACTIONS(6017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHparagraph] = ACTIONS(6017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHitem] = ACTIONS(6017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [anon_sym_RBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), }, - [1353] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHbegin] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), + [800] = { + [ts_builtin_sym_end] = ACTIONS(6019), + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_BSLASHpart] = ACTIONS(6021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddpart] = ACTIONS(6021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHchapter] = ACTIONS(6021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddchap] = ACTIONS(6021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsection] = ACTIONS(6021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddsec] = ACTIONS(6021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHparagraph] = ACTIONS(6021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHitem] = ACTIONS(6021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), }, - [1354] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_EQ] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHbegin] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), + [801] = { + [ts_builtin_sym_end] = ACTIONS(6023), + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_BSLASHpart] = ACTIONS(6025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddpart] = ACTIONS(6025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHchapter] = ACTIONS(6025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddchap] = ACTIONS(6025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsection] = ACTIONS(6025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddsec] = ACTIONS(6025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHparagraph] = ACTIONS(6025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHitem] = ACTIONS(6025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [anon_sym_RBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), }, - [1355] = { - [sym_command_name] = ACTIONS(5071), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(5069), - [sym_word] = ACTIONS(5071), - [sym_placeholder] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5069), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5069), - [anon_sym_BSLASHbegin] = ACTIONS(5071), - [anon_sym_BSLASHusepackage] = ACTIONS(5071), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5071), - [anon_sym_BSLASHinclude] = ACTIONS(5071), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5071), - [anon_sym_BSLASHinput] = ACTIONS(5071), - [anon_sym_BSLASHsubfile] = ACTIONS(5071), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5071), - [anon_sym_BSLASHbibliography] = ACTIONS(5071), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5071), - [anon_sym_BSLASHincludesvg] = ACTIONS(5071), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5071), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5071), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5071), - [anon_sym_BSLASHimport] = ACTIONS(5071), - [anon_sym_BSLASHsubimport] = ACTIONS(5071), - [anon_sym_BSLASHinputfrom] = ACTIONS(5071), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5071), - [anon_sym_BSLASHincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5071), - [anon_sym_BSLASHcaption] = ACTIONS(5071), - [anon_sym_BSLASHcite] = ACTIONS(5071), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCite] = ACTIONS(5071), - [anon_sym_BSLASHnocite] = ACTIONS(5071), - [anon_sym_BSLASHcitet] = ACTIONS(5071), - [anon_sym_BSLASHcitep] = ACTIONS(5071), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteyear] = ACTIONS(5071), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5069), - [anon_sym_BSLASHcitedate] = ACTIONS(5071), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5069), - [anon_sym_BSLASHciteurl] = ACTIONS(5071), - [anon_sym_BSLASHfullcite] = ACTIONS(5071), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5071), - [anon_sym_BSLASHcitealt] = ACTIONS(5071), - [anon_sym_BSLASHcitealp] = ACTIONS(5071), - [anon_sym_BSLASHcitetext] = ACTIONS(5071), - [anon_sym_BSLASHparencite] = ACTIONS(5071), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHParencite] = ACTIONS(5071), - [anon_sym_BSLASHfootcite] = ACTIONS(5071), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5071), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5071), - [anon_sym_BSLASHtextcite] = ACTIONS(5071), - [anon_sym_BSLASHTextcite] = ACTIONS(5071), - [anon_sym_BSLASHsmartcite] = ACTIONS(5071), - [anon_sym_BSLASHSmartcite] = ACTIONS(5071), - [anon_sym_BSLASHsupercite] = ACTIONS(5071), - [anon_sym_BSLASHautocite] = ACTIONS(5071), - [anon_sym_BSLASHAutocite] = ACTIONS(5071), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5069), - [anon_sym_BSLASHvolcite] = ACTIONS(5071), - [anon_sym_BSLASHVolcite] = ACTIONS(5071), - [anon_sym_BSLASHpvolcite] = ACTIONS(5071), - [anon_sym_BSLASHPvolcite] = ACTIONS(5071), - [anon_sym_BSLASHfvolcite] = ACTIONS(5071), - [anon_sym_BSLASHftvolcite] = ACTIONS(5071), - [anon_sym_BSLASHsvolcite] = ACTIONS(5071), - [anon_sym_BSLASHSvolcite] = ACTIONS(5071), - [anon_sym_BSLASHtvolcite] = ACTIONS(5071), - [anon_sym_BSLASHTvolcite] = ACTIONS(5071), - [anon_sym_BSLASHavolcite] = ACTIONS(5071), - [anon_sym_BSLASHAvolcite] = ACTIONS(5071), - [anon_sym_BSLASHnotecite] = ACTIONS(5071), - [anon_sym_BSLASHNotecite] = ACTIONS(5071), - [anon_sym_BSLASHpnotecite] = ACTIONS(5071), - [anon_sym_BSLASHPnotecite] = ACTIONS(5071), - [anon_sym_BSLASHfnotecite] = ACTIONS(5071), - [anon_sym_BSLASHlabel] = ACTIONS(5071), - [anon_sym_BSLASHref] = ACTIONS(5071), - [anon_sym_BSLASHeqref] = ACTIONS(5071), - [anon_sym_BSLASHvref] = ACTIONS(5071), - [anon_sym_BSLASHVref] = ACTIONS(5071), - [anon_sym_BSLASHautoref] = ACTIONS(5071), - [anon_sym_BSLASHpageref] = ACTIONS(5071), - [anon_sym_BSLASHcref] = ACTIONS(5071), - [anon_sym_BSLASHCref] = ACTIONS(5071), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnameCref] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5071), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5071), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5071), - [anon_sym_BSLASHlabelcref] = ACTIONS(5071), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange] = ACTIONS(5071), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5069), - [anon_sym_BSLASHnewlabel] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand] = ACTIONS(5071), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdef] = ACTIONS(5071), - [anon_sym_BSLASHlet] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5071), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5071), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5071), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5071), - [anon_sym_BSLASHgls] = ACTIONS(5071), - [anon_sym_BSLASHGls] = ACTIONS(5071), - [anon_sym_BSLASHGLS] = ACTIONS(5071), - [anon_sym_BSLASHglspl] = ACTIONS(5071), - [anon_sym_BSLASHGlspl] = ACTIONS(5071), - [anon_sym_BSLASHGLSpl] = ACTIONS(5071), - [anon_sym_BSLASHglsdisp] = ACTIONS(5071), - [anon_sym_BSLASHglslink] = ACTIONS(5071), - [anon_sym_BSLASHglstext] = ACTIONS(5071), - [anon_sym_BSLASHGlstext] = ACTIONS(5071), - [anon_sym_BSLASHGLStext] = ACTIONS(5071), - [anon_sym_BSLASHglsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5071), - [anon_sym_BSLASHglsplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSplural] = ACTIONS(5071), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5071), - [anon_sym_BSLASHglsname] = ACTIONS(5071), - [anon_sym_BSLASHGlsname] = ACTIONS(5071), - [anon_sym_BSLASHGLSname] = ACTIONS(5071), - [anon_sym_BSLASHglssymbol] = ACTIONS(5071), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5071), - [anon_sym_BSLASHglsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5071), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5071), - [anon_sym_BSLASHglsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5071), - [anon_sym_BSLASHglsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5071), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5071), - [anon_sym_BSLASHglsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5071), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5071), - [anon_sym_BSLASHglsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5071), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5071), - [anon_sym_BSLASHnewacronym] = ACTIONS(5071), - [anon_sym_BSLASHacrshort] = ACTIONS(5071), - [anon_sym_BSLASHAcrshort] = ACTIONS(5071), - [anon_sym_BSLASHACRshort] = ACTIONS(5071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5071), - [anon_sym_BSLASHacrlong] = ACTIONS(5071), - [anon_sym_BSLASHAcrlong] = ACTIONS(5071), - [anon_sym_BSLASHACRlong] = ACTIONS(5071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5071), - [anon_sym_BSLASHacrfull] = ACTIONS(5071), - [anon_sym_BSLASHAcrfull] = ACTIONS(5071), - [anon_sym_BSLASHACRfull] = ACTIONS(5071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5071), - [anon_sym_BSLASHacs] = ACTIONS(5071), - [anon_sym_BSLASHAcs] = ACTIONS(5071), - [anon_sym_BSLASHacsp] = ACTIONS(5071), - [anon_sym_BSLASHAcsp] = ACTIONS(5071), - [anon_sym_BSLASHacl] = ACTIONS(5071), - [anon_sym_BSLASHAcl] = ACTIONS(5071), - [anon_sym_BSLASHaclp] = ACTIONS(5071), - [anon_sym_BSLASHAclp] = ACTIONS(5071), - [anon_sym_BSLASHacf] = ACTIONS(5071), - [anon_sym_BSLASHAcf] = ACTIONS(5071), - [anon_sym_BSLASHacfp] = ACTIONS(5071), - [anon_sym_BSLASHAcfp] = ACTIONS(5071), - [anon_sym_BSLASHac] = ACTIONS(5071), - [anon_sym_BSLASHAc] = ACTIONS(5071), - [anon_sym_BSLASHacp] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5071), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5071), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5071), - [anon_sym_BSLASHcolor] = ACTIONS(5071), - [anon_sym_BSLASHcolorbox] = ACTIONS(5071), - [anon_sym_BSLASHtextcolor] = ACTIONS(5071), - [anon_sym_BSLASHpagecolor] = ACTIONS(5071), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5071), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5071), - [anon_sym_BSLASHtext] = ACTIONS(5071), - [anon_sym_BSLASHintertext] = ACTIONS(5071), - [anon_sym_shortintertext] = ACTIONS(5071), + [802] = { + [ts_builtin_sym_end] = ACTIONS(6027), + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_BSLASHpart] = ACTIONS(6029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddpart] = ACTIONS(6029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHchapter] = ACTIONS(6029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddchap] = ACTIONS(6029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsection] = ACTIONS(6029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddsec] = ACTIONS(6029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHparagraph] = ACTIONS(6029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHitem] = ACTIONS(6029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), }, - [1356] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHbegin] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), + [803] = { + [ts_builtin_sym_end] = ACTIONS(6031), + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_BSLASHpart] = ACTIONS(6033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddpart] = ACTIONS(6033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHchapter] = ACTIONS(6033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddchap] = ACTIONS(6033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsection] = ACTIONS(6033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddsec] = ACTIONS(6033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHparagraph] = ACTIONS(6033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHitem] = ACTIONS(6033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [anon_sym_RBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), }, - [1357] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5685), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5029), - [anon_sym_RBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5029), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), - [anon_sym_BSLASHtext] = ACTIONS(5031), - [anon_sym_BSLASHintertext] = ACTIONS(5031), - [anon_sym_shortintertext] = ACTIONS(5031), + [804] = { + [sym_brack_group_text] = STATE(1069), + [sym_command_name] = ACTIONS(5775), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_RBRACK] = ACTIONS(5773), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_BSLASHpart] = ACTIONS(5775), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddpart] = ACTIONS(5775), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHchapter] = ACTIONS(5775), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddchap] = ACTIONS(5775), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsection] = ACTIONS(5775), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddsec] = ACTIONS(5775), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHparagraph] = ACTIONS(5775), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5775), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHitem] = ACTIONS(5775), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5773), + [sym_word] = ACTIONS(5775), + [sym_placeholder] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_SLASH] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5775), + [anon_sym__] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5775), + [anon_sym_PIPE] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_SQUOTE] = ACTIONS(5775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5775), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5773), + [anon_sym_BSLASHbegin] = ACTIONS(5775), + [anon_sym_BSLASHtitle] = ACTIONS(5775), + [anon_sym_BSLASHauthor] = ACTIONS(5775), + [anon_sym_BSLASHusepackage] = ACTIONS(5775), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5775), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5775), + [anon_sym_BSLASHinclude] = ACTIONS(5775), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5775), + [anon_sym_BSLASHinput] = ACTIONS(5775), + [anon_sym_BSLASHsubfile] = ACTIONS(5775), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5775), + [anon_sym_BSLASHbibliography] = ACTIONS(5775), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5775), + [anon_sym_BSLASHincludesvg] = ACTIONS(5775), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5775), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5775), + [anon_sym_BSLASHimport] = ACTIONS(5775), + [anon_sym_BSLASHsubimport] = ACTIONS(5775), + [anon_sym_BSLASHinputfrom] = ACTIONS(5775), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5775), + [anon_sym_BSLASHincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHcaption] = ACTIONS(5775), + [anon_sym_BSLASHcite] = ACTIONS(5775), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCite] = ACTIONS(5775), + [anon_sym_BSLASHnocite] = ACTIONS(5775), + [anon_sym_BSLASHcitet] = ACTIONS(5775), + [anon_sym_BSLASHcitep] = ACTIONS(5775), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteauthor] = ACTIONS(5775), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5775), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitetitle] = ACTIONS(5775), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteyear] = ACTIONS(5775), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitedate] = ACTIONS(5775), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteurl] = ACTIONS(5775), + [anon_sym_BSLASHfullcite] = ACTIONS(5775), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5775), + [anon_sym_BSLASHcitealt] = ACTIONS(5775), + [anon_sym_BSLASHcitealp] = ACTIONS(5775), + [anon_sym_BSLASHcitetext] = ACTIONS(5775), + [anon_sym_BSLASHparencite] = ACTIONS(5775), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHParencite] = ACTIONS(5775), + [anon_sym_BSLASHfootcite] = ACTIONS(5775), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5775), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5775), + [anon_sym_BSLASHtextcite] = ACTIONS(5775), + [anon_sym_BSLASHTextcite] = ACTIONS(5775), + [anon_sym_BSLASHsmartcite] = ACTIONS(5775), + [anon_sym_BSLASHSmartcite] = ACTIONS(5775), + [anon_sym_BSLASHsupercite] = ACTIONS(5775), + [anon_sym_BSLASHautocite] = ACTIONS(5775), + [anon_sym_BSLASHAutocite] = ACTIONS(5775), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHvolcite] = ACTIONS(5775), + [anon_sym_BSLASHVolcite] = ACTIONS(5775), + [anon_sym_BSLASHpvolcite] = ACTIONS(5775), + [anon_sym_BSLASHPvolcite] = ACTIONS(5775), + [anon_sym_BSLASHfvolcite] = ACTIONS(5775), + [anon_sym_BSLASHftvolcite] = ACTIONS(5775), + [anon_sym_BSLASHsvolcite] = ACTIONS(5775), + [anon_sym_BSLASHSvolcite] = ACTIONS(5775), + [anon_sym_BSLASHtvolcite] = ACTIONS(5775), + [anon_sym_BSLASHTvolcite] = ACTIONS(5775), + [anon_sym_BSLASHavolcite] = ACTIONS(5775), + [anon_sym_BSLASHAvolcite] = ACTIONS(5775), + [anon_sym_BSLASHnotecite] = ACTIONS(5775), + [anon_sym_BSLASHNotecite] = ACTIONS(5775), + [anon_sym_BSLASHpnotecite] = ACTIONS(5775), + [anon_sym_BSLASHPnotecite] = ACTIONS(5775), + [anon_sym_BSLASHfnotecite] = ACTIONS(5775), + [anon_sym_BSLASHlabel] = ACTIONS(5775), + [anon_sym_BSLASHref] = ACTIONS(5775), + [anon_sym_BSLASHeqref] = ACTIONS(5775), + [anon_sym_BSLASHvref] = ACTIONS(5775), + [anon_sym_BSLASHVref] = ACTIONS(5775), + [anon_sym_BSLASHautoref] = ACTIONS(5775), + [anon_sym_BSLASHpageref] = ACTIONS(5775), + [anon_sym_BSLASHcref] = ACTIONS(5775), + [anon_sym_BSLASHCref] = ACTIONS(5775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnameCref] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHlabelcref] = ACTIONS(5775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCrefrange] = ACTIONS(5775), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnewlabel] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5775), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5775), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5775), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdef] = ACTIONS(5775), + [anon_sym_BSLASHlet] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5775), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5775), + [anon_sym_BSLASHgls] = ACTIONS(5775), + [anon_sym_BSLASHGls] = ACTIONS(5775), + [anon_sym_BSLASHGLS] = ACTIONS(5775), + [anon_sym_BSLASHglspl] = ACTIONS(5775), + [anon_sym_BSLASHGlspl] = ACTIONS(5775), + [anon_sym_BSLASHGLSpl] = ACTIONS(5775), + [anon_sym_BSLASHglsdisp] = ACTIONS(5775), + [anon_sym_BSLASHglslink] = ACTIONS(5775), + [anon_sym_BSLASHglstext] = ACTIONS(5775), + [anon_sym_BSLASHGlstext] = ACTIONS(5775), + [anon_sym_BSLASHGLStext] = ACTIONS(5775), + [anon_sym_BSLASHglsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5775), + [anon_sym_BSLASHglsplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSplural] = ACTIONS(5775), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHglsname] = ACTIONS(5775), + [anon_sym_BSLASHGlsname] = ACTIONS(5775), + [anon_sym_BSLASHGLSname] = ACTIONS(5775), + [anon_sym_BSLASHglssymbol] = ACTIONS(5775), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5775), + [anon_sym_BSLASHglsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5775), + [anon_sym_BSLASHglsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5775), + [anon_sym_BSLASHglsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5775), + [anon_sym_BSLASHglsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5775), + [anon_sym_BSLASHglsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5775), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [anon_sym_BSLASHacrshort] = ACTIONS(5775), + [anon_sym_BSLASHAcrshort] = ACTIONS(5775), + [anon_sym_BSLASHACRshort] = ACTIONS(5775), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5775), + [anon_sym_BSLASHacrlong] = ACTIONS(5775), + [anon_sym_BSLASHAcrlong] = ACTIONS(5775), + [anon_sym_BSLASHACRlong] = ACTIONS(5775), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5775), + [anon_sym_BSLASHacrfull] = ACTIONS(5775), + [anon_sym_BSLASHAcrfull] = ACTIONS(5775), + [anon_sym_BSLASHACRfull] = ACTIONS(5775), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5775), + [anon_sym_BSLASHacs] = ACTIONS(5775), + [anon_sym_BSLASHAcs] = ACTIONS(5775), + [anon_sym_BSLASHacsp] = ACTIONS(5775), + [anon_sym_BSLASHAcsp] = ACTIONS(5775), + [anon_sym_BSLASHacl] = ACTIONS(5775), + [anon_sym_BSLASHAcl] = ACTIONS(5775), + [anon_sym_BSLASHaclp] = ACTIONS(5775), + [anon_sym_BSLASHAclp] = ACTIONS(5775), + [anon_sym_BSLASHacf] = ACTIONS(5775), + [anon_sym_BSLASHAcf] = ACTIONS(5775), + [anon_sym_BSLASHacfp] = ACTIONS(5775), + [anon_sym_BSLASHAcfp] = ACTIONS(5775), + [anon_sym_BSLASHac] = ACTIONS(5775), + [anon_sym_BSLASHAc] = ACTIONS(5775), + [anon_sym_BSLASHacp] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5775), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5775), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5775), + [anon_sym_BSLASHcolor] = ACTIONS(5775), + [anon_sym_BSLASHcolorbox] = ACTIONS(5775), + [anon_sym_BSLASHtextcolor] = ACTIONS(5775), + [anon_sym_BSLASHpagecolor] = ACTIONS(5775), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5775), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5775), + [anon_sym_BSLASHtext] = ACTIONS(5775), + [anon_sym_BSLASHintertext] = ACTIONS(5775), + [anon_sym_shortintertext] = ACTIONS(5775), }, - [1358] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHbegin] = ACTIONS(153), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [805] = { + [ts_builtin_sym_end] = ACTIONS(6037), + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_BSLASHpart] = ACTIONS(6039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddpart] = ACTIONS(6039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHchapter] = ACTIONS(6039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddchap] = ACTIONS(6039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsection] = ACTIONS(6039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddsec] = ACTIONS(6039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHparagraph] = ACTIONS(6039), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6039), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHitem] = ACTIONS(6039), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [anon_sym_RBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), }, - [1359] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHbegin] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), + [806] = { + [ts_builtin_sym_end] = ACTIONS(6041), + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_BSLASHpart] = ACTIONS(6043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddpart] = ACTIONS(6043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHchapter] = ACTIONS(6043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddchap] = ACTIONS(6043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsection] = ACTIONS(6043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddsec] = ACTIONS(6043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHparagraph] = ACTIONS(6043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHitem] = ACTIONS(6043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [anon_sym_RBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), }, - [1360] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHbegin] = ACTIONS(149), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [807] = { + [ts_builtin_sym_end] = ACTIONS(6045), + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_BSLASHpart] = ACTIONS(6047), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddpart] = ACTIONS(6047), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHchapter] = ACTIONS(6047), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddchap] = ACTIONS(6047), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsection] = ACTIONS(6047), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddsec] = ACTIONS(6047), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHparagraph] = ACTIONS(6047), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6047), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6047), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), }, - [1361] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), + [808] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2045), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6049), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1362] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), + [809] = { + [ts_builtin_sym_end] = ACTIONS(6051), + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_BSLASHpart] = ACTIONS(6053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddpart] = ACTIONS(6053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHchapter] = ACTIONS(6053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddchap] = ACTIONS(6053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsection] = ACTIONS(6053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddsec] = ACTIONS(6053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHparagraph] = ACTIONS(6053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHitem] = ACTIONS(6053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [anon_sym_RBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), }, - [1363] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHbegin] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), + [810] = { + [sym_brack_group_text] = STATE(921), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_BSLASHpart] = ACTIONS(5785), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddpart] = ACTIONS(5785), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5783), + [anon_sym_BSLASHchapter] = ACTIONS(5785), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddchap] = ACTIONS(5785), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsection] = ACTIONS(5785), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHaddsec] = ACTIONS(5785), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5785), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5783), + [anon_sym_BSLASHparagraph] = ACTIONS(5785), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5785), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5783), + [anon_sym_BSLASHitem] = ACTIONS(5785), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1364] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5085), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - [anon_sym_BSLASHtext] = ACTIONS(5085), - [anon_sym_BSLASHintertext] = ACTIONS(5085), - [anon_sym_shortintertext] = ACTIONS(5085), + [811] = { + [sym_curly_group] = STATE(1159), + [sym_command_name] = ACTIONS(5751), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_BSLASHpart] = ACTIONS(5751), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddpart] = ACTIONS(5751), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHchapter] = ACTIONS(5751), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddchap] = ACTIONS(5751), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsection] = ACTIONS(5751), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddsec] = ACTIONS(5751), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHparagraph] = ACTIONS(5751), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5751), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHitem] = ACTIONS(5751), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5751), + [sym_placeholder] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym__] = ACTIONS(5751), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5751), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_SQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5749), + [anon_sym_BSLASHbegin] = ACTIONS(5751), + [anon_sym_BSLASHend] = ACTIONS(5751), + [anon_sym_BSLASHtitle] = ACTIONS(5751), + [anon_sym_BSLASHauthor] = ACTIONS(5751), + [anon_sym_BSLASHusepackage] = ACTIONS(5751), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5751), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5751), + [anon_sym_BSLASHinclude] = ACTIONS(5751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5751), + [anon_sym_BSLASHinput] = ACTIONS(5751), + [anon_sym_BSLASHsubfile] = ACTIONS(5751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5751), + [anon_sym_BSLASHbibliography] = ACTIONS(5751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5751), + [anon_sym_BSLASHincludesvg] = ACTIONS(5751), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5751), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5751), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5751), + [anon_sym_BSLASHimport] = ACTIONS(5751), + [anon_sym_BSLASHsubimport] = ACTIONS(5751), + [anon_sym_BSLASHinputfrom] = ACTIONS(5751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5751), + [anon_sym_BSLASHincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHcaption] = ACTIONS(5751), + [anon_sym_BSLASHcite] = ACTIONS(5751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCite] = ACTIONS(5751), + [anon_sym_BSLASHnocite] = ACTIONS(5751), + [anon_sym_BSLASHcitet] = ACTIONS(5751), + [anon_sym_BSLASHcitep] = ACTIONS(5751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteauthor] = ACTIONS(5751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitetitle] = ACTIONS(5751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteyear] = ACTIONS(5751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitedate] = ACTIONS(5751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteurl] = ACTIONS(5751), + [anon_sym_BSLASHfullcite] = ACTIONS(5751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5751), + [anon_sym_BSLASHcitealt] = ACTIONS(5751), + [anon_sym_BSLASHcitealp] = ACTIONS(5751), + [anon_sym_BSLASHcitetext] = ACTIONS(5751), + [anon_sym_BSLASHparencite] = ACTIONS(5751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHParencite] = ACTIONS(5751), + [anon_sym_BSLASHfootcite] = ACTIONS(5751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5751), + [anon_sym_BSLASHtextcite] = ACTIONS(5751), + [anon_sym_BSLASHTextcite] = ACTIONS(5751), + [anon_sym_BSLASHsmartcite] = ACTIONS(5751), + [anon_sym_BSLASHSmartcite] = ACTIONS(5751), + [anon_sym_BSLASHsupercite] = ACTIONS(5751), + [anon_sym_BSLASHautocite] = ACTIONS(5751), + [anon_sym_BSLASHAutocite] = ACTIONS(5751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHvolcite] = ACTIONS(5751), + [anon_sym_BSLASHVolcite] = ACTIONS(5751), + [anon_sym_BSLASHpvolcite] = ACTIONS(5751), + [anon_sym_BSLASHPvolcite] = ACTIONS(5751), + [anon_sym_BSLASHfvolcite] = ACTIONS(5751), + [anon_sym_BSLASHftvolcite] = ACTIONS(5751), + [anon_sym_BSLASHsvolcite] = ACTIONS(5751), + [anon_sym_BSLASHSvolcite] = ACTIONS(5751), + [anon_sym_BSLASHtvolcite] = ACTIONS(5751), + [anon_sym_BSLASHTvolcite] = ACTIONS(5751), + [anon_sym_BSLASHavolcite] = ACTIONS(5751), + [anon_sym_BSLASHAvolcite] = ACTIONS(5751), + [anon_sym_BSLASHnotecite] = ACTIONS(5751), + [anon_sym_BSLASHNotecite] = ACTIONS(5751), + [anon_sym_BSLASHpnotecite] = ACTIONS(5751), + [anon_sym_BSLASHPnotecite] = ACTIONS(5751), + [anon_sym_BSLASHfnotecite] = ACTIONS(5751), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [anon_sym_BSLASHref] = ACTIONS(5751), + [anon_sym_BSLASHeqref] = ACTIONS(5751), + [anon_sym_BSLASHvref] = ACTIONS(5751), + [anon_sym_BSLASHVref] = ACTIONS(5751), + [anon_sym_BSLASHautoref] = ACTIONS(5751), + [anon_sym_BSLASHpageref] = ACTIONS(5751), + [anon_sym_BSLASHcref] = ACTIONS(5751), + [anon_sym_BSLASHCref] = ACTIONS(5751), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnameCref] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHlabelcref] = ACTIONS(5751), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCrefrange] = ACTIONS(5751), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnewlabel] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5751), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5751), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5751), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdef] = ACTIONS(5751), + [anon_sym_BSLASHlet] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5751), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5751), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5751), + [anon_sym_BSLASHgls] = ACTIONS(5751), + [anon_sym_BSLASHGls] = ACTIONS(5751), + [anon_sym_BSLASHGLS] = ACTIONS(5751), + [anon_sym_BSLASHglspl] = ACTIONS(5751), + [anon_sym_BSLASHGlspl] = ACTIONS(5751), + [anon_sym_BSLASHGLSpl] = ACTIONS(5751), + [anon_sym_BSLASHglsdisp] = ACTIONS(5751), + [anon_sym_BSLASHglslink] = ACTIONS(5751), + [anon_sym_BSLASHglstext] = ACTIONS(5751), + [anon_sym_BSLASHGlstext] = ACTIONS(5751), + [anon_sym_BSLASHGLStext] = ACTIONS(5751), + [anon_sym_BSLASHglsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5751), + [anon_sym_BSLASHglsplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSplural] = ACTIONS(5751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHglsname] = ACTIONS(5751), + [anon_sym_BSLASHGlsname] = ACTIONS(5751), + [anon_sym_BSLASHGLSname] = ACTIONS(5751), + [anon_sym_BSLASHglssymbol] = ACTIONS(5751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5751), + [anon_sym_BSLASHglsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5751), + [anon_sym_BSLASHglsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5751), + [anon_sym_BSLASHglsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5751), + [anon_sym_BSLASHglsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5751), + [anon_sym_BSLASHglsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5751), + [anon_sym_BSLASHnewacronym] = ACTIONS(5751), + [anon_sym_BSLASHacrshort] = ACTIONS(5751), + [anon_sym_BSLASHAcrshort] = ACTIONS(5751), + [anon_sym_BSLASHACRshort] = ACTIONS(5751), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5751), + [anon_sym_BSLASHacrlong] = ACTIONS(5751), + [anon_sym_BSLASHAcrlong] = ACTIONS(5751), + [anon_sym_BSLASHACRlong] = ACTIONS(5751), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5751), + [anon_sym_BSLASHacrfull] = ACTIONS(5751), + [anon_sym_BSLASHAcrfull] = ACTIONS(5751), + [anon_sym_BSLASHACRfull] = ACTIONS(5751), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5751), + [anon_sym_BSLASHacs] = ACTIONS(5751), + [anon_sym_BSLASHAcs] = ACTIONS(5751), + [anon_sym_BSLASHacsp] = ACTIONS(5751), + [anon_sym_BSLASHAcsp] = ACTIONS(5751), + [anon_sym_BSLASHacl] = ACTIONS(5751), + [anon_sym_BSLASHAcl] = ACTIONS(5751), + [anon_sym_BSLASHaclp] = ACTIONS(5751), + [anon_sym_BSLASHAclp] = ACTIONS(5751), + [anon_sym_BSLASHacf] = ACTIONS(5751), + [anon_sym_BSLASHAcf] = ACTIONS(5751), + [anon_sym_BSLASHacfp] = ACTIONS(5751), + [anon_sym_BSLASHAcfp] = ACTIONS(5751), + [anon_sym_BSLASHac] = ACTIONS(5751), + [anon_sym_BSLASHAc] = ACTIONS(5751), + [anon_sym_BSLASHacp] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5751), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5751), + [anon_sym_BSLASHcolor] = ACTIONS(5751), + [anon_sym_BSLASHcolorbox] = ACTIONS(5751), + [anon_sym_BSLASHtextcolor] = ACTIONS(5751), + [anon_sym_BSLASHpagecolor] = ACTIONS(5751), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5751), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5751), + [anon_sym_BSLASHtext] = ACTIONS(5751), + [anon_sym_BSLASHintertext] = ACTIONS(5751), + [anon_sym_shortintertext] = ACTIONS(5751), }, - [1365] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5105), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - [anon_sym_BSLASHtext] = ACTIONS(5105), - [anon_sym_BSLASHintertext] = ACTIONS(5105), - [anon_sym_shortintertext] = ACTIONS(5105), + [812] = { + [ts_builtin_sym_end] = ACTIONS(6055), + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_BSLASHpart] = ACTIONS(6057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddpart] = ACTIONS(6057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHchapter] = ACTIONS(6057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddchap] = ACTIONS(6057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsection] = ACTIONS(6057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddsec] = ACTIONS(6057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHparagraph] = ACTIONS(6057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHitem] = ACTIONS(6057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [anon_sym_RBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), }, - [1366] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - [anon_sym_BSLASHtext] = ACTIONS(5117), - [anon_sym_BSLASHintertext] = ACTIONS(5117), - [anon_sym_shortintertext] = ACTIONS(5117), + [813] = { + [ts_builtin_sym_end] = ACTIONS(6059), + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_BSLASHpart] = ACTIONS(6061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddpart] = ACTIONS(6061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHchapter] = ACTIONS(6061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddchap] = ACTIONS(6061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsection] = ACTIONS(6061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddsec] = ACTIONS(6061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHparagraph] = ACTIONS(6061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHitem] = ACTIONS(6061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), }, - [1367] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - [anon_sym_BSLASHtext] = ACTIONS(5121), - [anon_sym_BSLASHintertext] = ACTIONS(5121), - [anon_sym_shortintertext] = ACTIONS(5121), + [814] = { + [ts_builtin_sym_end] = ACTIONS(6063), + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_BSLASHpart] = ACTIONS(6065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddpart] = ACTIONS(6065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHchapter] = ACTIONS(6065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddchap] = ACTIONS(6065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsection] = ACTIONS(6065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddsec] = ACTIONS(6065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHparagraph] = ACTIONS(6065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHitem] = ACTIONS(6065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), }, - [1368] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [815] = { + [sym_brack_group_text] = STATE(1299), + [sym_command_name] = ACTIONS(5775), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_RBRACK] = ACTIONS(5773), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_BSLASHpart] = ACTIONS(5775), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddpart] = ACTIONS(5775), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHchapter] = ACTIONS(5775), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddchap] = ACTIONS(5775), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsection] = ACTIONS(5775), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddsec] = ACTIONS(5775), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHparagraph] = ACTIONS(5775), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5775), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHitem] = ACTIONS(5775), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5773), + [sym_word] = ACTIONS(5775), + [sym_placeholder] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_SLASH] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5775), + [anon_sym__] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5775), + [anon_sym_PIPE] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_SQUOTE] = ACTIONS(5775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5773), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5775), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5773), + [anon_sym_BSLASHbegin] = ACTIONS(5775), + [anon_sym_BSLASHtitle] = ACTIONS(5775), + [anon_sym_BSLASHauthor] = ACTIONS(5775), + [anon_sym_BSLASHusepackage] = ACTIONS(5775), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5775), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5775), + [anon_sym_BSLASHinclude] = ACTIONS(5775), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5775), + [anon_sym_BSLASHinput] = ACTIONS(5775), + [anon_sym_BSLASHsubfile] = ACTIONS(5775), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5775), + [anon_sym_BSLASHbibliography] = ACTIONS(5775), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5775), + [anon_sym_BSLASHincludesvg] = ACTIONS(5775), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5775), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5775), + [anon_sym_BSLASHimport] = ACTIONS(5775), + [anon_sym_BSLASHsubimport] = ACTIONS(5775), + [anon_sym_BSLASHinputfrom] = ACTIONS(5775), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5775), + [anon_sym_BSLASHincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHcaption] = ACTIONS(5775), + [anon_sym_BSLASHcite] = ACTIONS(5775), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCite] = ACTIONS(5775), + [anon_sym_BSLASHnocite] = ACTIONS(5775), + [anon_sym_BSLASHcitet] = ACTIONS(5775), + [anon_sym_BSLASHcitep] = ACTIONS(5775), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteauthor] = ACTIONS(5775), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5775), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitetitle] = ACTIONS(5775), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteyear] = ACTIONS(5775), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitedate] = ACTIONS(5775), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteurl] = ACTIONS(5775), + [anon_sym_BSLASHfullcite] = ACTIONS(5775), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5775), + [anon_sym_BSLASHcitealt] = ACTIONS(5775), + [anon_sym_BSLASHcitealp] = ACTIONS(5775), + [anon_sym_BSLASHcitetext] = ACTIONS(5775), + [anon_sym_BSLASHparencite] = ACTIONS(5775), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHParencite] = ACTIONS(5775), + [anon_sym_BSLASHfootcite] = ACTIONS(5775), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5775), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5775), + [anon_sym_BSLASHtextcite] = ACTIONS(5775), + [anon_sym_BSLASHTextcite] = ACTIONS(5775), + [anon_sym_BSLASHsmartcite] = ACTIONS(5775), + [anon_sym_BSLASHSmartcite] = ACTIONS(5775), + [anon_sym_BSLASHsupercite] = ACTIONS(5775), + [anon_sym_BSLASHautocite] = ACTIONS(5775), + [anon_sym_BSLASHAutocite] = ACTIONS(5775), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHvolcite] = ACTIONS(5775), + [anon_sym_BSLASHVolcite] = ACTIONS(5775), + [anon_sym_BSLASHpvolcite] = ACTIONS(5775), + [anon_sym_BSLASHPvolcite] = ACTIONS(5775), + [anon_sym_BSLASHfvolcite] = ACTIONS(5775), + [anon_sym_BSLASHftvolcite] = ACTIONS(5775), + [anon_sym_BSLASHsvolcite] = ACTIONS(5775), + [anon_sym_BSLASHSvolcite] = ACTIONS(5775), + [anon_sym_BSLASHtvolcite] = ACTIONS(5775), + [anon_sym_BSLASHTvolcite] = ACTIONS(5775), + [anon_sym_BSLASHavolcite] = ACTIONS(5775), + [anon_sym_BSLASHAvolcite] = ACTIONS(5775), + [anon_sym_BSLASHnotecite] = ACTIONS(5775), + [anon_sym_BSLASHNotecite] = ACTIONS(5775), + [anon_sym_BSLASHpnotecite] = ACTIONS(5775), + [anon_sym_BSLASHPnotecite] = ACTIONS(5775), + [anon_sym_BSLASHfnotecite] = ACTIONS(5775), + [anon_sym_BSLASHlabel] = ACTIONS(5775), + [anon_sym_BSLASHref] = ACTIONS(5775), + [anon_sym_BSLASHeqref] = ACTIONS(5775), + [anon_sym_BSLASHvref] = ACTIONS(5775), + [anon_sym_BSLASHVref] = ACTIONS(5775), + [anon_sym_BSLASHautoref] = ACTIONS(5775), + [anon_sym_BSLASHpageref] = ACTIONS(5775), + [anon_sym_BSLASHcref] = ACTIONS(5775), + [anon_sym_BSLASHCref] = ACTIONS(5775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnameCref] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHlabelcref] = ACTIONS(5775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCrefrange] = ACTIONS(5775), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnewlabel] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5775), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5775), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5775), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdef] = ACTIONS(5775), + [anon_sym_BSLASHlet] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5775), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5775), + [anon_sym_BSLASHgls] = ACTIONS(5775), + [anon_sym_BSLASHGls] = ACTIONS(5775), + [anon_sym_BSLASHGLS] = ACTIONS(5775), + [anon_sym_BSLASHglspl] = ACTIONS(5775), + [anon_sym_BSLASHGlspl] = ACTIONS(5775), + [anon_sym_BSLASHGLSpl] = ACTIONS(5775), + [anon_sym_BSLASHglsdisp] = ACTIONS(5775), + [anon_sym_BSLASHglslink] = ACTIONS(5775), + [anon_sym_BSLASHglstext] = ACTIONS(5775), + [anon_sym_BSLASHGlstext] = ACTIONS(5775), + [anon_sym_BSLASHGLStext] = ACTIONS(5775), + [anon_sym_BSLASHglsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5775), + [anon_sym_BSLASHglsplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSplural] = ACTIONS(5775), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHglsname] = ACTIONS(5775), + [anon_sym_BSLASHGlsname] = ACTIONS(5775), + [anon_sym_BSLASHGLSname] = ACTIONS(5775), + [anon_sym_BSLASHglssymbol] = ACTIONS(5775), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5775), + [anon_sym_BSLASHglsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5775), + [anon_sym_BSLASHglsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5775), + [anon_sym_BSLASHglsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5775), + [anon_sym_BSLASHglsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5775), + [anon_sym_BSLASHglsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5775), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [anon_sym_BSLASHacrshort] = ACTIONS(5775), + [anon_sym_BSLASHAcrshort] = ACTIONS(5775), + [anon_sym_BSLASHACRshort] = ACTIONS(5775), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5775), + [anon_sym_BSLASHacrlong] = ACTIONS(5775), + [anon_sym_BSLASHAcrlong] = ACTIONS(5775), + [anon_sym_BSLASHACRlong] = ACTIONS(5775), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5775), + [anon_sym_BSLASHacrfull] = ACTIONS(5775), + [anon_sym_BSLASHAcrfull] = ACTIONS(5775), + [anon_sym_BSLASHACRfull] = ACTIONS(5775), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5775), + [anon_sym_BSLASHacs] = ACTIONS(5775), + [anon_sym_BSLASHAcs] = ACTIONS(5775), + [anon_sym_BSLASHacsp] = ACTIONS(5775), + [anon_sym_BSLASHAcsp] = ACTIONS(5775), + [anon_sym_BSLASHacl] = ACTIONS(5775), + [anon_sym_BSLASHAcl] = ACTIONS(5775), + [anon_sym_BSLASHaclp] = ACTIONS(5775), + [anon_sym_BSLASHAclp] = ACTIONS(5775), + [anon_sym_BSLASHacf] = ACTIONS(5775), + [anon_sym_BSLASHAcf] = ACTIONS(5775), + [anon_sym_BSLASHacfp] = ACTIONS(5775), + [anon_sym_BSLASHAcfp] = ACTIONS(5775), + [anon_sym_BSLASHac] = ACTIONS(5775), + [anon_sym_BSLASHAc] = ACTIONS(5775), + [anon_sym_BSLASHacp] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5775), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5775), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5775), + [anon_sym_BSLASHcolor] = ACTIONS(5775), + [anon_sym_BSLASHcolorbox] = ACTIONS(5775), + [anon_sym_BSLASHtextcolor] = ACTIONS(5775), + [anon_sym_BSLASHpagecolor] = ACTIONS(5775), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5775), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5775), + [anon_sym_BSLASHtext] = ACTIONS(5775), + [anon_sym_BSLASHintertext] = ACTIONS(5775), + [anon_sym_shortintertext] = ACTIONS(5775), }, - [1369] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHbegin] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), + [816] = { + [sym_curly_group] = STATE(1324), + [sym_command_name] = ACTIONS(5771), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_RBRACK] = ACTIONS(5769), + [anon_sym_COMMA] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5769), + [anon_sym_BSLASHpart] = ACTIONS(5771), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddpart] = ACTIONS(5771), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHchapter] = ACTIONS(5771), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddchap] = ACTIONS(5771), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsection] = ACTIONS(5771), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddsec] = ACTIONS(5771), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHparagraph] = ACTIONS(5771), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5771), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHitem] = ACTIONS(5771), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5771), + [sym_placeholder] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_SLASH] = ACTIONS(5771), + [anon_sym_CARET] = ACTIONS(5771), + [anon_sym__] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5771), + [anon_sym_GT] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5771), + [anon_sym_PIPE] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_SQUOTE] = ACTIONS(5771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5769), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5771), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5769), + [anon_sym_BSLASHbegin] = ACTIONS(5771), + [anon_sym_BSLASHtitle] = ACTIONS(5771), + [anon_sym_BSLASHauthor] = ACTIONS(5771), + [anon_sym_BSLASHusepackage] = ACTIONS(5771), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5771), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5771), + [anon_sym_BSLASHinclude] = ACTIONS(5771), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5771), + [anon_sym_BSLASHinput] = ACTIONS(5771), + [anon_sym_BSLASHsubfile] = ACTIONS(5771), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5771), + [anon_sym_BSLASHbibliography] = ACTIONS(5771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5771), + [anon_sym_BSLASHincludesvg] = ACTIONS(5771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5771), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5771), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5771), + [anon_sym_BSLASHimport] = ACTIONS(5771), + [anon_sym_BSLASHsubimport] = ACTIONS(5771), + [anon_sym_BSLASHinputfrom] = ACTIONS(5771), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5771), + [anon_sym_BSLASHincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHcaption] = ACTIONS(5771), + [anon_sym_BSLASHcite] = ACTIONS(5771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCite] = ACTIONS(5771), + [anon_sym_BSLASHnocite] = ACTIONS(5771), + [anon_sym_BSLASHcitet] = ACTIONS(5771), + [anon_sym_BSLASHcitep] = ACTIONS(5771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteauthor] = ACTIONS(5771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitetitle] = ACTIONS(5771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteyear] = ACTIONS(5771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitedate] = ACTIONS(5771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteurl] = ACTIONS(5771), + [anon_sym_BSLASHfullcite] = ACTIONS(5771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5771), + [anon_sym_BSLASHcitealt] = ACTIONS(5771), + [anon_sym_BSLASHcitealp] = ACTIONS(5771), + [anon_sym_BSLASHcitetext] = ACTIONS(5771), + [anon_sym_BSLASHparencite] = ACTIONS(5771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHParencite] = ACTIONS(5771), + [anon_sym_BSLASHfootcite] = ACTIONS(5771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5771), + [anon_sym_BSLASHtextcite] = ACTIONS(5771), + [anon_sym_BSLASHTextcite] = ACTIONS(5771), + [anon_sym_BSLASHsmartcite] = ACTIONS(5771), + [anon_sym_BSLASHSmartcite] = ACTIONS(5771), + [anon_sym_BSLASHsupercite] = ACTIONS(5771), + [anon_sym_BSLASHautocite] = ACTIONS(5771), + [anon_sym_BSLASHAutocite] = ACTIONS(5771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHvolcite] = ACTIONS(5771), + [anon_sym_BSLASHVolcite] = ACTIONS(5771), + [anon_sym_BSLASHpvolcite] = ACTIONS(5771), + [anon_sym_BSLASHPvolcite] = ACTIONS(5771), + [anon_sym_BSLASHfvolcite] = ACTIONS(5771), + [anon_sym_BSLASHftvolcite] = ACTIONS(5771), + [anon_sym_BSLASHsvolcite] = ACTIONS(5771), + [anon_sym_BSLASHSvolcite] = ACTIONS(5771), + [anon_sym_BSLASHtvolcite] = ACTIONS(5771), + [anon_sym_BSLASHTvolcite] = ACTIONS(5771), + [anon_sym_BSLASHavolcite] = ACTIONS(5771), + [anon_sym_BSLASHAvolcite] = ACTIONS(5771), + [anon_sym_BSLASHnotecite] = ACTIONS(5771), + [anon_sym_BSLASHNotecite] = ACTIONS(5771), + [anon_sym_BSLASHpnotecite] = ACTIONS(5771), + [anon_sym_BSLASHPnotecite] = ACTIONS(5771), + [anon_sym_BSLASHfnotecite] = ACTIONS(5771), + [anon_sym_BSLASHlabel] = ACTIONS(5771), + [anon_sym_BSLASHref] = ACTIONS(5771), + [anon_sym_BSLASHeqref] = ACTIONS(5771), + [anon_sym_BSLASHvref] = ACTIONS(5771), + [anon_sym_BSLASHVref] = ACTIONS(5771), + [anon_sym_BSLASHautoref] = ACTIONS(5771), + [anon_sym_BSLASHpageref] = ACTIONS(5771), + [anon_sym_BSLASHcref] = ACTIONS(5771), + [anon_sym_BSLASHCref] = ACTIONS(5771), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnameCref] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHlabelcref] = ACTIONS(5771), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCrefrange] = ACTIONS(5771), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnewlabel] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5771), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5771), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5771), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdef] = ACTIONS(5771), + [anon_sym_BSLASHlet] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5771), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5771), + [anon_sym_BSLASHgls] = ACTIONS(5771), + [anon_sym_BSLASHGls] = ACTIONS(5771), + [anon_sym_BSLASHGLS] = ACTIONS(5771), + [anon_sym_BSLASHglspl] = ACTIONS(5771), + [anon_sym_BSLASHGlspl] = ACTIONS(5771), + [anon_sym_BSLASHGLSpl] = ACTIONS(5771), + [anon_sym_BSLASHglsdisp] = ACTIONS(5771), + [anon_sym_BSLASHglslink] = ACTIONS(5771), + [anon_sym_BSLASHglstext] = ACTIONS(5771), + [anon_sym_BSLASHGlstext] = ACTIONS(5771), + [anon_sym_BSLASHGLStext] = ACTIONS(5771), + [anon_sym_BSLASHglsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5771), + [anon_sym_BSLASHglsplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSplural] = ACTIONS(5771), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHglsname] = ACTIONS(5771), + [anon_sym_BSLASHGlsname] = ACTIONS(5771), + [anon_sym_BSLASHGLSname] = ACTIONS(5771), + [anon_sym_BSLASHglssymbol] = ACTIONS(5771), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5771), + [anon_sym_BSLASHglsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5771), + [anon_sym_BSLASHglsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5771), + [anon_sym_BSLASHglsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5771), + [anon_sym_BSLASHglsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5771), + [anon_sym_BSLASHglsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5771), + [anon_sym_BSLASHnewacronym] = ACTIONS(5771), + [anon_sym_BSLASHacrshort] = ACTIONS(5771), + [anon_sym_BSLASHAcrshort] = ACTIONS(5771), + [anon_sym_BSLASHACRshort] = ACTIONS(5771), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5771), + [anon_sym_BSLASHacrlong] = ACTIONS(5771), + [anon_sym_BSLASHAcrlong] = ACTIONS(5771), + [anon_sym_BSLASHACRlong] = ACTIONS(5771), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5771), + [anon_sym_BSLASHacrfull] = ACTIONS(5771), + [anon_sym_BSLASHAcrfull] = ACTIONS(5771), + [anon_sym_BSLASHACRfull] = ACTIONS(5771), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5771), + [anon_sym_BSLASHacs] = ACTIONS(5771), + [anon_sym_BSLASHAcs] = ACTIONS(5771), + [anon_sym_BSLASHacsp] = ACTIONS(5771), + [anon_sym_BSLASHAcsp] = ACTIONS(5771), + [anon_sym_BSLASHacl] = ACTIONS(5771), + [anon_sym_BSLASHAcl] = ACTIONS(5771), + [anon_sym_BSLASHaclp] = ACTIONS(5771), + [anon_sym_BSLASHAclp] = ACTIONS(5771), + [anon_sym_BSLASHacf] = ACTIONS(5771), + [anon_sym_BSLASHAcf] = ACTIONS(5771), + [anon_sym_BSLASHacfp] = ACTIONS(5771), + [anon_sym_BSLASHAcfp] = ACTIONS(5771), + [anon_sym_BSLASHac] = ACTIONS(5771), + [anon_sym_BSLASHAc] = ACTIONS(5771), + [anon_sym_BSLASHacp] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5771), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5771), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5771), + [anon_sym_BSLASHcolor] = ACTIONS(5771), + [anon_sym_BSLASHcolorbox] = ACTIONS(5771), + [anon_sym_BSLASHtextcolor] = ACTIONS(5771), + [anon_sym_BSLASHpagecolor] = ACTIONS(5771), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5771), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5771), + [anon_sym_BSLASHtext] = ACTIONS(5771), + [anon_sym_BSLASHintertext] = ACTIONS(5771), + [anon_sym_shortintertext] = ACTIONS(5771), }, - [1370] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [817] = { + [sym_curly_group] = STATE(1330), + [sym_command_name] = ACTIONS(5767), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_RBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_BSLASHpart] = ACTIONS(5767), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddpart] = ACTIONS(5767), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHchapter] = ACTIONS(5767), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddchap] = ACTIONS(5767), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsection] = ACTIONS(5767), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddsec] = ACTIONS(5767), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHparagraph] = ACTIONS(5767), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5767), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHitem] = ACTIONS(5767), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5767), + [sym_placeholder] = ACTIONS(5765), + [anon_sym_PLUS] = ACTIONS(5767), + [anon_sym_DASH] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_CARET] = ACTIONS(5767), + [anon_sym__] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5767), + [anon_sym_PIPE] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_SQUOTE] = ACTIONS(5767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5765), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5765), + [anon_sym_DOLLAR] = ACTIONS(5767), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5765), + [anon_sym_BSLASHbegin] = ACTIONS(5767), + [anon_sym_BSLASHtitle] = ACTIONS(5767), + [anon_sym_BSLASHauthor] = ACTIONS(5767), + [anon_sym_BSLASHusepackage] = ACTIONS(5767), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5767), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5767), + [anon_sym_BSLASHinclude] = ACTIONS(5767), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5767), + [anon_sym_BSLASHinput] = ACTIONS(5767), + [anon_sym_BSLASHsubfile] = ACTIONS(5767), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5767), + [anon_sym_BSLASHbibliography] = ACTIONS(5767), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5767), + [anon_sym_BSLASHincludesvg] = ACTIONS(5767), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5767), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5767), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5767), + [anon_sym_BSLASHimport] = ACTIONS(5767), + [anon_sym_BSLASHsubimport] = ACTIONS(5767), + [anon_sym_BSLASHinputfrom] = ACTIONS(5767), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5767), + [anon_sym_BSLASHincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHcaption] = ACTIONS(5767), + [anon_sym_BSLASHcite] = ACTIONS(5767), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCite] = ACTIONS(5767), + [anon_sym_BSLASHnocite] = ACTIONS(5767), + [anon_sym_BSLASHcitet] = ACTIONS(5767), + [anon_sym_BSLASHcitep] = ACTIONS(5767), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteauthor] = ACTIONS(5767), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5767), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitetitle] = ACTIONS(5767), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteyear] = ACTIONS(5767), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitedate] = ACTIONS(5767), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteurl] = ACTIONS(5767), + [anon_sym_BSLASHfullcite] = ACTIONS(5767), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5767), + [anon_sym_BSLASHcitealt] = ACTIONS(5767), + [anon_sym_BSLASHcitealp] = ACTIONS(5767), + [anon_sym_BSLASHcitetext] = ACTIONS(5767), + [anon_sym_BSLASHparencite] = ACTIONS(5767), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHParencite] = ACTIONS(5767), + [anon_sym_BSLASHfootcite] = ACTIONS(5767), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5767), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5767), + [anon_sym_BSLASHtextcite] = ACTIONS(5767), + [anon_sym_BSLASHTextcite] = ACTIONS(5767), + [anon_sym_BSLASHsmartcite] = ACTIONS(5767), + [anon_sym_BSLASHSmartcite] = ACTIONS(5767), + [anon_sym_BSLASHsupercite] = ACTIONS(5767), + [anon_sym_BSLASHautocite] = ACTIONS(5767), + [anon_sym_BSLASHAutocite] = ACTIONS(5767), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHvolcite] = ACTIONS(5767), + [anon_sym_BSLASHVolcite] = ACTIONS(5767), + [anon_sym_BSLASHpvolcite] = ACTIONS(5767), + [anon_sym_BSLASHPvolcite] = ACTIONS(5767), + [anon_sym_BSLASHfvolcite] = ACTIONS(5767), + [anon_sym_BSLASHftvolcite] = ACTIONS(5767), + [anon_sym_BSLASHsvolcite] = ACTIONS(5767), + [anon_sym_BSLASHSvolcite] = ACTIONS(5767), + [anon_sym_BSLASHtvolcite] = ACTIONS(5767), + [anon_sym_BSLASHTvolcite] = ACTIONS(5767), + [anon_sym_BSLASHavolcite] = ACTIONS(5767), + [anon_sym_BSLASHAvolcite] = ACTIONS(5767), + [anon_sym_BSLASHnotecite] = ACTIONS(5767), + [anon_sym_BSLASHNotecite] = ACTIONS(5767), + [anon_sym_BSLASHpnotecite] = ACTIONS(5767), + [anon_sym_BSLASHPnotecite] = ACTIONS(5767), + [anon_sym_BSLASHfnotecite] = ACTIONS(5767), + [anon_sym_BSLASHlabel] = ACTIONS(5767), + [anon_sym_BSLASHref] = ACTIONS(5767), + [anon_sym_BSLASHeqref] = ACTIONS(5767), + [anon_sym_BSLASHvref] = ACTIONS(5767), + [anon_sym_BSLASHVref] = ACTIONS(5767), + [anon_sym_BSLASHautoref] = ACTIONS(5767), + [anon_sym_BSLASHpageref] = ACTIONS(5767), + [anon_sym_BSLASHcref] = ACTIONS(5767), + [anon_sym_BSLASHCref] = ACTIONS(5767), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnameCref] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHlabelcref] = ACTIONS(5767), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCrefrange] = ACTIONS(5767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnewlabel] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5767), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5767), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5767), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdef] = ACTIONS(5767), + [anon_sym_BSLASHlet] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5767), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5767), + [anon_sym_BSLASHgls] = ACTIONS(5767), + [anon_sym_BSLASHGls] = ACTIONS(5767), + [anon_sym_BSLASHGLS] = ACTIONS(5767), + [anon_sym_BSLASHglspl] = ACTIONS(5767), + [anon_sym_BSLASHGlspl] = ACTIONS(5767), + [anon_sym_BSLASHGLSpl] = ACTIONS(5767), + [anon_sym_BSLASHglsdisp] = ACTIONS(5767), + [anon_sym_BSLASHglslink] = ACTIONS(5767), + [anon_sym_BSLASHglstext] = ACTIONS(5767), + [anon_sym_BSLASHGlstext] = ACTIONS(5767), + [anon_sym_BSLASHGLStext] = ACTIONS(5767), + [anon_sym_BSLASHglsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5767), + [anon_sym_BSLASHglsplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSplural] = ACTIONS(5767), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHglsname] = ACTIONS(5767), + [anon_sym_BSLASHGlsname] = ACTIONS(5767), + [anon_sym_BSLASHGLSname] = ACTIONS(5767), + [anon_sym_BSLASHglssymbol] = ACTIONS(5767), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5767), + [anon_sym_BSLASHglsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5767), + [anon_sym_BSLASHglsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5767), + [anon_sym_BSLASHglsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5767), + [anon_sym_BSLASHglsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5767), + [anon_sym_BSLASHglsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5767), + [anon_sym_BSLASHnewacronym] = ACTIONS(5767), + [anon_sym_BSLASHacrshort] = ACTIONS(5767), + [anon_sym_BSLASHAcrshort] = ACTIONS(5767), + [anon_sym_BSLASHACRshort] = ACTIONS(5767), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5767), + [anon_sym_BSLASHacrlong] = ACTIONS(5767), + [anon_sym_BSLASHAcrlong] = ACTIONS(5767), + [anon_sym_BSLASHACRlong] = ACTIONS(5767), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5767), + [anon_sym_BSLASHacrfull] = ACTIONS(5767), + [anon_sym_BSLASHAcrfull] = ACTIONS(5767), + [anon_sym_BSLASHACRfull] = ACTIONS(5767), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5767), + [anon_sym_BSLASHacs] = ACTIONS(5767), + [anon_sym_BSLASHAcs] = ACTIONS(5767), + [anon_sym_BSLASHacsp] = ACTIONS(5767), + [anon_sym_BSLASHAcsp] = ACTIONS(5767), + [anon_sym_BSLASHacl] = ACTIONS(5767), + [anon_sym_BSLASHAcl] = ACTIONS(5767), + [anon_sym_BSLASHaclp] = ACTIONS(5767), + [anon_sym_BSLASHAclp] = ACTIONS(5767), + [anon_sym_BSLASHacf] = ACTIONS(5767), + [anon_sym_BSLASHAcf] = ACTIONS(5767), + [anon_sym_BSLASHacfp] = ACTIONS(5767), + [anon_sym_BSLASHAcfp] = ACTIONS(5767), + [anon_sym_BSLASHac] = ACTIONS(5767), + [anon_sym_BSLASHAc] = ACTIONS(5767), + [anon_sym_BSLASHacp] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5767), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5767), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5767), + [anon_sym_BSLASHcolor] = ACTIONS(5767), + [anon_sym_BSLASHcolorbox] = ACTIONS(5767), + [anon_sym_BSLASHtextcolor] = ACTIONS(5767), + [anon_sym_BSLASHpagecolor] = ACTIONS(5767), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5767), + [anon_sym_BSLASHtext] = ACTIONS(5767), + [anon_sym_BSLASHintertext] = ACTIONS(5767), + [anon_sym_shortintertext] = ACTIONS(5767), }, - [1371] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHbegin] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), + [818] = { + [sym_curly_group] = STATE(1343), + [sym_command_name] = ACTIONS(5763), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5763), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_BSLASHpart] = ACTIONS(5763), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddpart] = ACTIONS(5763), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5761), + [anon_sym_BSLASHchapter] = ACTIONS(5763), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddchap] = ACTIONS(5763), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsection] = ACTIONS(5763), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHaddsec] = ACTIONS(5763), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5763), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5761), + [anon_sym_BSLASHparagraph] = ACTIONS(5763), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5763), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5763), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5761), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5763), + [sym_placeholder] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5763), + [anon_sym_SLASH] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5763), + [anon_sym__] = ACTIONS(5763), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PIPE] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5763), + [anon_sym_SQUOTE] = ACTIONS(5763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5761), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5761), + [anon_sym_DOLLAR] = ACTIONS(5763), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5761), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5761), + [anon_sym_BSLASHbegin] = ACTIONS(5763), + [anon_sym_BSLASHtitle] = ACTIONS(5763), + [anon_sym_BSLASHauthor] = ACTIONS(5763), + [anon_sym_BSLASHusepackage] = ACTIONS(5763), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5763), + [anon_sym_BSLASHinclude] = ACTIONS(5763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5763), + [anon_sym_BSLASHinput] = ACTIONS(5763), + [anon_sym_BSLASHsubfile] = ACTIONS(5763), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5763), + [anon_sym_BSLASHbibliography] = ACTIONS(5763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5763), + [anon_sym_BSLASHincludesvg] = ACTIONS(5763), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5763), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5763), + [anon_sym_BSLASHimport] = ACTIONS(5763), + [anon_sym_BSLASHsubimport] = ACTIONS(5763), + [anon_sym_BSLASHinputfrom] = ACTIONS(5763), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5763), + [anon_sym_BSLASHincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5763), + [anon_sym_BSLASHcaption] = ACTIONS(5763), + [anon_sym_BSLASHcite] = ACTIONS(5763), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCite] = ACTIONS(5763), + [anon_sym_BSLASHnocite] = ACTIONS(5763), + [anon_sym_BSLASHcitet] = ACTIONS(5763), + [anon_sym_BSLASHcitep] = ACTIONS(5763), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteauthor] = ACTIONS(5763), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5763), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitetitle] = ACTIONS(5763), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteyear] = ACTIONS(5763), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5761), + [anon_sym_BSLASHcitedate] = ACTIONS(5763), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5761), + [anon_sym_BSLASHciteurl] = ACTIONS(5763), + [anon_sym_BSLASHfullcite] = ACTIONS(5763), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5763), + [anon_sym_BSLASHcitealt] = ACTIONS(5763), + [anon_sym_BSLASHcitealp] = ACTIONS(5763), + [anon_sym_BSLASHcitetext] = ACTIONS(5763), + [anon_sym_BSLASHparencite] = ACTIONS(5763), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHParencite] = ACTIONS(5763), + [anon_sym_BSLASHfootcite] = ACTIONS(5763), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5763), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5763), + [anon_sym_BSLASHtextcite] = ACTIONS(5763), + [anon_sym_BSLASHTextcite] = ACTIONS(5763), + [anon_sym_BSLASHsmartcite] = ACTIONS(5763), + [anon_sym_BSLASHSmartcite] = ACTIONS(5763), + [anon_sym_BSLASHsupercite] = ACTIONS(5763), + [anon_sym_BSLASHautocite] = ACTIONS(5763), + [anon_sym_BSLASHAutocite] = ACTIONS(5763), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5761), + [anon_sym_BSLASHvolcite] = ACTIONS(5763), + [anon_sym_BSLASHVolcite] = ACTIONS(5763), + [anon_sym_BSLASHpvolcite] = ACTIONS(5763), + [anon_sym_BSLASHPvolcite] = ACTIONS(5763), + [anon_sym_BSLASHfvolcite] = ACTIONS(5763), + [anon_sym_BSLASHftvolcite] = ACTIONS(5763), + [anon_sym_BSLASHsvolcite] = ACTIONS(5763), + [anon_sym_BSLASHSvolcite] = ACTIONS(5763), + [anon_sym_BSLASHtvolcite] = ACTIONS(5763), + [anon_sym_BSLASHTvolcite] = ACTIONS(5763), + [anon_sym_BSLASHavolcite] = ACTIONS(5763), + [anon_sym_BSLASHAvolcite] = ACTIONS(5763), + [anon_sym_BSLASHnotecite] = ACTIONS(5763), + [anon_sym_BSLASHNotecite] = ACTIONS(5763), + [anon_sym_BSLASHpnotecite] = ACTIONS(5763), + [anon_sym_BSLASHPnotecite] = ACTIONS(5763), + [anon_sym_BSLASHfnotecite] = ACTIONS(5763), + [anon_sym_BSLASHlabel] = ACTIONS(5763), + [anon_sym_BSLASHref] = ACTIONS(5763), + [anon_sym_BSLASHeqref] = ACTIONS(5763), + [anon_sym_BSLASHvref] = ACTIONS(5763), + [anon_sym_BSLASHVref] = ACTIONS(5763), + [anon_sym_BSLASHautoref] = ACTIONS(5763), + [anon_sym_BSLASHpageref] = ACTIONS(5763), + [anon_sym_BSLASHcref] = ACTIONS(5763), + [anon_sym_BSLASHCref] = ACTIONS(5763), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnameCref] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5763), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5763), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5763), + [anon_sym_BSLASHlabelcref] = ACTIONS(5763), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange] = ACTIONS(5763), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHCrefrange] = ACTIONS(5763), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5761), + [anon_sym_BSLASHnewlabel] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand] = ACTIONS(5763), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5763), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5763), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5761), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5763), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdef] = ACTIONS(5763), + [anon_sym_BSLASHlet] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5763), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5763), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5763), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5763), + [anon_sym_BSLASHgls] = ACTIONS(5763), + [anon_sym_BSLASHGls] = ACTIONS(5763), + [anon_sym_BSLASHGLS] = ACTIONS(5763), + [anon_sym_BSLASHglspl] = ACTIONS(5763), + [anon_sym_BSLASHGlspl] = ACTIONS(5763), + [anon_sym_BSLASHGLSpl] = ACTIONS(5763), + [anon_sym_BSLASHglsdisp] = ACTIONS(5763), + [anon_sym_BSLASHglslink] = ACTIONS(5763), + [anon_sym_BSLASHglstext] = ACTIONS(5763), + [anon_sym_BSLASHGlstext] = ACTIONS(5763), + [anon_sym_BSLASHGLStext] = ACTIONS(5763), + [anon_sym_BSLASHglsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5763), + [anon_sym_BSLASHglsplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSplural] = ACTIONS(5763), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5763), + [anon_sym_BSLASHglsname] = ACTIONS(5763), + [anon_sym_BSLASHGlsname] = ACTIONS(5763), + [anon_sym_BSLASHGLSname] = ACTIONS(5763), + [anon_sym_BSLASHglssymbol] = ACTIONS(5763), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5763), + [anon_sym_BSLASHglsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5763), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5763), + [anon_sym_BSLASHglsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5763), + [anon_sym_BSLASHglsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5763), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5763), + [anon_sym_BSLASHglsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5763), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5763), + [anon_sym_BSLASHglsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5763), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5763), + [anon_sym_BSLASHnewacronym] = ACTIONS(5763), + [anon_sym_BSLASHacrshort] = ACTIONS(5763), + [anon_sym_BSLASHAcrshort] = ACTIONS(5763), + [anon_sym_BSLASHACRshort] = ACTIONS(5763), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5763), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5763), + [anon_sym_BSLASHacrlong] = ACTIONS(5763), + [anon_sym_BSLASHAcrlong] = ACTIONS(5763), + [anon_sym_BSLASHACRlong] = ACTIONS(5763), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5763), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5763), + [anon_sym_BSLASHacrfull] = ACTIONS(5763), + [anon_sym_BSLASHAcrfull] = ACTIONS(5763), + [anon_sym_BSLASHACRfull] = ACTIONS(5763), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5763), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5763), + [anon_sym_BSLASHacs] = ACTIONS(5763), + [anon_sym_BSLASHAcs] = ACTIONS(5763), + [anon_sym_BSLASHacsp] = ACTIONS(5763), + [anon_sym_BSLASHAcsp] = ACTIONS(5763), + [anon_sym_BSLASHacl] = ACTIONS(5763), + [anon_sym_BSLASHAcl] = ACTIONS(5763), + [anon_sym_BSLASHaclp] = ACTIONS(5763), + [anon_sym_BSLASHAclp] = ACTIONS(5763), + [anon_sym_BSLASHacf] = ACTIONS(5763), + [anon_sym_BSLASHAcf] = ACTIONS(5763), + [anon_sym_BSLASHacfp] = ACTIONS(5763), + [anon_sym_BSLASHAcfp] = ACTIONS(5763), + [anon_sym_BSLASHac] = ACTIONS(5763), + [anon_sym_BSLASHAc] = ACTIONS(5763), + [anon_sym_BSLASHacp] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5763), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5763), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5763), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5763), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5763), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5761), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5763), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5763), + [anon_sym_BSLASHcolor] = ACTIONS(5763), + [anon_sym_BSLASHcolorbox] = ACTIONS(5763), + [anon_sym_BSLASHtextcolor] = ACTIONS(5763), + [anon_sym_BSLASHpagecolor] = ACTIONS(5763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5763), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5763), + [anon_sym_BSLASHtext] = ACTIONS(5763), + [anon_sym_BSLASHintertext] = ACTIONS(5763), + [anon_sym_shortintertext] = ACTIONS(5763), }, - [1372] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHbegin] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), + [819] = { + [ts_builtin_sym_end] = ACTIONS(6067), + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_BSLASHpart] = ACTIONS(6069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddpart] = ACTIONS(6069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHchapter] = ACTIONS(6069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddchap] = ACTIONS(6069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsection] = ACTIONS(6069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddsec] = ACTIONS(6069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHparagraph] = ACTIONS(6069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHitem] = ACTIONS(6069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [anon_sym_RBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), }, - [1373] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), + [820] = { + [sym_curly_group] = STATE(1358), + [sym_command_name] = ACTIONS(5751), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_BSLASHpart] = ACTIONS(5751), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddpart] = ACTIONS(5751), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHchapter] = ACTIONS(5751), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddchap] = ACTIONS(5751), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsection] = ACTIONS(5751), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddsec] = ACTIONS(5751), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHparagraph] = ACTIONS(5751), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5751), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHitem] = ACTIONS(5751), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5751), + [sym_placeholder] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym__] = ACTIONS(5751), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5751), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_SQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5749), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5749), + [anon_sym_BSLASHbegin] = ACTIONS(5751), + [anon_sym_BSLASHtitle] = ACTIONS(5751), + [anon_sym_BSLASHauthor] = ACTIONS(5751), + [anon_sym_BSLASHusepackage] = ACTIONS(5751), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5751), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5751), + [anon_sym_BSLASHinclude] = ACTIONS(5751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5751), + [anon_sym_BSLASHinput] = ACTIONS(5751), + [anon_sym_BSLASHsubfile] = ACTIONS(5751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5751), + [anon_sym_BSLASHbibliography] = ACTIONS(5751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5751), + [anon_sym_BSLASHincludesvg] = ACTIONS(5751), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5751), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5751), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5751), + [anon_sym_BSLASHimport] = ACTIONS(5751), + [anon_sym_BSLASHsubimport] = ACTIONS(5751), + [anon_sym_BSLASHinputfrom] = ACTIONS(5751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5751), + [anon_sym_BSLASHincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHcaption] = ACTIONS(5751), + [anon_sym_BSLASHcite] = ACTIONS(5751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCite] = ACTIONS(5751), + [anon_sym_BSLASHnocite] = ACTIONS(5751), + [anon_sym_BSLASHcitet] = ACTIONS(5751), + [anon_sym_BSLASHcitep] = ACTIONS(5751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteauthor] = ACTIONS(5751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitetitle] = ACTIONS(5751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteyear] = ACTIONS(5751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitedate] = ACTIONS(5751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteurl] = ACTIONS(5751), + [anon_sym_BSLASHfullcite] = ACTIONS(5751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5751), + [anon_sym_BSLASHcitealt] = ACTIONS(5751), + [anon_sym_BSLASHcitealp] = ACTIONS(5751), + [anon_sym_BSLASHcitetext] = ACTIONS(5751), + [anon_sym_BSLASHparencite] = ACTIONS(5751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHParencite] = ACTIONS(5751), + [anon_sym_BSLASHfootcite] = ACTIONS(5751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5751), + [anon_sym_BSLASHtextcite] = ACTIONS(5751), + [anon_sym_BSLASHTextcite] = ACTIONS(5751), + [anon_sym_BSLASHsmartcite] = ACTIONS(5751), + [anon_sym_BSLASHSmartcite] = ACTIONS(5751), + [anon_sym_BSLASHsupercite] = ACTIONS(5751), + [anon_sym_BSLASHautocite] = ACTIONS(5751), + [anon_sym_BSLASHAutocite] = ACTIONS(5751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHvolcite] = ACTIONS(5751), + [anon_sym_BSLASHVolcite] = ACTIONS(5751), + [anon_sym_BSLASHpvolcite] = ACTIONS(5751), + [anon_sym_BSLASHPvolcite] = ACTIONS(5751), + [anon_sym_BSLASHfvolcite] = ACTIONS(5751), + [anon_sym_BSLASHftvolcite] = ACTIONS(5751), + [anon_sym_BSLASHsvolcite] = ACTIONS(5751), + [anon_sym_BSLASHSvolcite] = ACTIONS(5751), + [anon_sym_BSLASHtvolcite] = ACTIONS(5751), + [anon_sym_BSLASHTvolcite] = ACTIONS(5751), + [anon_sym_BSLASHavolcite] = ACTIONS(5751), + [anon_sym_BSLASHAvolcite] = ACTIONS(5751), + [anon_sym_BSLASHnotecite] = ACTIONS(5751), + [anon_sym_BSLASHNotecite] = ACTIONS(5751), + [anon_sym_BSLASHpnotecite] = ACTIONS(5751), + [anon_sym_BSLASHPnotecite] = ACTIONS(5751), + [anon_sym_BSLASHfnotecite] = ACTIONS(5751), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [anon_sym_BSLASHref] = ACTIONS(5751), + [anon_sym_BSLASHeqref] = ACTIONS(5751), + [anon_sym_BSLASHvref] = ACTIONS(5751), + [anon_sym_BSLASHVref] = ACTIONS(5751), + [anon_sym_BSLASHautoref] = ACTIONS(5751), + [anon_sym_BSLASHpageref] = ACTIONS(5751), + [anon_sym_BSLASHcref] = ACTIONS(5751), + [anon_sym_BSLASHCref] = ACTIONS(5751), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnameCref] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHlabelcref] = ACTIONS(5751), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCrefrange] = ACTIONS(5751), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnewlabel] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5751), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5751), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5751), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdef] = ACTIONS(5751), + [anon_sym_BSLASHlet] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5751), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5751), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5751), + [anon_sym_BSLASHgls] = ACTIONS(5751), + [anon_sym_BSLASHGls] = ACTIONS(5751), + [anon_sym_BSLASHGLS] = ACTIONS(5751), + [anon_sym_BSLASHglspl] = ACTIONS(5751), + [anon_sym_BSLASHGlspl] = ACTIONS(5751), + [anon_sym_BSLASHGLSpl] = ACTIONS(5751), + [anon_sym_BSLASHglsdisp] = ACTIONS(5751), + [anon_sym_BSLASHglslink] = ACTIONS(5751), + [anon_sym_BSLASHglstext] = ACTIONS(5751), + [anon_sym_BSLASHGlstext] = ACTIONS(5751), + [anon_sym_BSLASHGLStext] = ACTIONS(5751), + [anon_sym_BSLASHglsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5751), + [anon_sym_BSLASHglsplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSplural] = ACTIONS(5751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHglsname] = ACTIONS(5751), + [anon_sym_BSLASHGlsname] = ACTIONS(5751), + [anon_sym_BSLASHGLSname] = ACTIONS(5751), + [anon_sym_BSLASHglssymbol] = ACTIONS(5751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5751), + [anon_sym_BSLASHglsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5751), + [anon_sym_BSLASHglsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5751), + [anon_sym_BSLASHglsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5751), + [anon_sym_BSLASHglsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5751), + [anon_sym_BSLASHglsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5751), + [anon_sym_BSLASHnewacronym] = ACTIONS(5751), + [anon_sym_BSLASHacrshort] = ACTIONS(5751), + [anon_sym_BSLASHAcrshort] = ACTIONS(5751), + [anon_sym_BSLASHACRshort] = ACTIONS(5751), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5751), + [anon_sym_BSLASHacrlong] = ACTIONS(5751), + [anon_sym_BSLASHAcrlong] = ACTIONS(5751), + [anon_sym_BSLASHACRlong] = ACTIONS(5751), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5751), + [anon_sym_BSLASHacrfull] = ACTIONS(5751), + [anon_sym_BSLASHAcrfull] = ACTIONS(5751), + [anon_sym_BSLASHACRfull] = ACTIONS(5751), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5751), + [anon_sym_BSLASHacs] = ACTIONS(5751), + [anon_sym_BSLASHAcs] = ACTIONS(5751), + [anon_sym_BSLASHacsp] = ACTIONS(5751), + [anon_sym_BSLASHAcsp] = ACTIONS(5751), + [anon_sym_BSLASHacl] = ACTIONS(5751), + [anon_sym_BSLASHAcl] = ACTIONS(5751), + [anon_sym_BSLASHaclp] = ACTIONS(5751), + [anon_sym_BSLASHAclp] = ACTIONS(5751), + [anon_sym_BSLASHacf] = ACTIONS(5751), + [anon_sym_BSLASHAcf] = ACTIONS(5751), + [anon_sym_BSLASHacfp] = ACTIONS(5751), + [anon_sym_BSLASHAcfp] = ACTIONS(5751), + [anon_sym_BSLASHac] = ACTIONS(5751), + [anon_sym_BSLASHAc] = ACTIONS(5751), + [anon_sym_BSLASHacp] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5751), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5751), + [anon_sym_BSLASHcolor] = ACTIONS(5751), + [anon_sym_BSLASHcolorbox] = ACTIONS(5751), + [anon_sym_BSLASHtextcolor] = ACTIONS(5751), + [anon_sym_BSLASHpagecolor] = ACTIONS(5751), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5751), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5751), + [anon_sym_BSLASHtext] = ACTIONS(5751), + [anon_sym_BSLASHintertext] = ACTIONS(5751), + [anon_sym_shortintertext] = ACTIONS(5751), + }, + [821] = { + [sym_curly_group] = STATE(1360), + [sym_command_name] = ACTIONS(5617), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_BSLASHpart] = ACTIONS(5617), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddpart] = ACTIONS(5617), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHchapter] = ACTIONS(5617), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddchap] = ACTIONS(5617), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsection] = ACTIONS(5617), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddsec] = ACTIONS(5617), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHparagraph] = ACTIONS(5617), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHitem] = ACTIONS(5617), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5617), + [sym_placeholder] = ACTIONS(5615), + [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5617), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LT] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_BANG] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_SQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5615), + [anon_sym_DOLLAR] = ACTIONS(5617), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), + [anon_sym_BSLASHbegin] = ACTIONS(5617), + [anon_sym_BSLASHtitle] = ACTIONS(5617), + [anon_sym_BSLASHauthor] = ACTIONS(5617), + [anon_sym_BSLASHusepackage] = ACTIONS(5617), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), + [anon_sym_BSLASHinclude] = ACTIONS(5617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), + [anon_sym_BSLASHinput] = ACTIONS(5617), + [anon_sym_BSLASHsubfile] = ACTIONS(5617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), + [anon_sym_BSLASHbibliography] = ACTIONS(5617), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), + [anon_sym_BSLASHincludesvg] = ACTIONS(5617), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), + [anon_sym_BSLASHimport] = ACTIONS(5617), + [anon_sym_BSLASHsubimport] = ACTIONS(5617), + [anon_sym_BSLASHinputfrom] = ACTIONS(5617), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), + [anon_sym_BSLASHincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHcaption] = ACTIONS(5617), + [anon_sym_BSLASHcite] = ACTIONS(5617), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCite] = ACTIONS(5617), + [anon_sym_BSLASHnocite] = ACTIONS(5617), + [anon_sym_BSLASHcitet] = ACTIONS(5617), + [anon_sym_BSLASHcitep] = ACTIONS(5617), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteauthor] = ACTIONS(5617), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitetitle] = ACTIONS(5617), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteyear] = ACTIONS(5617), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitedate] = ACTIONS(5617), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteurl] = ACTIONS(5617), + [anon_sym_BSLASHfullcite] = ACTIONS(5617), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), + [anon_sym_BSLASHcitealt] = ACTIONS(5617), + [anon_sym_BSLASHcitealp] = ACTIONS(5617), + [anon_sym_BSLASHcitetext] = ACTIONS(5617), + [anon_sym_BSLASHparencite] = ACTIONS(5617), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHParencite] = ACTIONS(5617), + [anon_sym_BSLASHfootcite] = ACTIONS(5617), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), + [anon_sym_BSLASHtextcite] = ACTIONS(5617), + [anon_sym_BSLASHTextcite] = ACTIONS(5617), + [anon_sym_BSLASHsmartcite] = ACTIONS(5617), + [anon_sym_BSLASHSmartcite] = ACTIONS(5617), + [anon_sym_BSLASHsupercite] = ACTIONS(5617), + [anon_sym_BSLASHautocite] = ACTIONS(5617), + [anon_sym_BSLASHAutocite] = ACTIONS(5617), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHvolcite] = ACTIONS(5617), + [anon_sym_BSLASHVolcite] = ACTIONS(5617), + [anon_sym_BSLASHpvolcite] = ACTIONS(5617), + [anon_sym_BSLASHPvolcite] = ACTIONS(5617), + [anon_sym_BSLASHfvolcite] = ACTIONS(5617), + [anon_sym_BSLASHftvolcite] = ACTIONS(5617), + [anon_sym_BSLASHsvolcite] = ACTIONS(5617), + [anon_sym_BSLASHSvolcite] = ACTIONS(5617), + [anon_sym_BSLASHtvolcite] = ACTIONS(5617), + [anon_sym_BSLASHTvolcite] = ACTIONS(5617), + [anon_sym_BSLASHavolcite] = ACTIONS(5617), + [anon_sym_BSLASHAvolcite] = ACTIONS(5617), + [anon_sym_BSLASHnotecite] = ACTIONS(5617), + [anon_sym_BSLASHNotecite] = ACTIONS(5617), + [anon_sym_BSLASHpnotecite] = ACTIONS(5617), + [anon_sym_BSLASHPnotecite] = ACTIONS(5617), + [anon_sym_BSLASHfnotecite] = ACTIONS(5617), + [anon_sym_BSLASHlabel] = ACTIONS(5617), + [anon_sym_BSLASHref] = ACTIONS(5617), + [anon_sym_BSLASHeqref] = ACTIONS(5617), + [anon_sym_BSLASHvref] = ACTIONS(5617), + [anon_sym_BSLASHVref] = ACTIONS(5617), + [anon_sym_BSLASHautoref] = ACTIONS(5617), + [anon_sym_BSLASHpageref] = ACTIONS(5617), + [anon_sym_BSLASHcref] = ACTIONS(5617), + [anon_sym_BSLASHCref] = ACTIONS(5617), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnameCref] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHlabelcref] = ACTIONS(5617), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCrefrange] = ACTIONS(5617), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnewlabel] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdef] = ACTIONS(5617), + [anon_sym_BSLASHlet] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), + [anon_sym_BSLASHgls] = ACTIONS(5617), + [anon_sym_BSLASHGls] = ACTIONS(5617), + [anon_sym_BSLASHGLS] = ACTIONS(5617), + [anon_sym_BSLASHglspl] = ACTIONS(5617), + [anon_sym_BSLASHGlspl] = ACTIONS(5617), + [anon_sym_BSLASHGLSpl] = ACTIONS(5617), + [anon_sym_BSLASHglsdisp] = ACTIONS(5617), + [anon_sym_BSLASHglslink] = ACTIONS(5617), + [anon_sym_BSLASHglstext] = ACTIONS(5617), + [anon_sym_BSLASHGlstext] = ACTIONS(5617), + [anon_sym_BSLASHGLStext] = ACTIONS(5617), + [anon_sym_BSLASHglsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), + [anon_sym_BSLASHglsplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSplural] = ACTIONS(5617), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHglsname] = ACTIONS(5617), + [anon_sym_BSLASHGlsname] = ACTIONS(5617), + [anon_sym_BSLASHGLSname] = ACTIONS(5617), + [anon_sym_BSLASHglssymbol] = ACTIONS(5617), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), + [anon_sym_BSLASHglsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), + [anon_sym_BSLASHglsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), + [anon_sym_BSLASHglsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), + [anon_sym_BSLASHglsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), + [anon_sym_BSLASHglsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), + [anon_sym_BSLASHnewacronym] = ACTIONS(5617), + [anon_sym_BSLASHacrshort] = ACTIONS(5617), + [anon_sym_BSLASHAcrshort] = ACTIONS(5617), + [anon_sym_BSLASHACRshort] = ACTIONS(5617), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), + [anon_sym_BSLASHacrlong] = ACTIONS(5617), + [anon_sym_BSLASHAcrlong] = ACTIONS(5617), + [anon_sym_BSLASHACRlong] = ACTIONS(5617), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), + [anon_sym_BSLASHacrfull] = ACTIONS(5617), + [anon_sym_BSLASHAcrfull] = ACTIONS(5617), + [anon_sym_BSLASHACRfull] = ACTIONS(5617), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), + [anon_sym_BSLASHacs] = ACTIONS(5617), + [anon_sym_BSLASHAcs] = ACTIONS(5617), + [anon_sym_BSLASHacsp] = ACTIONS(5617), + [anon_sym_BSLASHAcsp] = ACTIONS(5617), + [anon_sym_BSLASHacl] = ACTIONS(5617), + [anon_sym_BSLASHAcl] = ACTIONS(5617), + [anon_sym_BSLASHaclp] = ACTIONS(5617), + [anon_sym_BSLASHAclp] = ACTIONS(5617), + [anon_sym_BSLASHacf] = ACTIONS(5617), + [anon_sym_BSLASHAcf] = ACTIONS(5617), + [anon_sym_BSLASHacfp] = ACTIONS(5617), + [anon_sym_BSLASHAcfp] = ACTIONS(5617), + [anon_sym_BSLASHac] = ACTIONS(5617), + [anon_sym_BSLASHAc] = ACTIONS(5617), + [anon_sym_BSLASHacp] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), + [anon_sym_BSLASHcolor] = ACTIONS(5617), + [anon_sym_BSLASHcolorbox] = ACTIONS(5617), + [anon_sym_BSLASHtextcolor] = ACTIONS(5617), + [anon_sym_BSLASHpagecolor] = ACTIONS(5617), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), + [anon_sym_BSLASHtext] = ACTIONS(5617), + [anon_sym_BSLASHintertext] = ACTIONS(5617), + [anon_sym_shortintertext] = ACTIONS(5617), + }, + [822] = { + [sym_curly_group] = STATE(1359), + [sym_command_name] = ACTIONS(5613), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5613), + [anon_sym_LPAREN] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_BSLASHpart] = ACTIONS(5613), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddpart] = ACTIONS(5613), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHchapter] = ACTIONS(5613), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddchap] = ACTIONS(5613), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsection] = ACTIONS(5613), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddsec] = ACTIONS(5613), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHparagraph] = ACTIONS(5613), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHitem] = ACTIONS(5613), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5613), + [sym_placeholder] = ACTIONS(5611), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym__] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_BANG] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_SQUOTE] = ACTIONS(5613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5611), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5611), + [anon_sym_DOLLAR] = ACTIONS(5613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5611), + [anon_sym_BSLASHbegin] = ACTIONS(5613), + [anon_sym_BSLASHtitle] = ACTIONS(5613), + [anon_sym_BSLASHauthor] = ACTIONS(5613), + [anon_sym_BSLASHusepackage] = ACTIONS(5613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), + [anon_sym_BSLASHinclude] = ACTIONS(5613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), + [anon_sym_BSLASHinput] = ACTIONS(5613), + [anon_sym_BSLASHsubfile] = ACTIONS(5613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), + [anon_sym_BSLASHbibliography] = ACTIONS(5613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), + [anon_sym_BSLASHincludesvg] = ACTIONS(5613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), + [anon_sym_BSLASHimport] = ACTIONS(5613), + [anon_sym_BSLASHsubimport] = ACTIONS(5613), + [anon_sym_BSLASHinputfrom] = ACTIONS(5613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), + [anon_sym_BSLASHincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHcaption] = ACTIONS(5613), + [anon_sym_BSLASHcite] = ACTIONS(5613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCite] = ACTIONS(5613), + [anon_sym_BSLASHnocite] = ACTIONS(5613), + [anon_sym_BSLASHcitet] = ACTIONS(5613), + [anon_sym_BSLASHcitep] = ACTIONS(5613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteauthor] = ACTIONS(5613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitetitle] = ACTIONS(5613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteyear] = ACTIONS(5613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitedate] = ACTIONS(5613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteurl] = ACTIONS(5613), + [anon_sym_BSLASHfullcite] = ACTIONS(5613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), + [anon_sym_BSLASHcitealt] = ACTIONS(5613), + [anon_sym_BSLASHcitealp] = ACTIONS(5613), + [anon_sym_BSLASHcitetext] = ACTIONS(5613), + [anon_sym_BSLASHparencite] = ACTIONS(5613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHParencite] = ACTIONS(5613), + [anon_sym_BSLASHfootcite] = ACTIONS(5613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), + [anon_sym_BSLASHtextcite] = ACTIONS(5613), + [anon_sym_BSLASHTextcite] = ACTIONS(5613), + [anon_sym_BSLASHsmartcite] = ACTIONS(5613), + [anon_sym_BSLASHSmartcite] = ACTIONS(5613), + [anon_sym_BSLASHsupercite] = ACTIONS(5613), + [anon_sym_BSLASHautocite] = ACTIONS(5613), + [anon_sym_BSLASHAutocite] = ACTIONS(5613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHvolcite] = ACTIONS(5613), + [anon_sym_BSLASHVolcite] = ACTIONS(5613), + [anon_sym_BSLASHpvolcite] = ACTIONS(5613), + [anon_sym_BSLASHPvolcite] = ACTIONS(5613), + [anon_sym_BSLASHfvolcite] = ACTIONS(5613), + [anon_sym_BSLASHftvolcite] = ACTIONS(5613), + [anon_sym_BSLASHsvolcite] = ACTIONS(5613), + [anon_sym_BSLASHSvolcite] = ACTIONS(5613), + [anon_sym_BSLASHtvolcite] = ACTIONS(5613), + [anon_sym_BSLASHTvolcite] = ACTIONS(5613), + [anon_sym_BSLASHavolcite] = ACTIONS(5613), + [anon_sym_BSLASHAvolcite] = ACTIONS(5613), + [anon_sym_BSLASHnotecite] = ACTIONS(5613), + [anon_sym_BSLASHNotecite] = ACTIONS(5613), + [anon_sym_BSLASHpnotecite] = ACTIONS(5613), + [anon_sym_BSLASHPnotecite] = ACTIONS(5613), + [anon_sym_BSLASHfnotecite] = ACTIONS(5613), + [anon_sym_BSLASHlabel] = ACTIONS(5613), + [anon_sym_BSLASHref] = ACTIONS(5613), + [anon_sym_BSLASHeqref] = ACTIONS(5613), + [anon_sym_BSLASHvref] = ACTIONS(5613), + [anon_sym_BSLASHVref] = ACTIONS(5613), + [anon_sym_BSLASHautoref] = ACTIONS(5613), + [anon_sym_BSLASHpageref] = ACTIONS(5613), + [anon_sym_BSLASHcref] = ACTIONS(5613), + [anon_sym_BSLASHCref] = ACTIONS(5613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnameCref] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHlabelcref] = ACTIONS(5613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCrefrange] = ACTIONS(5613), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnewlabel] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdef] = ACTIONS(5613), + [anon_sym_BSLASHlet] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), + [anon_sym_BSLASHgls] = ACTIONS(5613), + [anon_sym_BSLASHGls] = ACTIONS(5613), + [anon_sym_BSLASHGLS] = ACTIONS(5613), + [anon_sym_BSLASHglspl] = ACTIONS(5613), + [anon_sym_BSLASHGlspl] = ACTIONS(5613), + [anon_sym_BSLASHGLSpl] = ACTIONS(5613), + [anon_sym_BSLASHglsdisp] = ACTIONS(5613), + [anon_sym_BSLASHglslink] = ACTIONS(5613), + [anon_sym_BSLASHglstext] = ACTIONS(5613), + [anon_sym_BSLASHGlstext] = ACTIONS(5613), + [anon_sym_BSLASHGLStext] = ACTIONS(5613), + [anon_sym_BSLASHglsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), + [anon_sym_BSLASHglsplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSplural] = ACTIONS(5613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHglsname] = ACTIONS(5613), + [anon_sym_BSLASHGlsname] = ACTIONS(5613), + [anon_sym_BSLASHGLSname] = ACTIONS(5613), + [anon_sym_BSLASHglssymbol] = ACTIONS(5613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), + [anon_sym_BSLASHglsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), + [anon_sym_BSLASHglsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), + [anon_sym_BSLASHglsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), + [anon_sym_BSLASHglsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), + [anon_sym_BSLASHglsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), + [anon_sym_BSLASHnewacronym] = ACTIONS(5613), + [anon_sym_BSLASHacrshort] = ACTIONS(5613), + [anon_sym_BSLASHAcrshort] = ACTIONS(5613), + [anon_sym_BSLASHACRshort] = ACTIONS(5613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), + [anon_sym_BSLASHacrlong] = ACTIONS(5613), + [anon_sym_BSLASHAcrlong] = ACTIONS(5613), + [anon_sym_BSLASHACRlong] = ACTIONS(5613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), + [anon_sym_BSLASHacrfull] = ACTIONS(5613), + [anon_sym_BSLASHAcrfull] = ACTIONS(5613), + [anon_sym_BSLASHACRfull] = ACTIONS(5613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), + [anon_sym_BSLASHacs] = ACTIONS(5613), + [anon_sym_BSLASHAcs] = ACTIONS(5613), + [anon_sym_BSLASHacsp] = ACTIONS(5613), + [anon_sym_BSLASHAcsp] = ACTIONS(5613), + [anon_sym_BSLASHacl] = ACTIONS(5613), + [anon_sym_BSLASHAcl] = ACTIONS(5613), + [anon_sym_BSLASHaclp] = ACTIONS(5613), + [anon_sym_BSLASHAclp] = ACTIONS(5613), + [anon_sym_BSLASHacf] = ACTIONS(5613), + [anon_sym_BSLASHAcf] = ACTIONS(5613), + [anon_sym_BSLASHacfp] = ACTIONS(5613), + [anon_sym_BSLASHAcfp] = ACTIONS(5613), + [anon_sym_BSLASHac] = ACTIONS(5613), + [anon_sym_BSLASHAc] = ACTIONS(5613), + [anon_sym_BSLASHacp] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), + [anon_sym_BSLASHcolor] = ACTIONS(5613), + [anon_sym_BSLASHcolorbox] = ACTIONS(5613), + [anon_sym_BSLASHtextcolor] = ACTIONS(5613), + [anon_sym_BSLASHpagecolor] = ACTIONS(5613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), + [anon_sym_BSLASHtext] = ACTIONS(5613), + [anon_sym_BSLASHintertext] = ACTIONS(5613), + [anon_sym_shortintertext] = ACTIONS(5613), }, - [1374] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), + [823] = { + [sym_curly_group] = STATE(1357), + [sym_command_name] = ACTIONS(5605), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_BSLASHpart] = ACTIONS(5605), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddpart] = ACTIONS(5605), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHchapter] = ACTIONS(5605), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddchap] = ACTIONS(5605), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsection] = ACTIONS(5605), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddsec] = ACTIONS(5605), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHparagraph] = ACTIONS(5605), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5605), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHitem] = ACTIONS(5605), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(723), + [sym_word] = ACTIONS(5605), + [sym_placeholder] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_SLASH] = ACTIONS(5605), + [anon_sym_CARET] = ACTIONS(5605), + [anon_sym__] = ACTIONS(5605), + [anon_sym_LT] = ACTIONS(5605), + [anon_sym_GT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5605), + [anon_sym_PIPE] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_SQUOTE] = ACTIONS(5605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5603), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5603), + [anon_sym_DOLLAR] = ACTIONS(5605), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5603), + [anon_sym_BSLASHbegin] = ACTIONS(5605), + [anon_sym_BSLASHtitle] = ACTIONS(5605), + [anon_sym_BSLASHauthor] = ACTIONS(5605), + [anon_sym_BSLASHusepackage] = ACTIONS(5605), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5605), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5605), + [anon_sym_BSLASHinclude] = ACTIONS(5605), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5605), + [anon_sym_BSLASHinput] = ACTIONS(5605), + [anon_sym_BSLASHsubfile] = ACTIONS(5605), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5605), + [anon_sym_BSLASHbibliography] = ACTIONS(5605), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5605), + [anon_sym_BSLASHincludesvg] = ACTIONS(5605), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5605), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5605), + [anon_sym_BSLASHimport] = ACTIONS(5605), + [anon_sym_BSLASHsubimport] = ACTIONS(5605), + [anon_sym_BSLASHinputfrom] = ACTIONS(5605), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5605), + [anon_sym_BSLASHincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHcaption] = ACTIONS(5605), + [anon_sym_BSLASHcite] = ACTIONS(5605), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCite] = ACTIONS(5605), + [anon_sym_BSLASHnocite] = ACTIONS(5605), + [anon_sym_BSLASHcitet] = ACTIONS(5605), + [anon_sym_BSLASHcitep] = ACTIONS(5605), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteauthor] = ACTIONS(5605), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5605), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitetitle] = ACTIONS(5605), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteyear] = ACTIONS(5605), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitedate] = ACTIONS(5605), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteurl] = ACTIONS(5605), + [anon_sym_BSLASHfullcite] = ACTIONS(5605), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5605), + [anon_sym_BSLASHcitealt] = ACTIONS(5605), + [anon_sym_BSLASHcitealp] = ACTIONS(5605), + [anon_sym_BSLASHcitetext] = ACTIONS(5605), + [anon_sym_BSLASHparencite] = ACTIONS(5605), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHParencite] = ACTIONS(5605), + [anon_sym_BSLASHfootcite] = ACTIONS(5605), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5605), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5605), + [anon_sym_BSLASHtextcite] = ACTIONS(5605), + [anon_sym_BSLASHTextcite] = ACTIONS(5605), + [anon_sym_BSLASHsmartcite] = ACTIONS(5605), + [anon_sym_BSLASHSmartcite] = ACTIONS(5605), + [anon_sym_BSLASHsupercite] = ACTIONS(5605), + [anon_sym_BSLASHautocite] = ACTIONS(5605), + [anon_sym_BSLASHAutocite] = ACTIONS(5605), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHvolcite] = ACTIONS(5605), + [anon_sym_BSLASHVolcite] = ACTIONS(5605), + [anon_sym_BSLASHpvolcite] = ACTIONS(5605), + [anon_sym_BSLASHPvolcite] = ACTIONS(5605), + [anon_sym_BSLASHfvolcite] = ACTIONS(5605), + [anon_sym_BSLASHftvolcite] = ACTIONS(5605), + [anon_sym_BSLASHsvolcite] = ACTIONS(5605), + [anon_sym_BSLASHSvolcite] = ACTIONS(5605), + [anon_sym_BSLASHtvolcite] = ACTIONS(5605), + [anon_sym_BSLASHTvolcite] = ACTIONS(5605), + [anon_sym_BSLASHavolcite] = ACTIONS(5605), + [anon_sym_BSLASHAvolcite] = ACTIONS(5605), + [anon_sym_BSLASHnotecite] = ACTIONS(5605), + [anon_sym_BSLASHNotecite] = ACTIONS(5605), + [anon_sym_BSLASHpnotecite] = ACTIONS(5605), + [anon_sym_BSLASHPnotecite] = ACTIONS(5605), + [anon_sym_BSLASHfnotecite] = ACTIONS(5605), + [anon_sym_BSLASHlabel] = ACTIONS(5605), + [anon_sym_BSLASHref] = ACTIONS(5605), + [anon_sym_BSLASHeqref] = ACTIONS(5605), + [anon_sym_BSLASHvref] = ACTIONS(5605), + [anon_sym_BSLASHVref] = ACTIONS(5605), + [anon_sym_BSLASHautoref] = ACTIONS(5605), + [anon_sym_BSLASHpageref] = ACTIONS(5605), + [anon_sym_BSLASHcref] = ACTIONS(5605), + [anon_sym_BSLASHCref] = ACTIONS(5605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnameCref] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHlabelcref] = ACTIONS(5605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCrefrange] = ACTIONS(5605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnewlabel] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5605), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5605), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5605), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdef] = ACTIONS(5605), + [anon_sym_BSLASHlet] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5605), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5605), + [anon_sym_BSLASHgls] = ACTIONS(5605), + [anon_sym_BSLASHGls] = ACTIONS(5605), + [anon_sym_BSLASHGLS] = ACTIONS(5605), + [anon_sym_BSLASHglspl] = ACTIONS(5605), + [anon_sym_BSLASHGlspl] = ACTIONS(5605), + [anon_sym_BSLASHGLSpl] = ACTIONS(5605), + [anon_sym_BSLASHglsdisp] = ACTIONS(5605), + [anon_sym_BSLASHglslink] = ACTIONS(5605), + [anon_sym_BSLASHglstext] = ACTIONS(5605), + [anon_sym_BSLASHGlstext] = ACTIONS(5605), + [anon_sym_BSLASHGLStext] = ACTIONS(5605), + [anon_sym_BSLASHglsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5605), + [anon_sym_BSLASHglsplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSplural] = ACTIONS(5605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHglsname] = ACTIONS(5605), + [anon_sym_BSLASHGlsname] = ACTIONS(5605), + [anon_sym_BSLASHGLSname] = ACTIONS(5605), + [anon_sym_BSLASHglssymbol] = ACTIONS(5605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5605), + [anon_sym_BSLASHglsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5605), + [anon_sym_BSLASHglsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5605), + [anon_sym_BSLASHglsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5605), + [anon_sym_BSLASHglsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5605), + [anon_sym_BSLASHglsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5605), + [anon_sym_BSLASHacrshort] = ACTIONS(5605), + [anon_sym_BSLASHAcrshort] = ACTIONS(5605), + [anon_sym_BSLASHACRshort] = ACTIONS(5605), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5605), + [anon_sym_BSLASHacrlong] = ACTIONS(5605), + [anon_sym_BSLASHAcrlong] = ACTIONS(5605), + [anon_sym_BSLASHACRlong] = ACTIONS(5605), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5605), + [anon_sym_BSLASHacrfull] = ACTIONS(5605), + [anon_sym_BSLASHAcrfull] = ACTIONS(5605), + [anon_sym_BSLASHACRfull] = ACTIONS(5605), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5605), + [anon_sym_BSLASHacs] = ACTIONS(5605), + [anon_sym_BSLASHAcs] = ACTIONS(5605), + [anon_sym_BSLASHacsp] = ACTIONS(5605), + [anon_sym_BSLASHAcsp] = ACTIONS(5605), + [anon_sym_BSLASHacl] = ACTIONS(5605), + [anon_sym_BSLASHAcl] = ACTIONS(5605), + [anon_sym_BSLASHaclp] = ACTIONS(5605), + [anon_sym_BSLASHAclp] = ACTIONS(5605), + [anon_sym_BSLASHacf] = ACTIONS(5605), + [anon_sym_BSLASHAcf] = ACTIONS(5605), + [anon_sym_BSLASHacfp] = ACTIONS(5605), + [anon_sym_BSLASHAcfp] = ACTIONS(5605), + [anon_sym_BSLASHac] = ACTIONS(5605), + [anon_sym_BSLASHAc] = ACTIONS(5605), + [anon_sym_BSLASHacp] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5605), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5605), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5605), + [anon_sym_BSLASHcolor] = ACTIONS(5605), + [anon_sym_BSLASHcolorbox] = ACTIONS(5605), + [anon_sym_BSLASHtextcolor] = ACTIONS(5605), + [anon_sym_BSLASHpagecolor] = ACTIONS(5605), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5605), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5605), + [anon_sym_BSLASHtext] = ACTIONS(5605), + [anon_sym_BSLASHintertext] = ACTIONS(5605), + [anon_sym_shortintertext] = ACTIONS(5605), }, - [1375] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHbegin] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), + [824] = { + [ts_builtin_sym_end] = ACTIONS(6071), + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_BSLASHpart] = ACTIONS(6073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddpart] = ACTIONS(6073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHchapter] = ACTIONS(6073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddchap] = ACTIONS(6073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsection] = ACTIONS(6073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddsec] = ACTIONS(6073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHparagraph] = ACTIONS(6073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHitem] = ACTIONS(6073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), }, - [1376] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHbegin] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), + [825] = { + [ts_builtin_sym_end] = ACTIONS(6075), + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_BSLASHpart] = ACTIONS(6077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddpart] = ACTIONS(6077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHchapter] = ACTIONS(6077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddchap] = ACTIONS(6077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsection] = ACTIONS(6077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddsec] = ACTIONS(6077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHparagraph] = ACTIONS(6077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHitem] = ACTIONS(6077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), }, - [1377] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), + [826] = { + [ts_builtin_sym_end] = ACTIONS(6079), + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_BSLASHpart] = ACTIONS(6081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddpart] = ACTIONS(6081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHchapter] = ACTIONS(6081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddchap] = ACTIONS(6081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsection] = ACTIONS(6081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddsec] = ACTIONS(6081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHparagraph] = ACTIONS(6081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHitem] = ACTIONS(6081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [anon_sym_RBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), }, - [1378] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), + [827] = { + [ts_builtin_sym_end] = ACTIONS(6083), + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_BSLASHpart] = ACTIONS(6085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddpart] = ACTIONS(6085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHchapter] = ACTIONS(6085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddchap] = ACTIONS(6085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsection] = ACTIONS(6085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddsec] = ACTIONS(6085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHparagraph] = ACTIONS(6085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHitem] = ACTIONS(6085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [anon_sym_RBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), }, - [1379] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), + [828] = { + [ts_builtin_sym_end] = ACTIONS(6087), + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_BSLASHpart] = ACTIONS(6089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddpart] = ACTIONS(6089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHchapter] = ACTIONS(6089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddchap] = ACTIONS(6089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsection] = ACTIONS(6089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddsec] = ACTIONS(6089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHparagraph] = ACTIONS(6089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHitem] = ACTIONS(6089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [anon_sym_RBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), }, - [1380] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), + [829] = { + [ts_builtin_sym_end] = ACTIONS(6091), + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_BSLASHpart] = ACTIONS(6093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddpart] = ACTIONS(6093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHchapter] = ACTIONS(6093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddchap] = ACTIONS(6093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsection] = ACTIONS(6093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddsec] = ACTIONS(6093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHparagraph] = ACTIONS(6093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHitem] = ACTIONS(6093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [anon_sym_RBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), }, - [1381] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), + [830] = { + [ts_builtin_sym_end] = ACTIONS(6095), + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_BSLASHpart] = ACTIONS(6097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddpart] = ACTIONS(6097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHchapter] = ACTIONS(6097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddchap] = ACTIONS(6097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsection] = ACTIONS(6097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddsec] = ACTIONS(6097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHparagraph] = ACTIONS(6097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHitem] = ACTIONS(6097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [anon_sym_RBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), }, - [1382] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), + [831] = { + [ts_builtin_sym_end] = ACTIONS(6099), + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_BSLASHpart] = ACTIONS(6101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddpart] = ACTIONS(6101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHchapter] = ACTIONS(6101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddchap] = ACTIONS(6101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsection] = ACTIONS(6101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddsec] = ACTIONS(6101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHparagraph] = ACTIONS(6101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHitem] = ACTIONS(6101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [anon_sym_RBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), }, - [1383] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), + [832] = { + [ts_builtin_sym_end] = ACTIONS(6103), + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_BSLASHpart] = ACTIONS(6105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddpart] = ACTIONS(6105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHchapter] = ACTIONS(6105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddchap] = ACTIONS(6105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsection] = ACTIONS(6105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddsec] = ACTIONS(6105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHparagraph] = ACTIONS(6105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHitem] = ACTIONS(6105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [anon_sym_RBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), }, - [1384] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), + [833] = { + [ts_builtin_sym_end] = ACTIONS(6107), + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_BSLASHpart] = ACTIONS(6109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddpart] = ACTIONS(6109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHchapter] = ACTIONS(6109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddchap] = ACTIONS(6109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsection] = ACTIONS(6109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddsec] = ACTIONS(6109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHparagraph] = ACTIONS(6109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHitem] = ACTIONS(6109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [anon_sym_RBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), }, - [1385] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - [anon_sym_BSLASHtext] = ACTIONS(5053), - [anon_sym_BSLASHintertext] = ACTIONS(5053), - [anon_sym_shortintertext] = ACTIONS(5053), + [834] = { + [ts_builtin_sym_end] = ACTIONS(6111), + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_BSLASHpart] = ACTIONS(6113), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddpart] = ACTIONS(6113), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHchapter] = ACTIONS(6113), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddchap] = ACTIONS(6113), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsection] = ACTIONS(6113), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddsec] = ACTIONS(6113), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHparagraph] = ACTIONS(6113), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHitem] = ACTIONS(6113), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [anon_sym_RBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), }, - [1386] = { - [sym_command_name] = ACTIONS(5249), + [835] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(1996), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5247), - [anon_sym_COMMA] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [sym_word] = ACTIONS(5249), - [sym_placeholder] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5249), - [anon_sym_STAR] = ACTIONS(5249), - [anon_sym_SLASH] = ACTIONS(5249), - [anon_sym_CARET] = ACTIONS(5249), - [anon_sym__] = ACTIONS(5249), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5249), - [anon_sym_PIPE] = ACTIONS(5249), - [anon_sym_COLON] = ACTIONS(5249), - [anon_sym_SQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), - [anon_sym_BSLASHbegin] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), - [anon_sym_BSLASHinclude] = ACTIONS(5249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), - [anon_sym_BSLASHinput] = ACTIONS(5249), - [anon_sym_BSLASHsubfile] = ACTIONS(5249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), - [anon_sym_BSLASHbibliography] = ACTIONS(5249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), - [anon_sym_BSLASHincludesvg] = ACTIONS(5249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), - [anon_sym_BSLASHimport] = ACTIONS(5249), - [anon_sym_BSLASHsubimport] = ACTIONS(5249), - [anon_sym_BSLASHinputfrom] = ACTIONS(5249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), - [anon_sym_BSLASHincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [anon_sym_BSLASHcite] = ACTIONS(5249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCite] = ACTIONS(5249), - [anon_sym_BSLASHnocite] = ACTIONS(5249), - [anon_sym_BSLASHcitet] = ACTIONS(5249), - [anon_sym_BSLASHcitep] = ACTIONS(5249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteyear] = ACTIONS(5249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), - [anon_sym_BSLASHcitedate] = ACTIONS(5249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), - [anon_sym_BSLASHciteurl] = ACTIONS(5249), - [anon_sym_BSLASHfullcite] = ACTIONS(5249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), - [anon_sym_BSLASHcitealt] = ACTIONS(5249), - [anon_sym_BSLASHcitealp] = ACTIONS(5249), - [anon_sym_BSLASHcitetext] = ACTIONS(5249), - [anon_sym_BSLASHparencite] = ACTIONS(5249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHParencite] = ACTIONS(5249), - [anon_sym_BSLASHfootcite] = ACTIONS(5249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), - [anon_sym_BSLASHtextcite] = ACTIONS(5249), - [anon_sym_BSLASHTextcite] = ACTIONS(5249), - [anon_sym_BSLASHsmartcite] = ACTIONS(5249), - [anon_sym_BSLASHSmartcite] = ACTIONS(5249), - [anon_sym_BSLASHsupercite] = ACTIONS(5249), - [anon_sym_BSLASHautocite] = ACTIONS(5249), - [anon_sym_BSLASHAutocite] = ACTIONS(5249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), - [anon_sym_BSLASHvolcite] = ACTIONS(5249), - [anon_sym_BSLASHVolcite] = ACTIONS(5249), - [anon_sym_BSLASHpvolcite] = ACTIONS(5249), - [anon_sym_BSLASHPvolcite] = ACTIONS(5249), - [anon_sym_BSLASHfvolcite] = ACTIONS(5249), - [anon_sym_BSLASHftvolcite] = ACTIONS(5249), - [anon_sym_BSLASHsvolcite] = ACTIONS(5249), - [anon_sym_BSLASHSvolcite] = ACTIONS(5249), - [anon_sym_BSLASHtvolcite] = ACTIONS(5249), - [anon_sym_BSLASHTvolcite] = ACTIONS(5249), - [anon_sym_BSLASHavolcite] = ACTIONS(5249), - [anon_sym_BSLASHAvolcite] = ACTIONS(5249), - [anon_sym_BSLASHnotecite] = ACTIONS(5249), - [anon_sym_BSLASHNotecite] = ACTIONS(5249), - [anon_sym_BSLASHpnotecite] = ACTIONS(5249), - [anon_sym_BSLASHPnotecite] = ACTIONS(5249), - [anon_sym_BSLASHfnotecite] = ACTIONS(5249), - [anon_sym_BSLASHlabel] = ACTIONS(5249), - [anon_sym_BSLASHref] = ACTIONS(5249), - [anon_sym_BSLASHeqref] = ACTIONS(5249), - [anon_sym_BSLASHvref] = ACTIONS(5249), - [anon_sym_BSLASHVref] = ACTIONS(5249), - [anon_sym_BSLASHautoref] = ACTIONS(5249), - [anon_sym_BSLASHpageref] = ACTIONS(5249), - [anon_sym_BSLASHcref] = ACTIONS(5249), - [anon_sym_BSLASHCref] = ACTIONS(5249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnameCref] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), - [anon_sym_BSLASHlabelcref] = ACTIONS(5249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange] = ACTIONS(5249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), - [anon_sym_BSLASHnewlabel] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand] = ACTIONS(5249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdef] = ACTIONS(5249), - [anon_sym_BSLASHlet] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), - [anon_sym_BSLASHgls] = ACTIONS(5249), - [anon_sym_BSLASHGls] = ACTIONS(5249), - [anon_sym_BSLASHGLS] = ACTIONS(5249), - [anon_sym_BSLASHglspl] = ACTIONS(5249), - [anon_sym_BSLASHGlspl] = ACTIONS(5249), - [anon_sym_BSLASHGLSpl] = ACTIONS(5249), - [anon_sym_BSLASHglsdisp] = ACTIONS(5249), - [anon_sym_BSLASHglslink] = ACTIONS(5249), - [anon_sym_BSLASHglstext] = ACTIONS(5249), - [anon_sym_BSLASHGlstext] = ACTIONS(5249), - [anon_sym_BSLASHGLStext] = ACTIONS(5249), - [anon_sym_BSLASHglsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), - [anon_sym_BSLASHglsplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSplural] = ACTIONS(5249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), - [anon_sym_BSLASHglsname] = ACTIONS(5249), - [anon_sym_BSLASHGlsname] = ACTIONS(5249), - [anon_sym_BSLASHGLSname] = ACTIONS(5249), - [anon_sym_BSLASHglssymbol] = ACTIONS(5249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), - [anon_sym_BSLASHglsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), - [anon_sym_BSLASHglsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), - [anon_sym_BSLASHglsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), - [anon_sym_BSLASHglsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), - [anon_sym_BSLASHglsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), - [anon_sym_BSLASHnewacronym] = ACTIONS(5249), - [anon_sym_BSLASHacrshort] = ACTIONS(5249), - [anon_sym_BSLASHAcrshort] = ACTIONS(5249), - [anon_sym_BSLASHACRshort] = ACTIONS(5249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), - [anon_sym_BSLASHacrlong] = ACTIONS(5249), - [anon_sym_BSLASHAcrlong] = ACTIONS(5249), - [anon_sym_BSLASHACRlong] = ACTIONS(5249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), - [anon_sym_BSLASHacrfull] = ACTIONS(5249), - [anon_sym_BSLASHAcrfull] = ACTIONS(5249), - [anon_sym_BSLASHACRfull] = ACTIONS(5249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), - [anon_sym_BSLASHacs] = ACTIONS(5249), - [anon_sym_BSLASHAcs] = ACTIONS(5249), - [anon_sym_BSLASHacsp] = ACTIONS(5249), - [anon_sym_BSLASHAcsp] = ACTIONS(5249), - [anon_sym_BSLASHacl] = ACTIONS(5249), - [anon_sym_BSLASHAcl] = ACTIONS(5249), - [anon_sym_BSLASHaclp] = ACTIONS(5249), - [anon_sym_BSLASHAclp] = ACTIONS(5249), - [anon_sym_BSLASHacf] = ACTIONS(5249), - [anon_sym_BSLASHAcf] = ACTIONS(5249), - [anon_sym_BSLASHacfp] = ACTIONS(5249), - [anon_sym_BSLASHAcfp] = ACTIONS(5249), - [anon_sym_BSLASHac] = ACTIONS(5249), - [anon_sym_BSLASHAc] = ACTIONS(5249), - [anon_sym_BSLASHacp] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), - [anon_sym_BSLASHcolor] = ACTIONS(5249), - [anon_sym_BSLASHcolorbox] = ACTIONS(5249), - [anon_sym_BSLASHtextcolor] = ACTIONS(5249), - [anon_sym_BSLASHpagecolor] = ACTIONS(5249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), - [anon_sym_BSLASHtext] = ACTIONS(5249), - [anon_sym_BSLASHintertext] = ACTIONS(5249), - [anon_sym_shortintertext] = ACTIONS(5249), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6115), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1387] = { - [sym_command_name] = ACTIONS(5257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5255), - [sym_word] = ACTIONS(5257), - [sym_placeholder] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym__] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_BANG] = ACTIONS(5257), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_SQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), - [anon_sym_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), - [anon_sym_BSLASHbegin] = ACTIONS(5257), - [anon_sym_BSLASHusepackage] = ACTIONS(5257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), - [anon_sym_BSLASHinclude] = ACTIONS(5257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), - [anon_sym_BSLASHinput] = ACTIONS(5257), - [anon_sym_BSLASHsubfile] = ACTIONS(5257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), - [anon_sym_BSLASHbibliography] = ACTIONS(5257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), - [anon_sym_BSLASHincludesvg] = ACTIONS(5257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), - [anon_sym_BSLASHimport] = ACTIONS(5257), - [anon_sym_BSLASHsubimport] = ACTIONS(5257), - [anon_sym_BSLASHinputfrom] = ACTIONS(5257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), - [anon_sym_BSLASHincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), - [anon_sym_BSLASHcaption] = ACTIONS(5257), - [anon_sym_BSLASHcite] = ACTIONS(5257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCite] = ACTIONS(5257), - [anon_sym_BSLASHnocite] = ACTIONS(5257), - [anon_sym_BSLASHcitet] = ACTIONS(5257), - [anon_sym_BSLASHcitep] = ACTIONS(5257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteyear] = ACTIONS(5257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), - [anon_sym_BSLASHcitedate] = ACTIONS(5257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), - [anon_sym_BSLASHciteurl] = ACTIONS(5257), - [anon_sym_BSLASHfullcite] = ACTIONS(5257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), - [anon_sym_BSLASHcitealt] = ACTIONS(5257), - [anon_sym_BSLASHcitealp] = ACTIONS(5257), - [anon_sym_BSLASHcitetext] = ACTIONS(5257), - [anon_sym_BSLASHparencite] = ACTIONS(5257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHParencite] = ACTIONS(5257), - [anon_sym_BSLASHfootcite] = ACTIONS(5257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), - [anon_sym_BSLASHtextcite] = ACTIONS(5257), - [anon_sym_BSLASHTextcite] = ACTIONS(5257), - [anon_sym_BSLASHsmartcite] = ACTIONS(5257), - [anon_sym_BSLASHSmartcite] = ACTIONS(5257), - [anon_sym_BSLASHsupercite] = ACTIONS(5257), - [anon_sym_BSLASHautocite] = ACTIONS(5257), - [anon_sym_BSLASHAutocite] = ACTIONS(5257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), - [anon_sym_BSLASHvolcite] = ACTIONS(5257), - [anon_sym_BSLASHVolcite] = ACTIONS(5257), - [anon_sym_BSLASHpvolcite] = ACTIONS(5257), - [anon_sym_BSLASHPvolcite] = ACTIONS(5257), - [anon_sym_BSLASHfvolcite] = ACTIONS(5257), - [anon_sym_BSLASHftvolcite] = ACTIONS(5257), - [anon_sym_BSLASHsvolcite] = ACTIONS(5257), - [anon_sym_BSLASHSvolcite] = ACTIONS(5257), - [anon_sym_BSLASHtvolcite] = ACTIONS(5257), - [anon_sym_BSLASHTvolcite] = ACTIONS(5257), - [anon_sym_BSLASHavolcite] = ACTIONS(5257), - [anon_sym_BSLASHAvolcite] = ACTIONS(5257), - [anon_sym_BSLASHnotecite] = ACTIONS(5257), - [anon_sym_BSLASHNotecite] = ACTIONS(5257), - [anon_sym_BSLASHpnotecite] = ACTIONS(5257), - [anon_sym_BSLASHPnotecite] = ACTIONS(5257), - [anon_sym_BSLASHfnotecite] = ACTIONS(5257), - [anon_sym_BSLASHlabel] = ACTIONS(5257), - [anon_sym_BSLASHref] = ACTIONS(5257), - [anon_sym_BSLASHeqref] = ACTIONS(5257), - [anon_sym_BSLASHvref] = ACTIONS(5257), - [anon_sym_BSLASHVref] = ACTIONS(5257), - [anon_sym_BSLASHautoref] = ACTIONS(5257), - [anon_sym_BSLASHpageref] = ACTIONS(5257), - [anon_sym_BSLASHcref] = ACTIONS(5257), - [anon_sym_BSLASHCref] = ACTIONS(5257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnameCref] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), - [anon_sym_BSLASHlabelcref] = ACTIONS(5257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange] = ACTIONS(5257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), - [anon_sym_BSLASHnewlabel] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand] = ACTIONS(5257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdef] = ACTIONS(5257), - [anon_sym_BSLASHlet] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), - [anon_sym_BSLASHgls] = ACTIONS(5257), - [anon_sym_BSLASHGls] = ACTIONS(5257), - [anon_sym_BSLASHGLS] = ACTIONS(5257), - [anon_sym_BSLASHglspl] = ACTIONS(5257), - [anon_sym_BSLASHGlspl] = ACTIONS(5257), - [anon_sym_BSLASHGLSpl] = ACTIONS(5257), - [anon_sym_BSLASHglsdisp] = ACTIONS(5257), - [anon_sym_BSLASHglslink] = ACTIONS(5257), - [anon_sym_BSLASHglstext] = ACTIONS(5257), - [anon_sym_BSLASHGlstext] = ACTIONS(5257), - [anon_sym_BSLASHGLStext] = ACTIONS(5257), - [anon_sym_BSLASHglsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), - [anon_sym_BSLASHglsplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSplural] = ACTIONS(5257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), - [anon_sym_BSLASHglsname] = ACTIONS(5257), - [anon_sym_BSLASHGlsname] = ACTIONS(5257), - [anon_sym_BSLASHGLSname] = ACTIONS(5257), - [anon_sym_BSLASHglssymbol] = ACTIONS(5257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), - [anon_sym_BSLASHglsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), - [anon_sym_BSLASHglsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), - [anon_sym_BSLASHglsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), - [anon_sym_BSLASHglsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), - [anon_sym_BSLASHglsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), - [anon_sym_BSLASHnewacronym] = ACTIONS(5257), - [anon_sym_BSLASHacrshort] = ACTIONS(5257), - [anon_sym_BSLASHAcrshort] = ACTIONS(5257), - [anon_sym_BSLASHACRshort] = ACTIONS(5257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), - [anon_sym_BSLASHacrlong] = ACTIONS(5257), - [anon_sym_BSLASHAcrlong] = ACTIONS(5257), - [anon_sym_BSLASHACRlong] = ACTIONS(5257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), - [anon_sym_BSLASHacrfull] = ACTIONS(5257), - [anon_sym_BSLASHAcrfull] = ACTIONS(5257), - [anon_sym_BSLASHACRfull] = ACTIONS(5257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), - [anon_sym_BSLASHacs] = ACTIONS(5257), - [anon_sym_BSLASHAcs] = ACTIONS(5257), - [anon_sym_BSLASHacsp] = ACTIONS(5257), - [anon_sym_BSLASHAcsp] = ACTIONS(5257), - [anon_sym_BSLASHacl] = ACTIONS(5257), - [anon_sym_BSLASHAcl] = ACTIONS(5257), - [anon_sym_BSLASHaclp] = ACTIONS(5257), - [anon_sym_BSLASHAclp] = ACTIONS(5257), - [anon_sym_BSLASHacf] = ACTIONS(5257), - [anon_sym_BSLASHAcf] = ACTIONS(5257), - [anon_sym_BSLASHacfp] = ACTIONS(5257), - [anon_sym_BSLASHAcfp] = ACTIONS(5257), - [anon_sym_BSLASHac] = ACTIONS(5257), - [anon_sym_BSLASHAc] = ACTIONS(5257), - [anon_sym_BSLASHacp] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), - [anon_sym_BSLASHcolor] = ACTIONS(5257), - [anon_sym_BSLASHcolorbox] = ACTIONS(5257), - [anon_sym_BSLASHtextcolor] = ACTIONS(5257), - [anon_sym_BSLASHpagecolor] = ACTIONS(5257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), + [836] = { + [ts_builtin_sym_end] = ACTIONS(6117), + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_BSLASHpart] = ACTIONS(6119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddpart] = ACTIONS(6119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHchapter] = ACTIONS(6119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddchap] = ACTIONS(6119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsection] = ACTIONS(6119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddsec] = ACTIONS(6119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHparagraph] = ACTIONS(6119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHitem] = ACTIONS(6119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [anon_sym_RBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), }, - [1388] = { - [sym_command_name] = ACTIONS(5277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5275), - [anon_sym_COMMA] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5275), - [sym_word] = ACTIONS(5277), - [sym_placeholder] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_STAR] = ACTIONS(5277), - [anon_sym_SLASH] = ACTIONS(5277), - [anon_sym_CARET] = ACTIONS(5277), - [anon_sym__] = ACTIONS(5277), - [anon_sym_LT] = ACTIONS(5277), - [anon_sym_GT] = ACTIONS(5277), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_PIPE] = ACTIONS(5277), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), - [anon_sym_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), - [anon_sym_BSLASHbegin] = ACTIONS(5277), - [anon_sym_BSLASHusepackage] = ACTIONS(5277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), - [anon_sym_BSLASHinclude] = ACTIONS(5277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), - [anon_sym_BSLASHinput] = ACTIONS(5277), - [anon_sym_BSLASHsubfile] = ACTIONS(5277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), - [anon_sym_BSLASHbibliography] = ACTIONS(5277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), - [anon_sym_BSLASHincludesvg] = ACTIONS(5277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), - [anon_sym_BSLASHimport] = ACTIONS(5277), - [anon_sym_BSLASHsubimport] = ACTIONS(5277), - [anon_sym_BSLASHinputfrom] = ACTIONS(5277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), - [anon_sym_BSLASHincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), - [anon_sym_BSLASHcaption] = ACTIONS(5277), - [anon_sym_BSLASHcite] = ACTIONS(5277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCite] = ACTIONS(5277), - [anon_sym_BSLASHnocite] = ACTIONS(5277), - [anon_sym_BSLASHcitet] = ACTIONS(5277), - [anon_sym_BSLASHcitep] = ACTIONS(5277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteyear] = ACTIONS(5277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), - [anon_sym_BSLASHcitedate] = ACTIONS(5277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), - [anon_sym_BSLASHciteurl] = ACTIONS(5277), - [anon_sym_BSLASHfullcite] = ACTIONS(5277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), - [anon_sym_BSLASHcitealt] = ACTIONS(5277), - [anon_sym_BSLASHcitealp] = ACTIONS(5277), - [anon_sym_BSLASHcitetext] = ACTIONS(5277), - [anon_sym_BSLASHparencite] = ACTIONS(5277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHParencite] = ACTIONS(5277), - [anon_sym_BSLASHfootcite] = ACTIONS(5277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), - [anon_sym_BSLASHtextcite] = ACTIONS(5277), - [anon_sym_BSLASHTextcite] = ACTIONS(5277), - [anon_sym_BSLASHsmartcite] = ACTIONS(5277), - [anon_sym_BSLASHSmartcite] = ACTIONS(5277), - [anon_sym_BSLASHsupercite] = ACTIONS(5277), - [anon_sym_BSLASHautocite] = ACTIONS(5277), - [anon_sym_BSLASHAutocite] = ACTIONS(5277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), - [anon_sym_BSLASHvolcite] = ACTIONS(5277), - [anon_sym_BSLASHVolcite] = ACTIONS(5277), - [anon_sym_BSLASHpvolcite] = ACTIONS(5277), - [anon_sym_BSLASHPvolcite] = ACTIONS(5277), - [anon_sym_BSLASHfvolcite] = ACTIONS(5277), - [anon_sym_BSLASHftvolcite] = ACTIONS(5277), - [anon_sym_BSLASHsvolcite] = ACTIONS(5277), - [anon_sym_BSLASHSvolcite] = ACTIONS(5277), - [anon_sym_BSLASHtvolcite] = ACTIONS(5277), - [anon_sym_BSLASHTvolcite] = ACTIONS(5277), - [anon_sym_BSLASHavolcite] = ACTIONS(5277), - [anon_sym_BSLASHAvolcite] = ACTIONS(5277), - [anon_sym_BSLASHnotecite] = ACTIONS(5277), - [anon_sym_BSLASHNotecite] = ACTIONS(5277), - [anon_sym_BSLASHpnotecite] = ACTIONS(5277), - [anon_sym_BSLASHPnotecite] = ACTIONS(5277), - [anon_sym_BSLASHfnotecite] = ACTIONS(5277), - [anon_sym_BSLASHlabel] = ACTIONS(5277), - [anon_sym_BSLASHref] = ACTIONS(5277), - [anon_sym_BSLASHeqref] = ACTIONS(5277), - [anon_sym_BSLASHvref] = ACTIONS(5277), - [anon_sym_BSLASHVref] = ACTIONS(5277), - [anon_sym_BSLASHautoref] = ACTIONS(5277), - [anon_sym_BSLASHpageref] = ACTIONS(5277), - [anon_sym_BSLASHcref] = ACTIONS(5277), - [anon_sym_BSLASHCref] = ACTIONS(5277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnameCref] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), - [anon_sym_BSLASHlabelcref] = ACTIONS(5277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange] = ACTIONS(5277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), - [anon_sym_BSLASHnewlabel] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand] = ACTIONS(5277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdef] = ACTIONS(5277), - [anon_sym_BSLASHlet] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), - [anon_sym_BSLASHgls] = ACTIONS(5277), - [anon_sym_BSLASHGls] = ACTIONS(5277), - [anon_sym_BSLASHGLS] = ACTIONS(5277), - [anon_sym_BSLASHglspl] = ACTIONS(5277), - [anon_sym_BSLASHGlspl] = ACTIONS(5277), - [anon_sym_BSLASHGLSpl] = ACTIONS(5277), - [anon_sym_BSLASHglsdisp] = ACTIONS(5277), - [anon_sym_BSLASHglslink] = ACTIONS(5277), - [anon_sym_BSLASHglstext] = ACTIONS(5277), - [anon_sym_BSLASHGlstext] = ACTIONS(5277), - [anon_sym_BSLASHGLStext] = ACTIONS(5277), - [anon_sym_BSLASHglsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), - [anon_sym_BSLASHglsplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSplural] = ACTIONS(5277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), - [anon_sym_BSLASHglsname] = ACTIONS(5277), - [anon_sym_BSLASHGlsname] = ACTIONS(5277), - [anon_sym_BSLASHGLSname] = ACTIONS(5277), - [anon_sym_BSLASHglssymbol] = ACTIONS(5277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), - [anon_sym_BSLASHglsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), - [anon_sym_BSLASHglsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), - [anon_sym_BSLASHglsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), - [anon_sym_BSLASHglsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), - [anon_sym_BSLASHglsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), - [anon_sym_BSLASHnewacronym] = ACTIONS(5277), - [anon_sym_BSLASHacrshort] = ACTIONS(5277), - [anon_sym_BSLASHAcrshort] = ACTIONS(5277), - [anon_sym_BSLASHACRshort] = ACTIONS(5277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), - [anon_sym_BSLASHacrlong] = ACTIONS(5277), - [anon_sym_BSLASHAcrlong] = ACTIONS(5277), - [anon_sym_BSLASHACRlong] = ACTIONS(5277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), - [anon_sym_BSLASHacrfull] = ACTIONS(5277), - [anon_sym_BSLASHAcrfull] = ACTIONS(5277), - [anon_sym_BSLASHACRfull] = ACTIONS(5277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), - [anon_sym_BSLASHacs] = ACTIONS(5277), - [anon_sym_BSLASHAcs] = ACTIONS(5277), - [anon_sym_BSLASHacsp] = ACTIONS(5277), - [anon_sym_BSLASHAcsp] = ACTIONS(5277), - [anon_sym_BSLASHacl] = ACTIONS(5277), - [anon_sym_BSLASHAcl] = ACTIONS(5277), - [anon_sym_BSLASHaclp] = ACTIONS(5277), - [anon_sym_BSLASHAclp] = ACTIONS(5277), - [anon_sym_BSLASHacf] = ACTIONS(5277), - [anon_sym_BSLASHAcf] = ACTIONS(5277), - [anon_sym_BSLASHacfp] = ACTIONS(5277), - [anon_sym_BSLASHAcfp] = ACTIONS(5277), - [anon_sym_BSLASHac] = ACTIONS(5277), - [anon_sym_BSLASHAc] = ACTIONS(5277), - [anon_sym_BSLASHacp] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), - [anon_sym_BSLASHcolor] = ACTIONS(5277), - [anon_sym_BSLASHcolorbox] = ACTIONS(5277), - [anon_sym_BSLASHtextcolor] = ACTIONS(5277), - [anon_sym_BSLASHpagecolor] = ACTIONS(5277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), - [anon_sym_BSLASHtext] = ACTIONS(5277), - [anon_sym_BSLASHintertext] = ACTIONS(5277), - [anon_sym_shortintertext] = ACTIONS(5277), + [837] = { + [ts_builtin_sym_end] = ACTIONS(6121), + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_BSLASHpart] = ACTIONS(6123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddpart] = ACTIONS(6123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHchapter] = ACTIONS(6123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddchap] = ACTIONS(6123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsection] = ACTIONS(6123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddsec] = ACTIONS(6123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHparagraph] = ACTIONS(6123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHitem] = ACTIONS(6123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [anon_sym_RBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), }, - [1389] = { - [sym_command_name] = ACTIONS(5283), + [838] = { + [sym_curly_group] = STATE(1113), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_BSLASHpart] = ACTIONS(5609), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddpart] = ACTIONS(5609), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHchapter] = ACTIONS(5609), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddchap] = ACTIONS(5609), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsection] = ACTIONS(5609), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddsec] = ACTIONS(5609), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHparagraph] = ACTIONS(5609), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5609), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHitem] = ACTIONS(5609), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), + }, + [839] = { + [ts_builtin_sym_end] = ACTIONS(6125), + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_BSLASHpart] = ACTIONS(6127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddpart] = ACTIONS(6127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHchapter] = ACTIONS(6127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddchap] = ACTIONS(6127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsection] = ACTIONS(6127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddsec] = ACTIONS(6127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHparagraph] = ACTIONS(6127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [840] = { + [sym_brack_group_text] = STATE(1118), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5827), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_BSLASHpart] = ACTIONS(5601), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddpart] = ACTIONS(5601), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHchapter] = ACTIONS(5601), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddchap] = ACTIONS(5601), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsection] = ACTIONS(5601), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddsec] = ACTIONS(5601), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHparagraph] = ACTIONS(5601), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5601), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHitem] = ACTIONS(5601), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), + }, + [841] = { + [ts_builtin_sym_end] = ACTIONS(6129), + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_BSLASHpart] = ACTIONS(6131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddpart] = ACTIONS(6131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHchapter] = ACTIONS(6131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddchap] = ACTIONS(6131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsection] = ACTIONS(6131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddsec] = ACTIONS(6131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHparagraph] = ACTIONS(6131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHitem] = ACTIONS(6131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [842] = { + [ts_builtin_sym_end] = ACTIONS(6133), + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_BSLASHpart] = ACTIONS(6135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddpart] = ACTIONS(6135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHchapter] = ACTIONS(6135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddchap] = ACTIONS(6135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsection] = ACTIONS(6135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddsec] = ACTIONS(6135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHparagraph] = ACTIONS(6135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHitem] = ACTIONS(6135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [843] = { + [ts_builtin_sym_end] = ACTIONS(6137), + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_BSLASHpart] = ACTIONS(6139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddpart] = ACTIONS(6139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHchapter] = ACTIONS(6139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddchap] = ACTIONS(6139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsection] = ACTIONS(6139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddsec] = ACTIONS(6139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHparagraph] = ACTIONS(6139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHitem] = ACTIONS(6139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [anon_sym_RBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [844] = { + [ts_builtin_sym_end] = ACTIONS(6141), + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_BSLASHpart] = ACTIONS(6143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddpart] = ACTIONS(6143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHchapter] = ACTIONS(6143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddchap] = ACTIONS(6143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsection] = ACTIONS(6143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddsec] = ACTIONS(6143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHparagraph] = ACTIONS(6143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHitem] = ACTIONS(6143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [anon_sym_RBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [845] = { + [sym_curly_group] = STATE(1122), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_BSLASHpart] = ACTIONS(5755), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddpart] = ACTIONS(5755), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHchapter] = ACTIONS(5755), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddchap] = ACTIONS(5755), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsection] = ACTIONS(5755), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddsec] = ACTIONS(5755), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHparagraph] = ACTIONS(5755), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5755), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHitem] = ACTIONS(5755), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), + }, + [846] = { + [ts_builtin_sym_end] = ACTIONS(6145), + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_BSLASHpart] = ACTIONS(6147), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddpart] = ACTIONS(6147), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHchapter] = ACTIONS(6147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddchap] = ACTIONS(6147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsection] = ACTIONS(6147), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddsec] = ACTIONS(6147), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHparagraph] = ACTIONS(6147), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6147), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHitem] = ACTIONS(6147), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [847] = { + [ts_builtin_sym_end] = ACTIONS(6149), + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_BSLASHpart] = ACTIONS(6151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddpart] = ACTIONS(6151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHchapter] = ACTIONS(6151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddchap] = ACTIONS(6151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsection] = ACTIONS(6151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddsec] = ACTIONS(6151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHparagraph] = ACTIONS(6151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHitem] = ACTIONS(6151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [anon_sym_RBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [848] = { + [sym_curly_group] = STATE(1156), + [sym_command_name] = ACTIONS(5605), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_BSLASHpart] = ACTIONS(5605), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddpart] = ACTIONS(5605), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHchapter] = ACTIONS(5605), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddchap] = ACTIONS(5605), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsection] = ACTIONS(5605), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddsec] = ACTIONS(5605), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHparagraph] = ACTIONS(5605), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5605), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHitem] = ACTIONS(5605), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5605), + [sym_placeholder] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_SLASH] = ACTIONS(5605), + [anon_sym_CARET] = ACTIONS(5605), + [anon_sym__] = ACTIONS(5605), + [anon_sym_LT] = ACTIONS(5605), + [anon_sym_GT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5605), + [anon_sym_PIPE] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_SQUOTE] = ACTIONS(5605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5603), + [anon_sym_DOLLAR] = ACTIONS(5605), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5603), + [anon_sym_BSLASHbegin] = ACTIONS(5605), + [anon_sym_BSLASHend] = ACTIONS(5605), + [anon_sym_BSLASHtitle] = ACTIONS(5605), + [anon_sym_BSLASHauthor] = ACTIONS(5605), + [anon_sym_BSLASHusepackage] = ACTIONS(5605), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5605), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5605), + [anon_sym_BSLASHinclude] = ACTIONS(5605), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5605), + [anon_sym_BSLASHinput] = ACTIONS(5605), + [anon_sym_BSLASHsubfile] = ACTIONS(5605), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5605), + [anon_sym_BSLASHbibliography] = ACTIONS(5605), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5605), + [anon_sym_BSLASHincludesvg] = ACTIONS(5605), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5605), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5605), + [anon_sym_BSLASHimport] = ACTIONS(5605), + [anon_sym_BSLASHsubimport] = ACTIONS(5605), + [anon_sym_BSLASHinputfrom] = ACTIONS(5605), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5605), + [anon_sym_BSLASHincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHcaption] = ACTIONS(5605), + [anon_sym_BSLASHcite] = ACTIONS(5605), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCite] = ACTIONS(5605), + [anon_sym_BSLASHnocite] = ACTIONS(5605), + [anon_sym_BSLASHcitet] = ACTIONS(5605), + [anon_sym_BSLASHcitep] = ACTIONS(5605), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteauthor] = ACTIONS(5605), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5605), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitetitle] = ACTIONS(5605), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteyear] = ACTIONS(5605), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitedate] = ACTIONS(5605), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteurl] = ACTIONS(5605), + [anon_sym_BSLASHfullcite] = ACTIONS(5605), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5605), + [anon_sym_BSLASHcitealt] = ACTIONS(5605), + [anon_sym_BSLASHcitealp] = ACTIONS(5605), + [anon_sym_BSLASHcitetext] = ACTIONS(5605), + [anon_sym_BSLASHparencite] = ACTIONS(5605), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHParencite] = ACTIONS(5605), + [anon_sym_BSLASHfootcite] = ACTIONS(5605), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5605), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5605), + [anon_sym_BSLASHtextcite] = ACTIONS(5605), + [anon_sym_BSLASHTextcite] = ACTIONS(5605), + [anon_sym_BSLASHsmartcite] = ACTIONS(5605), + [anon_sym_BSLASHSmartcite] = ACTIONS(5605), + [anon_sym_BSLASHsupercite] = ACTIONS(5605), + [anon_sym_BSLASHautocite] = ACTIONS(5605), + [anon_sym_BSLASHAutocite] = ACTIONS(5605), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHvolcite] = ACTIONS(5605), + [anon_sym_BSLASHVolcite] = ACTIONS(5605), + [anon_sym_BSLASHpvolcite] = ACTIONS(5605), + [anon_sym_BSLASHPvolcite] = ACTIONS(5605), + [anon_sym_BSLASHfvolcite] = ACTIONS(5605), + [anon_sym_BSLASHftvolcite] = ACTIONS(5605), + [anon_sym_BSLASHsvolcite] = ACTIONS(5605), + [anon_sym_BSLASHSvolcite] = ACTIONS(5605), + [anon_sym_BSLASHtvolcite] = ACTIONS(5605), + [anon_sym_BSLASHTvolcite] = ACTIONS(5605), + [anon_sym_BSLASHavolcite] = ACTIONS(5605), + [anon_sym_BSLASHAvolcite] = ACTIONS(5605), + [anon_sym_BSLASHnotecite] = ACTIONS(5605), + [anon_sym_BSLASHNotecite] = ACTIONS(5605), + [anon_sym_BSLASHpnotecite] = ACTIONS(5605), + [anon_sym_BSLASHPnotecite] = ACTIONS(5605), + [anon_sym_BSLASHfnotecite] = ACTIONS(5605), + [anon_sym_BSLASHlabel] = ACTIONS(5605), + [anon_sym_BSLASHref] = ACTIONS(5605), + [anon_sym_BSLASHeqref] = ACTIONS(5605), + [anon_sym_BSLASHvref] = ACTIONS(5605), + [anon_sym_BSLASHVref] = ACTIONS(5605), + [anon_sym_BSLASHautoref] = ACTIONS(5605), + [anon_sym_BSLASHpageref] = ACTIONS(5605), + [anon_sym_BSLASHcref] = ACTIONS(5605), + [anon_sym_BSLASHCref] = ACTIONS(5605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnameCref] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHlabelcref] = ACTIONS(5605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCrefrange] = ACTIONS(5605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnewlabel] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5605), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5605), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5605), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdef] = ACTIONS(5605), + [anon_sym_BSLASHlet] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5605), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5605), + [anon_sym_BSLASHgls] = ACTIONS(5605), + [anon_sym_BSLASHGls] = ACTIONS(5605), + [anon_sym_BSLASHGLS] = ACTIONS(5605), + [anon_sym_BSLASHglspl] = ACTIONS(5605), + [anon_sym_BSLASHGlspl] = ACTIONS(5605), + [anon_sym_BSLASHGLSpl] = ACTIONS(5605), + [anon_sym_BSLASHglsdisp] = ACTIONS(5605), + [anon_sym_BSLASHglslink] = ACTIONS(5605), + [anon_sym_BSLASHglstext] = ACTIONS(5605), + [anon_sym_BSLASHGlstext] = ACTIONS(5605), + [anon_sym_BSLASHGLStext] = ACTIONS(5605), + [anon_sym_BSLASHglsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5605), + [anon_sym_BSLASHglsplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSplural] = ACTIONS(5605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHglsname] = ACTIONS(5605), + [anon_sym_BSLASHGlsname] = ACTIONS(5605), + [anon_sym_BSLASHGLSname] = ACTIONS(5605), + [anon_sym_BSLASHglssymbol] = ACTIONS(5605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5605), + [anon_sym_BSLASHglsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5605), + [anon_sym_BSLASHglsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5605), + [anon_sym_BSLASHglsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5605), + [anon_sym_BSLASHglsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5605), + [anon_sym_BSLASHglsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5605), + [anon_sym_BSLASHacrshort] = ACTIONS(5605), + [anon_sym_BSLASHAcrshort] = ACTIONS(5605), + [anon_sym_BSLASHACRshort] = ACTIONS(5605), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5605), + [anon_sym_BSLASHacrlong] = ACTIONS(5605), + [anon_sym_BSLASHAcrlong] = ACTIONS(5605), + [anon_sym_BSLASHACRlong] = ACTIONS(5605), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5605), + [anon_sym_BSLASHacrfull] = ACTIONS(5605), + [anon_sym_BSLASHAcrfull] = ACTIONS(5605), + [anon_sym_BSLASHACRfull] = ACTIONS(5605), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5605), + [anon_sym_BSLASHacs] = ACTIONS(5605), + [anon_sym_BSLASHAcs] = ACTIONS(5605), + [anon_sym_BSLASHacsp] = ACTIONS(5605), + [anon_sym_BSLASHAcsp] = ACTIONS(5605), + [anon_sym_BSLASHacl] = ACTIONS(5605), + [anon_sym_BSLASHAcl] = ACTIONS(5605), + [anon_sym_BSLASHaclp] = ACTIONS(5605), + [anon_sym_BSLASHAclp] = ACTIONS(5605), + [anon_sym_BSLASHacf] = ACTIONS(5605), + [anon_sym_BSLASHAcf] = ACTIONS(5605), + [anon_sym_BSLASHacfp] = ACTIONS(5605), + [anon_sym_BSLASHAcfp] = ACTIONS(5605), + [anon_sym_BSLASHac] = ACTIONS(5605), + [anon_sym_BSLASHAc] = ACTIONS(5605), + [anon_sym_BSLASHacp] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5605), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5605), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5605), + [anon_sym_BSLASHcolor] = ACTIONS(5605), + [anon_sym_BSLASHcolorbox] = ACTIONS(5605), + [anon_sym_BSLASHtextcolor] = ACTIONS(5605), + [anon_sym_BSLASHpagecolor] = ACTIONS(5605), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5605), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5605), + [anon_sym_BSLASHtext] = ACTIONS(5605), + [anon_sym_BSLASHintertext] = ACTIONS(5605), + [anon_sym_shortintertext] = ACTIONS(5605), + }, + [849] = { + [ts_builtin_sym_end] = ACTIONS(6153), + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_BSLASHpart] = ACTIONS(6155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddpart] = ACTIONS(6155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHchapter] = ACTIONS(6155), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddchap] = ACTIONS(6155), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsection] = ACTIONS(6155), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddsec] = ACTIONS(6155), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHparagraph] = ACTIONS(6155), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6155), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHitem] = ACTIONS(6155), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [anon_sym_RBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [850] = { + [sym_curly_group] = STATE(1157), + [sym_command_name] = ACTIONS(5613), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5283), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - [anon_sym_BSLASHtext] = ACTIONS(5283), - [anon_sym_BSLASHintertext] = ACTIONS(5283), - [anon_sym_shortintertext] = ACTIONS(5283), + [anon_sym_BSLASHiffalse] = ACTIONS(5613), + [anon_sym_LPAREN] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_BSLASHpart] = ACTIONS(5613), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddpart] = ACTIONS(5613), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHchapter] = ACTIONS(5613), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddchap] = ACTIONS(5613), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsection] = ACTIONS(5613), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddsec] = ACTIONS(5613), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHparagraph] = ACTIONS(5613), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHitem] = ACTIONS(5613), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5613), + [sym_placeholder] = ACTIONS(5611), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym__] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_BANG] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_SQUOTE] = ACTIONS(5613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5611), + [anon_sym_DOLLAR] = ACTIONS(5613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5611), + [anon_sym_BSLASHbegin] = ACTIONS(5613), + [anon_sym_BSLASHend] = ACTIONS(5613), + [anon_sym_BSLASHtitle] = ACTIONS(5613), + [anon_sym_BSLASHauthor] = ACTIONS(5613), + [anon_sym_BSLASHusepackage] = ACTIONS(5613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), + [anon_sym_BSLASHinclude] = ACTIONS(5613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), + [anon_sym_BSLASHinput] = ACTIONS(5613), + [anon_sym_BSLASHsubfile] = ACTIONS(5613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), + [anon_sym_BSLASHbibliography] = ACTIONS(5613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), + [anon_sym_BSLASHincludesvg] = ACTIONS(5613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), + [anon_sym_BSLASHimport] = ACTIONS(5613), + [anon_sym_BSLASHsubimport] = ACTIONS(5613), + [anon_sym_BSLASHinputfrom] = ACTIONS(5613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), + [anon_sym_BSLASHincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHcaption] = ACTIONS(5613), + [anon_sym_BSLASHcite] = ACTIONS(5613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCite] = ACTIONS(5613), + [anon_sym_BSLASHnocite] = ACTIONS(5613), + [anon_sym_BSLASHcitet] = ACTIONS(5613), + [anon_sym_BSLASHcitep] = ACTIONS(5613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteauthor] = ACTIONS(5613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitetitle] = ACTIONS(5613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteyear] = ACTIONS(5613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitedate] = ACTIONS(5613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteurl] = ACTIONS(5613), + [anon_sym_BSLASHfullcite] = ACTIONS(5613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), + [anon_sym_BSLASHcitealt] = ACTIONS(5613), + [anon_sym_BSLASHcitealp] = ACTIONS(5613), + [anon_sym_BSLASHcitetext] = ACTIONS(5613), + [anon_sym_BSLASHparencite] = ACTIONS(5613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHParencite] = ACTIONS(5613), + [anon_sym_BSLASHfootcite] = ACTIONS(5613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), + [anon_sym_BSLASHtextcite] = ACTIONS(5613), + [anon_sym_BSLASHTextcite] = ACTIONS(5613), + [anon_sym_BSLASHsmartcite] = ACTIONS(5613), + [anon_sym_BSLASHSmartcite] = ACTIONS(5613), + [anon_sym_BSLASHsupercite] = ACTIONS(5613), + [anon_sym_BSLASHautocite] = ACTIONS(5613), + [anon_sym_BSLASHAutocite] = ACTIONS(5613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHvolcite] = ACTIONS(5613), + [anon_sym_BSLASHVolcite] = ACTIONS(5613), + [anon_sym_BSLASHpvolcite] = ACTIONS(5613), + [anon_sym_BSLASHPvolcite] = ACTIONS(5613), + [anon_sym_BSLASHfvolcite] = ACTIONS(5613), + [anon_sym_BSLASHftvolcite] = ACTIONS(5613), + [anon_sym_BSLASHsvolcite] = ACTIONS(5613), + [anon_sym_BSLASHSvolcite] = ACTIONS(5613), + [anon_sym_BSLASHtvolcite] = ACTIONS(5613), + [anon_sym_BSLASHTvolcite] = ACTIONS(5613), + [anon_sym_BSLASHavolcite] = ACTIONS(5613), + [anon_sym_BSLASHAvolcite] = ACTIONS(5613), + [anon_sym_BSLASHnotecite] = ACTIONS(5613), + [anon_sym_BSLASHNotecite] = ACTIONS(5613), + [anon_sym_BSLASHpnotecite] = ACTIONS(5613), + [anon_sym_BSLASHPnotecite] = ACTIONS(5613), + [anon_sym_BSLASHfnotecite] = ACTIONS(5613), + [anon_sym_BSLASHlabel] = ACTIONS(5613), + [anon_sym_BSLASHref] = ACTIONS(5613), + [anon_sym_BSLASHeqref] = ACTIONS(5613), + [anon_sym_BSLASHvref] = ACTIONS(5613), + [anon_sym_BSLASHVref] = ACTIONS(5613), + [anon_sym_BSLASHautoref] = ACTIONS(5613), + [anon_sym_BSLASHpageref] = ACTIONS(5613), + [anon_sym_BSLASHcref] = ACTIONS(5613), + [anon_sym_BSLASHCref] = ACTIONS(5613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnameCref] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHlabelcref] = ACTIONS(5613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCrefrange] = ACTIONS(5613), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnewlabel] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdef] = ACTIONS(5613), + [anon_sym_BSLASHlet] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), + [anon_sym_BSLASHgls] = ACTIONS(5613), + [anon_sym_BSLASHGls] = ACTIONS(5613), + [anon_sym_BSLASHGLS] = ACTIONS(5613), + [anon_sym_BSLASHglspl] = ACTIONS(5613), + [anon_sym_BSLASHGlspl] = ACTIONS(5613), + [anon_sym_BSLASHGLSpl] = ACTIONS(5613), + [anon_sym_BSLASHglsdisp] = ACTIONS(5613), + [anon_sym_BSLASHglslink] = ACTIONS(5613), + [anon_sym_BSLASHglstext] = ACTIONS(5613), + [anon_sym_BSLASHGlstext] = ACTIONS(5613), + [anon_sym_BSLASHGLStext] = ACTIONS(5613), + [anon_sym_BSLASHglsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), + [anon_sym_BSLASHglsplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSplural] = ACTIONS(5613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHglsname] = ACTIONS(5613), + [anon_sym_BSLASHGlsname] = ACTIONS(5613), + [anon_sym_BSLASHGLSname] = ACTIONS(5613), + [anon_sym_BSLASHglssymbol] = ACTIONS(5613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), + [anon_sym_BSLASHglsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), + [anon_sym_BSLASHglsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), + [anon_sym_BSLASHglsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), + [anon_sym_BSLASHglsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), + [anon_sym_BSLASHglsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), + [anon_sym_BSLASHnewacronym] = ACTIONS(5613), + [anon_sym_BSLASHacrshort] = ACTIONS(5613), + [anon_sym_BSLASHAcrshort] = ACTIONS(5613), + [anon_sym_BSLASHACRshort] = ACTIONS(5613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), + [anon_sym_BSLASHacrlong] = ACTIONS(5613), + [anon_sym_BSLASHAcrlong] = ACTIONS(5613), + [anon_sym_BSLASHACRlong] = ACTIONS(5613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), + [anon_sym_BSLASHacrfull] = ACTIONS(5613), + [anon_sym_BSLASHAcrfull] = ACTIONS(5613), + [anon_sym_BSLASHACRfull] = ACTIONS(5613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), + [anon_sym_BSLASHacs] = ACTIONS(5613), + [anon_sym_BSLASHAcs] = ACTIONS(5613), + [anon_sym_BSLASHacsp] = ACTIONS(5613), + [anon_sym_BSLASHAcsp] = ACTIONS(5613), + [anon_sym_BSLASHacl] = ACTIONS(5613), + [anon_sym_BSLASHAcl] = ACTIONS(5613), + [anon_sym_BSLASHaclp] = ACTIONS(5613), + [anon_sym_BSLASHAclp] = ACTIONS(5613), + [anon_sym_BSLASHacf] = ACTIONS(5613), + [anon_sym_BSLASHAcf] = ACTIONS(5613), + [anon_sym_BSLASHacfp] = ACTIONS(5613), + [anon_sym_BSLASHAcfp] = ACTIONS(5613), + [anon_sym_BSLASHac] = ACTIONS(5613), + [anon_sym_BSLASHAc] = ACTIONS(5613), + [anon_sym_BSLASHacp] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), + [anon_sym_BSLASHcolor] = ACTIONS(5613), + [anon_sym_BSLASHcolorbox] = ACTIONS(5613), + [anon_sym_BSLASHtextcolor] = ACTIONS(5613), + [anon_sym_BSLASHpagecolor] = ACTIONS(5613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), + [anon_sym_BSLASHtext] = ACTIONS(5613), + [anon_sym_BSLASHintertext] = ACTIONS(5613), + [anon_sym_shortintertext] = ACTIONS(5613), }, - [1390] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5287), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - [anon_sym_BSLASHtext] = ACTIONS(5287), - [anon_sym_BSLASHintertext] = ACTIONS(5287), - [anon_sym_shortintertext] = ACTIONS(5287), + [851] = { + [ts_builtin_sym_end] = ACTIONS(6157), + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_BSLASHpart] = ACTIONS(6159), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddpart] = ACTIONS(6159), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHchapter] = ACTIONS(6159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddchap] = ACTIONS(6159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsection] = ACTIONS(6159), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddsec] = ACTIONS(6159), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHparagraph] = ACTIONS(6159), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6159), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHitem] = ACTIONS(6159), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [anon_sym_RBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), }, - [1391] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), + [852] = { + [ts_builtin_sym_end] = ACTIONS(6161), + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_BSLASHpart] = ACTIONS(6163), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddpart] = ACTIONS(6163), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHchapter] = ACTIONS(6163), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddchap] = ACTIONS(6163), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsection] = ACTIONS(6163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddsec] = ACTIONS(6163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHparagraph] = ACTIONS(6163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6163), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHitem] = ACTIONS(6163), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [853] = { + [ts_builtin_sym_end] = ACTIONS(6165), + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_BSLASHpart] = ACTIONS(6167), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddpart] = ACTIONS(6167), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHchapter] = ACTIONS(6167), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddchap] = ACTIONS(6167), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsection] = ACTIONS(6167), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddsec] = ACTIONS(6167), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHparagraph] = ACTIONS(6167), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHitem] = ACTIONS(6167), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [anon_sym_RBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [854] = { + [ts_builtin_sym_end] = ACTIONS(6169), + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_BSLASHpart] = ACTIONS(6171), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddpart] = ACTIONS(6171), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHchapter] = ACTIONS(6171), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddchap] = ACTIONS(6171), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsection] = ACTIONS(6171), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddsec] = ACTIONS(6171), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHparagraph] = ACTIONS(6171), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6171), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHitem] = ACTIONS(6171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [855] = { + [ts_builtin_sym_end] = ACTIONS(6173), + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_BSLASHpart] = ACTIONS(6175), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddpart] = ACTIONS(6175), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHchapter] = ACTIONS(6175), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddchap] = ACTIONS(6175), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsection] = ACTIONS(6175), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddsec] = ACTIONS(6175), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHparagraph] = ACTIONS(6175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6175), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHitem] = ACTIONS(6175), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [anon_sym_RBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [856] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6177), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_BSLASHpart] = ACTIONS(5779), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddpart] = ACTIONS(5779), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHchapter] = ACTIONS(5779), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddchap] = ACTIONS(5779), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsection] = ACTIONS(5779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddsec] = ACTIONS(5779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHparagraph] = ACTIONS(5779), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5779), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHitem] = ACTIONS(5779), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), + }, + [857] = { + [ts_builtin_sym_end] = ACTIONS(6179), + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_BSLASHpart] = ACTIONS(6181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddpart] = ACTIONS(6181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHchapter] = ACTIONS(6181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddchap] = ACTIONS(6181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsection] = ACTIONS(6181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddsec] = ACTIONS(6181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHparagraph] = ACTIONS(6181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHitem] = ACTIONS(6181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [anon_sym_RBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [858] = { + [ts_builtin_sym_end] = ACTIONS(6183), + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_BSLASHpart] = ACTIONS(6185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddpart] = ACTIONS(6185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHchapter] = ACTIONS(6185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddchap] = ACTIONS(6185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsection] = ACTIONS(6185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddsec] = ACTIONS(6185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHparagraph] = ACTIONS(6185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHitem] = ACTIONS(6185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [859] = { + [ts_builtin_sym_end] = ACTIONS(6187), + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_BSLASHpart] = ACTIONS(6189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddpart] = ACTIONS(6189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHchapter] = ACTIONS(6189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddchap] = ACTIONS(6189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsection] = ACTIONS(6189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddsec] = ACTIONS(6189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHparagraph] = ACTIONS(6189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHitem] = ACTIONS(6189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [anon_sym_RBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [860] = { + [ts_builtin_sym_end] = ACTIONS(6191), + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_BSLASHpart] = ACTIONS(6193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddpart] = ACTIONS(6193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHchapter] = ACTIONS(6193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddchap] = ACTIONS(6193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsection] = ACTIONS(6193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddsec] = ACTIONS(6193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHparagraph] = ACTIONS(6193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHitem] = ACTIONS(6193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [anon_sym_RBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(6195), + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_BSLASHpart] = ACTIONS(6197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddpart] = ACTIONS(6197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHchapter] = ACTIONS(6197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddchap] = ACTIONS(6197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsection] = ACTIONS(6197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddsec] = ACTIONS(6197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHparagraph] = ACTIONS(6197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHitem] = ACTIONS(6197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [anon_sym_RBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [862] = { + [ts_builtin_sym_end] = ACTIONS(6199), + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_BSLASHpart] = ACTIONS(6201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddpart] = ACTIONS(6201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHchapter] = ACTIONS(6201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddchap] = ACTIONS(6201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsection] = ACTIONS(6201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddsec] = ACTIONS(6201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHparagraph] = ACTIONS(6201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHitem] = ACTIONS(6201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [863] = { + [ts_builtin_sym_end] = ACTIONS(6203), + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_BSLASHpart] = ACTIONS(6205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddpart] = ACTIONS(6205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHchapter] = ACTIONS(6205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddchap] = ACTIONS(6205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsection] = ACTIONS(6205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddsec] = ACTIONS(6205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHparagraph] = ACTIONS(6205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHitem] = ACTIONS(6205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [anon_sym_RBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), + }, + [864] = { + [ts_builtin_sym_end] = ACTIONS(6207), + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_BSLASHpart] = ACTIONS(6209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddpart] = ACTIONS(6209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHchapter] = ACTIONS(6209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddchap] = ACTIONS(6209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsection] = ACTIONS(6209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddsec] = ACTIONS(6209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHparagraph] = ACTIONS(6209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHitem] = ACTIONS(6209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), + }, + [865] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6211), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_BSLASHpart] = ACTIONS(5779), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddpart] = ACTIONS(5779), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5777), + [anon_sym_BSLASHchapter] = ACTIONS(5779), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddchap] = ACTIONS(5779), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsection] = ACTIONS(5779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHaddsec] = ACTIONS(5779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5779), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5777), + [anon_sym_BSLASHparagraph] = ACTIONS(5779), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5779), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5777), + [anon_sym_BSLASHitem] = ACTIONS(5779), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), + }, + [866] = { + [sym_curly_group] = STATE(904), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_BSLASHpart] = ACTIONS(5609), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddpart] = ACTIONS(5609), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5607), + [anon_sym_BSLASHchapter] = ACTIONS(5609), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddchap] = ACTIONS(5609), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsection] = ACTIONS(5609), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHaddsec] = ACTIONS(5609), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5609), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5607), + [anon_sym_BSLASHparagraph] = ACTIONS(5609), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5609), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5607), + [anon_sym_BSLASHitem] = ACTIONS(5609), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), + }, + [867] = { + [ts_builtin_sym_end] = ACTIONS(6213), + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_BSLASHpart] = ACTIONS(6215), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddpart] = ACTIONS(6215), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHchapter] = ACTIONS(6215), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddchap] = ACTIONS(6215), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsection] = ACTIONS(6215), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddsec] = ACTIONS(6215), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHparagraph] = ACTIONS(6215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHitem] = ACTIONS(6215), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [anon_sym_RBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), + }, + [868] = { + [ts_builtin_sym_end] = ACTIONS(6217), + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_BSLASHpart] = ACTIONS(6219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddpart] = ACTIONS(6219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHchapter] = ACTIONS(6219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddchap] = ACTIONS(6219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsection] = ACTIONS(6219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddsec] = ACTIONS(6219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHparagraph] = ACTIONS(6219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHitem] = ACTIONS(6219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [anon_sym_RBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(6221), + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_BSLASHpart] = ACTIONS(6223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddpart] = ACTIONS(6223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHchapter] = ACTIONS(6223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddchap] = ACTIONS(6223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsection] = ACTIONS(6223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddsec] = ACTIONS(6223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHparagraph] = ACTIONS(6223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHitem] = ACTIONS(6223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [anon_sym_RBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(6225), + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_BSLASHpart] = ACTIONS(6227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddpart] = ACTIONS(6227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHchapter] = ACTIONS(6227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddchap] = ACTIONS(6227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsection] = ACTIONS(6227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddsec] = ACTIONS(6227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHparagraph] = ACTIONS(6227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHitem] = ACTIONS(6227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [anon_sym_RBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(6229), + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_BSLASHpart] = ACTIONS(6231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddpart] = ACTIONS(6231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHchapter] = ACTIONS(6231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddchap] = ACTIONS(6231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsection] = ACTIONS(6231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddsec] = ACTIONS(6231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHparagraph] = ACTIONS(6231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHitem] = ACTIONS(6231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [anon_sym_RBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), + }, + [872] = { + [sym_brack_group_text] = STATE(898), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_BSLASHpart] = ACTIONS(5601), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddpart] = ACTIONS(5601), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5599), + [anon_sym_BSLASHchapter] = ACTIONS(5601), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddchap] = ACTIONS(5601), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsection] = ACTIONS(5601), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHaddsec] = ACTIONS(5601), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5601), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5599), + [anon_sym_BSLASHparagraph] = ACTIONS(5601), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5601), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5599), + [anon_sym_BSLASHitem] = ACTIONS(5601), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), + }, + [873] = { + [ts_builtin_sym_end] = ACTIONS(6233), + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_BSLASHpart] = ACTIONS(6235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddpart] = ACTIONS(6235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHchapter] = ACTIONS(6235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddchap] = ACTIONS(6235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsection] = ACTIONS(6235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddsec] = ACTIONS(6235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHparagraph] = ACTIONS(6235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHitem] = ACTIONS(6235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), + }, + [874] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2037), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6237), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1392] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), + [875] = { + [ts_builtin_sym_end] = ACTIONS(6239), + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_BSLASHpart] = ACTIONS(6241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddpart] = ACTIONS(6241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHchapter] = ACTIONS(6241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddchap] = ACTIONS(6241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsection] = ACTIONS(6241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddsec] = ACTIONS(6241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHparagraph] = ACTIONS(6241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHitem] = ACTIONS(6241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [876] = { + [ts_builtin_sym_end] = ACTIONS(6243), + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_BSLASHpart] = ACTIONS(6245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddpart] = ACTIONS(6245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHchapter] = ACTIONS(6245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddchap] = ACTIONS(6245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsection] = ACTIONS(6245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddsec] = ACTIONS(6245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHparagraph] = ACTIONS(6245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHitem] = ACTIONS(6245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [anon_sym_RBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [877] = { + [ts_builtin_sym_end] = ACTIONS(6247), + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_BSLASHpart] = ACTIONS(6249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddpart] = ACTIONS(6249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHchapter] = ACTIONS(6249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddchap] = ACTIONS(6249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsection] = ACTIONS(6249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddsec] = ACTIONS(6249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHparagraph] = ACTIONS(6249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHitem] = ACTIONS(6249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(6251), + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_BSLASHpart] = ACTIONS(6253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddpart] = ACTIONS(6253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHchapter] = ACTIONS(6253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddchap] = ACTIONS(6253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsection] = ACTIONS(6253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddsec] = ACTIONS(6253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHparagraph] = ACTIONS(6253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHitem] = ACTIONS(6253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [879] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2000), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6255), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), [anon_sym_BSLASHref] = ACTIONS(5175), [anon_sym_BSLASHeqref] = ACTIONS(5175), [anon_sym_BSLASHvref] = ACTIONS(5175), @@ -419192,8 +284067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpageref] = ACTIONS(5175), [anon_sym_BSLASHcref] = ACTIONS(5175), [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), [anon_sym_BSLASHnamecref] = ACTIONS(5175), [anon_sym_BSLASHnameCref] = ACTIONS(5175), [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), @@ -419202,52293 +284077,196491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), [anon_sym_BSLASHlabelcref] = ACTIONS(5175), [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1393] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), + [880] = { + [ts_builtin_sym_end] = ACTIONS(6257), + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_BSLASHpart] = ACTIONS(6259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddpart] = ACTIONS(6259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHchapter] = ACTIONS(6259), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddchap] = ACTIONS(6259), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsection] = ACTIONS(6259), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddsec] = ACTIONS(6259), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHparagraph] = ACTIONS(6259), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6259), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHitem] = ACTIONS(6259), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(6261), + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_BSLASHpart] = ACTIONS(6263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddpart] = ACTIONS(6263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHchapter] = ACTIONS(6263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddchap] = ACTIONS(6263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsection] = ACTIONS(6263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddsec] = ACTIONS(6263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHparagraph] = ACTIONS(6263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHitem] = ACTIONS(6263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [anon_sym_RBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [882] = { + [ts_builtin_sym_end] = ACTIONS(6265), + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_BSLASHpart] = ACTIONS(6267), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddpart] = ACTIONS(6267), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHchapter] = ACTIONS(6267), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddchap] = ACTIONS(6267), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsection] = ACTIONS(6267), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddsec] = ACTIONS(6267), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHparagraph] = ACTIONS(6267), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6267), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHitem] = ACTIONS(6267), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [anon_sym_RBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [883] = { + [sym_brack_group_text] = STATE(934), + [sym_command_name] = ACTIONS(5775), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5827), + [anon_sym_RBRACK] = ACTIONS(5773), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_BSLASHpart] = ACTIONS(5775), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddpart] = ACTIONS(5775), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5773), + [anon_sym_BSLASHchapter] = ACTIONS(5775), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddchap] = ACTIONS(5775), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsection] = ACTIONS(5775), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHaddsec] = ACTIONS(5775), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5775), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5773), + [anon_sym_BSLASHparagraph] = ACTIONS(5775), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5775), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5773), + [anon_sym_BSLASHitem] = ACTIONS(5775), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5773), + [sym_word] = ACTIONS(5775), + [sym_placeholder] = ACTIONS(5773), + [anon_sym_PLUS] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_SLASH] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5775), + [anon_sym__] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5775), + [anon_sym_PIPE] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_SQUOTE] = ACTIONS(5775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5775), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5773), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5773), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5773), + [anon_sym_BSLASHbegin] = ACTIONS(5775), + [anon_sym_BSLASHtitle] = ACTIONS(5775), + [anon_sym_BSLASHauthor] = ACTIONS(5775), + [anon_sym_BSLASHusepackage] = ACTIONS(5775), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5775), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5775), + [anon_sym_BSLASHinclude] = ACTIONS(5775), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5775), + [anon_sym_BSLASHinput] = ACTIONS(5775), + [anon_sym_BSLASHsubfile] = ACTIONS(5775), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5775), + [anon_sym_BSLASHbibliography] = ACTIONS(5775), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5775), + [anon_sym_BSLASHincludesvg] = ACTIONS(5775), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5775), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5775), + [anon_sym_BSLASHimport] = ACTIONS(5775), + [anon_sym_BSLASHsubimport] = ACTIONS(5775), + [anon_sym_BSLASHinputfrom] = ACTIONS(5775), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5775), + [anon_sym_BSLASHincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5775), + [anon_sym_BSLASHcaption] = ACTIONS(5775), + [anon_sym_BSLASHcite] = ACTIONS(5775), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCite] = ACTIONS(5775), + [anon_sym_BSLASHnocite] = ACTIONS(5775), + [anon_sym_BSLASHcitet] = ACTIONS(5775), + [anon_sym_BSLASHcitep] = ACTIONS(5775), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteauthor] = ACTIONS(5775), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5775), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitetitle] = ACTIONS(5775), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteyear] = ACTIONS(5775), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5773), + [anon_sym_BSLASHcitedate] = ACTIONS(5775), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5773), + [anon_sym_BSLASHciteurl] = ACTIONS(5775), + [anon_sym_BSLASHfullcite] = ACTIONS(5775), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5775), + [anon_sym_BSLASHcitealt] = ACTIONS(5775), + [anon_sym_BSLASHcitealp] = ACTIONS(5775), + [anon_sym_BSLASHcitetext] = ACTIONS(5775), + [anon_sym_BSLASHparencite] = ACTIONS(5775), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHParencite] = ACTIONS(5775), + [anon_sym_BSLASHfootcite] = ACTIONS(5775), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5775), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5775), + [anon_sym_BSLASHtextcite] = ACTIONS(5775), + [anon_sym_BSLASHTextcite] = ACTIONS(5775), + [anon_sym_BSLASHsmartcite] = ACTIONS(5775), + [anon_sym_BSLASHSmartcite] = ACTIONS(5775), + [anon_sym_BSLASHsupercite] = ACTIONS(5775), + [anon_sym_BSLASHautocite] = ACTIONS(5775), + [anon_sym_BSLASHAutocite] = ACTIONS(5775), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5773), + [anon_sym_BSLASHvolcite] = ACTIONS(5775), + [anon_sym_BSLASHVolcite] = ACTIONS(5775), + [anon_sym_BSLASHpvolcite] = ACTIONS(5775), + [anon_sym_BSLASHPvolcite] = ACTIONS(5775), + [anon_sym_BSLASHfvolcite] = ACTIONS(5775), + [anon_sym_BSLASHftvolcite] = ACTIONS(5775), + [anon_sym_BSLASHsvolcite] = ACTIONS(5775), + [anon_sym_BSLASHSvolcite] = ACTIONS(5775), + [anon_sym_BSLASHtvolcite] = ACTIONS(5775), + [anon_sym_BSLASHTvolcite] = ACTIONS(5775), + [anon_sym_BSLASHavolcite] = ACTIONS(5775), + [anon_sym_BSLASHAvolcite] = ACTIONS(5775), + [anon_sym_BSLASHnotecite] = ACTIONS(5775), + [anon_sym_BSLASHNotecite] = ACTIONS(5775), + [anon_sym_BSLASHpnotecite] = ACTIONS(5775), + [anon_sym_BSLASHPnotecite] = ACTIONS(5775), + [anon_sym_BSLASHfnotecite] = ACTIONS(5775), + [anon_sym_BSLASHlabel] = ACTIONS(5775), + [anon_sym_BSLASHref] = ACTIONS(5775), + [anon_sym_BSLASHeqref] = ACTIONS(5775), + [anon_sym_BSLASHvref] = ACTIONS(5775), + [anon_sym_BSLASHVref] = ACTIONS(5775), + [anon_sym_BSLASHautoref] = ACTIONS(5775), + [anon_sym_BSLASHpageref] = ACTIONS(5775), + [anon_sym_BSLASHcref] = ACTIONS(5775), + [anon_sym_BSLASHCref] = ACTIONS(5775), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnameCref] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5775), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5775), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5775), + [anon_sym_BSLASHlabelcref] = ACTIONS(5775), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange] = ACTIONS(5775), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHCrefrange] = ACTIONS(5775), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5773), + [anon_sym_BSLASHnewlabel] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand] = ACTIONS(5775), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5775), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5775), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5773), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5775), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdef] = ACTIONS(5775), + [anon_sym_BSLASHlet] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5775), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5775), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5775), + [anon_sym_BSLASHgls] = ACTIONS(5775), + [anon_sym_BSLASHGls] = ACTIONS(5775), + [anon_sym_BSLASHGLS] = ACTIONS(5775), + [anon_sym_BSLASHglspl] = ACTIONS(5775), + [anon_sym_BSLASHGlspl] = ACTIONS(5775), + [anon_sym_BSLASHGLSpl] = ACTIONS(5775), + [anon_sym_BSLASHglsdisp] = ACTIONS(5775), + [anon_sym_BSLASHglslink] = ACTIONS(5775), + [anon_sym_BSLASHglstext] = ACTIONS(5775), + [anon_sym_BSLASHGlstext] = ACTIONS(5775), + [anon_sym_BSLASHGLStext] = ACTIONS(5775), + [anon_sym_BSLASHglsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5775), + [anon_sym_BSLASHglsplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSplural] = ACTIONS(5775), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5775), + [anon_sym_BSLASHglsname] = ACTIONS(5775), + [anon_sym_BSLASHGlsname] = ACTIONS(5775), + [anon_sym_BSLASHGLSname] = ACTIONS(5775), + [anon_sym_BSLASHglssymbol] = ACTIONS(5775), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5775), + [anon_sym_BSLASHglsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5775), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5775), + [anon_sym_BSLASHglsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5775), + [anon_sym_BSLASHglsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5775), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5775), + [anon_sym_BSLASHglsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5775), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5775), + [anon_sym_BSLASHglsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5775), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5775), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [anon_sym_BSLASHacrshort] = ACTIONS(5775), + [anon_sym_BSLASHAcrshort] = ACTIONS(5775), + [anon_sym_BSLASHACRshort] = ACTIONS(5775), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5775), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5775), + [anon_sym_BSLASHacrlong] = ACTIONS(5775), + [anon_sym_BSLASHAcrlong] = ACTIONS(5775), + [anon_sym_BSLASHACRlong] = ACTIONS(5775), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5775), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5775), + [anon_sym_BSLASHacrfull] = ACTIONS(5775), + [anon_sym_BSLASHAcrfull] = ACTIONS(5775), + [anon_sym_BSLASHACRfull] = ACTIONS(5775), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5775), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5775), + [anon_sym_BSLASHacs] = ACTIONS(5775), + [anon_sym_BSLASHAcs] = ACTIONS(5775), + [anon_sym_BSLASHacsp] = ACTIONS(5775), + [anon_sym_BSLASHAcsp] = ACTIONS(5775), + [anon_sym_BSLASHacl] = ACTIONS(5775), + [anon_sym_BSLASHAcl] = ACTIONS(5775), + [anon_sym_BSLASHaclp] = ACTIONS(5775), + [anon_sym_BSLASHAclp] = ACTIONS(5775), + [anon_sym_BSLASHacf] = ACTIONS(5775), + [anon_sym_BSLASHAcf] = ACTIONS(5775), + [anon_sym_BSLASHacfp] = ACTIONS(5775), + [anon_sym_BSLASHAcfp] = ACTIONS(5775), + [anon_sym_BSLASHac] = ACTIONS(5775), + [anon_sym_BSLASHAc] = ACTIONS(5775), + [anon_sym_BSLASHacp] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5775), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5775), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5775), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5775), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5775), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5773), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5775), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5775), + [anon_sym_BSLASHcolor] = ACTIONS(5775), + [anon_sym_BSLASHcolorbox] = ACTIONS(5775), + [anon_sym_BSLASHtextcolor] = ACTIONS(5775), + [anon_sym_BSLASHpagecolor] = ACTIONS(5775), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5775), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5775), + [anon_sym_BSLASHtext] = ACTIONS(5775), + [anon_sym_BSLASHintertext] = ACTIONS(5775), + [anon_sym_shortintertext] = ACTIONS(5775), + }, + [884] = { + [sym_curly_group] = STATE(933), + [sym_command_name] = ACTIONS(5771), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_RBRACK] = ACTIONS(5769), + [anon_sym_COMMA] = ACTIONS(5769), + [anon_sym_EQ] = ACTIONS(5769), + [anon_sym_BSLASHpart] = ACTIONS(5771), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddpart] = ACTIONS(5771), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5769), + [anon_sym_BSLASHchapter] = ACTIONS(5771), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddchap] = ACTIONS(5771), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsection] = ACTIONS(5771), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHaddsec] = ACTIONS(5771), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5771), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5769), + [anon_sym_BSLASHparagraph] = ACTIONS(5771), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5771), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5769), + [anon_sym_BSLASHitem] = ACTIONS(5771), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5771), + [sym_placeholder] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5771), + [anon_sym_DASH] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_SLASH] = ACTIONS(5771), + [anon_sym_CARET] = ACTIONS(5771), + [anon_sym__] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5771), + [anon_sym_GT] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5771), + [anon_sym_PIPE] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_SQUOTE] = ACTIONS(5771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5771), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5769), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5769), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5769), + [anon_sym_BSLASHbegin] = ACTIONS(5771), + [anon_sym_BSLASHtitle] = ACTIONS(5771), + [anon_sym_BSLASHauthor] = ACTIONS(5771), + [anon_sym_BSLASHusepackage] = ACTIONS(5771), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5771), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5771), + [anon_sym_BSLASHinclude] = ACTIONS(5771), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5771), + [anon_sym_BSLASHinput] = ACTIONS(5771), + [anon_sym_BSLASHsubfile] = ACTIONS(5771), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5771), + [anon_sym_BSLASHbibliography] = ACTIONS(5771), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5771), + [anon_sym_BSLASHincludesvg] = ACTIONS(5771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5771), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5771), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5771), + [anon_sym_BSLASHimport] = ACTIONS(5771), + [anon_sym_BSLASHsubimport] = ACTIONS(5771), + [anon_sym_BSLASHinputfrom] = ACTIONS(5771), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5771), + [anon_sym_BSLASHincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5771), + [anon_sym_BSLASHcaption] = ACTIONS(5771), + [anon_sym_BSLASHcite] = ACTIONS(5771), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCite] = ACTIONS(5771), + [anon_sym_BSLASHnocite] = ACTIONS(5771), + [anon_sym_BSLASHcitet] = ACTIONS(5771), + [anon_sym_BSLASHcitep] = ACTIONS(5771), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteauthor] = ACTIONS(5771), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5771), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitetitle] = ACTIONS(5771), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteyear] = ACTIONS(5771), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5769), + [anon_sym_BSLASHcitedate] = ACTIONS(5771), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5769), + [anon_sym_BSLASHciteurl] = ACTIONS(5771), + [anon_sym_BSLASHfullcite] = ACTIONS(5771), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5771), + [anon_sym_BSLASHcitealt] = ACTIONS(5771), + [anon_sym_BSLASHcitealp] = ACTIONS(5771), + [anon_sym_BSLASHcitetext] = ACTIONS(5771), + [anon_sym_BSLASHparencite] = ACTIONS(5771), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHParencite] = ACTIONS(5771), + [anon_sym_BSLASHfootcite] = ACTIONS(5771), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5771), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5771), + [anon_sym_BSLASHtextcite] = ACTIONS(5771), + [anon_sym_BSLASHTextcite] = ACTIONS(5771), + [anon_sym_BSLASHsmartcite] = ACTIONS(5771), + [anon_sym_BSLASHSmartcite] = ACTIONS(5771), + [anon_sym_BSLASHsupercite] = ACTIONS(5771), + [anon_sym_BSLASHautocite] = ACTIONS(5771), + [anon_sym_BSLASHAutocite] = ACTIONS(5771), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5769), + [anon_sym_BSLASHvolcite] = ACTIONS(5771), + [anon_sym_BSLASHVolcite] = ACTIONS(5771), + [anon_sym_BSLASHpvolcite] = ACTIONS(5771), + [anon_sym_BSLASHPvolcite] = ACTIONS(5771), + [anon_sym_BSLASHfvolcite] = ACTIONS(5771), + [anon_sym_BSLASHftvolcite] = ACTIONS(5771), + [anon_sym_BSLASHsvolcite] = ACTIONS(5771), + [anon_sym_BSLASHSvolcite] = ACTIONS(5771), + [anon_sym_BSLASHtvolcite] = ACTIONS(5771), + [anon_sym_BSLASHTvolcite] = ACTIONS(5771), + [anon_sym_BSLASHavolcite] = ACTIONS(5771), + [anon_sym_BSLASHAvolcite] = ACTIONS(5771), + [anon_sym_BSLASHnotecite] = ACTIONS(5771), + [anon_sym_BSLASHNotecite] = ACTIONS(5771), + [anon_sym_BSLASHpnotecite] = ACTIONS(5771), + [anon_sym_BSLASHPnotecite] = ACTIONS(5771), + [anon_sym_BSLASHfnotecite] = ACTIONS(5771), + [anon_sym_BSLASHlabel] = ACTIONS(5771), + [anon_sym_BSLASHref] = ACTIONS(5771), + [anon_sym_BSLASHeqref] = ACTIONS(5771), + [anon_sym_BSLASHvref] = ACTIONS(5771), + [anon_sym_BSLASHVref] = ACTIONS(5771), + [anon_sym_BSLASHautoref] = ACTIONS(5771), + [anon_sym_BSLASHpageref] = ACTIONS(5771), + [anon_sym_BSLASHcref] = ACTIONS(5771), + [anon_sym_BSLASHCref] = ACTIONS(5771), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnameCref] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5771), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5771), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5771), + [anon_sym_BSLASHlabelcref] = ACTIONS(5771), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange] = ACTIONS(5771), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHCrefrange] = ACTIONS(5771), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5769), + [anon_sym_BSLASHnewlabel] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand] = ACTIONS(5771), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5771), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5771), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5769), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5771), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdef] = ACTIONS(5771), + [anon_sym_BSLASHlet] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5771), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5771), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5771), + [anon_sym_BSLASHgls] = ACTIONS(5771), + [anon_sym_BSLASHGls] = ACTIONS(5771), + [anon_sym_BSLASHGLS] = ACTIONS(5771), + [anon_sym_BSLASHglspl] = ACTIONS(5771), + [anon_sym_BSLASHGlspl] = ACTIONS(5771), + [anon_sym_BSLASHGLSpl] = ACTIONS(5771), + [anon_sym_BSLASHglsdisp] = ACTIONS(5771), + [anon_sym_BSLASHglslink] = ACTIONS(5771), + [anon_sym_BSLASHglstext] = ACTIONS(5771), + [anon_sym_BSLASHGlstext] = ACTIONS(5771), + [anon_sym_BSLASHGLStext] = ACTIONS(5771), + [anon_sym_BSLASHglsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5771), + [anon_sym_BSLASHglsplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSplural] = ACTIONS(5771), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5771), + [anon_sym_BSLASHglsname] = ACTIONS(5771), + [anon_sym_BSLASHGlsname] = ACTIONS(5771), + [anon_sym_BSLASHGLSname] = ACTIONS(5771), + [anon_sym_BSLASHglssymbol] = ACTIONS(5771), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5771), + [anon_sym_BSLASHglsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5771), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5771), + [anon_sym_BSLASHglsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5771), + [anon_sym_BSLASHglsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5771), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5771), + [anon_sym_BSLASHglsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5771), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5771), + [anon_sym_BSLASHglsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5771), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5771), + [anon_sym_BSLASHnewacronym] = ACTIONS(5771), + [anon_sym_BSLASHacrshort] = ACTIONS(5771), + [anon_sym_BSLASHAcrshort] = ACTIONS(5771), + [anon_sym_BSLASHACRshort] = ACTIONS(5771), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5771), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5771), + [anon_sym_BSLASHacrlong] = ACTIONS(5771), + [anon_sym_BSLASHAcrlong] = ACTIONS(5771), + [anon_sym_BSLASHACRlong] = ACTIONS(5771), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5771), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5771), + [anon_sym_BSLASHacrfull] = ACTIONS(5771), + [anon_sym_BSLASHAcrfull] = ACTIONS(5771), + [anon_sym_BSLASHACRfull] = ACTIONS(5771), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5771), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5771), + [anon_sym_BSLASHacs] = ACTIONS(5771), + [anon_sym_BSLASHAcs] = ACTIONS(5771), + [anon_sym_BSLASHacsp] = ACTIONS(5771), + [anon_sym_BSLASHAcsp] = ACTIONS(5771), + [anon_sym_BSLASHacl] = ACTIONS(5771), + [anon_sym_BSLASHAcl] = ACTIONS(5771), + [anon_sym_BSLASHaclp] = ACTIONS(5771), + [anon_sym_BSLASHAclp] = ACTIONS(5771), + [anon_sym_BSLASHacf] = ACTIONS(5771), + [anon_sym_BSLASHAcf] = ACTIONS(5771), + [anon_sym_BSLASHacfp] = ACTIONS(5771), + [anon_sym_BSLASHAcfp] = ACTIONS(5771), + [anon_sym_BSLASHac] = ACTIONS(5771), + [anon_sym_BSLASHAc] = ACTIONS(5771), + [anon_sym_BSLASHacp] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5771), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5771), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5771), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5771), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5771), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5769), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5771), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5771), + [anon_sym_BSLASHcolor] = ACTIONS(5771), + [anon_sym_BSLASHcolorbox] = ACTIONS(5771), + [anon_sym_BSLASHtextcolor] = ACTIONS(5771), + [anon_sym_BSLASHpagecolor] = ACTIONS(5771), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5771), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5771), + [anon_sym_BSLASHtext] = ACTIONS(5771), + [anon_sym_BSLASHintertext] = ACTIONS(5771), + [anon_sym_shortintertext] = ACTIONS(5771), + }, + [885] = { + [sym_curly_group] = STATE(1146), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_BSLASHpart] = ACTIONS(5755), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddpart] = ACTIONS(5755), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5753), + [anon_sym_BSLASHchapter] = ACTIONS(5755), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddchap] = ACTIONS(5755), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsection] = ACTIONS(5755), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHaddsec] = ACTIONS(5755), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5755), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5753), + [anon_sym_BSLASHparagraph] = ACTIONS(5755), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5755), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5753), + [anon_sym_BSLASHitem] = ACTIONS(5755), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), + }, + [886] = { + [sym_curly_group] = STATE(932), + [sym_command_name] = ACTIONS(5767), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_RBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_BSLASHpart] = ACTIONS(5767), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddpart] = ACTIONS(5767), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5765), + [anon_sym_BSLASHchapter] = ACTIONS(5767), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddchap] = ACTIONS(5767), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsection] = ACTIONS(5767), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHaddsec] = ACTIONS(5767), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5767), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5765), + [anon_sym_BSLASHparagraph] = ACTIONS(5767), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5767), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5765), + [anon_sym_BSLASHitem] = ACTIONS(5767), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5767), + [sym_placeholder] = ACTIONS(5765), + [anon_sym_PLUS] = ACTIONS(5767), + [anon_sym_DASH] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_SLASH] = ACTIONS(5767), + [anon_sym_CARET] = ACTIONS(5767), + [anon_sym__] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5767), + [anon_sym_GT] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5767), + [anon_sym_PIPE] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_SQUOTE] = ACTIONS(5767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5765), + [anon_sym_DOLLAR] = ACTIONS(5767), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5765), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5765), + [anon_sym_BSLASHbegin] = ACTIONS(5767), + [anon_sym_BSLASHtitle] = ACTIONS(5767), + [anon_sym_BSLASHauthor] = ACTIONS(5767), + [anon_sym_BSLASHusepackage] = ACTIONS(5767), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5767), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5767), + [anon_sym_BSLASHinclude] = ACTIONS(5767), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5767), + [anon_sym_BSLASHinput] = ACTIONS(5767), + [anon_sym_BSLASHsubfile] = ACTIONS(5767), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5767), + [anon_sym_BSLASHbibliography] = ACTIONS(5767), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5767), + [anon_sym_BSLASHincludesvg] = ACTIONS(5767), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5767), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5767), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5767), + [anon_sym_BSLASHimport] = ACTIONS(5767), + [anon_sym_BSLASHsubimport] = ACTIONS(5767), + [anon_sym_BSLASHinputfrom] = ACTIONS(5767), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5767), + [anon_sym_BSLASHincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5767), + [anon_sym_BSLASHcaption] = ACTIONS(5767), + [anon_sym_BSLASHcite] = ACTIONS(5767), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCite] = ACTIONS(5767), + [anon_sym_BSLASHnocite] = ACTIONS(5767), + [anon_sym_BSLASHcitet] = ACTIONS(5767), + [anon_sym_BSLASHcitep] = ACTIONS(5767), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteauthor] = ACTIONS(5767), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5767), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitetitle] = ACTIONS(5767), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteyear] = ACTIONS(5767), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5765), + [anon_sym_BSLASHcitedate] = ACTIONS(5767), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5765), + [anon_sym_BSLASHciteurl] = ACTIONS(5767), + [anon_sym_BSLASHfullcite] = ACTIONS(5767), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5767), + [anon_sym_BSLASHcitealt] = ACTIONS(5767), + [anon_sym_BSLASHcitealp] = ACTIONS(5767), + [anon_sym_BSLASHcitetext] = ACTIONS(5767), + [anon_sym_BSLASHparencite] = ACTIONS(5767), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHParencite] = ACTIONS(5767), + [anon_sym_BSLASHfootcite] = ACTIONS(5767), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5767), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5767), + [anon_sym_BSLASHtextcite] = ACTIONS(5767), + [anon_sym_BSLASHTextcite] = ACTIONS(5767), + [anon_sym_BSLASHsmartcite] = ACTIONS(5767), + [anon_sym_BSLASHSmartcite] = ACTIONS(5767), + [anon_sym_BSLASHsupercite] = ACTIONS(5767), + [anon_sym_BSLASHautocite] = ACTIONS(5767), + [anon_sym_BSLASHAutocite] = ACTIONS(5767), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5765), + [anon_sym_BSLASHvolcite] = ACTIONS(5767), + [anon_sym_BSLASHVolcite] = ACTIONS(5767), + [anon_sym_BSLASHpvolcite] = ACTIONS(5767), + [anon_sym_BSLASHPvolcite] = ACTIONS(5767), + [anon_sym_BSLASHfvolcite] = ACTIONS(5767), + [anon_sym_BSLASHftvolcite] = ACTIONS(5767), + [anon_sym_BSLASHsvolcite] = ACTIONS(5767), + [anon_sym_BSLASHSvolcite] = ACTIONS(5767), + [anon_sym_BSLASHtvolcite] = ACTIONS(5767), + [anon_sym_BSLASHTvolcite] = ACTIONS(5767), + [anon_sym_BSLASHavolcite] = ACTIONS(5767), + [anon_sym_BSLASHAvolcite] = ACTIONS(5767), + [anon_sym_BSLASHnotecite] = ACTIONS(5767), + [anon_sym_BSLASHNotecite] = ACTIONS(5767), + [anon_sym_BSLASHpnotecite] = ACTIONS(5767), + [anon_sym_BSLASHPnotecite] = ACTIONS(5767), + [anon_sym_BSLASHfnotecite] = ACTIONS(5767), + [anon_sym_BSLASHlabel] = ACTIONS(5767), + [anon_sym_BSLASHref] = ACTIONS(5767), + [anon_sym_BSLASHeqref] = ACTIONS(5767), + [anon_sym_BSLASHvref] = ACTIONS(5767), + [anon_sym_BSLASHVref] = ACTIONS(5767), + [anon_sym_BSLASHautoref] = ACTIONS(5767), + [anon_sym_BSLASHpageref] = ACTIONS(5767), + [anon_sym_BSLASHcref] = ACTIONS(5767), + [anon_sym_BSLASHCref] = ACTIONS(5767), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnameCref] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5767), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5767), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5767), + [anon_sym_BSLASHlabelcref] = ACTIONS(5767), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange] = ACTIONS(5767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHCrefrange] = ACTIONS(5767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5765), + [anon_sym_BSLASHnewlabel] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand] = ACTIONS(5767), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5767), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5767), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5765), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5767), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdef] = ACTIONS(5767), + [anon_sym_BSLASHlet] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5767), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5767), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5767), + [anon_sym_BSLASHgls] = ACTIONS(5767), + [anon_sym_BSLASHGls] = ACTIONS(5767), + [anon_sym_BSLASHGLS] = ACTIONS(5767), + [anon_sym_BSLASHglspl] = ACTIONS(5767), + [anon_sym_BSLASHGlspl] = ACTIONS(5767), + [anon_sym_BSLASHGLSpl] = ACTIONS(5767), + [anon_sym_BSLASHglsdisp] = ACTIONS(5767), + [anon_sym_BSLASHglslink] = ACTIONS(5767), + [anon_sym_BSLASHglstext] = ACTIONS(5767), + [anon_sym_BSLASHGlstext] = ACTIONS(5767), + [anon_sym_BSLASHGLStext] = ACTIONS(5767), + [anon_sym_BSLASHglsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5767), + [anon_sym_BSLASHglsplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSplural] = ACTIONS(5767), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5767), + [anon_sym_BSLASHglsname] = ACTIONS(5767), + [anon_sym_BSLASHGlsname] = ACTIONS(5767), + [anon_sym_BSLASHGLSname] = ACTIONS(5767), + [anon_sym_BSLASHglssymbol] = ACTIONS(5767), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5767), + [anon_sym_BSLASHglsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5767), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5767), + [anon_sym_BSLASHglsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5767), + [anon_sym_BSLASHglsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5767), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5767), + [anon_sym_BSLASHglsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5767), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5767), + [anon_sym_BSLASHglsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5767), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5767), + [anon_sym_BSLASHnewacronym] = ACTIONS(5767), + [anon_sym_BSLASHacrshort] = ACTIONS(5767), + [anon_sym_BSLASHAcrshort] = ACTIONS(5767), + [anon_sym_BSLASHACRshort] = ACTIONS(5767), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5767), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5767), + [anon_sym_BSLASHacrlong] = ACTIONS(5767), + [anon_sym_BSLASHAcrlong] = ACTIONS(5767), + [anon_sym_BSLASHACRlong] = ACTIONS(5767), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5767), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5767), + [anon_sym_BSLASHacrfull] = ACTIONS(5767), + [anon_sym_BSLASHAcrfull] = ACTIONS(5767), + [anon_sym_BSLASHACRfull] = ACTIONS(5767), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5767), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5767), + [anon_sym_BSLASHacs] = ACTIONS(5767), + [anon_sym_BSLASHAcs] = ACTIONS(5767), + [anon_sym_BSLASHacsp] = ACTIONS(5767), + [anon_sym_BSLASHAcsp] = ACTIONS(5767), + [anon_sym_BSLASHacl] = ACTIONS(5767), + [anon_sym_BSLASHAcl] = ACTIONS(5767), + [anon_sym_BSLASHaclp] = ACTIONS(5767), + [anon_sym_BSLASHAclp] = ACTIONS(5767), + [anon_sym_BSLASHacf] = ACTIONS(5767), + [anon_sym_BSLASHAcf] = ACTIONS(5767), + [anon_sym_BSLASHacfp] = ACTIONS(5767), + [anon_sym_BSLASHAcfp] = ACTIONS(5767), + [anon_sym_BSLASHac] = ACTIONS(5767), + [anon_sym_BSLASHAc] = ACTIONS(5767), + [anon_sym_BSLASHacp] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5767), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5767), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5767), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5767), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5767), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5765), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5767), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5767), + [anon_sym_BSLASHcolor] = ACTIONS(5767), + [anon_sym_BSLASHcolorbox] = ACTIONS(5767), + [anon_sym_BSLASHtextcolor] = ACTIONS(5767), + [anon_sym_BSLASHpagecolor] = ACTIONS(5767), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5767), + [anon_sym_BSLASHtext] = ACTIONS(5767), + [anon_sym_BSLASHintertext] = ACTIONS(5767), + [anon_sym_shortintertext] = ACTIONS(5767), + }, + [887] = { + [sym_curly_group] = STATE(1158), + [sym_command_name] = ACTIONS(5617), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_BSLASHpart] = ACTIONS(5617), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddpart] = ACTIONS(5617), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHchapter] = ACTIONS(5617), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddchap] = ACTIONS(5617), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsection] = ACTIONS(5617), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddsec] = ACTIONS(5617), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHparagraph] = ACTIONS(5617), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHitem] = ACTIONS(5617), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), + [anon_sym_LBRACE] = ACTIONS(265), + [sym_word] = ACTIONS(5617), + [sym_placeholder] = ACTIONS(5615), + [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5617), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LT] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_BANG] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_SQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), + [anon_sym_DOLLAR] = ACTIONS(5617), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), + [anon_sym_BSLASHbegin] = ACTIONS(5617), + [anon_sym_BSLASHend] = ACTIONS(5617), + [anon_sym_BSLASHtitle] = ACTIONS(5617), + [anon_sym_BSLASHauthor] = ACTIONS(5617), + [anon_sym_BSLASHusepackage] = ACTIONS(5617), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), + [anon_sym_BSLASHinclude] = ACTIONS(5617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), + [anon_sym_BSLASHinput] = ACTIONS(5617), + [anon_sym_BSLASHsubfile] = ACTIONS(5617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), + [anon_sym_BSLASHbibliography] = ACTIONS(5617), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), + [anon_sym_BSLASHincludesvg] = ACTIONS(5617), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), + [anon_sym_BSLASHimport] = ACTIONS(5617), + [anon_sym_BSLASHsubimport] = ACTIONS(5617), + [anon_sym_BSLASHinputfrom] = ACTIONS(5617), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), + [anon_sym_BSLASHincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHcaption] = ACTIONS(5617), + [anon_sym_BSLASHcite] = ACTIONS(5617), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCite] = ACTIONS(5617), + [anon_sym_BSLASHnocite] = ACTIONS(5617), + [anon_sym_BSLASHcitet] = ACTIONS(5617), + [anon_sym_BSLASHcitep] = ACTIONS(5617), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteauthor] = ACTIONS(5617), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitetitle] = ACTIONS(5617), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteyear] = ACTIONS(5617), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitedate] = ACTIONS(5617), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteurl] = ACTIONS(5617), + [anon_sym_BSLASHfullcite] = ACTIONS(5617), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), + [anon_sym_BSLASHcitealt] = ACTIONS(5617), + [anon_sym_BSLASHcitealp] = ACTIONS(5617), + [anon_sym_BSLASHcitetext] = ACTIONS(5617), + [anon_sym_BSLASHparencite] = ACTIONS(5617), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHParencite] = ACTIONS(5617), + [anon_sym_BSLASHfootcite] = ACTIONS(5617), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), + [anon_sym_BSLASHtextcite] = ACTIONS(5617), + [anon_sym_BSLASHTextcite] = ACTIONS(5617), + [anon_sym_BSLASHsmartcite] = ACTIONS(5617), + [anon_sym_BSLASHSmartcite] = ACTIONS(5617), + [anon_sym_BSLASHsupercite] = ACTIONS(5617), + [anon_sym_BSLASHautocite] = ACTIONS(5617), + [anon_sym_BSLASHAutocite] = ACTIONS(5617), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHvolcite] = ACTIONS(5617), + [anon_sym_BSLASHVolcite] = ACTIONS(5617), + [anon_sym_BSLASHpvolcite] = ACTIONS(5617), + [anon_sym_BSLASHPvolcite] = ACTIONS(5617), + [anon_sym_BSLASHfvolcite] = ACTIONS(5617), + [anon_sym_BSLASHftvolcite] = ACTIONS(5617), + [anon_sym_BSLASHsvolcite] = ACTIONS(5617), + [anon_sym_BSLASHSvolcite] = ACTIONS(5617), + [anon_sym_BSLASHtvolcite] = ACTIONS(5617), + [anon_sym_BSLASHTvolcite] = ACTIONS(5617), + [anon_sym_BSLASHavolcite] = ACTIONS(5617), + [anon_sym_BSLASHAvolcite] = ACTIONS(5617), + [anon_sym_BSLASHnotecite] = ACTIONS(5617), + [anon_sym_BSLASHNotecite] = ACTIONS(5617), + [anon_sym_BSLASHpnotecite] = ACTIONS(5617), + [anon_sym_BSLASHPnotecite] = ACTIONS(5617), + [anon_sym_BSLASHfnotecite] = ACTIONS(5617), + [anon_sym_BSLASHlabel] = ACTIONS(5617), + [anon_sym_BSLASHref] = ACTIONS(5617), + [anon_sym_BSLASHeqref] = ACTIONS(5617), + [anon_sym_BSLASHvref] = ACTIONS(5617), + [anon_sym_BSLASHVref] = ACTIONS(5617), + [anon_sym_BSLASHautoref] = ACTIONS(5617), + [anon_sym_BSLASHpageref] = ACTIONS(5617), + [anon_sym_BSLASHcref] = ACTIONS(5617), + [anon_sym_BSLASHCref] = ACTIONS(5617), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnameCref] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHlabelcref] = ACTIONS(5617), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCrefrange] = ACTIONS(5617), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnewlabel] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdef] = ACTIONS(5617), + [anon_sym_BSLASHlet] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), + [anon_sym_BSLASHgls] = ACTIONS(5617), + [anon_sym_BSLASHGls] = ACTIONS(5617), + [anon_sym_BSLASHGLS] = ACTIONS(5617), + [anon_sym_BSLASHglspl] = ACTIONS(5617), + [anon_sym_BSLASHGlspl] = ACTIONS(5617), + [anon_sym_BSLASHGLSpl] = ACTIONS(5617), + [anon_sym_BSLASHglsdisp] = ACTIONS(5617), + [anon_sym_BSLASHglslink] = ACTIONS(5617), + [anon_sym_BSLASHglstext] = ACTIONS(5617), + [anon_sym_BSLASHGlstext] = ACTIONS(5617), + [anon_sym_BSLASHGLStext] = ACTIONS(5617), + [anon_sym_BSLASHglsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), + [anon_sym_BSLASHglsplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSplural] = ACTIONS(5617), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHglsname] = ACTIONS(5617), + [anon_sym_BSLASHGlsname] = ACTIONS(5617), + [anon_sym_BSLASHGLSname] = ACTIONS(5617), + [anon_sym_BSLASHglssymbol] = ACTIONS(5617), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), + [anon_sym_BSLASHglsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), + [anon_sym_BSLASHglsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), + [anon_sym_BSLASHglsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), + [anon_sym_BSLASHglsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), + [anon_sym_BSLASHglsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), + [anon_sym_BSLASHnewacronym] = ACTIONS(5617), + [anon_sym_BSLASHacrshort] = ACTIONS(5617), + [anon_sym_BSLASHAcrshort] = ACTIONS(5617), + [anon_sym_BSLASHACRshort] = ACTIONS(5617), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), + [anon_sym_BSLASHacrlong] = ACTIONS(5617), + [anon_sym_BSLASHAcrlong] = ACTIONS(5617), + [anon_sym_BSLASHACRlong] = ACTIONS(5617), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), + [anon_sym_BSLASHacrfull] = ACTIONS(5617), + [anon_sym_BSLASHAcrfull] = ACTIONS(5617), + [anon_sym_BSLASHACRfull] = ACTIONS(5617), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), + [anon_sym_BSLASHacs] = ACTIONS(5617), + [anon_sym_BSLASHAcs] = ACTIONS(5617), + [anon_sym_BSLASHacsp] = ACTIONS(5617), + [anon_sym_BSLASHAcsp] = ACTIONS(5617), + [anon_sym_BSLASHacl] = ACTIONS(5617), + [anon_sym_BSLASHAcl] = ACTIONS(5617), + [anon_sym_BSLASHaclp] = ACTIONS(5617), + [anon_sym_BSLASHAclp] = ACTIONS(5617), + [anon_sym_BSLASHacf] = ACTIONS(5617), + [anon_sym_BSLASHAcf] = ACTIONS(5617), + [anon_sym_BSLASHacfp] = ACTIONS(5617), + [anon_sym_BSLASHAcfp] = ACTIONS(5617), + [anon_sym_BSLASHac] = ACTIONS(5617), + [anon_sym_BSLASHAc] = ACTIONS(5617), + [anon_sym_BSLASHacp] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), + [anon_sym_BSLASHcolor] = ACTIONS(5617), + [anon_sym_BSLASHcolorbox] = ACTIONS(5617), + [anon_sym_BSLASHtextcolor] = ACTIONS(5617), + [anon_sym_BSLASHpagecolor] = ACTIONS(5617), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), + [anon_sym_BSLASHtext] = ACTIONS(5617), + [anon_sym_BSLASHintertext] = ACTIONS(5617), + [anon_sym_shortintertext] = ACTIONS(5617), + }, + [888] = { + [sym_curly_group] = STATE(927), + [sym_command_name] = ACTIONS(5605), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5605), + [anon_sym_LPAREN] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_BSLASHpart] = ACTIONS(5605), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddpart] = ACTIONS(5605), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5603), + [anon_sym_BSLASHchapter] = ACTIONS(5605), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddchap] = ACTIONS(5605), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsection] = ACTIONS(5605), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHaddsec] = ACTIONS(5605), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5605), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5603), + [anon_sym_BSLASHparagraph] = ACTIONS(5605), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5605), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5603), + [anon_sym_BSLASHitem] = ACTIONS(5605), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5605), + [sym_placeholder] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_SLASH] = ACTIONS(5605), + [anon_sym_CARET] = ACTIONS(5605), + [anon_sym__] = ACTIONS(5605), + [anon_sym_LT] = ACTIONS(5605), + [anon_sym_GT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5605), + [anon_sym_PIPE] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_SQUOTE] = ACTIONS(5605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5603), + [anon_sym_DOLLAR] = ACTIONS(5605), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5603), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5603), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5603), + [anon_sym_BSLASHbegin] = ACTIONS(5605), + [anon_sym_BSLASHtitle] = ACTIONS(5605), + [anon_sym_BSLASHauthor] = ACTIONS(5605), + [anon_sym_BSLASHusepackage] = ACTIONS(5605), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5605), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5605), + [anon_sym_BSLASHinclude] = ACTIONS(5605), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5605), + [anon_sym_BSLASHinput] = ACTIONS(5605), + [anon_sym_BSLASHsubfile] = ACTIONS(5605), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5605), + [anon_sym_BSLASHbibliography] = ACTIONS(5605), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5605), + [anon_sym_BSLASHincludesvg] = ACTIONS(5605), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5605), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5605), + [anon_sym_BSLASHimport] = ACTIONS(5605), + [anon_sym_BSLASHsubimport] = ACTIONS(5605), + [anon_sym_BSLASHinputfrom] = ACTIONS(5605), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5605), + [anon_sym_BSLASHincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5605), + [anon_sym_BSLASHcaption] = ACTIONS(5605), + [anon_sym_BSLASHcite] = ACTIONS(5605), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCite] = ACTIONS(5605), + [anon_sym_BSLASHnocite] = ACTIONS(5605), + [anon_sym_BSLASHcitet] = ACTIONS(5605), + [anon_sym_BSLASHcitep] = ACTIONS(5605), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteauthor] = ACTIONS(5605), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5605), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitetitle] = ACTIONS(5605), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteyear] = ACTIONS(5605), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5603), + [anon_sym_BSLASHcitedate] = ACTIONS(5605), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5603), + [anon_sym_BSLASHciteurl] = ACTIONS(5605), + [anon_sym_BSLASHfullcite] = ACTIONS(5605), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5605), + [anon_sym_BSLASHcitealt] = ACTIONS(5605), + [anon_sym_BSLASHcitealp] = ACTIONS(5605), + [anon_sym_BSLASHcitetext] = ACTIONS(5605), + [anon_sym_BSLASHparencite] = ACTIONS(5605), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHParencite] = ACTIONS(5605), + [anon_sym_BSLASHfootcite] = ACTIONS(5605), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5605), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5605), + [anon_sym_BSLASHtextcite] = ACTIONS(5605), + [anon_sym_BSLASHTextcite] = ACTIONS(5605), + [anon_sym_BSLASHsmartcite] = ACTIONS(5605), + [anon_sym_BSLASHSmartcite] = ACTIONS(5605), + [anon_sym_BSLASHsupercite] = ACTIONS(5605), + [anon_sym_BSLASHautocite] = ACTIONS(5605), + [anon_sym_BSLASHAutocite] = ACTIONS(5605), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5603), + [anon_sym_BSLASHvolcite] = ACTIONS(5605), + [anon_sym_BSLASHVolcite] = ACTIONS(5605), + [anon_sym_BSLASHpvolcite] = ACTIONS(5605), + [anon_sym_BSLASHPvolcite] = ACTIONS(5605), + [anon_sym_BSLASHfvolcite] = ACTIONS(5605), + [anon_sym_BSLASHftvolcite] = ACTIONS(5605), + [anon_sym_BSLASHsvolcite] = ACTIONS(5605), + [anon_sym_BSLASHSvolcite] = ACTIONS(5605), + [anon_sym_BSLASHtvolcite] = ACTIONS(5605), + [anon_sym_BSLASHTvolcite] = ACTIONS(5605), + [anon_sym_BSLASHavolcite] = ACTIONS(5605), + [anon_sym_BSLASHAvolcite] = ACTIONS(5605), + [anon_sym_BSLASHnotecite] = ACTIONS(5605), + [anon_sym_BSLASHNotecite] = ACTIONS(5605), + [anon_sym_BSLASHpnotecite] = ACTIONS(5605), + [anon_sym_BSLASHPnotecite] = ACTIONS(5605), + [anon_sym_BSLASHfnotecite] = ACTIONS(5605), + [anon_sym_BSLASHlabel] = ACTIONS(5605), + [anon_sym_BSLASHref] = ACTIONS(5605), + [anon_sym_BSLASHeqref] = ACTIONS(5605), + [anon_sym_BSLASHvref] = ACTIONS(5605), + [anon_sym_BSLASHVref] = ACTIONS(5605), + [anon_sym_BSLASHautoref] = ACTIONS(5605), + [anon_sym_BSLASHpageref] = ACTIONS(5605), + [anon_sym_BSLASHcref] = ACTIONS(5605), + [anon_sym_BSLASHCref] = ACTIONS(5605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnameCref] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5605), + [anon_sym_BSLASHlabelcref] = ACTIONS(5605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange] = ACTIONS(5605), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHCrefrange] = ACTIONS(5605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5603), + [anon_sym_BSLASHnewlabel] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand] = ACTIONS(5605), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5605), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5605), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5603), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5605), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdef] = ACTIONS(5605), + [anon_sym_BSLASHlet] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5605), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5605), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5605), + [anon_sym_BSLASHgls] = ACTIONS(5605), + [anon_sym_BSLASHGls] = ACTIONS(5605), + [anon_sym_BSLASHGLS] = ACTIONS(5605), + [anon_sym_BSLASHglspl] = ACTIONS(5605), + [anon_sym_BSLASHGlspl] = ACTIONS(5605), + [anon_sym_BSLASHGLSpl] = ACTIONS(5605), + [anon_sym_BSLASHglsdisp] = ACTIONS(5605), + [anon_sym_BSLASHglslink] = ACTIONS(5605), + [anon_sym_BSLASHglstext] = ACTIONS(5605), + [anon_sym_BSLASHGlstext] = ACTIONS(5605), + [anon_sym_BSLASHGLStext] = ACTIONS(5605), + [anon_sym_BSLASHglsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5605), + [anon_sym_BSLASHglsplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSplural] = ACTIONS(5605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5605), + [anon_sym_BSLASHglsname] = ACTIONS(5605), + [anon_sym_BSLASHGlsname] = ACTIONS(5605), + [anon_sym_BSLASHGLSname] = ACTIONS(5605), + [anon_sym_BSLASHglssymbol] = ACTIONS(5605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5605), + [anon_sym_BSLASHglsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5605), + [anon_sym_BSLASHglsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5605), + [anon_sym_BSLASHglsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5605), + [anon_sym_BSLASHglsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5605), + [anon_sym_BSLASHglsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5605), + [anon_sym_BSLASHacrshort] = ACTIONS(5605), + [anon_sym_BSLASHAcrshort] = ACTIONS(5605), + [anon_sym_BSLASHACRshort] = ACTIONS(5605), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5605), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5605), + [anon_sym_BSLASHacrlong] = ACTIONS(5605), + [anon_sym_BSLASHAcrlong] = ACTIONS(5605), + [anon_sym_BSLASHACRlong] = ACTIONS(5605), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5605), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5605), + [anon_sym_BSLASHacrfull] = ACTIONS(5605), + [anon_sym_BSLASHAcrfull] = ACTIONS(5605), + [anon_sym_BSLASHACRfull] = ACTIONS(5605), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5605), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5605), + [anon_sym_BSLASHacs] = ACTIONS(5605), + [anon_sym_BSLASHAcs] = ACTIONS(5605), + [anon_sym_BSLASHacsp] = ACTIONS(5605), + [anon_sym_BSLASHAcsp] = ACTIONS(5605), + [anon_sym_BSLASHacl] = ACTIONS(5605), + [anon_sym_BSLASHAcl] = ACTIONS(5605), + [anon_sym_BSLASHaclp] = ACTIONS(5605), + [anon_sym_BSLASHAclp] = ACTIONS(5605), + [anon_sym_BSLASHacf] = ACTIONS(5605), + [anon_sym_BSLASHAcf] = ACTIONS(5605), + [anon_sym_BSLASHacfp] = ACTIONS(5605), + [anon_sym_BSLASHAcfp] = ACTIONS(5605), + [anon_sym_BSLASHac] = ACTIONS(5605), + [anon_sym_BSLASHAc] = ACTIONS(5605), + [anon_sym_BSLASHacp] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5605), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5605), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5605), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5605), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5605), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5603), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5605), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5605), + [anon_sym_BSLASHcolor] = ACTIONS(5605), + [anon_sym_BSLASHcolorbox] = ACTIONS(5605), + [anon_sym_BSLASHtextcolor] = ACTIONS(5605), + [anon_sym_BSLASHpagecolor] = ACTIONS(5605), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5605), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5605), + [anon_sym_BSLASHtext] = ACTIONS(5605), + [anon_sym_BSLASHintertext] = ACTIONS(5605), + [anon_sym_shortintertext] = ACTIONS(5605), + }, + [889] = { + [sym_curly_group] = STATE(928), + [sym_command_name] = ACTIONS(5613), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5613), + [anon_sym_LPAREN] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_BSLASHpart] = ACTIONS(5613), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddpart] = ACTIONS(5613), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5611), + [anon_sym_BSLASHchapter] = ACTIONS(5613), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddchap] = ACTIONS(5613), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsection] = ACTIONS(5613), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHaddsec] = ACTIONS(5613), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5613), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5611), + [anon_sym_BSLASHparagraph] = ACTIONS(5613), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5613), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5611), + [anon_sym_BSLASHitem] = ACTIONS(5613), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5613), + [sym_placeholder] = ACTIONS(5611), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym__] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_BANG] = ACTIONS(5613), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_SQUOTE] = ACTIONS(5613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5611), + [anon_sym_DOLLAR] = ACTIONS(5613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5611), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5611), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5611), + [anon_sym_BSLASHbegin] = ACTIONS(5613), + [anon_sym_BSLASHtitle] = ACTIONS(5613), + [anon_sym_BSLASHauthor] = ACTIONS(5613), + [anon_sym_BSLASHusepackage] = ACTIONS(5613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), + [anon_sym_BSLASHinclude] = ACTIONS(5613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), + [anon_sym_BSLASHinput] = ACTIONS(5613), + [anon_sym_BSLASHsubfile] = ACTIONS(5613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), + [anon_sym_BSLASHbibliography] = ACTIONS(5613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), + [anon_sym_BSLASHincludesvg] = ACTIONS(5613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), + [anon_sym_BSLASHimport] = ACTIONS(5613), + [anon_sym_BSLASHsubimport] = ACTIONS(5613), + [anon_sym_BSLASHinputfrom] = ACTIONS(5613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), + [anon_sym_BSLASHincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), + [anon_sym_BSLASHcaption] = ACTIONS(5613), + [anon_sym_BSLASHcite] = ACTIONS(5613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCite] = ACTIONS(5613), + [anon_sym_BSLASHnocite] = ACTIONS(5613), + [anon_sym_BSLASHcitet] = ACTIONS(5613), + [anon_sym_BSLASHcitep] = ACTIONS(5613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteauthor] = ACTIONS(5613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitetitle] = ACTIONS(5613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteyear] = ACTIONS(5613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5611), + [anon_sym_BSLASHcitedate] = ACTIONS(5613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5611), + [anon_sym_BSLASHciteurl] = ACTIONS(5613), + [anon_sym_BSLASHfullcite] = ACTIONS(5613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), + [anon_sym_BSLASHcitealt] = ACTIONS(5613), + [anon_sym_BSLASHcitealp] = ACTIONS(5613), + [anon_sym_BSLASHcitetext] = ACTIONS(5613), + [anon_sym_BSLASHparencite] = ACTIONS(5613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHParencite] = ACTIONS(5613), + [anon_sym_BSLASHfootcite] = ACTIONS(5613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), + [anon_sym_BSLASHtextcite] = ACTIONS(5613), + [anon_sym_BSLASHTextcite] = ACTIONS(5613), + [anon_sym_BSLASHsmartcite] = ACTIONS(5613), + [anon_sym_BSLASHSmartcite] = ACTIONS(5613), + [anon_sym_BSLASHsupercite] = ACTIONS(5613), + [anon_sym_BSLASHautocite] = ACTIONS(5613), + [anon_sym_BSLASHAutocite] = ACTIONS(5613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5611), + [anon_sym_BSLASHvolcite] = ACTIONS(5613), + [anon_sym_BSLASHVolcite] = ACTIONS(5613), + [anon_sym_BSLASHpvolcite] = ACTIONS(5613), + [anon_sym_BSLASHPvolcite] = ACTIONS(5613), + [anon_sym_BSLASHfvolcite] = ACTIONS(5613), + [anon_sym_BSLASHftvolcite] = ACTIONS(5613), + [anon_sym_BSLASHsvolcite] = ACTIONS(5613), + [anon_sym_BSLASHSvolcite] = ACTIONS(5613), + [anon_sym_BSLASHtvolcite] = ACTIONS(5613), + [anon_sym_BSLASHTvolcite] = ACTIONS(5613), + [anon_sym_BSLASHavolcite] = ACTIONS(5613), + [anon_sym_BSLASHAvolcite] = ACTIONS(5613), + [anon_sym_BSLASHnotecite] = ACTIONS(5613), + [anon_sym_BSLASHNotecite] = ACTIONS(5613), + [anon_sym_BSLASHpnotecite] = ACTIONS(5613), + [anon_sym_BSLASHPnotecite] = ACTIONS(5613), + [anon_sym_BSLASHfnotecite] = ACTIONS(5613), + [anon_sym_BSLASHlabel] = ACTIONS(5613), + [anon_sym_BSLASHref] = ACTIONS(5613), + [anon_sym_BSLASHeqref] = ACTIONS(5613), + [anon_sym_BSLASHvref] = ACTIONS(5613), + [anon_sym_BSLASHVref] = ACTIONS(5613), + [anon_sym_BSLASHautoref] = ACTIONS(5613), + [anon_sym_BSLASHpageref] = ACTIONS(5613), + [anon_sym_BSLASHcref] = ACTIONS(5613), + [anon_sym_BSLASHCref] = ACTIONS(5613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnameCref] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), + [anon_sym_BSLASHlabelcref] = ACTIONS(5613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange] = ACTIONS(5613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHCrefrange] = ACTIONS(5613), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5611), + [anon_sym_BSLASHnewlabel] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand] = ACTIONS(5613), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdef] = ACTIONS(5613), + [anon_sym_BSLASHlet] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), + [anon_sym_BSLASHgls] = ACTIONS(5613), + [anon_sym_BSLASHGls] = ACTIONS(5613), + [anon_sym_BSLASHGLS] = ACTIONS(5613), + [anon_sym_BSLASHglspl] = ACTIONS(5613), + [anon_sym_BSLASHGlspl] = ACTIONS(5613), + [anon_sym_BSLASHGLSpl] = ACTIONS(5613), + [anon_sym_BSLASHglsdisp] = ACTIONS(5613), + [anon_sym_BSLASHglslink] = ACTIONS(5613), + [anon_sym_BSLASHglstext] = ACTIONS(5613), + [anon_sym_BSLASHGlstext] = ACTIONS(5613), + [anon_sym_BSLASHGLStext] = ACTIONS(5613), + [anon_sym_BSLASHglsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), + [anon_sym_BSLASHglsplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSplural] = ACTIONS(5613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), + [anon_sym_BSLASHglsname] = ACTIONS(5613), + [anon_sym_BSLASHGlsname] = ACTIONS(5613), + [anon_sym_BSLASHGLSname] = ACTIONS(5613), + [anon_sym_BSLASHglssymbol] = ACTIONS(5613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), + [anon_sym_BSLASHglsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), + [anon_sym_BSLASHglsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), + [anon_sym_BSLASHglsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), + [anon_sym_BSLASHglsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), + [anon_sym_BSLASHglsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), + [anon_sym_BSLASHnewacronym] = ACTIONS(5613), + [anon_sym_BSLASHacrshort] = ACTIONS(5613), + [anon_sym_BSLASHAcrshort] = ACTIONS(5613), + [anon_sym_BSLASHACRshort] = ACTIONS(5613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), + [anon_sym_BSLASHacrlong] = ACTIONS(5613), + [anon_sym_BSLASHAcrlong] = ACTIONS(5613), + [anon_sym_BSLASHACRlong] = ACTIONS(5613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), + [anon_sym_BSLASHacrfull] = ACTIONS(5613), + [anon_sym_BSLASHAcrfull] = ACTIONS(5613), + [anon_sym_BSLASHACRfull] = ACTIONS(5613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), + [anon_sym_BSLASHacs] = ACTIONS(5613), + [anon_sym_BSLASHAcs] = ACTIONS(5613), + [anon_sym_BSLASHacsp] = ACTIONS(5613), + [anon_sym_BSLASHAcsp] = ACTIONS(5613), + [anon_sym_BSLASHacl] = ACTIONS(5613), + [anon_sym_BSLASHAcl] = ACTIONS(5613), + [anon_sym_BSLASHaclp] = ACTIONS(5613), + [anon_sym_BSLASHAclp] = ACTIONS(5613), + [anon_sym_BSLASHacf] = ACTIONS(5613), + [anon_sym_BSLASHAcf] = ACTIONS(5613), + [anon_sym_BSLASHacfp] = ACTIONS(5613), + [anon_sym_BSLASHAcfp] = ACTIONS(5613), + [anon_sym_BSLASHac] = ACTIONS(5613), + [anon_sym_BSLASHAc] = ACTIONS(5613), + [anon_sym_BSLASHacp] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5611), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), + [anon_sym_BSLASHcolor] = ACTIONS(5613), + [anon_sym_BSLASHcolorbox] = ACTIONS(5613), + [anon_sym_BSLASHtextcolor] = ACTIONS(5613), + [anon_sym_BSLASHpagecolor] = ACTIONS(5613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), + [anon_sym_BSLASHtext] = ACTIONS(5613), + [anon_sym_BSLASHintertext] = ACTIONS(5613), + [anon_sym_shortintertext] = ACTIONS(5613), }, - [1394] = { - [sym_command_name] = ACTIONS(5341), + [890] = { + [sym_curly_group] = STATE(929), + [sym_command_name] = ACTIONS(5617), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), + [anon_sym_BSLASHiffalse] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_BSLASHpart] = ACTIONS(5617), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddpart] = ACTIONS(5617), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5615), + [anon_sym_BSLASHchapter] = ACTIONS(5617), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddchap] = ACTIONS(5617), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsection] = ACTIONS(5617), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHaddsec] = ACTIONS(5617), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5617), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5615), + [anon_sym_BSLASHparagraph] = ACTIONS(5617), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5617), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5615), + [anon_sym_BSLASHitem] = ACTIONS(5617), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5615), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5617), + [sym_placeholder] = ACTIONS(5615), + [anon_sym_PLUS] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5617), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LT] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_BANG] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_SQUOTE] = ACTIONS(5617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), + [anon_sym_DOLLAR] = ACTIONS(5617), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5615), + [anon_sym_BSLASHbegin] = ACTIONS(5617), + [anon_sym_BSLASHtitle] = ACTIONS(5617), + [anon_sym_BSLASHauthor] = ACTIONS(5617), + [anon_sym_BSLASHusepackage] = ACTIONS(5617), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), + [anon_sym_BSLASHinclude] = ACTIONS(5617), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), + [anon_sym_BSLASHinput] = ACTIONS(5617), + [anon_sym_BSLASHsubfile] = ACTIONS(5617), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), + [anon_sym_BSLASHbibliography] = ACTIONS(5617), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), + [anon_sym_BSLASHincludesvg] = ACTIONS(5617), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), + [anon_sym_BSLASHimport] = ACTIONS(5617), + [anon_sym_BSLASHsubimport] = ACTIONS(5617), + [anon_sym_BSLASHinputfrom] = ACTIONS(5617), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), + [anon_sym_BSLASHincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), + [anon_sym_BSLASHcaption] = ACTIONS(5617), + [anon_sym_BSLASHcite] = ACTIONS(5617), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCite] = ACTIONS(5617), + [anon_sym_BSLASHnocite] = ACTIONS(5617), + [anon_sym_BSLASHcitet] = ACTIONS(5617), + [anon_sym_BSLASHcitep] = ACTIONS(5617), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteauthor] = ACTIONS(5617), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitetitle] = ACTIONS(5617), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteyear] = ACTIONS(5617), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), + [anon_sym_BSLASHcitedate] = ACTIONS(5617), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), + [anon_sym_BSLASHciteurl] = ACTIONS(5617), + [anon_sym_BSLASHfullcite] = ACTIONS(5617), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), + [anon_sym_BSLASHcitealt] = ACTIONS(5617), + [anon_sym_BSLASHcitealp] = ACTIONS(5617), + [anon_sym_BSLASHcitetext] = ACTIONS(5617), + [anon_sym_BSLASHparencite] = ACTIONS(5617), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHParencite] = ACTIONS(5617), + [anon_sym_BSLASHfootcite] = ACTIONS(5617), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), + [anon_sym_BSLASHtextcite] = ACTIONS(5617), + [anon_sym_BSLASHTextcite] = ACTIONS(5617), + [anon_sym_BSLASHsmartcite] = ACTIONS(5617), + [anon_sym_BSLASHSmartcite] = ACTIONS(5617), + [anon_sym_BSLASHsupercite] = ACTIONS(5617), + [anon_sym_BSLASHautocite] = ACTIONS(5617), + [anon_sym_BSLASHAutocite] = ACTIONS(5617), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), + [anon_sym_BSLASHvolcite] = ACTIONS(5617), + [anon_sym_BSLASHVolcite] = ACTIONS(5617), + [anon_sym_BSLASHpvolcite] = ACTIONS(5617), + [anon_sym_BSLASHPvolcite] = ACTIONS(5617), + [anon_sym_BSLASHfvolcite] = ACTIONS(5617), + [anon_sym_BSLASHftvolcite] = ACTIONS(5617), + [anon_sym_BSLASHsvolcite] = ACTIONS(5617), + [anon_sym_BSLASHSvolcite] = ACTIONS(5617), + [anon_sym_BSLASHtvolcite] = ACTIONS(5617), + [anon_sym_BSLASHTvolcite] = ACTIONS(5617), + [anon_sym_BSLASHavolcite] = ACTIONS(5617), + [anon_sym_BSLASHAvolcite] = ACTIONS(5617), + [anon_sym_BSLASHnotecite] = ACTIONS(5617), + [anon_sym_BSLASHNotecite] = ACTIONS(5617), + [anon_sym_BSLASHpnotecite] = ACTIONS(5617), + [anon_sym_BSLASHPnotecite] = ACTIONS(5617), + [anon_sym_BSLASHfnotecite] = ACTIONS(5617), + [anon_sym_BSLASHlabel] = ACTIONS(5617), + [anon_sym_BSLASHref] = ACTIONS(5617), + [anon_sym_BSLASHeqref] = ACTIONS(5617), + [anon_sym_BSLASHvref] = ACTIONS(5617), + [anon_sym_BSLASHVref] = ACTIONS(5617), + [anon_sym_BSLASHautoref] = ACTIONS(5617), + [anon_sym_BSLASHpageref] = ACTIONS(5617), + [anon_sym_BSLASHcref] = ACTIONS(5617), + [anon_sym_BSLASHCref] = ACTIONS(5617), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnameCref] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), + [anon_sym_BSLASHlabelcref] = ACTIONS(5617), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange] = ACTIONS(5617), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHCrefrange] = ACTIONS(5617), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), + [anon_sym_BSLASHnewlabel] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand] = ACTIONS(5617), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdef] = ACTIONS(5617), + [anon_sym_BSLASHlet] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), + [anon_sym_BSLASHgls] = ACTIONS(5617), + [anon_sym_BSLASHGls] = ACTIONS(5617), + [anon_sym_BSLASHGLS] = ACTIONS(5617), + [anon_sym_BSLASHglspl] = ACTIONS(5617), + [anon_sym_BSLASHGlspl] = ACTIONS(5617), + [anon_sym_BSLASHGLSpl] = ACTIONS(5617), + [anon_sym_BSLASHglsdisp] = ACTIONS(5617), + [anon_sym_BSLASHglslink] = ACTIONS(5617), + [anon_sym_BSLASHglstext] = ACTIONS(5617), + [anon_sym_BSLASHGlstext] = ACTIONS(5617), + [anon_sym_BSLASHGLStext] = ACTIONS(5617), + [anon_sym_BSLASHglsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), + [anon_sym_BSLASHglsplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSplural] = ACTIONS(5617), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), + [anon_sym_BSLASHglsname] = ACTIONS(5617), + [anon_sym_BSLASHGlsname] = ACTIONS(5617), + [anon_sym_BSLASHGLSname] = ACTIONS(5617), + [anon_sym_BSLASHglssymbol] = ACTIONS(5617), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), + [anon_sym_BSLASHglsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), + [anon_sym_BSLASHglsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), + [anon_sym_BSLASHglsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), + [anon_sym_BSLASHglsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), + [anon_sym_BSLASHglsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), + [anon_sym_BSLASHnewacronym] = ACTIONS(5617), + [anon_sym_BSLASHacrshort] = ACTIONS(5617), + [anon_sym_BSLASHAcrshort] = ACTIONS(5617), + [anon_sym_BSLASHACRshort] = ACTIONS(5617), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), + [anon_sym_BSLASHacrlong] = ACTIONS(5617), + [anon_sym_BSLASHAcrlong] = ACTIONS(5617), + [anon_sym_BSLASHACRlong] = ACTIONS(5617), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), + [anon_sym_BSLASHacrfull] = ACTIONS(5617), + [anon_sym_BSLASHAcrfull] = ACTIONS(5617), + [anon_sym_BSLASHACRfull] = ACTIONS(5617), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), + [anon_sym_BSLASHacs] = ACTIONS(5617), + [anon_sym_BSLASHAcs] = ACTIONS(5617), + [anon_sym_BSLASHacsp] = ACTIONS(5617), + [anon_sym_BSLASHAcsp] = ACTIONS(5617), + [anon_sym_BSLASHacl] = ACTIONS(5617), + [anon_sym_BSLASHAcl] = ACTIONS(5617), + [anon_sym_BSLASHaclp] = ACTIONS(5617), + [anon_sym_BSLASHAclp] = ACTIONS(5617), + [anon_sym_BSLASHacf] = ACTIONS(5617), + [anon_sym_BSLASHAcf] = ACTIONS(5617), + [anon_sym_BSLASHacfp] = ACTIONS(5617), + [anon_sym_BSLASHAcfp] = ACTIONS(5617), + [anon_sym_BSLASHac] = ACTIONS(5617), + [anon_sym_BSLASHAc] = ACTIONS(5617), + [anon_sym_BSLASHacp] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), + [anon_sym_BSLASHcolor] = ACTIONS(5617), + [anon_sym_BSLASHcolorbox] = ACTIONS(5617), + [anon_sym_BSLASHtextcolor] = ACTIONS(5617), + [anon_sym_BSLASHpagecolor] = ACTIONS(5617), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), + [anon_sym_BSLASHtext] = ACTIONS(5617), + [anon_sym_BSLASHintertext] = ACTIONS(5617), + [anon_sym_shortintertext] = ACTIONS(5617), }, - [1395] = { - [sym_command_name] = ACTIONS(5337), + [891] = { + [sym_curly_group] = STATE(930), + [sym_command_name] = ACTIONS(5751), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_BSLASHpart] = ACTIONS(5751), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddpart] = ACTIONS(5751), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5749), + [anon_sym_BSLASHchapter] = ACTIONS(5751), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddchap] = ACTIONS(5751), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsection] = ACTIONS(5751), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHaddsec] = ACTIONS(5751), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5751), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5749), + [anon_sym_BSLASHparagraph] = ACTIONS(5751), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5751), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5749), + [anon_sym_BSLASHitem] = ACTIONS(5751), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(619), + [sym_word] = ACTIONS(5751), + [sym_placeholder] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym__] = ACTIONS(5751), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5751), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_SQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5749), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5749), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5749), + [anon_sym_BSLASHbegin] = ACTIONS(5751), + [anon_sym_BSLASHtitle] = ACTIONS(5751), + [anon_sym_BSLASHauthor] = ACTIONS(5751), + [anon_sym_BSLASHusepackage] = ACTIONS(5751), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5751), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5751), + [anon_sym_BSLASHinclude] = ACTIONS(5751), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5751), + [anon_sym_BSLASHinput] = ACTIONS(5751), + [anon_sym_BSLASHsubfile] = ACTIONS(5751), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5751), + [anon_sym_BSLASHbibliography] = ACTIONS(5751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5751), + [anon_sym_BSLASHincludesvg] = ACTIONS(5751), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5751), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5751), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5751), + [anon_sym_BSLASHimport] = ACTIONS(5751), + [anon_sym_BSLASHsubimport] = ACTIONS(5751), + [anon_sym_BSLASHinputfrom] = ACTIONS(5751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5751), + [anon_sym_BSLASHincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5751), + [anon_sym_BSLASHcaption] = ACTIONS(5751), + [anon_sym_BSLASHcite] = ACTIONS(5751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCite] = ACTIONS(5751), + [anon_sym_BSLASHnocite] = ACTIONS(5751), + [anon_sym_BSLASHcitet] = ACTIONS(5751), + [anon_sym_BSLASHcitep] = ACTIONS(5751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteauthor] = ACTIONS(5751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitetitle] = ACTIONS(5751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteyear] = ACTIONS(5751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5749), + [anon_sym_BSLASHcitedate] = ACTIONS(5751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5749), + [anon_sym_BSLASHciteurl] = ACTIONS(5751), + [anon_sym_BSLASHfullcite] = ACTIONS(5751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5751), + [anon_sym_BSLASHcitealt] = ACTIONS(5751), + [anon_sym_BSLASHcitealp] = ACTIONS(5751), + [anon_sym_BSLASHcitetext] = ACTIONS(5751), + [anon_sym_BSLASHparencite] = ACTIONS(5751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHParencite] = ACTIONS(5751), + [anon_sym_BSLASHfootcite] = ACTIONS(5751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5751), + [anon_sym_BSLASHtextcite] = ACTIONS(5751), + [anon_sym_BSLASHTextcite] = ACTIONS(5751), + [anon_sym_BSLASHsmartcite] = ACTIONS(5751), + [anon_sym_BSLASHSmartcite] = ACTIONS(5751), + [anon_sym_BSLASHsupercite] = ACTIONS(5751), + [anon_sym_BSLASHautocite] = ACTIONS(5751), + [anon_sym_BSLASHAutocite] = ACTIONS(5751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5749), + [anon_sym_BSLASHvolcite] = ACTIONS(5751), + [anon_sym_BSLASHVolcite] = ACTIONS(5751), + [anon_sym_BSLASHpvolcite] = ACTIONS(5751), + [anon_sym_BSLASHPvolcite] = ACTIONS(5751), + [anon_sym_BSLASHfvolcite] = ACTIONS(5751), + [anon_sym_BSLASHftvolcite] = ACTIONS(5751), + [anon_sym_BSLASHsvolcite] = ACTIONS(5751), + [anon_sym_BSLASHSvolcite] = ACTIONS(5751), + [anon_sym_BSLASHtvolcite] = ACTIONS(5751), + [anon_sym_BSLASHTvolcite] = ACTIONS(5751), + [anon_sym_BSLASHavolcite] = ACTIONS(5751), + [anon_sym_BSLASHAvolcite] = ACTIONS(5751), + [anon_sym_BSLASHnotecite] = ACTIONS(5751), + [anon_sym_BSLASHNotecite] = ACTIONS(5751), + [anon_sym_BSLASHpnotecite] = ACTIONS(5751), + [anon_sym_BSLASHPnotecite] = ACTIONS(5751), + [anon_sym_BSLASHfnotecite] = ACTIONS(5751), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [anon_sym_BSLASHref] = ACTIONS(5751), + [anon_sym_BSLASHeqref] = ACTIONS(5751), + [anon_sym_BSLASHvref] = ACTIONS(5751), + [anon_sym_BSLASHVref] = ACTIONS(5751), + [anon_sym_BSLASHautoref] = ACTIONS(5751), + [anon_sym_BSLASHpageref] = ACTIONS(5751), + [anon_sym_BSLASHcref] = ACTIONS(5751), + [anon_sym_BSLASHCref] = ACTIONS(5751), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnameCref] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5751), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5751), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5751), + [anon_sym_BSLASHlabelcref] = ACTIONS(5751), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange] = ACTIONS(5751), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHCrefrange] = ACTIONS(5751), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5749), + [anon_sym_BSLASHnewlabel] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand] = ACTIONS(5751), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5751), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5751), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5749), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5751), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdef] = ACTIONS(5751), + [anon_sym_BSLASHlet] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5751), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5751), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5751), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5751), + [anon_sym_BSLASHgls] = ACTIONS(5751), + [anon_sym_BSLASHGls] = ACTIONS(5751), + [anon_sym_BSLASHGLS] = ACTIONS(5751), + [anon_sym_BSLASHglspl] = ACTIONS(5751), + [anon_sym_BSLASHGlspl] = ACTIONS(5751), + [anon_sym_BSLASHGLSpl] = ACTIONS(5751), + [anon_sym_BSLASHglsdisp] = ACTIONS(5751), + [anon_sym_BSLASHglslink] = ACTIONS(5751), + [anon_sym_BSLASHglstext] = ACTIONS(5751), + [anon_sym_BSLASHGlstext] = ACTIONS(5751), + [anon_sym_BSLASHGLStext] = ACTIONS(5751), + [anon_sym_BSLASHglsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5751), + [anon_sym_BSLASHglsplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSplural] = ACTIONS(5751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5751), + [anon_sym_BSLASHglsname] = ACTIONS(5751), + [anon_sym_BSLASHGlsname] = ACTIONS(5751), + [anon_sym_BSLASHGLSname] = ACTIONS(5751), + [anon_sym_BSLASHglssymbol] = ACTIONS(5751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5751), + [anon_sym_BSLASHglsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5751), + [anon_sym_BSLASHglsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5751), + [anon_sym_BSLASHglsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5751), + [anon_sym_BSLASHglsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5751), + [anon_sym_BSLASHglsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5751), + [anon_sym_BSLASHnewacronym] = ACTIONS(5751), + [anon_sym_BSLASHacrshort] = ACTIONS(5751), + [anon_sym_BSLASHAcrshort] = ACTIONS(5751), + [anon_sym_BSLASHACRshort] = ACTIONS(5751), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5751), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5751), + [anon_sym_BSLASHacrlong] = ACTIONS(5751), + [anon_sym_BSLASHAcrlong] = ACTIONS(5751), + [anon_sym_BSLASHACRlong] = ACTIONS(5751), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5751), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5751), + [anon_sym_BSLASHacrfull] = ACTIONS(5751), + [anon_sym_BSLASHAcrfull] = ACTIONS(5751), + [anon_sym_BSLASHACRfull] = ACTIONS(5751), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5751), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5751), + [anon_sym_BSLASHacs] = ACTIONS(5751), + [anon_sym_BSLASHAcs] = ACTIONS(5751), + [anon_sym_BSLASHacsp] = ACTIONS(5751), + [anon_sym_BSLASHAcsp] = ACTIONS(5751), + [anon_sym_BSLASHacl] = ACTIONS(5751), + [anon_sym_BSLASHAcl] = ACTIONS(5751), + [anon_sym_BSLASHaclp] = ACTIONS(5751), + [anon_sym_BSLASHAclp] = ACTIONS(5751), + [anon_sym_BSLASHacf] = ACTIONS(5751), + [anon_sym_BSLASHAcf] = ACTIONS(5751), + [anon_sym_BSLASHacfp] = ACTIONS(5751), + [anon_sym_BSLASHAcfp] = ACTIONS(5751), + [anon_sym_BSLASHac] = ACTIONS(5751), + [anon_sym_BSLASHAc] = ACTIONS(5751), + [anon_sym_BSLASHacp] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5751), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5751), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5751), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5751), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5751), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5749), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5751), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5751), + [anon_sym_BSLASHcolor] = ACTIONS(5751), + [anon_sym_BSLASHcolorbox] = ACTIONS(5751), + [anon_sym_BSLASHtextcolor] = ACTIONS(5751), + [anon_sym_BSLASHpagecolor] = ACTIONS(5751), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5751), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5751), + [anon_sym_BSLASHtext] = ACTIONS(5751), + [anon_sym_BSLASHintertext] = ACTIONS(5751), + [anon_sym_shortintertext] = ACTIONS(5751), + }, + [892] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_BSLASHpart] = ACTIONS(6227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddpart] = ACTIONS(6227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHchapter] = ACTIONS(6227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddchap] = ACTIONS(6227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsection] = ACTIONS(6227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddsec] = ACTIONS(6227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHparagraph] = ACTIONS(6227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHitem] = ACTIONS(6227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [893] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_BSLASHpart] = ACTIONS(6127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddpart] = ACTIONS(6127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHchapter] = ACTIONS(6127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddchap] = ACTIONS(6127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsection] = ACTIONS(6127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddsec] = ACTIONS(6127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHparagraph] = ACTIONS(6127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [894] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_BSLASHpart] = ACTIONS(6081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddpart] = ACTIONS(6081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHchapter] = ACTIONS(6081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddchap] = ACTIONS(6081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsection] = ACTIONS(6081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddsec] = ACTIONS(6081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHparagraph] = ACTIONS(6081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHitem] = ACTIONS(6081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [895] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_BSLASHpart] = ACTIONS(6077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddpart] = ACTIONS(6077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHchapter] = ACTIONS(6077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddchap] = ACTIONS(6077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsection] = ACTIONS(6077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddsec] = ACTIONS(6077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHparagraph] = ACTIONS(6077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHitem] = ACTIONS(6077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [896] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_BSLASHpart] = ACTIONS(6119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddpart] = ACTIONS(6119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHchapter] = ACTIONS(6119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddchap] = ACTIONS(6119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsection] = ACTIONS(6119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddsec] = ACTIONS(6119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHparagraph] = ACTIONS(6119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHitem] = ACTIONS(6119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), + }, + [897] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_BSLASHpart] = ACTIONS(6113), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddpart] = ACTIONS(6113), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHchapter] = ACTIONS(6113), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddchap] = ACTIONS(6113), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsection] = ACTIONS(6113), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddsec] = ACTIONS(6113), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHparagraph] = ACTIONS(6113), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHitem] = ACTIONS(6113), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), + }, + [898] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_BSLASHpart] = ACTIONS(6109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddpart] = ACTIONS(6109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHchapter] = ACTIONS(6109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddchap] = ACTIONS(6109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsection] = ACTIONS(6109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddsec] = ACTIONS(6109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHparagraph] = ACTIONS(6109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHitem] = ACTIONS(6109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), + }, + [899] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_BSLASHpart] = ACTIONS(6105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddpart] = ACTIONS(6105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHchapter] = ACTIONS(6105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddchap] = ACTIONS(6105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsection] = ACTIONS(6105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddsec] = ACTIONS(6105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHparagraph] = ACTIONS(6105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHitem] = ACTIONS(6105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), + }, + [900] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_BSLASHpart] = ACTIONS(6101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddpart] = ACTIONS(6101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHchapter] = ACTIONS(6101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddchap] = ACTIONS(6101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsection] = ACTIONS(6101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddsec] = ACTIONS(6101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHparagraph] = ACTIONS(6101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHitem] = ACTIONS(6101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [901] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_BSLASHpart] = ACTIONS(6097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddpart] = ACTIONS(6097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHchapter] = ACTIONS(6097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddchap] = ACTIONS(6097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsection] = ACTIONS(6097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddsec] = ACTIONS(6097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHparagraph] = ACTIONS(6097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHitem] = ACTIONS(6097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [902] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_RPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [903] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_BSLASHpart] = ACTIONS(6123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddpart] = ACTIONS(6123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHchapter] = ACTIONS(6123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddchap] = ACTIONS(6123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsection] = ACTIONS(6123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddsec] = ACTIONS(6123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHparagraph] = ACTIONS(6123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHitem] = ACTIONS(6123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), + }, + [904] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_BSLASHpart] = ACTIONS(6127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddpart] = ACTIONS(6127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHchapter] = ACTIONS(6127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddchap] = ACTIONS(6127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsection] = ACTIONS(6127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddsec] = ACTIONS(6127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHparagraph] = ACTIONS(6127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [905] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_BSLASHpart] = ACTIONS(5999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddpart] = ACTIONS(5999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHchapter] = ACTIONS(5999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddchap] = ACTIONS(5999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsection] = ACTIONS(5999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddsec] = ACTIONS(5999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHparagraph] = ACTIONS(5999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHitem] = ACTIONS(5999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [906] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_BSLASHpart] = ACTIONS(5995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddpart] = ACTIONS(5995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHchapter] = ACTIONS(5995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddchap] = ACTIONS(5995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsection] = ACTIONS(5995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddsec] = ACTIONS(5995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHparagraph] = ACTIONS(5995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHitem] = ACTIONS(5995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [907] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_BSLASHpart] = ACTIONS(5815), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddpart] = ACTIONS(5815), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHchapter] = ACTIONS(5815), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddchap] = ACTIONS(5815), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsection] = ACTIONS(5815), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddsec] = ACTIONS(5815), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHparagraph] = ACTIONS(5815), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5815), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHitem] = ACTIONS(5815), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), + }, + [908] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_BSLASHpart] = ACTIONS(6131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddpart] = ACTIONS(6131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHchapter] = ACTIONS(6131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddchap] = ACTIONS(6131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsection] = ACTIONS(6131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddsec] = ACTIONS(6131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHparagraph] = ACTIONS(6131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHitem] = ACTIONS(6131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [909] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(1986), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6269), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1396] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - [anon_sym_BSLASHtext] = ACTIONS(5291), - [anon_sym_BSLASHintertext] = ACTIONS(5291), - [anon_sym_shortintertext] = ACTIONS(5291), + [910] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_BSLASHpart] = ACTIONS(6143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddpart] = ACTIONS(6143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHchapter] = ACTIONS(6143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddchap] = ACTIONS(6143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsection] = ACTIONS(6143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddsec] = ACTIONS(6143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHparagraph] = ACTIONS(6143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHitem] = ACTIONS(6143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), }, - [1397] = { - [sym_command_name] = ACTIONS(5613), + [911] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_BSLASHpart] = ACTIONS(6155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddpart] = ACTIONS(6155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHchapter] = ACTIONS(6155), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddchap] = ACTIONS(6155), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsection] = ACTIONS(6155), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddsec] = ACTIONS(6155), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHparagraph] = ACTIONS(6155), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6155), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHitem] = ACTIONS(6155), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [912] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_BSLASHpart] = ACTIONS(6185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddpart] = ACTIONS(6185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHchapter] = ACTIONS(6185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddchap] = ACTIONS(6185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsection] = ACTIONS(6185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddsec] = ACTIONS(6185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHparagraph] = ACTIONS(6185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHitem] = ACTIONS(6185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [913] = { + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_BSLASHpart] = ACTIONS(6193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddpart] = ACTIONS(6193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHchapter] = ACTIONS(6193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddchap] = ACTIONS(6193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsection] = ACTIONS(6193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddsec] = ACTIONS(6193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHparagraph] = ACTIONS(6193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHitem] = ACTIONS(6193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), + }, + [914] = { + [sym_command_name] = ACTIONS(6271), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6271), + [anon_sym_LPAREN] = ACTIONS(6273), + [anon_sym_RPAREN] = ACTIONS(6273), + [anon_sym_LBRACK] = ACTIONS(6273), + [anon_sym_RBRACK] = ACTIONS(6273), + [anon_sym_COMMA] = ACTIONS(6273), + [anon_sym_EQ] = ACTIONS(6273), + [anon_sym_BSLASHpart] = ACTIONS(6271), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6273), + [anon_sym_BSLASHaddpart] = ACTIONS(6271), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6273), + [anon_sym_BSLASHchapter] = ACTIONS(6271), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6273), + [anon_sym_BSLASHaddchap] = ACTIONS(6271), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6273), + [anon_sym_BSLASHsection] = ACTIONS(6271), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6273), + [anon_sym_BSLASHaddsec] = ACTIONS(6271), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6273), + [anon_sym_BSLASHsubsection] = ACTIONS(6271), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6273), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6271), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6273), + [anon_sym_BSLASHparagraph] = ACTIONS(6271), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6273), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6271), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6273), + [anon_sym_BSLASHitem] = ACTIONS(6271), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6273), + [sym_word] = ACTIONS(6271), + [sym_placeholder] = ACTIONS(6273), + [anon_sym_PLUS] = ACTIONS(6271), + [anon_sym_DASH] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6271), + [anon_sym_SLASH] = ACTIONS(6271), + [anon_sym_CARET] = ACTIONS(6271), + [anon_sym__] = ACTIONS(6271), + [anon_sym_LT] = ACTIONS(6271), + [anon_sym_GT] = ACTIONS(6271), + [anon_sym_BANG] = ACTIONS(6271), + [anon_sym_PIPE] = ACTIONS(6271), + [anon_sym_COLON] = ACTIONS(6271), + [anon_sym_SQUOTE] = ACTIONS(6271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6273), + [anon_sym_DOLLAR] = ACTIONS(6271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6273), + [anon_sym_BSLASHbegin] = ACTIONS(6271), + [anon_sym_BSLASHend] = ACTIONS(6271), + [anon_sym_BSLASHtitle] = ACTIONS(6271), + [anon_sym_BSLASHauthor] = ACTIONS(6271), + [anon_sym_BSLASHusepackage] = ACTIONS(6271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6271), + [anon_sym_BSLASHinclude] = ACTIONS(6271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6271), + [anon_sym_BSLASHinput] = ACTIONS(6271), + [anon_sym_BSLASHsubfile] = ACTIONS(6271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6271), + [anon_sym_BSLASHbibliography] = ACTIONS(6271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6271), + [anon_sym_BSLASHincludesvg] = ACTIONS(6271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6271), + [anon_sym_BSLASHimport] = ACTIONS(6271), + [anon_sym_BSLASHsubimport] = ACTIONS(6271), + [anon_sym_BSLASHinputfrom] = ACTIONS(6271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6271), + [anon_sym_BSLASHincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHcaption] = ACTIONS(6271), + [anon_sym_BSLASHcite] = ACTIONS(6271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCite] = ACTIONS(6271), + [anon_sym_BSLASHnocite] = ACTIONS(6271), + [anon_sym_BSLASHcitet] = ACTIONS(6271), + [anon_sym_BSLASHcitep] = ACTIONS(6271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteauthor] = ACTIONS(6271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitetitle] = ACTIONS(6271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteyear] = ACTIONS(6271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitedate] = ACTIONS(6271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteurl] = ACTIONS(6271), + [anon_sym_BSLASHfullcite] = ACTIONS(6271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6271), + [anon_sym_BSLASHcitealt] = ACTIONS(6271), + [anon_sym_BSLASHcitealp] = ACTIONS(6271), + [anon_sym_BSLASHcitetext] = ACTIONS(6271), + [anon_sym_BSLASHparencite] = ACTIONS(6271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHParencite] = ACTIONS(6271), + [anon_sym_BSLASHfootcite] = ACTIONS(6271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6271), + [anon_sym_BSLASHtextcite] = ACTIONS(6271), + [anon_sym_BSLASHTextcite] = ACTIONS(6271), + [anon_sym_BSLASHsmartcite] = ACTIONS(6271), + [anon_sym_BSLASHSmartcite] = ACTIONS(6271), + [anon_sym_BSLASHsupercite] = ACTIONS(6271), + [anon_sym_BSLASHautocite] = ACTIONS(6271), + [anon_sym_BSLASHAutocite] = ACTIONS(6271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHvolcite] = ACTIONS(6271), + [anon_sym_BSLASHVolcite] = ACTIONS(6271), + [anon_sym_BSLASHpvolcite] = ACTIONS(6271), + [anon_sym_BSLASHPvolcite] = ACTIONS(6271), + [anon_sym_BSLASHfvolcite] = ACTIONS(6271), + [anon_sym_BSLASHftvolcite] = ACTIONS(6271), + [anon_sym_BSLASHsvolcite] = ACTIONS(6271), + [anon_sym_BSLASHSvolcite] = ACTIONS(6271), + [anon_sym_BSLASHtvolcite] = ACTIONS(6271), + [anon_sym_BSLASHTvolcite] = ACTIONS(6271), + [anon_sym_BSLASHavolcite] = ACTIONS(6271), + [anon_sym_BSLASHAvolcite] = ACTIONS(6271), + [anon_sym_BSLASHnotecite] = ACTIONS(6271), + [anon_sym_BSLASHNotecite] = ACTIONS(6271), + [anon_sym_BSLASHpnotecite] = ACTIONS(6271), + [anon_sym_BSLASHPnotecite] = ACTIONS(6271), + [anon_sym_BSLASHfnotecite] = ACTIONS(6271), + [anon_sym_BSLASHlabel] = ACTIONS(6271), + [anon_sym_BSLASHref] = ACTIONS(6271), + [anon_sym_BSLASHeqref] = ACTIONS(6271), + [anon_sym_BSLASHvref] = ACTIONS(6271), + [anon_sym_BSLASHVref] = ACTIONS(6271), + [anon_sym_BSLASHautoref] = ACTIONS(6271), + [anon_sym_BSLASHpageref] = ACTIONS(6271), + [anon_sym_BSLASHcref] = ACTIONS(6271), + [anon_sym_BSLASHCref] = ACTIONS(6271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnameCref] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHlabelcref] = ACTIONS(6271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCrefrange] = ACTIONS(6271), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnewlabel] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6271), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6271), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdef] = ACTIONS(6271), + [anon_sym_BSLASHlet] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6271), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6271), + [anon_sym_BSLASHgls] = ACTIONS(6271), + [anon_sym_BSLASHGls] = ACTIONS(6271), + [anon_sym_BSLASHGLS] = ACTIONS(6271), + [anon_sym_BSLASHglspl] = ACTIONS(6271), + [anon_sym_BSLASHGlspl] = ACTIONS(6271), + [anon_sym_BSLASHGLSpl] = ACTIONS(6271), + [anon_sym_BSLASHglsdisp] = ACTIONS(6271), + [anon_sym_BSLASHglslink] = ACTIONS(6271), + [anon_sym_BSLASHglstext] = ACTIONS(6271), + [anon_sym_BSLASHGlstext] = ACTIONS(6271), + [anon_sym_BSLASHGLStext] = ACTIONS(6271), + [anon_sym_BSLASHglsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6271), + [anon_sym_BSLASHglsplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSplural] = ACTIONS(6271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHglsname] = ACTIONS(6271), + [anon_sym_BSLASHGlsname] = ACTIONS(6271), + [anon_sym_BSLASHGLSname] = ACTIONS(6271), + [anon_sym_BSLASHglssymbol] = ACTIONS(6271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6271), + [anon_sym_BSLASHglsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6271), + [anon_sym_BSLASHglsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6271), + [anon_sym_BSLASHglsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6271), + [anon_sym_BSLASHglsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6271), + [anon_sym_BSLASHglsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6271), + [anon_sym_BSLASHnewacronym] = ACTIONS(6271), + [anon_sym_BSLASHacrshort] = ACTIONS(6271), + [anon_sym_BSLASHAcrshort] = ACTIONS(6271), + [anon_sym_BSLASHACRshort] = ACTIONS(6271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6271), + [anon_sym_BSLASHacrlong] = ACTIONS(6271), + [anon_sym_BSLASHAcrlong] = ACTIONS(6271), + [anon_sym_BSLASHACRlong] = ACTIONS(6271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6271), + [anon_sym_BSLASHacrfull] = ACTIONS(6271), + [anon_sym_BSLASHAcrfull] = ACTIONS(6271), + [anon_sym_BSLASHACRfull] = ACTIONS(6271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6271), + [anon_sym_BSLASHacs] = ACTIONS(6271), + [anon_sym_BSLASHAcs] = ACTIONS(6271), + [anon_sym_BSLASHacsp] = ACTIONS(6271), + [anon_sym_BSLASHAcsp] = ACTIONS(6271), + [anon_sym_BSLASHacl] = ACTIONS(6271), + [anon_sym_BSLASHAcl] = ACTIONS(6271), + [anon_sym_BSLASHaclp] = ACTIONS(6271), + [anon_sym_BSLASHAclp] = ACTIONS(6271), + [anon_sym_BSLASHacf] = ACTIONS(6271), + [anon_sym_BSLASHAcf] = ACTIONS(6271), + [anon_sym_BSLASHacfp] = ACTIONS(6271), + [anon_sym_BSLASHAcfp] = ACTIONS(6271), + [anon_sym_BSLASHac] = ACTIONS(6271), + [anon_sym_BSLASHAc] = ACTIONS(6271), + [anon_sym_BSLASHacp] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6271), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6271), + [anon_sym_BSLASHcolor] = ACTIONS(6271), + [anon_sym_BSLASHcolorbox] = ACTIONS(6271), + [anon_sym_BSLASHtextcolor] = ACTIONS(6271), + [anon_sym_BSLASHpagecolor] = ACTIONS(6271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6271), + [anon_sym_BSLASHtext] = ACTIONS(6271), + [anon_sym_BSLASHintertext] = ACTIONS(6271), + [anon_sym_shortintertext] = ACTIONS(6271), + }, + [915] = { + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_BSLASHpart] = ACTIONS(6215), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddpart] = ACTIONS(6215), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHchapter] = ACTIONS(6215), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddchap] = ACTIONS(6215), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsection] = ACTIONS(6215), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddsec] = ACTIONS(6215), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHparagraph] = ACTIONS(6215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHitem] = ACTIONS(6215), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), + }, + [916] = { + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_BSLASHpart] = ACTIONS(6223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddpart] = ACTIONS(6223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHchapter] = ACTIONS(6223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddchap] = ACTIONS(6223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsection] = ACTIONS(6223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddsec] = ACTIONS(6223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHparagraph] = ACTIONS(6223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHitem] = ACTIONS(6223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), + }, + [917] = { + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_BSLASHpart] = ACTIONS(6231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddpart] = ACTIONS(6231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHchapter] = ACTIONS(6231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddchap] = ACTIONS(6231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsection] = ACTIONS(6231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddsec] = ACTIONS(6231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHparagraph] = ACTIONS(6231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHitem] = ACTIONS(6231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), + }, + [918] = { + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_BSLASHpart] = ACTIONS(6235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddpart] = ACTIONS(6235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHchapter] = ACTIONS(6235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddchap] = ACTIONS(6235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsection] = ACTIONS(6235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddsec] = ACTIONS(6235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHparagraph] = ACTIONS(6235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHitem] = ACTIONS(6235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), + }, + [919] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_BSLASHpart] = ACTIONS(6241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddpart] = ACTIONS(6241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHchapter] = ACTIONS(6241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddchap] = ACTIONS(6241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsection] = ACTIONS(6241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddsec] = ACTIONS(6241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHparagraph] = ACTIONS(6241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHitem] = ACTIONS(6241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [920] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_BSLASHpart] = ACTIONS(5837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddpart] = ACTIONS(5837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHchapter] = ACTIONS(5837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddchap] = ACTIONS(5837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsection] = ACTIONS(5837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddsec] = ACTIONS(5837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHparagraph] = ACTIONS(5837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHitem] = ACTIONS(5837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [921] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_BSLASHpart] = ACTIONS(6227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddpart] = ACTIONS(6227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHchapter] = ACTIONS(6227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddchap] = ACTIONS(6227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsection] = ACTIONS(6227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddsec] = ACTIONS(6227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHparagraph] = ACTIONS(6227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHitem] = ACTIONS(6227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [922] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_BSLASHpart] = ACTIONS(6219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddpart] = ACTIONS(6219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHchapter] = ACTIONS(6219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddchap] = ACTIONS(6219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsection] = ACTIONS(6219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddsec] = ACTIONS(6219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHparagraph] = ACTIONS(6219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHitem] = ACTIONS(6219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [923] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_BSLASHpart] = ACTIONS(6201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddpart] = ACTIONS(6201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHchapter] = ACTIONS(6201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddchap] = ACTIONS(6201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsection] = ACTIONS(6201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddsec] = ACTIONS(6201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHparagraph] = ACTIONS(6201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHitem] = ACTIONS(6201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [924] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2062), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_EQ] = ACTIONS(5615), - [anon_sym_LBRACE] = ACTIONS(5615), - [sym_word] = ACTIONS(5613), - [sym_placeholder] = ACTIONS(5615), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5613), - [anon_sym__] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_BANG] = ACTIONS(5613), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5613), - [anon_sym_SQUOTE] = ACTIONS(5613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), - [anon_sym_BSLASHbegin] = ACTIONS(5613), - [anon_sym_BSLASHusepackage] = ACTIONS(5613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), - [anon_sym_BSLASHinclude] = ACTIONS(5613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), - [anon_sym_BSLASHinput] = ACTIONS(5613), - [anon_sym_BSLASHsubfile] = ACTIONS(5613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), - [anon_sym_BSLASHbibliography] = ACTIONS(5613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), - [anon_sym_BSLASHincludesvg] = ACTIONS(5613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), - [anon_sym_BSLASHimport] = ACTIONS(5613), - [anon_sym_BSLASHsubimport] = ACTIONS(5613), - [anon_sym_BSLASHinputfrom] = ACTIONS(5613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), - [anon_sym_BSLASHincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHcaption] = ACTIONS(5613), - [anon_sym_BSLASHcite] = ACTIONS(5613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCite] = ACTIONS(5613), - [anon_sym_BSLASHnocite] = ACTIONS(5613), - [anon_sym_BSLASHcitet] = ACTIONS(5613), - [anon_sym_BSLASHcitep] = ACTIONS(5613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteauthor] = ACTIONS(5613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitetitle] = ACTIONS(5613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteyear] = ACTIONS(5613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitedate] = ACTIONS(5613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteurl] = ACTIONS(5613), - [anon_sym_BSLASHfullcite] = ACTIONS(5613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), - [anon_sym_BSLASHcitealt] = ACTIONS(5613), - [anon_sym_BSLASHcitealp] = ACTIONS(5613), - [anon_sym_BSLASHcitetext] = ACTIONS(5613), - [anon_sym_BSLASHparencite] = ACTIONS(5613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHParencite] = ACTIONS(5613), - [anon_sym_BSLASHfootcite] = ACTIONS(5613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), - [anon_sym_BSLASHtextcite] = ACTIONS(5613), - [anon_sym_BSLASHTextcite] = ACTIONS(5613), - [anon_sym_BSLASHsmartcite] = ACTIONS(5613), - [anon_sym_BSLASHSmartcite] = ACTIONS(5613), - [anon_sym_BSLASHsupercite] = ACTIONS(5613), - [anon_sym_BSLASHautocite] = ACTIONS(5613), - [anon_sym_BSLASHAutocite] = ACTIONS(5613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHvolcite] = ACTIONS(5613), - [anon_sym_BSLASHVolcite] = ACTIONS(5613), - [anon_sym_BSLASHpvolcite] = ACTIONS(5613), - [anon_sym_BSLASHPvolcite] = ACTIONS(5613), - [anon_sym_BSLASHfvolcite] = ACTIONS(5613), - [anon_sym_BSLASHftvolcite] = ACTIONS(5613), - [anon_sym_BSLASHsvolcite] = ACTIONS(5613), - [anon_sym_BSLASHSvolcite] = ACTIONS(5613), - [anon_sym_BSLASHtvolcite] = ACTIONS(5613), - [anon_sym_BSLASHTvolcite] = ACTIONS(5613), - [anon_sym_BSLASHavolcite] = ACTIONS(5613), - [anon_sym_BSLASHAvolcite] = ACTIONS(5613), - [anon_sym_BSLASHnotecite] = ACTIONS(5613), - [anon_sym_BSLASHNotecite] = ACTIONS(5613), - [anon_sym_BSLASHpnotecite] = ACTIONS(5613), - [anon_sym_BSLASHPnotecite] = ACTIONS(5613), - [anon_sym_BSLASHfnotecite] = ACTIONS(5613), - [anon_sym_BSLASHlabel] = ACTIONS(5613), - [anon_sym_BSLASHref] = ACTIONS(5613), - [anon_sym_BSLASHeqref] = ACTIONS(5613), - [anon_sym_BSLASHvref] = ACTIONS(5613), - [anon_sym_BSLASHVref] = ACTIONS(5613), - [anon_sym_BSLASHautoref] = ACTIONS(5613), - [anon_sym_BSLASHpageref] = ACTIONS(5613), - [anon_sym_BSLASHcref] = ACTIONS(5613), - [anon_sym_BSLASHCref] = ACTIONS(5613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnameCref] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHlabelcref] = ACTIONS(5613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCrefrange] = ACTIONS(5613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnewlabel] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdef] = ACTIONS(5613), - [anon_sym_BSLASHlet] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), - [anon_sym_BSLASHgls] = ACTIONS(5613), - [anon_sym_BSLASHGls] = ACTIONS(5613), - [anon_sym_BSLASHGLS] = ACTIONS(5613), - [anon_sym_BSLASHglspl] = ACTIONS(5613), - [anon_sym_BSLASHGlspl] = ACTIONS(5613), - [anon_sym_BSLASHGLSpl] = ACTIONS(5613), - [anon_sym_BSLASHglsdisp] = ACTIONS(5613), - [anon_sym_BSLASHglslink] = ACTIONS(5613), - [anon_sym_BSLASHglstext] = ACTIONS(5613), - [anon_sym_BSLASHGlstext] = ACTIONS(5613), - [anon_sym_BSLASHGLStext] = ACTIONS(5613), - [anon_sym_BSLASHglsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), - [anon_sym_BSLASHglsplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSplural] = ACTIONS(5613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHglsname] = ACTIONS(5613), - [anon_sym_BSLASHGlsname] = ACTIONS(5613), - [anon_sym_BSLASHGLSname] = ACTIONS(5613), - [anon_sym_BSLASHglssymbol] = ACTIONS(5613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), - [anon_sym_BSLASHglsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), - [anon_sym_BSLASHglsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), - [anon_sym_BSLASHglsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), - [anon_sym_BSLASHglsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), - [anon_sym_BSLASHglsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), - [anon_sym_BSLASHnewacronym] = ACTIONS(5613), - [anon_sym_BSLASHacrshort] = ACTIONS(5613), - [anon_sym_BSLASHAcrshort] = ACTIONS(5613), - [anon_sym_BSLASHACRshort] = ACTIONS(5613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), - [anon_sym_BSLASHacrlong] = ACTIONS(5613), - [anon_sym_BSLASHAcrlong] = ACTIONS(5613), - [anon_sym_BSLASHACRlong] = ACTIONS(5613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), - [anon_sym_BSLASHacrfull] = ACTIONS(5613), - [anon_sym_BSLASHAcrfull] = ACTIONS(5613), - [anon_sym_BSLASHACRfull] = ACTIONS(5613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), - [anon_sym_BSLASHacs] = ACTIONS(5613), - [anon_sym_BSLASHAcs] = ACTIONS(5613), - [anon_sym_BSLASHacsp] = ACTIONS(5613), - [anon_sym_BSLASHAcsp] = ACTIONS(5613), - [anon_sym_BSLASHacl] = ACTIONS(5613), - [anon_sym_BSLASHAcl] = ACTIONS(5613), - [anon_sym_BSLASHaclp] = ACTIONS(5613), - [anon_sym_BSLASHAclp] = ACTIONS(5613), - [anon_sym_BSLASHacf] = ACTIONS(5613), - [anon_sym_BSLASHAcf] = ACTIONS(5613), - [anon_sym_BSLASHacfp] = ACTIONS(5613), - [anon_sym_BSLASHAcfp] = ACTIONS(5613), - [anon_sym_BSLASHac] = ACTIONS(5613), - [anon_sym_BSLASHAc] = ACTIONS(5613), - [anon_sym_BSLASHacp] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), - [anon_sym_BSLASHcolor] = ACTIONS(5613), - [anon_sym_BSLASHcolorbox] = ACTIONS(5613), - [anon_sym_BSLASHtextcolor] = ACTIONS(5613), - [anon_sym_BSLASHpagecolor] = ACTIONS(5613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), - [anon_sym_BSLASHtext] = ACTIONS(5613), - [anon_sym_BSLASHintertext] = ACTIONS(5613), - [anon_sym_shortintertext] = ACTIONS(5613), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6275), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [925] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_BSLASHpart] = ACTIONS(6189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddpart] = ACTIONS(6189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHchapter] = ACTIONS(6189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddchap] = ACTIONS(6189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsection] = ACTIONS(6189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddsec] = ACTIONS(6189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHparagraph] = ACTIONS(6189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHitem] = ACTIONS(6189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [926] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_BSLASHpart] = ACTIONS(5893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddpart] = ACTIONS(5893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHchapter] = ACTIONS(5893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddchap] = ACTIONS(5893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsection] = ACTIONS(5893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddsec] = ACTIONS(5893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHparagraph] = ACTIONS(5893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHitem] = ACTIONS(5893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [927] = { + [sym_command_name] = ACTIONS(5889), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5889), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_BSLASHpart] = ACTIONS(5889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddpart] = ACTIONS(5889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHchapter] = ACTIONS(5889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddchap] = ACTIONS(5889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsection] = ACTIONS(5889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddsec] = ACTIONS(5889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHparagraph] = ACTIONS(5889), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5889), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHitem] = ACTIONS(5889), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(5889), + [sym_placeholder] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5889), + [anon_sym_SLASH] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5889), + [anon_sym__] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_SQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5887), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5887), + [anon_sym_BSLASHbegin] = ACTIONS(5889), + [anon_sym_BSLASHtitle] = ACTIONS(5889), + [anon_sym_BSLASHauthor] = ACTIONS(5889), + [anon_sym_BSLASHusepackage] = ACTIONS(5889), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5889), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5889), + [anon_sym_BSLASHinclude] = ACTIONS(5889), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5889), + [anon_sym_BSLASHinput] = ACTIONS(5889), + [anon_sym_BSLASHsubfile] = ACTIONS(5889), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5889), + [anon_sym_BSLASHbibliography] = ACTIONS(5889), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5889), + [anon_sym_BSLASHincludesvg] = ACTIONS(5889), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5889), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5889), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5889), + [anon_sym_BSLASHimport] = ACTIONS(5889), + [anon_sym_BSLASHsubimport] = ACTIONS(5889), + [anon_sym_BSLASHinputfrom] = ACTIONS(5889), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5889), + [anon_sym_BSLASHincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHcaption] = ACTIONS(5889), + [anon_sym_BSLASHcite] = ACTIONS(5889), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCite] = ACTIONS(5889), + [anon_sym_BSLASHnocite] = ACTIONS(5889), + [anon_sym_BSLASHcitet] = ACTIONS(5889), + [anon_sym_BSLASHcitep] = ACTIONS(5889), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteauthor] = ACTIONS(5889), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5889), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitetitle] = ACTIONS(5889), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteyear] = ACTIONS(5889), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitedate] = ACTIONS(5889), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteurl] = ACTIONS(5889), + [anon_sym_BSLASHfullcite] = ACTIONS(5889), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5889), + [anon_sym_BSLASHcitealt] = ACTIONS(5889), + [anon_sym_BSLASHcitealp] = ACTIONS(5889), + [anon_sym_BSLASHcitetext] = ACTIONS(5889), + [anon_sym_BSLASHparencite] = ACTIONS(5889), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHParencite] = ACTIONS(5889), + [anon_sym_BSLASHfootcite] = ACTIONS(5889), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5889), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5889), + [anon_sym_BSLASHtextcite] = ACTIONS(5889), + [anon_sym_BSLASHTextcite] = ACTIONS(5889), + [anon_sym_BSLASHsmartcite] = ACTIONS(5889), + [anon_sym_BSLASHSmartcite] = ACTIONS(5889), + [anon_sym_BSLASHsupercite] = ACTIONS(5889), + [anon_sym_BSLASHautocite] = ACTIONS(5889), + [anon_sym_BSLASHAutocite] = ACTIONS(5889), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHvolcite] = ACTIONS(5889), + [anon_sym_BSLASHVolcite] = ACTIONS(5889), + [anon_sym_BSLASHpvolcite] = ACTIONS(5889), + [anon_sym_BSLASHPvolcite] = ACTIONS(5889), + [anon_sym_BSLASHfvolcite] = ACTIONS(5889), + [anon_sym_BSLASHftvolcite] = ACTIONS(5889), + [anon_sym_BSLASHsvolcite] = ACTIONS(5889), + [anon_sym_BSLASHSvolcite] = ACTIONS(5889), + [anon_sym_BSLASHtvolcite] = ACTIONS(5889), + [anon_sym_BSLASHTvolcite] = ACTIONS(5889), + [anon_sym_BSLASHavolcite] = ACTIONS(5889), + [anon_sym_BSLASHAvolcite] = ACTIONS(5889), + [anon_sym_BSLASHnotecite] = ACTIONS(5889), + [anon_sym_BSLASHNotecite] = ACTIONS(5889), + [anon_sym_BSLASHpnotecite] = ACTIONS(5889), + [anon_sym_BSLASHPnotecite] = ACTIONS(5889), + [anon_sym_BSLASHfnotecite] = ACTIONS(5889), + [anon_sym_BSLASHlabel] = ACTIONS(5889), + [anon_sym_BSLASHref] = ACTIONS(5889), + [anon_sym_BSLASHeqref] = ACTIONS(5889), + [anon_sym_BSLASHvref] = ACTIONS(5889), + [anon_sym_BSLASHVref] = ACTIONS(5889), + [anon_sym_BSLASHautoref] = ACTIONS(5889), + [anon_sym_BSLASHpageref] = ACTIONS(5889), + [anon_sym_BSLASHcref] = ACTIONS(5889), + [anon_sym_BSLASHCref] = ACTIONS(5889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnameCref] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHlabelcref] = ACTIONS(5889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCrefrange] = ACTIONS(5889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnewlabel] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5889), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5889), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5889), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdef] = ACTIONS(5889), + [anon_sym_BSLASHlet] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5889), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5889), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5889), + [anon_sym_BSLASHgls] = ACTIONS(5889), + [anon_sym_BSLASHGls] = ACTIONS(5889), + [anon_sym_BSLASHGLS] = ACTIONS(5889), + [anon_sym_BSLASHglspl] = ACTIONS(5889), + [anon_sym_BSLASHGlspl] = ACTIONS(5889), + [anon_sym_BSLASHGLSpl] = ACTIONS(5889), + [anon_sym_BSLASHglsdisp] = ACTIONS(5889), + [anon_sym_BSLASHglslink] = ACTIONS(5889), + [anon_sym_BSLASHglstext] = ACTIONS(5889), + [anon_sym_BSLASHGlstext] = ACTIONS(5889), + [anon_sym_BSLASHGLStext] = ACTIONS(5889), + [anon_sym_BSLASHglsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5889), + [anon_sym_BSLASHglsplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSplural] = ACTIONS(5889), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHglsname] = ACTIONS(5889), + [anon_sym_BSLASHGlsname] = ACTIONS(5889), + [anon_sym_BSLASHGLSname] = ACTIONS(5889), + [anon_sym_BSLASHglssymbol] = ACTIONS(5889), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5889), + [anon_sym_BSLASHglsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5889), + [anon_sym_BSLASHglsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5889), + [anon_sym_BSLASHglsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5889), + [anon_sym_BSLASHglsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5889), + [anon_sym_BSLASHglsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5889), + [anon_sym_BSLASHnewacronym] = ACTIONS(5889), + [anon_sym_BSLASHacrshort] = ACTIONS(5889), + [anon_sym_BSLASHAcrshort] = ACTIONS(5889), + [anon_sym_BSLASHACRshort] = ACTIONS(5889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5889), + [anon_sym_BSLASHacrlong] = ACTIONS(5889), + [anon_sym_BSLASHAcrlong] = ACTIONS(5889), + [anon_sym_BSLASHACRlong] = ACTIONS(5889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5889), + [anon_sym_BSLASHacrfull] = ACTIONS(5889), + [anon_sym_BSLASHAcrfull] = ACTIONS(5889), + [anon_sym_BSLASHACRfull] = ACTIONS(5889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5889), + [anon_sym_BSLASHacs] = ACTIONS(5889), + [anon_sym_BSLASHAcs] = ACTIONS(5889), + [anon_sym_BSLASHacsp] = ACTIONS(5889), + [anon_sym_BSLASHAcsp] = ACTIONS(5889), + [anon_sym_BSLASHacl] = ACTIONS(5889), + [anon_sym_BSLASHAcl] = ACTIONS(5889), + [anon_sym_BSLASHaclp] = ACTIONS(5889), + [anon_sym_BSLASHAclp] = ACTIONS(5889), + [anon_sym_BSLASHacf] = ACTIONS(5889), + [anon_sym_BSLASHAcf] = ACTIONS(5889), + [anon_sym_BSLASHacfp] = ACTIONS(5889), + [anon_sym_BSLASHAcfp] = ACTIONS(5889), + [anon_sym_BSLASHac] = ACTIONS(5889), + [anon_sym_BSLASHAc] = ACTIONS(5889), + [anon_sym_BSLASHacp] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5889), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5889), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5889), + [anon_sym_BSLASHcolor] = ACTIONS(5889), + [anon_sym_BSLASHcolorbox] = ACTIONS(5889), + [anon_sym_BSLASHtextcolor] = ACTIONS(5889), + [anon_sym_BSLASHpagecolor] = ACTIONS(5889), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5889), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5889), + [anon_sym_BSLASHtext] = ACTIONS(5889), + [anon_sym_BSLASHintertext] = ACTIONS(5889), + [anon_sym_shortintertext] = ACTIONS(5889), + }, + [928] = { + [sym_command_name] = ACTIONS(5885), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5885), + [anon_sym_LPAREN] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_BSLASHpart] = ACTIONS(5885), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddpart] = ACTIONS(5885), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHchapter] = ACTIONS(5885), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddchap] = ACTIONS(5885), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsection] = ACTIONS(5885), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddsec] = ACTIONS(5885), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHparagraph] = ACTIONS(5885), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5885), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHitem] = ACTIONS(5885), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(5883), + [sym_word] = ACTIONS(5885), + [sym_placeholder] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym__] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_SQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5883), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5883), + [anon_sym_BSLASHbegin] = ACTIONS(5885), + [anon_sym_BSLASHtitle] = ACTIONS(5885), + [anon_sym_BSLASHauthor] = ACTIONS(5885), + [anon_sym_BSLASHusepackage] = ACTIONS(5885), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5885), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5885), + [anon_sym_BSLASHinclude] = ACTIONS(5885), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5885), + [anon_sym_BSLASHinput] = ACTIONS(5885), + [anon_sym_BSLASHsubfile] = ACTIONS(5885), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5885), + [anon_sym_BSLASHbibliography] = ACTIONS(5885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5885), + [anon_sym_BSLASHincludesvg] = ACTIONS(5885), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5885), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5885), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5885), + [anon_sym_BSLASHimport] = ACTIONS(5885), + [anon_sym_BSLASHsubimport] = ACTIONS(5885), + [anon_sym_BSLASHinputfrom] = ACTIONS(5885), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5885), + [anon_sym_BSLASHincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHcaption] = ACTIONS(5885), + [anon_sym_BSLASHcite] = ACTIONS(5885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCite] = ACTIONS(5885), + [anon_sym_BSLASHnocite] = ACTIONS(5885), + [anon_sym_BSLASHcitet] = ACTIONS(5885), + [anon_sym_BSLASHcitep] = ACTIONS(5885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteauthor] = ACTIONS(5885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitetitle] = ACTIONS(5885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteyear] = ACTIONS(5885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitedate] = ACTIONS(5885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteurl] = ACTIONS(5885), + [anon_sym_BSLASHfullcite] = ACTIONS(5885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5885), + [anon_sym_BSLASHcitealt] = ACTIONS(5885), + [anon_sym_BSLASHcitealp] = ACTIONS(5885), + [anon_sym_BSLASHcitetext] = ACTIONS(5885), + [anon_sym_BSLASHparencite] = ACTIONS(5885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHParencite] = ACTIONS(5885), + [anon_sym_BSLASHfootcite] = ACTIONS(5885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5885), + [anon_sym_BSLASHtextcite] = ACTIONS(5885), + [anon_sym_BSLASHTextcite] = ACTIONS(5885), + [anon_sym_BSLASHsmartcite] = ACTIONS(5885), + [anon_sym_BSLASHSmartcite] = ACTIONS(5885), + [anon_sym_BSLASHsupercite] = ACTIONS(5885), + [anon_sym_BSLASHautocite] = ACTIONS(5885), + [anon_sym_BSLASHAutocite] = ACTIONS(5885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHvolcite] = ACTIONS(5885), + [anon_sym_BSLASHVolcite] = ACTIONS(5885), + [anon_sym_BSLASHpvolcite] = ACTIONS(5885), + [anon_sym_BSLASHPvolcite] = ACTIONS(5885), + [anon_sym_BSLASHfvolcite] = ACTIONS(5885), + [anon_sym_BSLASHftvolcite] = ACTIONS(5885), + [anon_sym_BSLASHsvolcite] = ACTIONS(5885), + [anon_sym_BSLASHSvolcite] = ACTIONS(5885), + [anon_sym_BSLASHtvolcite] = ACTIONS(5885), + [anon_sym_BSLASHTvolcite] = ACTIONS(5885), + [anon_sym_BSLASHavolcite] = ACTIONS(5885), + [anon_sym_BSLASHAvolcite] = ACTIONS(5885), + [anon_sym_BSLASHnotecite] = ACTIONS(5885), + [anon_sym_BSLASHNotecite] = ACTIONS(5885), + [anon_sym_BSLASHpnotecite] = ACTIONS(5885), + [anon_sym_BSLASHPnotecite] = ACTIONS(5885), + [anon_sym_BSLASHfnotecite] = ACTIONS(5885), + [anon_sym_BSLASHlabel] = ACTIONS(5885), + [anon_sym_BSLASHref] = ACTIONS(5885), + [anon_sym_BSLASHeqref] = ACTIONS(5885), + [anon_sym_BSLASHvref] = ACTIONS(5885), + [anon_sym_BSLASHVref] = ACTIONS(5885), + [anon_sym_BSLASHautoref] = ACTIONS(5885), + [anon_sym_BSLASHpageref] = ACTIONS(5885), + [anon_sym_BSLASHcref] = ACTIONS(5885), + [anon_sym_BSLASHCref] = ACTIONS(5885), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnameCref] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHlabelcref] = ACTIONS(5885), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCrefrange] = ACTIONS(5885), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnewlabel] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5885), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5885), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5885), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdef] = ACTIONS(5885), + [anon_sym_BSLASHlet] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5885), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5885), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5885), + [anon_sym_BSLASHgls] = ACTIONS(5885), + [anon_sym_BSLASHGls] = ACTIONS(5885), + [anon_sym_BSLASHGLS] = ACTIONS(5885), + [anon_sym_BSLASHglspl] = ACTIONS(5885), + [anon_sym_BSLASHGlspl] = ACTIONS(5885), + [anon_sym_BSLASHGLSpl] = ACTIONS(5885), + [anon_sym_BSLASHglsdisp] = ACTIONS(5885), + [anon_sym_BSLASHglslink] = ACTIONS(5885), + [anon_sym_BSLASHglstext] = ACTIONS(5885), + [anon_sym_BSLASHGlstext] = ACTIONS(5885), + [anon_sym_BSLASHGLStext] = ACTIONS(5885), + [anon_sym_BSLASHglsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5885), + [anon_sym_BSLASHglsplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSplural] = ACTIONS(5885), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHglsname] = ACTIONS(5885), + [anon_sym_BSLASHGlsname] = ACTIONS(5885), + [anon_sym_BSLASHGLSname] = ACTIONS(5885), + [anon_sym_BSLASHglssymbol] = ACTIONS(5885), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5885), + [anon_sym_BSLASHglsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5885), + [anon_sym_BSLASHglsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5885), + [anon_sym_BSLASHglsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5885), + [anon_sym_BSLASHglsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5885), + [anon_sym_BSLASHglsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5885), + [anon_sym_BSLASHnewacronym] = ACTIONS(5885), + [anon_sym_BSLASHacrshort] = ACTIONS(5885), + [anon_sym_BSLASHAcrshort] = ACTIONS(5885), + [anon_sym_BSLASHACRshort] = ACTIONS(5885), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5885), + [anon_sym_BSLASHacrlong] = ACTIONS(5885), + [anon_sym_BSLASHAcrlong] = ACTIONS(5885), + [anon_sym_BSLASHACRlong] = ACTIONS(5885), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5885), + [anon_sym_BSLASHacrfull] = ACTIONS(5885), + [anon_sym_BSLASHAcrfull] = ACTIONS(5885), + [anon_sym_BSLASHACRfull] = ACTIONS(5885), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5885), + [anon_sym_BSLASHacs] = ACTIONS(5885), + [anon_sym_BSLASHAcs] = ACTIONS(5885), + [anon_sym_BSLASHacsp] = ACTIONS(5885), + [anon_sym_BSLASHAcsp] = ACTIONS(5885), + [anon_sym_BSLASHacl] = ACTIONS(5885), + [anon_sym_BSLASHAcl] = ACTIONS(5885), + [anon_sym_BSLASHaclp] = ACTIONS(5885), + [anon_sym_BSLASHAclp] = ACTIONS(5885), + [anon_sym_BSLASHacf] = ACTIONS(5885), + [anon_sym_BSLASHAcf] = ACTIONS(5885), + [anon_sym_BSLASHacfp] = ACTIONS(5885), + [anon_sym_BSLASHAcfp] = ACTIONS(5885), + [anon_sym_BSLASHac] = ACTIONS(5885), + [anon_sym_BSLASHAc] = ACTIONS(5885), + [anon_sym_BSLASHacp] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5885), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5885), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5885), + [anon_sym_BSLASHcolor] = ACTIONS(5885), + [anon_sym_BSLASHcolorbox] = ACTIONS(5885), + [anon_sym_BSLASHtextcolor] = ACTIONS(5885), + [anon_sym_BSLASHpagecolor] = ACTIONS(5885), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5885), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5885), + [anon_sym_BSLASHtext] = ACTIONS(5885), + [anon_sym_BSLASHintertext] = ACTIONS(5885), + [anon_sym_shortintertext] = ACTIONS(5885), + }, + [929] = { + [sym_command_name] = ACTIONS(5881), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5881), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_BSLASHpart] = ACTIONS(5881), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddpart] = ACTIONS(5881), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHchapter] = ACTIONS(5881), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddchap] = ACTIONS(5881), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsection] = ACTIONS(5881), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddsec] = ACTIONS(5881), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHparagraph] = ACTIONS(5881), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5881), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHitem] = ACTIONS(5881), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5879), + [anon_sym_LBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(5881), + [sym_placeholder] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym__] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_SQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5879), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5879), + [anon_sym_BSLASHbegin] = ACTIONS(5881), + [anon_sym_BSLASHtitle] = ACTIONS(5881), + [anon_sym_BSLASHauthor] = ACTIONS(5881), + [anon_sym_BSLASHusepackage] = ACTIONS(5881), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5881), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5881), + [anon_sym_BSLASHinclude] = ACTIONS(5881), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5881), + [anon_sym_BSLASHinput] = ACTIONS(5881), + [anon_sym_BSLASHsubfile] = ACTIONS(5881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5881), + [anon_sym_BSLASHbibliography] = ACTIONS(5881), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5881), + [anon_sym_BSLASHincludesvg] = ACTIONS(5881), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5881), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5881), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5881), + [anon_sym_BSLASHimport] = ACTIONS(5881), + [anon_sym_BSLASHsubimport] = ACTIONS(5881), + [anon_sym_BSLASHinputfrom] = ACTIONS(5881), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5881), + [anon_sym_BSLASHincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHcaption] = ACTIONS(5881), + [anon_sym_BSLASHcite] = ACTIONS(5881), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCite] = ACTIONS(5881), + [anon_sym_BSLASHnocite] = ACTIONS(5881), + [anon_sym_BSLASHcitet] = ACTIONS(5881), + [anon_sym_BSLASHcitep] = ACTIONS(5881), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteauthor] = ACTIONS(5881), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5881), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitetitle] = ACTIONS(5881), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteyear] = ACTIONS(5881), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitedate] = ACTIONS(5881), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteurl] = ACTIONS(5881), + [anon_sym_BSLASHfullcite] = ACTIONS(5881), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5881), + [anon_sym_BSLASHcitealt] = ACTIONS(5881), + [anon_sym_BSLASHcitealp] = ACTIONS(5881), + [anon_sym_BSLASHcitetext] = ACTIONS(5881), + [anon_sym_BSLASHparencite] = ACTIONS(5881), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHParencite] = ACTIONS(5881), + [anon_sym_BSLASHfootcite] = ACTIONS(5881), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5881), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5881), + [anon_sym_BSLASHtextcite] = ACTIONS(5881), + [anon_sym_BSLASHTextcite] = ACTIONS(5881), + [anon_sym_BSLASHsmartcite] = ACTIONS(5881), + [anon_sym_BSLASHSmartcite] = ACTIONS(5881), + [anon_sym_BSLASHsupercite] = ACTIONS(5881), + [anon_sym_BSLASHautocite] = ACTIONS(5881), + [anon_sym_BSLASHAutocite] = ACTIONS(5881), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHvolcite] = ACTIONS(5881), + [anon_sym_BSLASHVolcite] = ACTIONS(5881), + [anon_sym_BSLASHpvolcite] = ACTIONS(5881), + [anon_sym_BSLASHPvolcite] = ACTIONS(5881), + [anon_sym_BSLASHfvolcite] = ACTIONS(5881), + [anon_sym_BSLASHftvolcite] = ACTIONS(5881), + [anon_sym_BSLASHsvolcite] = ACTIONS(5881), + [anon_sym_BSLASHSvolcite] = ACTIONS(5881), + [anon_sym_BSLASHtvolcite] = ACTIONS(5881), + [anon_sym_BSLASHTvolcite] = ACTIONS(5881), + [anon_sym_BSLASHavolcite] = ACTIONS(5881), + [anon_sym_BSLASHAvolcite] = ACTIONS(5881), + [anon_sym_BSLASHnotecite] = ACTIONS(5881), + [anon_sym_BSLASHNotecite] = ACTIONS(5881), + [anon_sym_BSLASHpnotecite] = ACTIONS(5881), + [anon_sym_BSLASHPnotecite] = ACTIONS(5881), + [anon_sym_BSLASHfnotecite] = ACTIONS(5881), + [anon_sym_BSLASHlabel] = ACTIONS(5881), + [anon_sym_BSLASHref] = ACTIONS(5881), + [anon_sym_BSLASHeqref] = ACTIONS(5881), + [anon_sym_BSLASHvref] = ACTIONS(5881), + [anon_sym_BSLASHVref] = ACTIONS(5881), + [anon_sym_BSLASHautoref] = ACTIONS(5881), + [anon_sym_BSLASHpageref] = ACTIONS(5881), + [anon_sym_BSLASHcref] = ACTIONS(5881), + [anon_sym_BSLASHCref] = ACTIONS(5881), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnameCref] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHlabelcref] = ACTIONS(5881), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCrefrange] = ACTIONS(5881), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnewlabel] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5881), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5881), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5881), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdef] = ACTIONS(5881), + [anon_sym_BSLASHlet] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5881), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5881), + [anon_sym_BSLASHgls] = ACTIONS(5881), + [anon_sym_BSLASHGls] = ACTIONS(5881), + [anon_sym_BSLASHGLS] = ACTIONS(5881), + [anon_sym_BSLASHglspl] = ACTIONS(5881), + [anon_sym_BSLASHGlspl] = ACTIONS(5881), + [anon_sym_BSLASHGLSpl] = ACTIONS(5881), + [anon_sym_BSLASHglsdisp] = ACTIONS(5881), + [anon_sym_BSLASHglslink] = ACTIONS(5881), + [anon_sym_BSLASHglstext] = ACTIONS(5881), + [anon_sym_BSLASHGlstext] = ACTIONS(5881), + [anon_sym_BSLASHGLStext] = ACTIONS(5881), + [anon_sym_BSLASHglsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5881), + [anon_sym_BSLASHglsplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSplural] = ACTIONS(5881), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHglsname] = ACTIONS(5881), + [anon_sym_BSLASHGlsname] = ACTIONS(5881), + [anon_sym_BSLASHGLSname] = ACTIONS(5881), + [anon_sym_BSLASHglssymbol] = ACTIONS(5881), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5881), + [anon_sym_BSLASHglsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5881), + [anon_sym_BSLASHglsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5881), + [anon_sym_BSLASHglsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5881), + [anon_sym_BSLASHglsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5881), + [anon_sym_BSLASHglsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5881), + [anon_sym_BSLASHnewacronym] = ACTIONS(5881), + [anon_sym_BSLASHacrshort] = ACTIONS(5881), + [anon_sym_BSLASHAcrshort] = ACTIONS(5881), + [anon_sym_BSLASHACRshort] = ACTIONS(5881), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5881), + [anon_sym_BSLASHacrlong] = ACTIONS(5881), + [anon_sym_BSLASHAcrlong] = ACTIONS(5881), + [anon_sym_BSLASHACRlong] = ACTIONS(5881), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5881), + [anon_sym_BSLASHacrfull] = ACTIONS(5881), + [anon_sym_BSLASHAcrfull] = ACTIONS(5881), + [anon_sym_BSLASHACRfull] = ACTIONS(5881), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5881), + [anon_sym_BSLASHacs] = ACTIONS(5881), + [anon_sym_BSLASHAcs] = ACTIONS(5881), + [anon_sym_BSLASHacsp] = ACTIONS(5881), + [anon_sym_BSLASHAcsp] = ACTIONS(5881), + [anon_sym_BSLASHacl] = ACTIONS(5881), + [anon_sym_BSLASHAcl] = ACTIONS(5881), + [anon_sym_BSLASHaclp] = ACTIONS(5881), + [anon_sym_BSLASHAclp] = ACTIONS(5881), + [anon_sym_BSLASHacf] = ACTIONS(5881), + [anon_sym_BSLASHAcf] = ACTIONS(5881), + [anon_sym_BSLASHacfp] = ACTIONS(5881), + [anon_sym_BSLASHAcfp] = ACTIONS(5881), + [anon_sym_BSLASHac] = ACTIONS(5881), + [anon_sym_BSLASHAc] = ACTIONS(5881), + [anon_sym_BSLASHacp] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5881), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5881), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHcolor] = ACTIONS(5881), + [anon_sym_BSLASHcolorbox] = ACTIONS(5881), + [anon_sym_BSLASHtextcolor] = ACTIONS(5881), + [anon_sym_BSLASHpagecolor] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5881), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5881), + [anon_sym_BSLASHtext] = ACTIONS(5881), + [anon_sym_BSLASHintertext] = ACTIONS(5881), + [anon_sym_shortintertext] = ACTIONS(5881), + }, + [930] = { + [sym_command_name] = ACTIONS(5853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5851), + [anon_sym_BSLASHpart] = ACTIONS(5853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddpart] = ACTIONS(5853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHchapter] = ACTIONS(5853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddchap] = ACTIONS(5853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsection] = ACTIONS(5853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddsec] = ACTIONS(5853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHparagraph] = ACTIONS(5853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHitem] = ACTIONS(5853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5851), + [anon_sym_LBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(5853), + [sym_placeholder] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym__] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_SQUOTE] = ACTIONS(5853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5851), + [anon_sym_DOLLAR] = ACTIONS(5853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5851), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5851), + [anon_sym_BSLASHbegin] = ACTIONS(5853), + [anon_sym_BSLASHtitle] = ACTIONS(5853), + [anon_sym_BSLASHauthor] = ACTIONS(5853), + [anon_sym_BSLASHusepackage] = ACTIONS(5853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5853), + [anon_sym_BSLASHinclude] = ACTIONS(5853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5853), + [anon_sym_BSLASHinput] = ACTIONS(5853), + [anon_sym_BSLASHsubfile] = ACTIONS(5853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5853), + [anon_sym_BSLASHbibliography] = ACTIONS(5853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5853), + [anon_sym_BSLASHincludesvg] = ACTIONS(5853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5853), + [anon_sym_BSLASHimport] = ACTIONS(5853), + [anon_sym_BSLASHsubimport] = ACTIONS(5853), + [anon_sym_BSLASHinputfrom] = ACTIONS(5853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5853), + [anon_sym_BSLASHincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHcaption] = ACTIONS(5853), + [anon_sym_BSLASHcite] = ACTIONS(5853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCite] = ACTIONS(5853), + [anon_sym_BSLASHnocite] = ACTIONS(5853), + [anon_sym_BSLASHcitet] = ACTIONS(5853), + [anon_sym_BSLASHcitep] = ACTIONS(5853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteauthor] = ACTIONS(5853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitetitle] = ACTIONS(5853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteyear] = ACTIONS(5853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitedate] = ACTIONS(5853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteurl] = ACTIONS(5853), + [anon_sym_BSLASHfullcite] = ACTIONS(5853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5853), + [anon_sym_BSLASHcitealt] = ACTIONS(5853), + [anon_sym_BSLASHcitealp] = ACTIONS(5853), + [anon_sym_BSLASHcitetext] = ACTIONS(5853), + [anon_sym_BSLASHparencite] = ACTIONS(5853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHParencite] = ACTIONS(5853), + [anon_sym_BSLASHfootcite] = ACTIONS(5853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5853), + [anon_sym_BSLASHtextcite] = ACTIONS(5853), + [anon_sym_BSLASHTextcite] = ACTIONS(5853), + [anon_sym_BSLASHsmartcite] = ACTIONS(5853), + [anon_sym_BSLASHSmartcite] = ACTIONS(5853), + [anon_sym_BSLASHsupercite] = ACTIONS(5853), + [anon_sym_BSLASHautocite] = ACTIONS(5853), + [anon_sym_BSLASHAutocite] = ACTIONS(5853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHvolcite] = ACTIONS(5853), + [anon_sym_BSLASHVolcite] = ACTIONS(5853), + [anon_sym_BSLASHpvolcite] = ACTIONS(5853), + [anon_sym_BSLASHPvolcite] = ACTIONS(5853), + [anon_sym_BSLASHfvolcite] = ACTIONS(5853), + [anon_sym_BSLASHftvolcite] = ACTIONS(5853), + [anon_sym_BSLASHsvolcite] = ACTIONS(5853), + [anon_sym_BSLASHSvolcite] = ACTIONS(5853), + [anon_sym_BSLASHtvolcite] = ACTIONS(5853), + [anon_sym_BSLASHTvolcite] = ACTIONS(5853), + [anon_sym_BSLASHavolcite] = ACTIONS(5853), + [anon_sym_BSLASHAvolcite] = ACTIONS(5853), + [anon_sym_BSLASHnotecite] = ACTIONS(5853), + [anon_sym_BSLASHNotecite] = ACTIONS(5853), + [anon_sym_BSLASHpnotecite] = ACTIONS(5853), + [anon_sym_BSLASHPnotecite] = ACTIONS(5853), + [anon_sym_BSLASHfnotecite] = ACTIONS(5853), + [anon_sym_BSLASHlabel] = ACTIONS(5853), + [anon_sym_BSLASHref] = ACTIONS(5853), + [anon_sym_BSLASHeqref] = ACTIONS(5853), + [anon_sym_BSLASHvref] = ACTIONS(5853), + [anon_sym_BSLASHVref] = ACTIONS(5853), + [anon_sym_BSLASHautoref] = ACTIONS(5853), + [anon_sym_BSLASHpageref] = ACTIONS(5853), + [anon_sym_BSLASHcref] = ACTIONS(5853), + [anon_sym_BSLASHCref] = ACTIONS(5853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnameCref] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHlabelcref] = ACTIONS(5853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCrefrange] = ACTIONS(5853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnewlabel] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdef] = ACTIONS(5853), + [anon_sym_BSLASHlet] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5853), + [anon_sym_BSLASHgls] = ACTIONS(5853), + [anon_sym_BSLASHGls] = ACTIONS(5853), + [anon_sym_BSLASHGLS] = ACTIONS(5853), + [anon_sym_BSLASHglspl] = ACTIONS(5853), + [anon_sym_BSLASHGlspl] = ACTIONS(5853), + [anon_sym_BSLASHGLSpl] = ACTIONS(5853), + [anon_sym_BSLASHglsdisp] = ACTIONS(5853), + [anon_sym_BSLASHglslink] = ACTIONS(5853), + [anon_sym_BSLASHglstext] = ACTIONS(5853), + [anon_sym_BSLASHGlstext] = ACTIONS(5853), + [anon_sym_BSLASHGLStext] = ACTIONS(5853), + [anon_sym_BSLASHglsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5853), + [anon_sym_BSLASHglsplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSplural] = ACTIONS(5853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHglsname] = ACTIONS(5853), + [anon_sym_BSLASHGlsname] = ACTIONS(5853), + [anon_sym_BSLASHGLSname] = ACTIONS(5853), + [anon_sym_BSLASHglssymbol] = ACTIONS(5853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5853), + [anon_sym_BSLASHglsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5853), + [anon_sym_BSLASHglsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5853), + [anon_sym_BSLASHglsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5853), + [anon_sym_BSLASHglsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5853), + [anon_sym_BSLASHglsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5853), + [anon_sym_BSLASHnewacronym] = ACTIONS(5853), + [anon_sym_BSLASHacrshort] = ACTIONS(5853), + [anon_sym_BSLASHAcrshort] = ACTIONS(5853), + [anon_sym_BSLASHACRshort] = ACTIONS(5853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5853), + [anon_sym_BSLASHacrlong] = ACTIONS(5853), + [anon_sym_BSLASHAcrlong] = ACTIONS(5853), + [anon_sym_BSLASHACRlong] = ACTIONS(5853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5853), + [anon_sym_BSLASHacrfull] = ACTIONS(5853), + [anon_sym_BSLASHAcrfull] = ACTIONS(5853), + [anon_sym_BSLASHACRfull] = ACTIONS(5853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5853), + [anon_sym_BSLASHacs] = ACTIONS(5853), + [anon_sym_BSLASHAcs] = ACTIONS(5853), + [anon_sym_BSLASHacsp] = ACTIONS(5853), + [anon_sym_BSLASHAcsp] = ACTIONS(5853), + [anon_sym_BSLASHacl] = ACTIONS(5853), + [anon_sym_BSLASHAcl] = ACTIONS(5853), + [anon_sym_BSLASHaclp] = ACTIONS(5853), + [anon_sym_BSLASHAclp] = ACTIONS(5853), + [anon_sym_BSLASHacf] = ACTIONS(5853), + [anon_sym_BSLASHAcf] = ACTIONS(5853), + [anon_sym_BSLASHacfp] = ACTIONS(5853), + [anon_sym_BSLASHAcfp] = ACTIONS(5853), + [anon_sym_BSLASHac] = ACTIONS(5853), + [anon_sym_BSLASHAc] = ACTIONS(5853), + [anon_sym_BSLASHacp] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5853), + [anon_sym_BSLASHcolor] = ACTIONS(5853), + [anon_sym_BSLASHcolorbox] = ACTIONS(5853), + [anon_sym_BSLASHtextcolor] = ACTIONS(5853), + [anon_sym_BSLASHpagecolor] = ACTIONS(5853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5853), + [anon_sym_BSLASHtext] = ACTIONS(5853), + [anon_sym_BSLASHintertext] = ACTIONS(5853), + [anon_sym_shortintertext] = ACTIONS(5853), + }, + [931] = { + [sym_command_name] = ACTIONS(5833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5833), + [anon_sym_LPAREN] = ACTIONS(5831), + [anon_sym_RPAREN] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACK] = ACTIONS(5831), + [anon_sym_COMMA] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_BSLASHpart] = ACTIONS(5833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddpart] = ACTIONS(5833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHchapter] = ACTIONS(5833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddchap] = ACTIONS(5833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsection] = ACTIONS(5833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddsec] = ACTIONS(5833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHparagraph] = ACTIONS(5833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHitem] = ACTIONS(5833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5831), + [sym_word] = ACTIONS(5833), + [sym_placeholder] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5833), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5833), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym__] = ACTIONS(5833), + [anon_sym_LT] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_BANG] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5831), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5831), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5831), + [anon_sym_BSLASHbegin] = ACTIONS(5833), + [anon_sym_BSLASHtitle] = ACTIONS(5833), + [anon_sym_BSLASHauthor] = ACTIONS(5833), + [anon_sym_BSLASHusepackage] = ACTIONS(5833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5833), + [anon_sym_BSLASHinclude] = ACTIONS(5833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5833), + [anon_sym_BSLASHinput] = ACTIONS(5833), + [anon_sym_BSLASHsubfile] = ACTIONS(5833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5833), + [anon_sym_BSLASHbibliography] = ACTIONS(5833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5833), + [anon_sym_BSLASHincludesvg] = ACTIONS(5833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5833), + [anon_sym_BSLASHimport] = ACTIONS(5833), + [anon_sym_BSLASHsubimport] = ACTIONS(5833), + [anon_sym_BSLASHinputfrom] = ACTIONS(5833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5833), + [anon_sym_BSLASHincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHcaption] = ACTIONS(5833), + [anon_sym_BSLASHcite] = ACTIONS(5833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCite] = ACTIONS(5833), + [anon_sym_BSLASHnocite] = ACTIONS(5833), + [anon_sym_BSLASHcitet] = ACTIONS(5833), + [anon_sym_BSLASHcitep] = ACTIONS(5833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteauthor] = ACTIONS(5833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitetitle] = ACTIONS(5833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteyear] = ACTIONS(5833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitedate] = ACTIONS(5833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteurl] = ACTIONS(5833), + [anon_sym_BSLASHfullcite] = ACTIONS(5833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5833), + [anon_sym_BSLASHcitealt] = ACTIONS(5833), + [anon_sym_BSLASHcitealp] = ACTIONS(5833), + [anon_sym_BSLASHcitetext] = ACTIONS(5833), + [anon_sym_BSLASHparencite] = ACTIONS(5833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHParencite] = ACTIONS(5833), + [anon_sym_BSLASHfootcite] = ACTIONS(5833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5833), + [anon_sym_BSLASHtextcite] = ACTIONS(5833), + [anon_sym_BSLASHTextcite] = ACTIONS(5833), + [anon_sym_BSLASHsmartcite] = ACTIONS(5833), + [anon_sym_BSLASHSmartcite] = ACTIONS(5833), + [anon_sym_BSLASHsupercite] = ACTIONS(5833), + [anon_sym_BSLASHautocite] = ACTIONS(5833), + [anon_sym_BSLASHAutocite] = ACTIONS(5833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHvolcite] = ACTIONS(5833), + [anon_sym_BSLASHVolcite] = ACTIONS(5833), + [anon_sym_BSLASHpvolcite] = ACTIONS(5833), + [anon_sym_BSLASHPvolcite] = ACTIONS(5833), + [anon_sym_BSLASHfvolcite] = ACTIONS(5833), + [anon_sym_BSLASHftvolcite] = ACTIONS(5833), + [anon_sym_BSLASHsvolcite] = ACTIONS(5833), + [anon_sym_BSLASHSvolcite] = ACTIONS(5833), + [anon_sym_BSLASHtvolcite] = ACTIONS(5833), + [anon_sym_BSLASHTvolcite] = ACTIONS(5833), + [anon_sym_BSLASHavolcite] = ACTIONS(5833), + [anon_sym_BSLASHAvolcite] = ACTIONS(5833), + [anon_sym_BSLASHnotecite] = ACTIONS(5833), + [anon_sym_BSLASHNotecite] = ACTIONS(5833), + [anon_sym_BSLASHpnotecite] = ACTIONS(5833), + [anon_sym_BSLASHPnotecite] = ACTIONS(5833), + [anon_sym_BSLASHfnotecite] = ACTIONS(5833), + [anon_sym_BSLASHlabel] = ACTIONS(5833), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCrefrange] = ACTIONS(5833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnewlabel] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdef] = ACTIONS(5833), + [anon_sym_BSLASHlet] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5833), + [anon_sym_BSLASHgls] = ACTIONS(5833), + [anon_sym_BSLASHGls] = ACTIONS(5833), + [anon_sym_BSLASHGLS] = ACTIONS(5833), + [anon_sym_BSLASHglspl] = ACTIONS(5833), + [anon_sym_BSLASHGlspl] = ACTIONS(5833), + [anon_sym_BSLASHGLSpl] = ACTIONS(5833), + [anon_sym_BSLASHglsdisp] = ACTIONS(5833), + [anon_sym_BSLASHglslink] = ACTIONS(5833), + [anon_sym_BSLASHglstext] = ACTIONS(5833), + [anon_sym_BSLASHGlstext] = ACTIONS(5833), + [anon_sym_BSLASHGLStext] = ACTIONS(5833), + [anon_sym_BSLASHglsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5833), + [anon_sym_BSLASHglsplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSplural] = ACTIONS(5833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHglsname] = ACTIONS(5833), + [anon_sym_BSLASHGlsname] = ACTIONS(5833), + [anon_sym_BSLASHGLSname] = ACTIONS(5833), + [anon_sym_BSLASHglssymbol] = ACTIONS(5833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5833), + [anon_sym_BSLASHglsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5833), + [anon_sym_BSLASHglsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5833), + [anon_sym_BSLASHglsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5833), + [anon_sym_BSLASHglsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5833), + [anon_sym_BSLASHglsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5833), + [anon_sym_BSLASHnewacronym] = ACTIONS(5833), + [anon_sym_BSLASHacrshort] = ACTIONS(5833), + [anon_sym_BSLASHAcrshort] = ACTIONS(5833), + [anon_sym_BSLASHACRshort] = ACTIONS(5833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5833), + [anon_sym_BSLASHacrlong] = ACTIONS(5833), + [anon_sym_BSLASHAcrlong] = ACTIONS(5833), + [anon_sym_BSLASHACRlong] = ACTIONS(5833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5833), + [anon_sym_BSLASHacrfull] = ACTIONS(5833), + [anon_sym_BSLASHAcrfull] = ACTIONS(5833), + [anon_sym_BSLASHACRfull] = ACTIONS(5833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5833), + [anon_sym_BSLASHacs] = ACTIONS(5833), + [anon_sym_BSLASHAcs] = ACTIONS(5833), + [anon_sym_BSLASHacsp] = ACTIONS(5833), + [anon_sym_BSLASHAcsp] = ACTIONS(5833), + [anon_sym_BSLASHacl] = ACTIONS(5833), + [anon_sym_BSLASHAcl] = ACTIONS(5833), + [anon_sym_BSLASHaclp] = ACTIONS(5833), + [anon_sym_BSLASHAclp] = ACTIONS(5833), + [anon_sym_BSLASHacf] = ACTIONS(5833), + [anon_sym_BSLASHAcf] = ACTIONS(5833), + [anon_sym_BSLASHacfp] = ACTIONS(5833), + [anon_sym_BSLASHAcfp] = ACTIONS(5833), + [anon_sym_BSLASHac] = ACTIONS(5833), + [anon_sym_BSLASHAc] = ACTIONS(5833), + [anon_sym_BSLASHacp] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5833), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5833), + [anon_sym_BSLASHcolor] = ACTIONS(5833), + [anon_sym_BSLASHcolorbox] = ACTIONS(5833), + [anon_sym_BSLASHtextcolor] = ACTIONS(5833), + [anon_sym_BSLASHpagecolor] = ACTIONS(5833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5833), + [anon_sym_BSLASHtext] = ACTIONS(5833), + [anon_sym_BSLASHintertext] = ACTIONS(5833), + [anon_sym_shortintertext] = ACTIONS(5833), + }, + [932] = { + [sym_command_name] = ACTIONS(5825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5825), + [anon_sym_LPAREN] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_BSLASHpart] = ACTIONS(5825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddpart] = ACTIONS(5825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHchapter] = ACTIONS(5825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddchap] = ACTIONS(5825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsection] = ACTIONS(5825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddsec] = ACTIONS(5825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHparagraph] = ACTIONS(5825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHitem] = ACTIONS(5825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [sym_placeholder] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym__] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_SQUOTE] = ACTIONS(5825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5823), + [anon_sym_DOLLAR] = ACTIONS(5825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5823), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5823), + [anon_sym_BSLASHbegin] = ACTIONS(5825), + [anon_sym_BSLASHtitle] = ACTIONS(5825), + [anon_sym_BSLASHauthor] = ACTIONS(5825), + [anon_sym_BSLASHusepackage] = ACTIONS(5825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5825), + [anon_sym_BSLASHinclude] = ACTIONS(5825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5825), + [anon_sym_BSLASHinput] = ACTIONS(5825), + [anon_sym_BSLASHsubfile] = ACTIONS(5825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5825), + [anon_sym_BSLASHbibliography] = ACTIONS(5825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5825), + [anon_sym_BSLASHincludesvg] = ACTIONS(5825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5825), + [anon_sym_BSLASHimport] = ACTIONS(5825), + [anon_sym_BSLASHsubimport] = ACTIONS(5825), + [anon_sym_BSLASHinputfrom] = ACTIONS(5825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5825), + [anon_sym_BSLASHincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHcaption] = ACTIONS(5825), + [anon_sym_BSLASHcite] = ACTIONS(5825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCite] = ACTIONS(5825), + [anon_sym_BSLASHnocite] = ACTIONS(5825), + [anon_sym_BSLASHcitet] = ACTIONS(5825), + [anon_sym_BSLASHcitep] = ACTIONS(5825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteauthor] = ACTIONS(5825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitetitle] = ACTIONS(5825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteyear] = ACTIONS(5825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitedate] = ACTIONS(5825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteurl] = ACTIONS(5825), + [anon_sym_BSLASHfullcite] = ACTIONS(5825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5825), + [anon_sym_BSLASHcitealt] = ACTIONS(5825), + [anon_sym_BSLASHcitealp] = ACTIONS(5825), + [anon_sym_BSLASHcitetext] = ACTIONS(5825), + [anon_sym_BSLASHparencite] = ACTIONS(5825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHParencite] = ACTIONS(5825), + [anon_sym_BSLASHfootcite] = ACTIONS(5825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5825), + [anon_sym_BSLASHtextcite] = ACTIONS(5825), + [anon_sym_BSLASHTextcite] = ACTIONS(5825), + [anon_sym_BSLASHsmartcite] = ACTIONS(5825), + [anon_sym_BSLASHSmartcite] = ACTIONS(5825), + [anon_sym_BSLASHsupercite] = ACTIONS(5825), + [anon_sym_BSLASHautocite] = ACTIONS(5825), + [anon_sym_BSLASHAutocite] = ACTIONS(5825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHvolcite] = ACTIONS(5825), + [anon_sym_BSLASHVolcite] = ACTIONS(5825), + [anon_sym_BSLASHpvolcite] = ACTIONS(5825), + [anon_sym_BSLASHPvolcite] = ACTIONS(5825), + [anon_sym_BSLASHfvolcite] = ACTIONS(5825), + [anon_sym_BSLASHftvolcite] = ACTIONS(5825), + [anon_sym_BSLASHsvolcite] = ACTIONS(5825), + [anon_sym_BSLASHSvolcite] = ACTIONS(5825), + [anon_sym_BSLASHtvolcite] = ACTIONS(5825), + [anon_sym_BSLASHTvolcite] = ACTIONS(5825), + [anon_sym_BSLASHavolcite] = ACTIONS(5825), + [anon_sym_BSLASHAvolcite] = ACTIONS(5825), + [anon_sym_BSLASHnotecite] = ACTIONS(5825), + [anon_sym_BSLASHNotecite] = ACTIONS(5825), + [anon_sym_BSLASHpnotecite] = ACTIONS(5825), + [anon_sym_BSLASHPnotecite] = ACTIONS(5825), + [anon_sym_BSLASHfnotecite] = ACTIONS(5825), + [anon_sym_BSLASHlabel] = ACTIONS(5825), + [anon_sym_BSLASHref] = ACTIONS(5825), + [anon_sym_BSLASHeqref] = ACTIONS(5825), + [anon_sym_BSLASHvref] = ACTIONS(5825), + [anon_sym_BSLASHVref] = ACTIONS(5825), + [anon_sym_BSLASHautoref] = ACTIONS(5825), + [anon_sym_BSLASHpageref] = ACTIONS(5825), + [anon_sym_BSLASHcref] = ACTIONS(5825), + [anon_sym_BSLASHCref] = ACTIONS(5825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnameCref] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHlabelcref] = ACTIONS(5825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCrefrange] = ACTIONS(5825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnewlabel] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdef] = ACTIONS(5825), + [anon_sym_BSLASHlet] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5825), + [anon_sym_BSLASHgls] = ACTIONS(5825), + [anon_sym_BSLASHGls] = ACTIONS(5825), + [anon_sym_BSLASHGLS] = ACTIONS(5825), + [anon_sym_BSLASHglspl] = ACTIONS(5825), + [anon_sym_BSLASHGlspl] = ACTIONS(5825), + [anon_sym_BSLASHGLSpl] = ACTIONS(5825), + [anon_sym_BSLASHglsdisp] = ACTIONS(5825), + [anon_sym_BSLASHglslink] = ACTIONS(5825), + [anon_sym_BSLASHglstext] = ACTIONS(5825), + [anon_sym_BSLASHGlstext] = ACTIONS(5825), + [anon_sym_BSLASHGLStext] = ACTIONS(5825), + [anon_sym_BSLASHglsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5825), + [anon_sym_BSLASHglsplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSplural] = ACTIONS(5825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHglsname] = ACTIONS(5825), + [anon_sym_BSLASHGlsname] = ACTIONS(5825), + [anon_sym_BSLASHGLSname] = ACTIONS(5825), + [anon_sym_BSLASHglssymbol] = ACTIONS(5825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5825), + [anon_sym_BSLASHglsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5825), + [anon_sym_BSLASHglsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5825), + [anon_sym_BSLASHglsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5825), + [anon_sym_BSLASHglsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5825), + [anon_sym_BSLASHglsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5825), + [anon_sym_BSLASHnewacronym] = ACTIONS(5825), + [anon_sym_BSLASHacrshort] = ACTIONS(5825), + [anon_sym_BSLASHAcrshort] = ACTIONS(5825), + [anon_sym_BSLASHACRshort] = ACTIONS(5825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5825), + [anon_sym_BSLASHacrlong] = ACTIONS(5825), + [anon_sym_BSLASHAcrlong] = ACTIONS(5825), + [anon_sym_BSLASHACRlong] = ACTIONS(5825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5825), + [anon_sym_BSLASHacrfull] = ACTIONS(5825), + [anon_sym_BSLASHAcrfull] = ACTIONS(5825), + [anon_sym_BSLASHACRfull] = ACTIONS(5825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5825), + [anon_sym_BSLASHacs] = ACTIONS(5825), + [anon_sym_BSLASHAcs] = ACTIONS(5825), + [anon_sym_BSLASHacsp] = ACTIONS(5825), + [anon_sym_BSLASHAcsp] = ACTIONS(5825), + [anon_sym_BSLASHacl] = ACTIONS(5825), + [anon_sym_BSLASHAcl] = ACTIONS(5825), + [anon_sym_BSLASHaclp] = ACTIONS(5825), + [anon_sym_BSLASHAclp] = ACTIONS(5825), + [anon_sym_BSLASHacf] = ACTIONS(5825), + [anon_sym_BSLASHAcf] = ACTIONS(5825), + [anon_sym_BSLASHacfp] = ACTIONS(5825), + [anon_sym_BSLASHAcfp] = ACTIONS(5825), + [anon_sym_BSLASHac] = ACTIONS(5825), + [anon_sym_BSLASHAc] = ACTIONS(5825), + [anon_sym_BSLASHacp] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5825), + [anon_sym_BSLASHcolor] = ACTIONS(5825), + [anon_sym_BSLASHcolorbox] = ACTIONS(5825), + [anon_sym_BSLASHtextcolor] = ACTIONS(5825), + [anon_sym_BSLASHpagecolor] = ACTIONS(5825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5825), + [anon_sym_BSLASHtext] = ACTIONS(5825), + [anon_sym_BSLASHintertext] = ACTIONS(5825), + [anon_sym_shortintertext] = ACTIONS(5825), + }, + [933] = { + [sym_command_name] = ACTIONS(5819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5819), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_BSLASHpart] = ACTIONS(5819), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddpart] = ACTIONS(5819), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHchapter] = ACTIONS(5819), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddchap] = ACTIONS(5819), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsection] = ACTIONS(5819), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddsec] = ACTIONS(5819), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHparagraph] = ACTIONS(5819), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5819), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHitem] = ACTIONS(5819), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [sym_word] = ACTIONS(5819), + [sym_placeholder] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym__] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5819), + [anon_sym_SQUOTE] = ACTIONS(5819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5817), + [anon_sym_DOLLAR] = ACTIONS(5819), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5817), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5817), + [anon_sym_BSLASHbegin] = ACTIONS(5819), + [anon_sym_BSLASHtitle] = ACTIONS(5819), + [anon_sym_BSLASHauthor] = ACTIONS(5819), + [anon_sym_BSLASHusepackage] = ACTIONS(5819), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5819), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5819), + [anon_sym_BSLASHinclude] = ACTIONS(5819), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5819), + [anon_sym_BSLASHinput] = ACTIONS(5819), + [anon_sym_BSLASHsubfile] = ACTIONS(5819), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5819), + [anon_sym_BSLASHbibliography] = ACTIONS(5819), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5819), + [anon_sym_BSLASHincludesvg] = ACTIONS(5819), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5819), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5819), + [anon_sym_BSLASHimport] = ACTIONS(5819), + [anon_sym_BSLASHsubimport] = ACTIONS(5819), + [anon_sym_BSLASHinputfrom] = ACTIONS(5819), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5819), + [anon_sym_BSLASHincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHcaption] = ACTIONS(5819), + [anon_sym_BSLASHcite] = ACTIONS(5819), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCite] = ACTIONS(5819), + [anon_sym_BSLASHnocite] = ACTIONS(5819), + [anon_sym_BSLASHcitet] = ACTIONS(5819), + [anon_sym_BSLASHcitep] = ACTIONS(5819), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteauthor] = ACTIONS(5819), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5819), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitetitle] = ACTIONS(5819), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteyear] = ACTIONS(5819), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitedate] = ACTIONS(5819), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteurl] = ACTIONS(5819), + [anon_sym_BSLASHfullcite] = ACTIONS(5819), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5819), + [anon_sym_BSLASHcitealt] = ACTIONS(5819), + [anon_sym_BSLASHcitealp] = ACTIONS(5819), + [anon_sym_BSLASHcitetext] = ACTIONS(5819), + [anon_sym_BSLASHparencite] = ACTIONS(5819), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHParencite] = ACTIONS(5819), + [anon_sym_BSLASHfootcite] = ACTIONS(5819), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5819), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5819), + [anon_sym_BSLASHtextcite] = ACTIONS(5819), + [anon_sym_BSLASHTextcite] = ACTIONS(5819), + [anon_sym_BSLASHsmartcite] = ACTIONS(5819), + [anon_sym_BSLASHSmartcite] = ACTIONS(5819), + [anon_sym_BSLASHsupercite] = ACTIONS(5819), + [anon_sym_BSLASHautocite] = ACTIONS(5819), + [anon_sym_BSLASHAutocite] = ACTIONS(5819), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHvolcite] = ACTIONS(5819), + [anon_sym_BSLASHVolcite] = ACTIONS(5819), + [anon_sym_BSLASHpvolcite] = ACTIONS(5819), + [anon_sym_BSLASHPvolcite] = ACTIONS(5819), + [anon_sym_BSLASHfvolcite] = ACTIONS(5819), + [anon_sym_BSLASHftvolcite] = ACTIONS(5819), + [anon_sym_BSLASHsvolcite] = ACTIONS(5819), + [anon_sym_BSLASHSvolcite] = ACTIONS(5819), + [anon_sym_BSLASHtvolcite] = ACTIONS(5819), + [anon_sym_BSLASHTvolcite] = ACTIONS(5819), + [anon_sym_BSLASHavolcite] = ACTIONS(5819), + [anon_sym_BSLASHAvolcite] = ACTIONS(5819), + [anon_sym_BSLASHnotecite] = ACTIONS(5819), + [anon_sym_BSLASHNotecite] = ACTIONS(5819), + [anon_sym_BSLASHpnotecite] = ACTIONS(5819), + [anon_sym_BSLASHPnotecite] = ACTIONS(5819), + [anon_sym_BSLASHfnotecite] = ACTIONS(5819), + [anon_sym_BSLASHlabel] = ACTIONS(5819), + [anon_sym_BSLASHref] = ACTIONS(5819), + [anon_sym_BSLASHeqref] = ACTIONS(5819), + [anon_sym_BSLASHvref] = ACTIONS(5819), + [anon_sym_BSLASHVref] = ACTIONS(5819), + [anon_sym_BSLASHautoref] = ACTIONS(5819), + [anon_sym_BSLASHpageref] = ACTIONS(5819), + [anon_sym_BSLASHcref] = ACTIONS(5819), + [anon_sym_BSLASHCref] = ACTIONS(5819), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnameCref] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHlabelcref] = ACTIONS(5819), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCrefrange] = ACTIONS(5819), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnewlabel] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5819), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5819), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5819), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdef] = ACTIONS(5819), + [anon_sym_BSLASHlet] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5819), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5819), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5819), + [anon_sym_BSLASHgls] = ACTIONS(5819), + [anon_sym_BSLASHGls] = ACTIONS(5819), + [anon_sym_BSLASHGLS] = ACTIONS(5819), + [anon_sym_BSLASHglspl] = ACTIONS(5819), + [anon_sym_BSLASHGlspl] = ACTIONS(5819), + [anon_sym_BSLASHGLSpl] = ACTIONS(5819), + [anon_sym_BSLASHglsdisp] = ACTIONS(5819), + [anon_sym_BSLASHglslink] = ACTIONS(5819), + [anon_sym_BSLASHglstext] = ACTIONS(5819), + [anon_sym_BSLASHGlstext] = ACTIONS(5819), + [anon_sym_BSLASHGLStext] = ACTIONS(5819), + [anon_sym_BSLASHglsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5819), + [anon_sym_BSLASHglsplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSplural] = ACTIONS(5819), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHglsname] = ACTIONS(5819), + [anon_sym_BSLASHGlsname] = ACTIONS(5819), + [anon_sym_BSLASHGLSname] = ACTIONS(5819), + [anon_sym_BSLASHglssymbol] = ACTIONS(5819), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5819), + [anon_sym_BSLASHglsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5819), + [anon_sym_BSLASHglsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5819), + [anon_sym_BSLASHglsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5819), + [anon_sym_BSLASHglsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5819), + [anon_sym_BSLASHglsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5819), + [anon_sym_BSLASHnewacronym] = ACTIONS(5819), + [anon_sym_BSLASHacrshort] = ACTIONS(5819), + [anon_sym_BSLASHAcrshort] = ACTIONS(5819), + [anon_sym_BSLASHACRshort] = ACTIONS(5819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5819), + [anon_sym_BSLASHacrlong] = ACTIONS(5819), + [anon_sym_BSLASHAcrlong] = ACTIONS(5819), + [anon_sym_BSLASHACRlong] = ACTIONS(5819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5819), + [anon_sym_BSLASHacrfull] = ACTIONS(5819), + [anon_sym_BSLASHAcrfull] = ACTIONS(5819), + [anon_sym_BSLASHACRfull] = ACTIONS(5819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5819), + [anon_sym_BSLASHacs] = ACTIONS(5819), + [anon_sym_BSLASHAcs] = ACTIONS(5819), + [anon_sym_BSLASHacsp] = ACTIONS(5819), + [anon_sym_BSLASHAcsp] = ACTIONS(5819), + [anon_sym_BSLASHacl] = ACTIONS(5819), + [anon_sym_BSLASHAcl] = ACTIONS(5819), + [anon_sym_BSLASHaclp] = ACTIONS(5819), + [anon_sym_BSLASHAclp] = ACTIONS(5819), + [anon_sym_BSLASHacf] = ACTIONS(5819), + [anon_sym_BSLASHAcf] = ACTIONS(5819), + [anon_sym_BSLASHacfp] = ACTIONS(5819), + [anon_sym_BSLASHAcfp] = ACTIONS(5819), + [anon_sym_BSLASHac] = ACTIONS(5819), + [anon_sym_BSLASHAc] = ACTIONS(5819), + [anon_sym_BSLASHacp] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5819), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5819), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5819), + [anon_sym_BSLASHcolor] = ACTIONS(5819), + [anon_sym_BSLASHcolorbox] = ACTIONS(5819), + [anon_sym_BSLASHtextcolor] = ACTIONS(5819), + [anon_sym_BSLASHpagecolor] = ACTIONS(5819), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5819), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5819), + [anon_sym_BSLASHtext] = ACTIONS(5819), + [anon_sym_BSLASHintertext] = ACTIONS(5819), + [anon_sym_shortintertext] = ACTIONS(5819), + }, + [934] = { + [sym_command_name] = ACTIONS(5933), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_BSLASHpart] = ACTIONS(5933), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddpart] = ACTIONS(5933), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHchapter] = ACTIONS(5933), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddchap] = ACTIONS(5933), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsection] = ACTIONS(5933), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddsec] = ACTIONS(5933), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHparagraph] = ACTIONS(5933), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5933), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHitem] = ACTIONS(5933), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), + [sym_word] = ACTIONS(5933), + [sym_placeholder] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym__] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_SQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5931), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5931), + [anon_sym_BSLASHbegin] = ACTIONS(5933), + [anon_sym_BSLASHtitle] = ACTIONS(5933), + [anon_sym_BSLASHauthor] = ACTIONS(5933), + [anon_sym_BSLASHusepackage] = ACTIONS(5933), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5933), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5933), + [anon_sym_BSLASHinclude] = ACTIONS(5933), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5933), + [anon_sym_BSLASHinput] = ACTIONS(5933), + [anon_sym_BSLASHsubfile] = ACTIONS(5933), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5933), + [anon_sym_BSLASHbibliography] = ACTIONS(5933), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5933), + [anon_sym_BSLASHincludesvg] = ACTIONS(5933), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5933), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5933), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5933), + [anon_sym_BSLASHimport] = ACTIONS(5933), + [anon_sym_BSLASHsubimport] = ACTIONS(5933), + [anon_sym_BSLASHinputfrom] = ACTIONS(5933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5933), + [anon_sym_BSLASHincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHcaption] = ACTIONS(5933), + [anon_sym_BSLASHcite] = ACTIONS(5933), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCite] = ACTIONS(5933), + [anon_sym_BSLASHnocite] = ACTIONS(5933), + [anon_sym_BSLASHcitet] = ACTIONS(5933), + [anon_sym_BSLASHcitep] = ACTIONS(5933), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteauthor] = ACTIONS(5933), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5933), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitetitle] = ACTIONS(5933), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteyear] = ACTIONS(5933), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitedate] = ACTIONS(5933), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteurl] = ACTIONS(5933), + [anon_sym_BSLASHfullcite] = ACTIONS(5933), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5933), + [anon_sym_BSLASHcitealt] = ACTIONS(5933), + [anon_sym_BSLASHcitealp] = ACTIONS(5933), + [anon_sym_BSLASHcitetext] = ACTIONS(5933), + [anon_sym_BSLASHparencite] = ACTIONS(5933), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHParencite] = ACTIONS(5933), + [anon_sym_BSLASHfootcite] = ACTIONS(5933), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5933), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5933), + [anon_sym_BSLASHtextcite] = ACTIONS(5933), + [anon_sym_BSLASHTextcite] = ACTIONS(5933), + [anon_sym_BSLASHsmartcite] = ACTIONS(5933), + [anon_sym_BSLASHSmartcite] = ACTIONS(5933), + [anon_sym_BSLASHsupercite] = ACTIONS(5933), + [anon_sym_BSLASHautocite] = ACTIONS(5933), + [anon_sym_BSLASHAutocite] = ACTIONS(5933), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHvolcite] = ACTIONS(5933), + [anon_sym_BSLASHVolcite] = ACTIONS(5933), + [anon_sym_BSLASHpvolcite] = ACTIONS(5933), + [anon_sym_BSLASHPvolcite] = ACTIONS(5933), + [anon_sym_BSLASHfvolcite] = ACTIONS(5933), + [anon_sym_BSLASHftvolcite] = ACTIONS(5933), + [anon_sym_BSLASHsvolcite] = ACTIONS(5933), + [anon_sym_BSLASHSvolcite] = ACTIONS(5933), + [anon_sym_BSLASHtvolcite] = ACTIONS(5933), + [anon_sym_BSLASHTvolcite] = ACTIONS(5933), + [anon_sym_BSLASHavolcite] = ACTIONS(5933), + [anon_sym_BSLASHAvolcite] = ACTIONS(5933), + [anon_sym_BSLASHnotecite] = ACTIONS(5933), + [anon_sym_BSLASHNotecite] = ACTIONS(5933), + [anon_sym_BSLASHpnotecite] = ACTIONS(5933), + [anon_sym_BSLASHPnotecite] = ACTIONS(5933), + [anon_sym_BSLASHfnotecite] = ACTIONS(5933), + [anon_sym_BSLASHlabel] = ACTIONS(5933), + [anon_sym_BSLASHref] = ACTIONS(5933), + [anon_sym_BSLASHeqref] = ACTIONS(5933), + [anon_sym_BSLASHvref] = ACTIONS(5933), + [anon_sym_BSLASHVref] = ACTIONS(5933), + [anon_sym_BSLASHautoref] = ACTIONS(5933), + [anon_sym_BSLASHpageref] = ACTIONS(5933), + [anon_sym_BSLASHcref] = ACTIONS(5933), + [anon_sym_BSLASHCref] = ACTIONS(5933), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnameCref] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHlabelcref] = ACTIONS(5933), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCrefrange] = ACTIONS(5933), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnewlabel] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5933), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5933), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5933), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdef] = ACTIONS(5933), + [anon_sym_BSLASHlet] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5933), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5933), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5933), + [anon_sym_BSLASHgls] = ACTIONS(5933), + [anon_sym_BSLASHGls] = ACTIONS(5933), + [anon_sym_BSLASHGLS] = ACTIONS(5933), + [anon_sym_BSLASHglspl] = ACTIONS(5933), + [anon_sym_BSLASHGlspl] = ACTIONS(5933), + [anon_sym_BSLASHGLSpl] = ACTIONS(5933), + [anon_sym_BSLASHglsdisp] = ACTIONS(5933), + [anon_sym_BSLASHglslink] = ACTIONS(5933), + [anon_sym_BSLASHglstext] = ACTIONS(5933), + [anon_sym_BSLASHGlstext] = ACTIONS(5933), + [anon_sym_BSLASHGLStext] = ACTIONS(5933), + [anon_sym_BSLASHglsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5933), + [anon_sym_BSLASHglsplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSplural] = ACTIONS(5933), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHglsname] = ACTIONS(5933), + [anon_sym_BSLASHGlsname] = ACTIONS(5933), + [anon_sym_BSLASHGLSname] = ACTIONS(5933), + [anon_sym_BSLASHglssymbol] = ACTIONS(5933), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5933), + [anon_sym_BSLASHglsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5933), + [anon_sym_BSLASHglsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5933), + [anon_sym_BSLASHglsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5933), + [anon_sym_BSLASHglsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5933), + [anon_sym_BSLASHglsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5933), + [anon_sym_BSLASHnewacronym] = ACTIONS(5933), + [anon_sym_BSLASHacrshort] = ACTIONS(5933), + [anon_sym_BSLASHAcrshort] = ACTIONS(5933), + [anon_sym_BSLASHACRshort] = ACTIONS(5933), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5933), + [anon_sym_BSLASHacrlong] = ACTIONS(5933), + [anon_sym_BSLASHAcrlong] = ACTIONS(5933), + [anon_sym_BSLASHACRlong] = ACTIONS(5933), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5933), + [anon_sym_BSLASHacrfull] = ACTIONS(5933), + [anon_sym_BSLASHAcrfull] = ACTIONS(5933), + [anon_sym_BSLASHACRfull] = ACTIONS(5933), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5933), + [anon_sym_BSLASHacs] = ACTIONS(5933), + [anon_sym_BSLASHAcs] = ACTIONS(5933), + [anon_sym_BSLASHacsp] = ACTIONS(5933), + [anon_sym_BSLASHAcsp] = ACTIONS(5933), + [anon_sym_BSLASHacl] = ACTIONS(5933), + [anon_sym_BSLASHAcl] = ACTIONS(5933), + [anon_sym_BSLASHaclp] = ACTIONS(5933), + [anon_sym_BSLASHAclp] = ACTIONS(5933), + [anon_sym_BSLASHacf] = ACTIONS(5933), + [anon_sym_BSLASHAcf] = ACTIONS(5933), + [anon_sym_BSLASHacfp] = ACTIONS(5933), + [anon_sym_BSLASHAcfp] = ACTIONS(5933), + [anon_sym_BSLASHac] = ACTIONS(5933), + [anon_sym_BSLASHAc] = ACTIONS(5933), + [anon_sym_BSLASHacp] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5933), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5933), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5933), + [anon_sym_BSLASHcolor] = ACTIONS(5933), + [anon_sym_BSLASHcolorbox] = ACTIONS(5933), + [anon_sym_BSLASHtextcolor] = ACTIONS(5933), + [anon_sym_BSLASHpagecolor] = ACTIONS(5933), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5933), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5933), + [anon_sym_BSLASHtext] = ACTIONS(5933), + [anon_sym_BSLASHintertext] = ACTIONS(5933), + [anon_sym_shortintertext] = ACTIONS(5933), + }, + [935] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_BSLASHpart] = ACTIONS(5811), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddpart] = ACTIONS(5811), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHchapter] = ACTIONS(5811), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddchap] = ACTIONS(5811), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsection] = ACTIONS(5811), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddsec] = ACTIONS(5811), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHparagraph] = ACTIONS(5811), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5811), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHitem] = ACTIONS(5811), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), + }, + [936] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_BSLASHpart] = ACTIONS(5841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddpart] = ACTIONS(5841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHchapter] = ACTIONS(5841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddchap] = ACTIONS(5841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsection] = ACTIONS(5841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddsec] = ACTIONS(5841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHparagraph] = ACTIONS(5841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHitem] = ACTIONS(5841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), + }, + [937] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASH_RBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [938] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_BSLASHpart] = ACTIONS(6175), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddpart] = ACTIONS(6175), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHchapter] = ACTIONS(6175), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddchap] = ACTIONS(6175), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsection] = ACTIONS(6175), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddsec] = ACTIONS(6175), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHparagraph] = ACTIONS(6175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6175), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHitem] = ACTIONS(6175), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [939] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASH_RBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [940] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_BSLASHpart] = ACTIONS(5803), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddpart] = ACTIONS(5803), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHchapter] = ACTIONS(5803), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddchap] = ACTIONS(5803), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsection] = ACTIONS(5803), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddsec] = ACTIONS(5803), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHparagraph] = ACTIONS(5803), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHitem] = ACTIONS(5803), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), + }, + [941] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_BSLASHpart] = ACTIONS(5807), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddpart] = ACTIONS(5807), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHchapter] = ACTIONS(5807), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddchap] = ACTIONS(5807), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsection] = ACTIONS(5807), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddsec] = ACTIONS(5807), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHparagraph] = ACTIONS(5807), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5807), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHitem] = ACTIONS(5807), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [942] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_BSLASHpart] = ACTIONS(6171), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddpart] = ACTIONS(6171), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHchapter] = ACTIONS(6171), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddchap] = ACTIONS(6171), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsection] = ACTIONS(6171), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddsec] = ACTIONS(6171), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHparagraph] = ACTIONS(6171), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6171), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHitem] = ACTIONS(6171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [943] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_BSLASHpart] = ACTIONS(6245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddpart] = ACTIONS(6245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHchapter] = ACTIONS(6245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddchap] = ACTIONS(6245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsection] = ACTIONS(6245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddsec] = ACTIONS(6245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHparagraph] = ACTIONS(6245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHitem] = ACTIONS(6245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [944] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_BSLASHpart] = ACTIONS(5969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddpart] = ACTIONS(5969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHchapter] = ACTIONS(5969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddchap] = ACTIONS(5969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsection] = ACTIONS(5969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddsec] = ACTIONS(5969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHparagraph] = ACTIONS(5969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHitem] = ACTIONS(5969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [945] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_BSLASHpart] = ACTIONS(6003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddpart] = ACTIONS(6003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHchapter] = ACTIONS(6003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddchap] = ACTIONS(6003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsection] = ACTIONS(6003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddsec] = ACTIONS(6003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHparagraph] = ACTIONS(6003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHitem] = ACTIONS(6003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [946] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_BSLASHpart] = ACTIONS(6007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddpart] = ACTIONS(6007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHchapter] = ACTIONS(6007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddchap] = ACTIONS(6007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsection] = ACTIONS(6007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddsec] = ACTIONS(6007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHparagraph] = ACTIONS(6007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHitem] = ACTIONS(6007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [947] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_BSLASHpart] = ACTIONS(6011), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddpart] = ACTIONS(6011), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHchapter] = ACTIONS(6011), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddchap] = ACTIONS(6011), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsection] = ACTIONS(6011), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddsec] = ACTIONS(6011), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHparagraph] = ACTIONS(6011), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6011), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHitem] = ACTIONS(6011), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [948] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_BSLASHpart] = ACTIONS(6021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddpart] = ACTIONS(6021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHchapter] = ACTIONS(6021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddchap] = ACTIONS(6021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsection] = ACTIONS(6021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddsec] = ACTIONS(6021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHparagraph] = ACTIONS(6021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHitem] = ACTIONS(6021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [949] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_BSLASHpart] = ACTIONS(5791), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddpart] = ACTIONS(5791), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHchapter] = ACTIONS(5791), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddchap] = ACTIONS(5791), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsection] = ACTIONS(5791), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddsec] = ACTIONS(5791), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHparagraph] = ACTIONS(5791), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5791), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHitem] = ACTIONS(5791), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [950] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_BSLASHpart] = ACTIONS(6053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddpart] = ACTIONS(6053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHchapter] = ACTIONS(6053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddchap] = ACTIONS(6053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsection] = ACTIONS(6053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddsec] = ACTIONS(6053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHparagraph] = ACTIONS(6053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHitem] = ACTIONS(6053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), + }, + [951] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_BSLASHpart] = ACTIONS(6147), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddpart] = ACTIONS(6147), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHchapter] = ACTIONS(6147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddchap] = ACTIONS(6147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsection] = ACTIONS(6147), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddsec] = ACTIONS(6147), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHparagraph] = ACTIONS(6147), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6147), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHitem] = ACTIONS(6147), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [952] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_BSLASHpart] = ACTIONS(6167), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddpart] = ACTIONS(6167), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHchapter] = ACTIONS(6167), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddchap] = ACTIONS(6167), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsection] = ACTIONS(6167), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddsec] = ACTIONS(6167), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHparagraph] = ACTIONS(6167), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHitem] = ACTIONS(6167), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [953] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_BSLASHpart] = ACTIONS(6205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddpart] = ACTIONS(6205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHchapter] = ACTIONS(6205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddchap] = ACTIONS(6205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsection] = ACTIONS(6205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddsec] = ACTIONS(6205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHparagraph] = ACTIONS(6205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHitem] = ACTIONS(6205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), + }, + [954] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_BSLASHpart] = ACTIONS(6209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddpart] = ACTIONS(6209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHchapter] = ACTIONS(6209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddchap] = ACTIONS(6209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsection] = ACTIONS(6209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddsec] = ACTIONS(6209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHparagraph] = ACTIONS(6209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHitem] = ACTIONS(6209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), + }, + [955] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_BSLASHpart] = ACTIONS(6263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddpart] = ACTIONS(6263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHchapter] = ACTIONS(6263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddchap] = ACTIONS(6263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsection] = ACTIONS(6263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddsec] = ACTIONS(6263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHparagraph] = ACTIONS(6263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHitem] = ACTIONS(6263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [956] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_BSLASHpart] = ACTIONS(6249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddpart] = ACTIONS(6249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHchapter] = ACTIONS(6249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddchap] = ACTIONS(6249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsection] = ACTIONS(6249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddsec] = ACTIONS(6249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHparagraph] = ACTIONS(6249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHitem] = ACTIONS(6249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [957] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_BSLASHpart] = ACTIONS(6253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddpart] = ACTIONS(6253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHchapter] = ACTIONS(6253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddchap] = ACTIONS(6253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsection] = ACTIONS(6253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddsec] = ACTIONS(6253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHparagraph] = ACTIONS(6253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHitem] = ACTIONS(6253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [958] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_BSLASHpart] = ACTIONS(6259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddpart] = ACTIONS(6259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHchapter] = ACTIONS(6259), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddchap] = ACTIONS(6259), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsection] = ACTIONS(6259), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddsec] = ACTIONS(6259), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHparagraph] = ACTIONS(6259), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6259), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHitem] = ACTIONS(6259), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [959] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_BSLASHpart] = ACTIONS(5901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddpart] = ACTIONS(5901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHchapter] = ACTIONS(5901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddchap] = ACTIONS(5901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsection] = ACTIONS(5901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddsec] = ACTIONS(5901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHparagraph] = ACTIONS(5901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [960] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_BSLASHpart] = ACTIONS(6069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddpart] = ACTIONS(6069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHchapter] = ACTIONS(6069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddchap] = ACTIONS(6069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsection] = ACTIONS(6069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddsec] = ACTIONS(6069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHparagraph] = ACTIONS(6069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHitem] = ACTIONS(6069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [961] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_BSLASHpart] = ACTIONS(6163), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddpart] = ACTIONS(6163), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHchapter] = ACTIONS(6163), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddchap] = ACTIONS(6163), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsection] = ACTIONS(6163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddsec] = ACTIONS(6163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHparagraph] = ACTIONS(6163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6163), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHitem] = ACTIONS(6163), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [962] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_BSLASHpart] = ACTIONS(5975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddpart] = ACTIONS(5975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHchapter] = ACTIONS(5975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddchap] = ACTIONS(5975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsection] = ACTIONS(5975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddsec] = ACTIONS(5975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHparagraph] = ACTIONS(5975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHitem] = ACTIONS(5975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [963] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_BSLASHpart] = ACTIONS(5965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddpart] = ACTIONS(5965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHchapter] = ACTIONS(5965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddchap] = ACTIONS(5965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsection] = ACTIONS(5965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddsec] = ACTIONS(5965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHparagraph] = ACTIONS(5965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHitem] = ACTIONS(5965), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [964] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_BSLASHpart] = ACTIONS(5937), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddpart] = ACTIONS(5937), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHchapter] = ACTIONS(5937), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddchap] = ACTIONS(5937), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsection] = ACTIONS(5937), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddsec] = ACTIONS(5937), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHparagraph] = ACTIONS(5937), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5937), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHitem] = ACTIONS(5937), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), + }, + [965] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_BSLASHpart] = ACTIONS(6159), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddpart] = ACTIONS(6159), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHchapter] = ACTIONS(6159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddchap] = ACTIONS(6159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsection] = ACTIONS(6159), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddsec] = ACTIONS(6159), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHparagraph] = ACTIONS(6159), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6159), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHitem] = ACTIONS(6159), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), + }, + [966] = { + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_BSLASHpart] = ACTIONS(5873), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddpart] = ACTIONS(5873), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHchapter] = ACTIONS(5873), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddchap] = ACTIONS(5873), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsection] = ACTIONS(5873), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddsec] = ACTIONS(5873), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHparagraph] = ACTIONS(5873), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5873), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHitem] = ACTIONS(5873), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHend] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), + }, + [967] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_BSLASHpart] = ACTIONS(6151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddpart] = ACTIONS(6151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHchapter] = ACTIONS(6151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddchap] = ACTIONS(6151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsection] = ACTIONS(6151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddsec] = ACTIONS(6151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHparagraph] = ACTIONS(6151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHitem] = ACTIONS(6151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [968] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_BSLASHpart] = ACTIONS(6139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddpart] = ACTIONS(6139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHchapter] = ACTIONS(6139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddchap] = ACTIONS(6139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsection] = ACTIONS(6139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddsec] = ACTIONS(6139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHparagraph] = ACTIONS(6139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHitem] = ACTIONS(6139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [969] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_BSLASHpart] = ACTIONS(6135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddpart] = ACTIONS(6135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHchapter] = ACTIONS(6135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddchap] = ACTIONS(6135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsection] = ACTIONS(6135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddsec] = ACTIONS(6135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHparagraph] = ACTIONS(6135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHitem] = ACTIONS(6135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [970] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_BSLASHpart] = ACTIONS(6093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddpart] = ACTIONS(6093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHchapter] = ACTIONS(6093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddchap] = ACTIONS(6093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsection] = ACTIONS(6093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddsec] = ACTIONS(6093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHparagraph] = ACTIONS(6093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHitem] = ACTIONS(6093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), + }, + [971] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_BSLASHpart] = ACTIONS(6089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddpart] = ACTIONS(6089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHchapter] = ACTIONS(6089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddchap] = ACTIONS(6089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsection] = ACTIONS(6089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddsec] = ACTIONS(6089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHparagraph] = ACTIONS(6089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHitem] = ACTIONS(6089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), + }, + [972] = { + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_BSLASHpart] = ACTIONS(5861), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddpart] = ACTIONS(5861), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHchapter] = ACTIONS(5861), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddchap] = ACTIONS(5861), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsection] = ACTIONS(5861), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddsec] = ACTIONS(5861), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHparagraph] = ACTIONS(5861), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5861), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHitem] = ACTIONS(5861), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), + }, + [973] = { + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_BSLASHpart] = ACTIONS(6057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddpart] = ACTIONS(6057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHchapter] = ACTIONS(6057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddchap] = ACTIONS(6057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsection] = ACTIONS(6057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddsec] = ACTIONS(6057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHparagraph] = ACTIONS(6057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHitem] = ACTIONS(6057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), + }, + [974] = { + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_BSLASHpart] = ACTIONS(5865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddpart] = ACTIONS(5865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHchapter] = ACTIONS(5865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddchap] = ACTIONS(5865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsection] = ACTIONS(5865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddsec] = ACTIONS(5865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHparagraph] = ACTIONS(5865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHitem] = ACTIONS(5865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), + }, + [975] = { + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_BSLASHpart] = ACTIONS(5869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddpart] = ACTIONS(5869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHchapter] = ACTIONS(5869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddchap] = ACTIONS(5869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsection] = ACTIONS(5869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddsec] = ACTIONS(5869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHparagraph] = ACTIONS(5869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHitem] = ACTIONS(5869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), + }, + [976] = { + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_BSLASHpart] = ACTIONS(5873), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddpart] = ACTIONS(5873), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHchapter] = ACTIONS(5873), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddchap] = ACTIONS(5873), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsection] = ACTIONS(5873), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddsec] = ACTIONS(5873), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHparagraph] = ACTIONS(5873), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5873), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHitem] = ACTIONS(5873), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), + }, + [977] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_BSLASHpart] = ACTIONS(5877), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddpart] = ACTIONS(5877), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHchapter] = ACTIONS(5877), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddchap] = ACTIONS(5877), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsection] = ACTIONS(5877), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddsec] = ACTIONS(5877), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHparagraph] = ACTIONS(5877), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5877), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHitem] = ACTIONS(5877), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [978] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_BSLASHpart] = ACTIONS(6047), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddpart] = ACTIONS(6047), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHchapter] = ACTIONS(6047), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddchap] = ACTIONS(6047), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsection] = ACTIONS(6047), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddsec] = ACTIONS(6047), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHparagraph] = ACTIONS(6047), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6047), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6047), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [979] = { + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_BSLASHpart] = ACTIONS(6043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddpart] = ACTIONS(6043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHchapter] = ACTIONS(6043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddchap] = ACTIONS(6043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsection] = ACTIONS(6043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddsec] = ACTIONS(6043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHparagraph] = ACTIONS(6043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHitem] = ACTIONS(6043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), + }, + [980] = { + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_BSLASHpart] = ACTIONS(6039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddpart] = ACTIONS(6039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHchapter] = ACTIONS(6039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddchap] = ACTIONS(6039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsection] = ACTIONS(6039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddsec] = ACTIONS(6039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHparagraph] = ACTIONS(6039), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6039), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHitem] = ACTIONS(6039), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), + }, + [981] = { + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_BSLASHpart] = ACTIONS(6033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddpart] = ACTIONS(6033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHchapter] = ACTIONS(6033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddchap] = ACTIONS(6033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsection] = ACTIONS(6033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddsec] = ACTIONS(6033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHparagraph] = ACTIONS(6033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHitem] = ACTIONS(6033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), + }, + [982] = { + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_BSLASHpart] = ACTIONS(6029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddpart] = ACTIONS(6029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHchapter] = ACTIONS(6029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddchap] = ACTIONS(6029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsection] = ACTIONS(6029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddsec] = ACTIONS(6029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHparagraph] = ACTIONS(6029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHitem] = ACTIONS(6029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), + }, + [983] = { + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_BSLASHpart] = ACTIONS(6025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddpart] = ACTIONS(6025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHchapter] = ACTIONS(6025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddchap] = ACTIONS(6025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsection] = ACTIONS(6025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddsec] = ACTIONS(6025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHparagraph] = ACTIONS(6025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHitem] = ACTIONS(6025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), + }, + [984] = { + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_BSLASHpart] = ACTIONS(6017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddpart] = ACTIONS(6017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHchapter] = ACTIONS(6017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddchap] = ACTIONS(6017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsection] = ACTIONS(6017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddsec] = ACTIONS(6017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHparagraph] = ACTIONS(6017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHitem] = ACTIONS(6017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), + }, + [985] = { + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_BSLASHpart] = ACTIONS(5983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddpart] = ACTIONS(5983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHchapter] = ACTIONS(5983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddchap] = ACTIONS(5983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsection] = ACTIONS(5983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddsec] = ACTIONS(5983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHparagraph] = ACTIONS(5983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHitem] = ACTIONS(5983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), + }, + [986] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_BSLASHpart] = ACTIONS(5961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddpart] = ACTIONS(5961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHchapter] = ACTIONS(5961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddchap] = ACTIONS(5961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsection] = ACTIONS(5961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddsec] = ACTIONS(5961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHparagraph] = ACTIONS(5961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHitem] = ACTIONS(5961), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [987] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_BSLASHpart] = ACTIONS(5957), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddpart] = ACTIONS(5957), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHchapter] = ACTIONS(5957), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddchap] = ACTIONS(5957), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsection] = ACTIONS(5957), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddsec] = ACTIONS(5957), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHparagraph] = ACTIONS(5957), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5957), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHitem] = ACTIONS(5957), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [988] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_BSLASHpart] = ACTIONS(5953), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddpart] = ACTIONS(5953), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHchapter] = ACTIONS(5953), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddchap] = ACTIONS(5953), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsection] = ACTIONS(5953), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddsec] = ACTIONS(5953), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHparagraph] = ACTIONS(5953), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5953), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHitem] = ACTIONS(5953), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [989] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_BSLASHpart] = ACTIONS(5945), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddpart] = ACTIONS(5945), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHchapter] = ACTIONS(5945), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddchap] = ACTIONS(5945), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsection] = ACTIONS(5945), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddsec] = ACTIONS(5945), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHparagraph] = ACTIONS(5945), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5945), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHitem] = ACTIONS(5945), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [990] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_BSLASHpart] = ACTIONS(5941), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddpart] = ACTIONS(5941), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHchapter] = ACTIONS(5941), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddchap] = ACTIONS(5941), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsection] = ACTIONS(5941), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddsec] = ACTIONS(5941), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHparagraph] = ACTIONS(5941), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5941), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHitem] = ACTIONS(5941), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [991] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_BSLASHpart] = ACTIONS(5923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddpart] = ACTIONS(5923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHchapter] = ACTIONS(5923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddchap] = ACTIONS(5923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsection] = ACTIONS(5923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddsec] = ACTIONS(5923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHparagraph] = ACTIONS(5923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHitem] = ACTIONS(5923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [992] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_BSLASHpart] = ACTIONS(5919), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddpart] = ACTIONS(5919), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHchapter] = ACTIONS(5919), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddchap] = ACTIONS(5919), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsection] = ACTIONS(5919), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddsec] = ACTIONS(5919), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHparagraph] = ACTIONS(5919), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5919), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHitem] = ACTIONS(5919), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [993] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_BSLASHpart] = ACTIONS(5911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddpart] = ACTIONS(5911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHchapter] = ACTIONS(5911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddchap] = ACTIONS(5911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsection] = ACTIONS(5911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddsec] = ACTIONS(5911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHparagraph] = ACTIONS(5911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHitem] = ACTIONS(5911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [994] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_BSLASHpart] = ACTIONS(5907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddpart] = ACTIONS(5907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHchapter] = ACTIONS(5907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddchap] = ACTIONS(5907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsection] = ACTIONS(5907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddsec] = ACTIONS(5907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHparagraph] = ACTIONS(5907), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5907), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHitem] = ACTIONS(5907), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [995] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_BSLASHpart] = ACTIONS(5979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddpart] = ACTIONS(5979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHchapter] = ACTIONS(5979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddchap] = ACTIONS(5979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsection] = ACTIONS(5979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddsec] = ACTIONS(5979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHparagraph] = ACTIONS(5979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHitem] = ACTIONS(5979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [996] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(1997), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6277), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1398] = { - [sym_command_name] = ACTIONS(5617), + [997] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_BSLASHpart] = ACTIONS(5857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddpart] = ACTIONS(5857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHchapter] = ACTIONS(5857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddchap] = ACTIONS(5857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsection] = ACTIONS(5857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddsec] = ACTIONS(5857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHparagraph] = ACTIONS(5857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHitem] = ACTIONS(5857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [998] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_BSLASHpart] = ACTIONS(5845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddpart] = ACTIONS(5845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHchapter] = ACTIONS(5845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddchap] = ACTIONS(5845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsection] = ACTIONS(5845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddsec] = ACTIONS(5845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHparagraph] = ACTIONS(5845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHitem] = ACTIONS(5845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [999] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_BSLASHpart] = ACTIONS(5897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddpart] = ACTIONS(5897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHchapter] = ACTIONS(5897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddchap] = ACTIONS(5897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsection] = ACTIONS(5897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddsec] = ACTIONS(5897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHparagraph] = ACTIONS(5897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHitem] = ACTIONS(5897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1000] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(1988), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5617), - [anon_sym_LPAREN] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_LBRACE] = ACTIONS(5619), - [sym_word] = ACTIONS(5617), - [sym_placeholder] = ACTIONS(5619), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym__] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_BANG] = ACTIONS(5617), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_SQUOTE] = ACTIONS(5617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5619), - [anon_sym_DOLLAR] = ACTIONS(5617), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5619), - [anon_sym_BSLASHbegin] = ACTIONS(5617), - [anon_sym_BSLASHusepackage] = ACTIONS(5617), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), - [anon_sym_BSLASHinclude] = ACTIONS(5617), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), - [anon_sym_BSLASHinput] = ACTIONS(5617), - [anon_sym_BSLASHsubfile] = ACTIONS(5617), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), - [anon_sym_BSLASHbibliography] = ACTIONS(5617), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), - [anon_sym_BSLASHincludesvg] = ACTIONS(5617), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), - [anon_sym_BSLASHimport] = ACTIONS(5617), - [anon_sym_BSLASHsubimport] = ACTIONS(5617), - [anon_sym_BSLASHinputfrom] = ACTIONS(5617), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), - [anon_sym_BSLASHincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHcaption] = ACTIONS(5617), - [anon_sym_BSLASHcite] = ACTIONS(5617), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCite] = ACTIONS(5617), - [anon_sym_BSLASHnocite] = ACTIONS(5617), - [anon_sym_BSLASHcitet] = ACTIONS(5617), - [anon_sym_BSLASHcitep] = ACTIONS(5617), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteauthor] = ACTIONS(5617), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitetitle] = ACTIONS(5617), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteyear] = ACTIONS(5617), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitedate] = ACTIONS(5617), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteurl] = ACTIONS(5617), - [anon_sym_BSLASHfullcite] = ACTIONS(5617), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), - [anon_sym_BSLASHcitealt] = ACTIONS(5617), - [anon_sym_BSLASHcitealp] = ACTIONS(5617), - [anon_sym_BSLASHcitetext] = ACTIONS(5617), - [anon_sym_BSLASHparencite] = ACTIONS(5617), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHParencite] = ACTIONS(5617), - [anon_sym_BSLASHfootcite] = ACTIONS(5617), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), - [anon_sym_BSLASHtextcite] = ACTIONS(5617), - [anon_sym_BSLASHTextcite] = ACTIONS(5617), - [anon_sym_BSLASHsmartcite] = ACTIONS(5617), - [anon_sym_BSLASHSmartcite] = ACTIONS(5617), - [anon_sym_BSLASHsupercite] = ACTIONS(5617), - [anon_sym_BSLASHautocite] = ACTIONS(5617), - [anon_sym_BSLASHAutocite] = ACTIONS(5617), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHvolcite] = ACTIONS(5617), - [anon_sym_BSLASHVolcite] = ACTIONS(5617), - [anon_sym_BSLASHpvolcite] = ACTIONS(5617), - [anon_sym_BSLASHPvolcite] = ACTIONS(5617), - [anon_sym_BSLASHfvolcite] = ACTIONS(5617), - [anon_sym_BSLASHftvolcite] = ACTIONS(5617), - [anon_sym_BSLASHsvolcite] = ACTIONS(5617), - [anon_sym_BSLASHSvolcite] = ACTIONS(5617), - [anon_sym_BSLASHtvolcite] = ACTIONS(5617), - [anon_sym_BSLASHTvolcite] = ACTIONS(5617), - [anon_sym_BSLASHavolcite] = ACTIONS(5617), - [anon_sym_BSLASHAvolcite] = ACTIONS(5617), - [anon_sym_BSLASHnotecite] = ACTIONS(5617), - [anon_sym_BSLASHNotecite] = ACTIONS(5617), - [anon_sym_BSLASHpnotecite] = ACTIONS(5617), - [anon_sym_BSLASHPnotecite] = ACTIONS(5617), - [anon_sym_BSLASHfnotecite] = ACTIONS(5617), - [anon_sym_BSLASHlabel] = ACTIONS(5617), - [anon_sym_BSLASHref] = ACTIONS(5617), - [anon_sym_BSLASHeqref] = ACTIONS(5617), - [anon_sym_BSLASHvref] = ACTIONS(5617), - [anon_sym_BSLASHVref] = ACTIONS(5617), - [anon_sym_BSLASHautoref] = ACTIONS(5617), - [anon_sym_BSLASHpageref] = ACTIONS(5617), - [anon_sym_BSLASHcref] = ACTIONS(5617), - [anon_sym_BSLASHCref] = ACTIONS(5617), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnameCref] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHlabelcref] = ACTIONS(5617), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCrefrange] = ACTIONS(5617), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnewlabel] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdef] = ACTIONS(5617), - [anon_sym_BSLASHlet] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), - [anon_sym_BSLASHgls] = ACTIONS(5617), - [anon_sym_BSLASHGls] = ACTIONS(5617), - [anon_sym_BSLASHGLS] = ACTIONS(5617), - [anon_sym_BSLASHglspl] = ACTIONS(5617), - [anon_sym_BSLASHGlspl] = ACTIONS(5617), - [anon_sym_BSLASHGLSpl] = ACTIONS(5617), - [anon_sym_BSLASHglsdisp] = ACTIONS(5617), - [anon_sym_BSLASHglslink] = ACTIONS(5617), - [anon_sym_BSLASHglstext] = ACTIONS(5617), - [anon_sym_BSLASHGlstext] = ACTIONS(5617), - [anon_sym_BSLASHGLStext] = ACTIONS(5617), - [anon_sym_BSLASHglsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), - [anon_sym_BSLASHglsplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSplural] = ACTIONS(5617), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHglsname] = ACTIONS(5617), - [anon_sym_BSLASHGlsname] = ACTIONS(5617), - [anon_sym_BSLASHGLSname] = ACTIONS(5617), - [anon_sym_BSLASHglssymbol] = ACTIONS(5617), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), - [anon_sym_BSLASHglsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), - [anon_sym_BSLASHglsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), - [anon_sym_BSLASHglsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), - [anon_sym_BSLASHglsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), - [anon_sym_BSLASHglsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), - [anon_sym_BSLASHnewacronym] = ACTIONS(5617), - [anon_sym_BSLASHacrshort] = ACTIONS(5617), - [anon_sym_BSLASHAcrshort] = ACTIONS(5617), - [anon_sym_BSLASHACRshort] = ACTIONS(5617), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), - [anon_sym_BSLASHacrlong] = ACTIONS(5617), - [anon_sym_BSLASHAcrlong] = ACTIONS(5617), - [anon_sym_BSLASHACRlong] = ACTIONS(5617), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), - [anon_sym_BSLASHacrfull] = ACTIONS(5617), - [anon_sym_BSLASHAcrfull] = ACTIONS(5617), - [anon_sym_BSLASHACRfull] = ACTIONS(5617), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), - [anon_sym_BSLASHacs] = ACTIONS(5617), - [anon_sym_BSLASHAcs] = ACTIONS(5617), - [anon_sym_BSLASHacsp] = ACTIONS(5617), - [anon_sym_BSLASHAcsp] = ACTIONS(5617), - [anon_sym_BSLASHacl] = ACTIONS(5617), - [anon_sym_BSLASHAcl] = ACTIONS(5617), - [anon_sym_BSLASHaclp] = ACTIONS(5617), - [anon_sym_BSLASHAclp] = ACTIONS(5617), - [anon_sym_BSLASHacf] = ACTIONS(5617), - [anon_sym_BSLASHAcf] = ACTIONS(5617), - [anon_sym_BSLASHacfp] = ACTIONS(5617), - [anon_sym_BSLASHAcfp] = ACTIONS(5617), - [anon_sym_BSLASHac] = ACTIONS(5617), - [anon_sym_BSLASHAc] = ACTIONS(5617), - [anon_sym_BSLASHacp] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), - [anon_sym_BSLASHcolor] = ACTIONS(5617), - [anon_sym_BSLASHcolorbox] = ACTIONS(5617), - [anon_sym_BSLASHtextcolor] = ACTIONS(5617), - [anon_sym_BSLASHpagecolor] = ACTIONS(5617), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), - [anon_sym_BSLASHtext] = ACTIONS(5617), - [anon_sym_BSLASHintertext] = ACTIONS(5617), - [anon_sym_shortintertext] = ACTIONS(5617), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6279), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1001] = { + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_BSLASHpart] = ACTIONS(5927), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddpart] = ACTIONS(5927), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHchapter] = ACTIONS(5927), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddchap] = ACTIONS(5927), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsection] = ACTIONS(5927), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddsec] = ACTIONS(5927), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHparagraph] = ACTIONS(5927), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5927), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHitem] = ACTIONS(5927), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), + }, + [1002] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_BSLASHpart] = ACTIONS(6065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddpart] = ACTIONS(6065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHchapter] = ACTIONS(6065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddchap] = ACTIONS(6065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsection] = ACTIONS(6065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddsec] = ACTIONS(6065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHparagraph] = ACTIONS(6065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHitem] = ACTIONS(6065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1003] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_BSLASHpart] = ACTIONS(6073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddpart] = ACTIONS(6073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHchapter] = ACTIONS(6073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddchap] = ACTIONS(6073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsection] = ACTIONS(6073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddsec] = ACTIONS(6073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHparagraph] = ACTIONS(6073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHitem] = ACTIONS(6073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1004] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_BSLASHpart] = ACTIONS(6197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddpart] = ACTIONS(6197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHchapter] = ACTIONS(6197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddchap] = ACTIONS(6197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsection] = ACTIONS(6197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddsec] = ACTIONS(6197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHparagraph] = ACTIONS(6197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHitem] = ACTIONS(6197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1005] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_BSLASHpart] = ACTIONS(6267), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddpart] = ACTIONS(6267), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHchapter] = ACTIONS(6267), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddchap] = ACTIONS(6267), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsection] = ACTIONS(6267), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddsec] = ACTIONS(6267), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHparagraph] = ACTIONS(6267), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6267), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHitem] = ACTIONS(6267), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1006] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_BSLASHpart] = ACTIONS(5991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddpart] = ACTIONS(5991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHchapter] = ACTIONS(5991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddchap] = ACTIONS(5991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsection] = ACTIONS(5991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddsec] = ACTIONS(5991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHparagraph] = ACTIONS(5991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHitem] = ACTIONS(5991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1007] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_BSLASHpart] = ACTIONS(5987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddpart] = ACTIONS(5987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHchapter] = ACTIONS(5987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddchap] = ACTIONS(5987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsection] = ACTIONS(5987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddsec] = ACTIONS(5987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHparagraph] = ACTIONS(5987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHitem] = ACTIONS(5987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1008] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_BSLASHpart] = ACTIONS(6181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddpart] = ACTIONS(6181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHchapter] = ACTIONS(6181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddchap] = ACTIONS(6181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsection] = ACTIONS(6181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddsec] = ACTIONS(6181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHparagraph] = ACTIONS(6181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHitem] = ACTIONS(6181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1009] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_BSLASHpart] = ACTIONS(5849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddpart] = ACTIONS(5849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHchapter] = ACTIONS(5849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddchap] = ACTIONS(5849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsection] = ACTIONS(5849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddsec] = ACTIONS(5849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHparagraph] = ACTIONS(5849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHitem] = ACTIONS(5849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1010] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_BSLASHpart] = ACTIONS(5915), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddpart] = ACTIONS(5915), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHchapter] = ACTIONS(5915), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddchap] = ACTIONS(5915), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsection] = ACTIONS(5915), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddsec] = ACTIONS(5915), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHparagraph] = ACTIONS(5915), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5915), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHitem] = ACTIONS(5915), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1011] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_RPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1012] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_BSLASHpart] = ACTIONS(5915), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddpart] = ACTIONS(5915), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHchapter] = ACTIONS(5915), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddchap] = ACTIONS(5915), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsection] = ACTIONS(5915), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddsec] = ACTIONS(5915), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHparagraph] = ACTIONS(5915), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5915), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHitem] = ACTIONS(5915), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1013] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_BSLASHpart] = ACTIONS(6061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddpart] = ACTIONS(6061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHchapter] = ACTIONS(6061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddchap] = ACTIONS(6061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsection] = ACTIONS(6061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddsec] = ACTIONS(6061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHparagraph] = ACTIONS(6061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHitem] = ACTIONS(6061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1014] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_BSLASHpart] = ACTIONS(6061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddpart] = ACTIONS(6061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHchapter] = ACTIONS(6061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddchap] = ACTIONS(6061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsection] = ACTIONS(6061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddsec] = ACTIONS(6061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHparagraph] = ACTIONS(6061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHitem] = ACTIONS(6061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1015] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASH_RBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1016] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_BSLASHpart] = ACTIONS(6113), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddpart] = ACTIONS(6113), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHchapter] = ACTIONS(6113), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddchap] = ACTIONS(6113), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsection] = ACTIONS(6113), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddsec] = ACTIONS(6113), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHparagraph] = ACTIONS(6113), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHitem] = ACTIONS(6113), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), + }, + [1017] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASH_RBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [1018] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_BSLASHpart] = ACTIONS(5849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddpart] = ACTIONS(5849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHchapter] = ACTIONS(5849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddchap] = ACTIONS(5849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsection] = ACTIONS(5849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddsec] = ACTIONS(5849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHparagraph] = ACTIONS(5849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHitem] = ACTIONS(5849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1019] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_BSLASHpart] = ACTIONS(6181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddpart] = ACTIONS(6181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHchapter] = ACTIONS(6181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddchap] = ACTIONS(6181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsection] = ACTIONS(6181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddsec] = ACTIONS(6181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHparagraph] = ACTIONS(6181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHitem] = ACTIONS(6181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1020] = { + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_BSLASHpart] = ACTIONS(5927), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddpart] = ACTIONS(5927), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHchapter] = ACTIONS(5927), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddchap] = ACTIONS(5927), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsection] = ACTIONS(5927), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddsec] = ACTIONS(5927), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHparagraph] = ACTIONS(5927), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5927), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHitem] = ACTIONS(5927), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), + }, + [1021] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_BSLASHpart] = ACTIONS(5987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddpart] = ACTIONS(5987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHchapter] = ACTIONS(5987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddchap] = ACTIONS(5987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsection] = ACTIONS(5987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddsec] = ACTIONS(5987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHparagraph] = ACTIONS(5987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHitem] = ACTIONS(5987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1022] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_BSLASHpart] = ACTIONS(5991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddpart] = ACTIONS(5991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHchapter] = ACTIONS(5991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddchap] = ACTIONS(5991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsection] = ACTIONS(5991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddsec] = ACTIONS(5991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHparagraph] = ACTIONS(5991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHitem] = ACTIONS(5991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1023] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_BSLASHpart] = ACTIONS(6267), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddpart] = ACTIONS(6267), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHchapter] = ACTIONS(6267), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddchap] = ACTIONS(6267), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsection] = ACTIONS(6267), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddsec] = ACTIONS(6267), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHparagraph] = ACTIONS(6267), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6267), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHitem] = ACTIONS(6267), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1024] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_BSLASHpart] = ACTIONS(6197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddpart] = ACTIONS(6197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHchapter] = ACTIONS(6197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddchap] = ACTIONS(6197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsection] = ACTIONS(6197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddsec] = ACTIONS(6197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHparagraph] = ACTIONS(6197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHitem] = ACTIONS(6197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1025] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_BSLASHpart] = ACTIONS(6073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddpart] = ACTIONS(6073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHchapter] = ACTIONS(6073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddchap] = ACTIONS(6073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsection] = ACTIONS(6073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddsec] = ACTIONS(6073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHparagraph] = ACTIONS(6073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHitem] = ACTIONS(6073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1026] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_BSLASHpart] = ACTIONS(6065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddpart] = ACTIONS(6065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHchapter] = ACTIONS(6065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddchap] = ACTIONS(6065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsection] = ACTIONS(6065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddsec] = ACTIONS(6065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHparagraph] = ACTIONS(6065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHitem] = ACTIONS(6065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1027] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_BSLASHpart] = ACTIONS(5897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddpart] = ACTIONS(5897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHchapter] = ACTIONS(5897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddchap] = ACTIONS(5897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsection] = ACTIONS(5897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddsec] = ACTIONS(5897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHparagraph] = ACTIONS(5897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHitem] = ACTIONS(5897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1028] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_BSLASHpart] = ACTIONS(5845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddpart] = ACTIONS(5845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHchapter] = ACTIONS(5845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddchap] = ACTIONS(5845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsection] = ACTIONS(5845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddsec] = ACTIONS(5845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHparagraph] = ACTIONS(5845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHitem] = ACTIONS(5845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1029] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_BSLASHpart] = ACTIONS(5857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddpart] = ACTIONS(5857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHchapter] = ACTIONS(5857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddchap] = ACTIONS(5857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsection] = ACTIONS(5857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddsec] = ACTIONS(5857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHparagraph] = ACTIONS(5857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHitem] = ACTIONS(5857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1030] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_BSLASHpart] = ACTIONS(5979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddpart] = ACTIONS(5979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHchapter] = ACTIONS(5979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddchap] = ACTIONS(5979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsection] = ACTIONS(5979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddsec] = ACTIONS(5979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHparagraph] = ACTIONS(5979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHitem] = ACTIONS(5979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1031] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_BSLASHpart] = ACTIONS(5907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddpart] = ACTIONS(5907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHchapter] = ACTIONS(5907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddchap] = ACTIONS(5907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsection] = ACTIONS(5907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddsec] = ACTIONS(5907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHparagraph] = ACTIONS(5907), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5907), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHitem] = ACTIONS(5907), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1032] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_BSLASHpart] = ACTIONS(5911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddpart] = ACTIONS(5911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHchapter] = ACTIONS(5911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddchap] = ACTIONS(5911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsection] = ACTIONS(5911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddsec] = ACTIONS(5911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHparagraph] = ACTIONS(5911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHitem] = ACTIONS(5911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1033] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_BSLASHpart] = ACTIONS(5919), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddpart] = ACTIONS(5919), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHchapter] = ACTIONS(5919), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddchap] = ACTIONS(5919), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsection] = ACTIONS(5919), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddsec] = ACTIONS(5919), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHparagraph] = ACTIONS(5919), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5919), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHitem] = ACTIONS(5919), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1034] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_BSLASHpart] = ACTIONS(5923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddpart] = ACTIONS(5923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHchapter] = ACTIONS(5923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddchap] = ACTIONS(5923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsection] = ACTIONS(5923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddsec] = ACTIONS(5923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHparagraph] = ACTIONS(5923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHitem] = ACTIONS(5923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1035] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_BSLASHpart] = ACTIONS(5941), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddpart] = ACTIONS(5941), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHchapter] = ACTIONS(5941), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddchap] = ACTIONS(5941), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsection] = ACTIONS(5941), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddsec] = ACTIONS(5941), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHparagraph] = ACTIONS(5941), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5941), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHitem] = ACTIONS(5941), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [1036] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_BSLASHpart] = ACTIONS(5945), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddpart] = ACTIONS(5945), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHchapter] = ACTIONS(5945), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddchap] = ACTIONS(5945), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsection] = ACTIONS(5945), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddsec] = ACTIONS(5945), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHparagraph] = ACTIONS(5945), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5945), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHitem] = ACTIONS(5945), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [1037] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_BSLASHpart] = ACTIONS(5953), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddpart] = ACTIONS(5953), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHchapter] = ACTIONS(5953), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddchap] = ACTIONS(5953), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsection] = ACTIONS(5953), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddsec] = ACTIONS(5953), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHparagraph] = ACTIONS(5953), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5953), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHitem] = ACTIONS(5953), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [1038] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_BSLASHpart] = ACTIONS(5957), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddpart] = ACTIONS(5957), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHchapter] = ACTIONS(5957), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddchap] = ACTIONS(5957), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsection] = ACTIONS(5957), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddsec] = ACTIONS(5957), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHparagraph] = ACTIONS(5957), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5957), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHitem] = ACTIONS(5957), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [1039] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_BSLASHpart] = ACTIONS(5961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddpart] = ACTIONS(5961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHchapter] = ACTIONS(5961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddchap] = ACTIONS(5961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsection] = ACTIONS(5961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddsec] = ACTIONS(5961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHparagraph] = ACTIONS(5961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHitem] = ACTIONS(5961), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [1040] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2028), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6281), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1041] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_BSLASHpart] = ACTIONS(5937), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddpart] = ACTIONS(5937), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHchapter] = ACTIONS(5937), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddchap] = ACTIONS(5937), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsection] = ACTIONS(5937), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddsec] = ACTIONS(5937), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHparagraph] = ACTIONS(5937), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5937), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHitem] = ACTIONS(5937), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), + }, + [1042] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_BSLASHpart] = ACTIONS(5965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddpart] = ACTIONS(5965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHchapter] = ACTIONS(5965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddchap] = ACTIONS(5965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsection] = ACTIONS(5965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddsec] = ACTIONS(5965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHparagraph] = ACTIONS(5965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHitem] = ACTIONS(5965), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [1043] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_BSLASHpart] = ACTIONS(5975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddpart] = ACTIONS(5975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHchapter] = ACTIONS(5975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddchap] = ACTIONS(5975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsection] = ACTIONS(5975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddsec] = ACTIONS(5975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHparagraph] = ACTIONS(5975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHitem] = ACTIONS(5975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [1044] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_BSLASHpart] = ACTIONS(6069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddpart] = ACTIONS(6069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHchapter] = ACTIONS(6069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddchap] = ACTIONS(6069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsection] = ACTIONS(6069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddsec] = ACTIONS(6069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHparagraph] = ACTIONS(6069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHitem] = ACTIONS(6069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [1045] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_BSLASHpart] = ACTIONS(5901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddpart] = ACTIONS(5901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHchapter] = ACTIONS(5901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddchap] = ACTIONS(5901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsection] = ACTIONS(5901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddsec] = ACTIONS(5901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHparagraph] = ACTIONS(5901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [1046] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_BSLASHpart] = ACTIONS(6259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddpart] = ACTIONS(6259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHchapter] = ACTIONS(6259), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddchap] = ACTIONS(6259), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsection] = ACTIONS(6259), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddsec] = ACTIONS(6259), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHparagraph] = ACTIONS(6259), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6259), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHitem] = ACTIONS(6259), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [1047] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_BSLASHpart] = ACTIONS(6181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddpart] = ACTIONS(6181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHchapter] = ACTIONS(6181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddchap] = ACTIONS(6181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsection] = ACTIONS(6181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddsec] = ACTIONS(6181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHparagraph] = ACTIONS(6181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHitem] = ACTIONS(6181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHend] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1048] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_BSLASHpart] = ACTIONS(6253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddpart] = ACTIONS(6253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHchapter] = ACTIONS(6253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddchap] = ACTIONS(6253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsection] = ACTIONS(6253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddsec] = ACTIONS(6253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHparagraph] = ACTIONS(6253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHitem] = ACTIONS(6253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [1049] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_BSLASHpart] = ACTIONS(6249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddpart] = ACTIONS(6249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHchapter] = ACTIONS(6249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddchap] = ACTIONS(6249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsection] = ACTIONS(6249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddsec] = ACTIONS(6249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHparagraph] = ACTIONS(6249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHitem] = ACTIONS(6249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [1050] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_BSLASHpart] = ACTIONS(6263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddpart] = ACTIONS(6263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHchapter] = ACTIONS(6263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddchap] = ACTIONS(6263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsection] = ACTIONS(6263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddsec] = ACTIONS(6263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHparagraph] = ACTIONS(6263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHitem] = ACTIONS(6263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [1051] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_BSLASHpart] = ACTIONS(6209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddpart] = ACTIONS(6209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHchapter] = ACTIONS(6209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddchap] = ACTIONS(6209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsection] = ACTIONS(6209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddsec] = ACTIONS(6209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHparagraph] = ACTIONS(6209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHitem] = ACTIONS(6209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), + }, + [1052] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_BSLASHpart] = ACTIONS(6205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddpart] = ACTIONS(6205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHchapter] = ACTIONS(6205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddchap] = ACTIONS(6205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsection] = ACTIONS(6205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddsec] = ACTIONS(6205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHparagraph] = ACTIONS(6205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHitem] = ACTIONS(6205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), + }, + [1053] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_BSLASHpart] = ACTIONS(6167), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddpart] = ACTIONS(6167), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHchapter] = ACTIONS(6167), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddchap] = ACTIONS(6167), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsection] = ACTIONS(6167), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddsec] = ACTIONS(6167), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHparagraph] = ACTIONS(6167), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHitem] = ACTIONS(6167), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [1054] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_BSLASHpart] = ACTIONS(6147), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddpart] = ACTIONS(6147), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHchapter] = ACTIONS(6147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddchap] = ACTIONS(6147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsection] = ACTIONS(6147), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddsec] = ACTIONS(6147), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHparagraph] = ACTIONS(6147), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6147), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHitem] = ACTIONS(6147), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [1055] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_BSLASHpart] = ACTIONS(6053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddpart] = ACTIONS(6053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHchapter] = ACTIONS(6053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddchap] = ACTIONS(6053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsection] = ACTIONS(6053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddsec] = ACTIONS(6053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHparagraph] = ACTIONS(6053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHitem] = ACTIONS(6053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), + }, + [1056] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_BSLASHpart] = ACTIONS(5791), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddpart] = ACTIONS(5791), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHchapter] = ACTIONS(5791), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddchap] = ACTIONS(5791), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsection] = ACTIONS(5791), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddsec] = ACTIONS(5791), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHparagraph] = ACTIONS(5791), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5791), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHitem] = ACTIONS(5791), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [1057] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_BSLASHpart] = ACTIONS(6021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddpart] = ACTIONS(6021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHchapter] = ACTIONS(6021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddchap] = ACTIONS(6021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsection] = ACTIONS(6021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddsec] = ACTIONS(6021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHparagraph] = ACTIONS(6021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHitem] = ACTIONS(6021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [1058] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_BSLASHpart] = ACTIONS(6011), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddpart] = ACTIONS(6011), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHchapter] = ACTIONS(6011), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddchap] = ACTIONS(6011), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsection] = ACTIONS(6011), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddsec] = ACTIONS(6011), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHparagraph] = ACTIONS(6011), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6011), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHitem] = ACTIONS(6011), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [1059] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_BSLASHpart] = ACTIONS(6007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddpart] = ACTIONS(6007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHchapter] = ACTIONS(6007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddchap] = ACTIONS(6007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsection] = ACTIONS(6007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddsec] = ACTIONS(6007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHparagraph] = ACTIONS(6007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHitem] = ACTIONS(6007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [1060] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_BSLASHpart] = ACTIONS(6003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddpart] = ACTIONS(6003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHchapter] = ACTIONS(6003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddchap] = ACTIONS(6003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsection] = ACTIONS(6003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddsec] = ACTIONS(6003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHparagraph] = ACTIONS(6003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHitem] = ACTIONS(6003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [1061] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_BSLASHpart] = ACTIONS(5969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddpart] = ACTIONS(5969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHchapter] = ACTIONS(5969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddchap] = ACTIONS(5969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsection] = ACTIONS(5969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddsec] = ACTIONS(5969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHparagraph] = ACTIONS(5969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHitem] = ACTIONS(5969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [1062] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_BSLASHpart] = ACTIONS(6245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddpart] = ACTIONS(6245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHchapter] = ACTIONS(6245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddchap] = ACTIONS(6245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsection] = ACTIONS(6245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddsec] = ACTIONS(6245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHparagraph] = ACTIONS(6245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHitem] = ACTIONS(6245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [1063] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_BSLASHpart] = ACTIONS(5807), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddpart] = ACTIONS(5807), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHchapter] = ACTIONS(5807), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddchap] = ACTIONS(5807), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsection] = ACTIONS(5807), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddsec] = ACTIONS(5807), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHparagraph] = ACTIONS(5807), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5807), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHitem] = ACTIONS(5807), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1064] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_BSLASHpart] = ACTIONS(5803), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddpart] = ACTIONS(5803), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHchapter] = ACTIONS(5803), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddchap] = ACTIONS(5803), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsection] = ACTIONS(5803), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddsec] = ACTIONS(5803), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHparagraph] = ACTIONS(5803), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHitem] = ACTIONS(5803), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), + }, + [1065] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [1066] = { + [sym_command_name] = ACTIONS(6283), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6283), + [anon_sym_LPAREN] = ACTIONS(6285), + [anon_sym_RPAREN] = ACTIONS(6285), + [anon_sym_LBRACK] = ACTIONS(6285), + [anon_sym_RBRACK] = ACTIONS(6285), + [anon_sym_COMMA] = ACTIONS(6285), + [anon_sym_EQ] = ACTIONS(6285), + [anon_sym_BSLASHpart] = ACTIONS(6283), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6285), + [anon_sym_BSLASHaddpart] = ACTIONS(6283), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6285), + [anon_sym_BSLASHchapter] = ACTIONS(6283), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6285), + [anon_sym_BSLASHaddchap] = ACTIONS(6283), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6285), + [anon_sym_BSLASHsection] = ACTIONS(6283), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6285), + [anon_sym_BSLASHaddsec] = ACTIONS(6283), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6285), + [anon_sym_BSLASHsubsection] = ACTIONS(6283), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6285), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6283), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6285), + [anon_sym_BSLASHparagraph] = ACTIONS(6283), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6285), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6283), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6285), + [anon_sym_BSLASHitem] = ACTIONS(6283), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6285), + [anon_sym_LBRACE] = ACTIONS(6285), + [sym_word] = ACTIONS(6283), + [sym_placeholder] = ACTIONS(6285), + [anon_sym_PLUS] = ACTIONS(6283), + [anon_sym_DASH] = ACTIONS(6283), + [anon_sym_STAR] = ACTIONS(6283), + [anon_sym_SLASH] = ACTIONS(6283), + [anon_sym_CARET] = ACTIONS(6283), + [anon_sym__] = ACTIONS(6283), + [anon_sym_LT] = ACTIONS(6283), + [anon_sym_GT] = ACTIONS(6283), + [anon_sym_BANG] = ACTIONS(6283), + [anon_sym_PIPE] = ACTIONS(6283), + [anon_sym_COLON] = ACTIONS(6283), + [anon_sym_SQUOTE] = ACTIONS(6283), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6285), + [anon_sym_DOLLAR] = ACTIONS(6283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6285), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6285), + [anon_sym_BSLASHbegin] = ACTIONS(6283), + [anon_sym_BSLASHend] = ACTIONS(6283), + [anon_sym_BSLASHtitle] = ACTIONS(6283), + [anon_sym_BSLASHauthor] = ACTIONS(6283), + [anon_sym_BSLASHusepackage] = ACTIONS(6283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6283), + [anon_sym_BSLASHinclude] = ACTIONS(6283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6283), + [anon_sym_BSLASHinput] = ACTIONS(6283), + [anon_sym_BSLASHsubfile] = ACTIONS(6283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6283), + [anon_sym_BSLASHbibliography] = ACTIONS(6283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6283), + [anon_sym_BSLASHincludesvg] = ACTIONS(6283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6283), + [anon_sym_BSLASHimport] = ACTIONS(6283), + [anon_sym_BSLASHsubimport] = ACTIONS(6283), + [anon_sym_BSLASHinputfrom] = ACTIONS(6283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6283), + [anon_sym_BSLASHincludefrom] = ACTIONS(6283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6283), + [anon_sym_BSLASHcaption] = ACTIONS(6283), + [anon_sym_BSLASHcite] = ACTIONS(6283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6285), + [anon_sym_BSLASHCite] = ACTIONS(6283), + [anon_sym_BSLASHnocite] = ACTIONS(6283), + [anon_sym_BSLASHcitet] = ACTIONS(6283), + [anon_sym_BSLASHcitep] = ACTIONS(6283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6285), + [anon_sym_BSLASHciteauthor] = ACTIONS(6283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6285), + [anon_sym_BSLASHcitetitle] = ACTIONS(6283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6285), + [anon_sym_BSLASHciteyear] = ACTIONS(6283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6285), + [anon_sym_BSLASHcitedate] = ACTIONS(6283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6285), + [anon_sym_BSLASHciteurl] = ACTIONS(6283), + [anon_sym_BSLASHfullcite] = ACTIONS(6283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6283), + [anon_sym_BSLASHcitealt] = ACTIONS(6283), + [anon_sym_BSLASHcitealp] = ACTIONS(6283), + [anon_sym_BSLASHcitetext] = ACTIONS(6283), + [anon_sym_BSLASHparencite] = ACTIONS(6283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6285), + [anon_sym_BSLASHParencite] = ACTIONS(6283), + [anon_sym_BSLASHfootcite] = ACTIONS(6283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6283), + [anon_sym_BSLASHtextcite] = ACTIONS(6283), + [anon_sym_BSLASHTextcite] = ACTIONS(6283), + [anon_sym_BSLASHsmartcite] = ACTIONS(6283), + [anon_sym_BSLASHSmartcite] = ACTIONS(6283), + [anon_sym_BSLASHsupercite] = ACTIONS(6283), + [anon_sym_BSLASHautocite] = ACTIONS(6283), + [anon_sym_BSLASHAutocite] = ACTIONS(6283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6285), + [anon_sym_BSLASHvolcite] = ACTIONS(6283), + [anon_sym_BSLASHVolcite] = ACTIONS(6283), + [anon_sym_BSLASHpvolcite] = ACTIONS(6283), + [anon_sym_BSLASHPvolcite] = ACTIONS(6283), + [anon_sym_BSLASHfvolcite] = ACTIONS(6283), + [anon_sym_BSLASHftvolcite] = ACTIONS(6283), + [anon_sym_BSLASHsvolcite] = ACTIONS(6283), + [anon_sym_BSLASHSvolcite] = ACTIONS(6283), + [anon_sym_BSLASHtvolcite] = ACTIONS(6283), + [anon_sym_BSLASHTvolcite] = ACTIONS(6283), + [anon_sym_BSLASHavolcite] = ACTIONS(6283), + [anon_sym_BSLASHAvolcite] = ACTIONS(6283), + [anon_sym_BSLASHnotecite] = ACTIONS(6283), + [anon_sym_BSLASHNotecite] = ACTIONS(6283), + [anon_sym_BSLASHpnotecite] = ACTIONS(6283), + [anon_sym_BSLASHPnotecite] = ACTIONS(6283), + [anon_sym_BSLASHfnotecite] = ACTIONS(6283), + [anon_sym_BSLASHlabel] = ACTIONS(6283), + [anon_sym_BSLASHref] = ACTIONS(6283), + [anon_sym_BSLASHeqref] = ACTIONS(6283), + [anon_sym_BSLASHvref] = ACTIONS(6283), + [anon_sym_BSLASHVref] = ACTIONS(6283), + [anon_sym_BSLASHautoref] = ACTIONS(6283), + [anon_sym_BSLASHpageref] = ACTIONS(6283), + [anon_sym_BSLASHcref] = ACTIONS(6283), + [anon_sym_BSLASHCref] = ACTIONS(6283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6285), + [anon_sym_BSLASHnamecref] = ACTIONS(6283), + [anon_sym_BSLASHnameCref] = ACTIONS(6283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6283), + [anon_sym_BSLASHlabelcref] = ACTIONS(6283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6283), + [anon_sym_BSLASHcrefrange] = ACTIONS(6283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6285), + [anon_sym_BSLASHCrefrange] = ACTIONS(6283), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6285), + [anon_sym_BSLASHnewlabel] = ACTIONS(6283), + [anon_sym_BSLASHnewcommand] = ACTIONS(6283), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6285), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6283), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6285), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6283), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6285), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6285), + [anon_sym_BSLASHdef] = ACTIONS(6283), + [anon_sym_BSLASHlet] = ACTIONS(6283), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6283), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6283), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6283), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6283), + [anon_sym_BSLASHgls] = ACTIONS(6283), + [anon_sym_BSLASHGls] = ACTIONS(6283), + [anon_sym_BSLASHGLS] = ACTIONS(6283), + [anon_sym_BSLASHglspl] = ACTIONS(6283), + [anon_sym_BSLASHGlspl] = ACTIONS(6283), + [anon_sym_BSLASHGLSpl] = ACTIONS(6283), + [anon_sym_BSLASHglsdisp] = ACTIONS(6283), + [anon_sym_BSLASHglslink] = ACTIONS(6283), + [anon_sym_BSLASHglstext] = ACTIONS(6283), + [anon_sym_BSLASHGlstext] = ACTIONS(6283), + [anon_sym_BSLASHGLStext] = ACTIONS(6283), + [anon_sym_BSLASHglsfirst] = ACTIONS(6283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6283), + [anon_sym_BSLASHglsplural] = ACTIONS(6283), + [anon_sym_BSLASHGlsplural] = ACTIONS(6283), + [anon_sym_BSLASHGLSplural] = ACTIONS(6283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6283), + [anon_sym_BSLASHglsname] = ACTIONS(6283), + [anon_sym_BSLASHGlsname] = ACTIONS(6283), + [anon_sym_BSLASHGLSname] = ACTIONS(6283), + [anon_sym_BSLASHglssymbol] = ACTIONS(6283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6283), + [anon_sym_BSLASHglsdesc] = ACTIONS(6283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6283), + [anon_sym_BSLASHglsuseri] = ACTIONS(6283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6283), + [anon_sym_BSLASHglsuserii] = ACTIONS(6283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6283), + [anon_sym_BSLASHglsuserv] = ACTIONS(6283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6283), + [anon_sym_BSLASHglsuservi] = ACTIONS(6283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6283), + [anon_sym_BSLASHnewacronym] = ACTIONS(6283), + [anon_sym_BSLASHacrshort] = ACTIONS(6283), + [anon_sym_BSLASHAcrshort] = ACTIONS(6283), + [anon_sym_BSLASHACRshort] = ACTIONS(6283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6283), + [anon_sym_BSLASHacrlong] = ACTIONS(6283), + [anon_sym_BSLASHAcrlong] = ACTIONS(6283), + [anon_sym_BSLASHACRlong] = ACTIONS(6283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6283), + [anon_sym_BSLASHacrfull] = ACTIONS(6283), + [anon_sym_BSLASHAcrfull] = ACTIONS(6283), + [anon_sym_BSLASHACRfull] = ACTIONS(6283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6283), + [anon_sym_BSLASHacs] = ACTIONS(6283), + [anon_sym_BSLASHAcs] = ACTIONS(6283), + [anon_sym_BSLASHacsp] = ACTIONS(6283), + [anon_sym_BSLASHAcsp] = ACTIONS(6283), + [anon_sym_BSLASHacl] = ACTIONS(6283), + [anon_sym_BSLASHAcl] = ACTIONS(6283), + [anon_sym_BSLASHaclp] = ACTIONS(6283), + [anon_sym_BSLASHAclp] = ACTIONS(6283), + [anon_sym_BSLASHacf] = ACTIONS(6283), + [anon_sym_BSLASHAcf] = ACTIONS(6283), + [anon_sym_BSLASHacfp] = ACTIONS(6283), + [anon_sym_BSLASHAcfp] = ACTIONS(6283), + [anon_sym_BSLASHac] = ACTIONS(6283), + [anon_sym_BSLASHAc] = ACTIONS(6283), + [anon_sym_BSLASHacp] = ACTIONS(6283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6283), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6283), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6283), + [anon_sym_BSLASHcolor] = ACTIONS(6283), + [anon_sym_BSLASHcolorbox] = ACTIONS(6283), + [anon_sym_BSLASHtextcolor] = ACTIONS(6283), + [anon_sym_BSLASHpagecolor] = ACTIONS(6283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6283), + [anon_sym_BSLASHtext] = ACTIONS(6283), + [anon_sym_BSLASHintertext] = ACTIONS(6283), + [anon_sym_shortintertext] = ACTIONS(6283), + }, + [1067] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_RPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [1068] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_BSLASHpart] = ACTIONS(5811), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddpart] = ACTIONS(5811), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHchapter] = ACTIONS(5811), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddchap] = ACTIONS(5811), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsection] = ACTIONS(5811), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddsec] = ACTIONS(5811), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHparagraph] = ACTIONS(5811), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5811), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHitem] = ACTIONS(5811), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), + }, + [1069] = { + [sym_command_name] = ACTIONS(5933), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_BSLASHpart] = ACTIONS(5933), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddpart] = ACTIONS(5933), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHchapter] = ACTIONS(5933), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddchap] = ACTIONS(5933), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsection] = ACTIONS(5933), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddsec] = ACTIONS(5933), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHparagraph] = ACTIONS(5933), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5933), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHitem] = ACTIONS(5933), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), + [sym_word] = ACTIONS(5933), + [sym_placeholder] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym__] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_SQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5931), + [anon_sym_BSLASHbegin] = ACTIONS(5933), + [anon_sym_BSLASHtitle] = ACTIONS(5933), + [anon_sym_BSLASHauthor] = ACTIONS(5933), + [anon_sym_BSLASHusepackage] = ACTIONS(5933), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5933), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5933), + [anon_sym_BSLASHinclude] = ACTIONS(5933), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5933), + [anon_sym_BSLASHinput] = ACTIONS(5933), + [anon_sym_BSLASHsubfile] = ACTIONS(5933), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5933), + [anon_sym_BSLASHbibliography] = ACTIONS(5933), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5933), + [anon_sym_BSLASHincludesvg] = ACTIONS(5933), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5933), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5933), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5933), + [anon_sym_BSLASHimport] = ACTIONS(5933), + [anon_sym_BSLASHsubimport] = ACTIONS(5933), + [anon_sym_BSLASHinputfrom] = ACTIONS(5933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5933), + [anon_sym_BSLASHincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHcaption] = ACTIONS(5933), + [anon_sym_BSLASHcite] = ACTIONS(5933), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCite] = ACTIONS(5933), + [anon_sym_BSLASHnocite] = ACTIONS(5933), + [anon_sym_BSLASHcitet] = ACTIONS(5933), + [anon_sym_BSLASHcitep] = ACTIONS(5933), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteauthor] = ACTIONS(5933), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5933), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitetitle] = ACTIONS(5933), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteyear] = ACTIONS(5933), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitedate] = ACTIONS(5933), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteurl] = ACTIONS(5933), + [anon_sym_BSLASHfullcite] = ACTIONS(5933), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5933), + [anon_sym_BSLASHcitealt] = ACTIONS(5933), + [anon_sym_BSLASHcitealp] = ACTIONS(5933), + [anon_sym_BSLASHcitetext] = ACTIONS(5933), + [anon_sym_BSLASHparencite] = ACTIONS(5933), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHParencite] = ACTIONS(5933), + [anon_sym_BSLASHfootcite] = ACTIONS(5933), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5933), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5933), + [anon_sym_BSLASHtextcite] = ACTIONS(5933), + [anon_sym_BSLASHTextcite] = ACTIONS(5933), + [anon_sym_BSLASHsmartcite] = ACTIONS(5933), + [anon_sym_BSLASHSmartcite] = ACTIONS(5933), + [anon_sym_BSLASHsupercite] = ACTIONS(5933), + [anon_sym_BSLASHautocite] = ACTIONS(5933), + [anon_sym_BSLASHAutocite] = ACTIONS(5933), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHvolcite] = ACTIONS(5933), + [anon_sym_BSLASHVolcite] = ACTIONS(5933), + [anon_sym_BSLASHpvolcite] = ACTIONS(5933), + [anon_sym_BSLASHPvolcite] = ACTIONS(5933), + [anon_sym_BSLASHfvolcite] = ACTIONS(5933), + [anon_sym_BSLASHftvolcite] = ACTIONS(5933), + [anon_sym_BSLASHsvolcite] = ACTIONS(5933), + [anon_sym_BSLASHSvolcite] = ACTIONS(5933), + [anon_sym_BSLASHtvolcite] = ACTIONS(5933), + [anon_sym_BSLASHTvolcite] = ACTIONS(5933), + [anon_sym_BSLASHavolcite] = ACTIONS(5933), + [anon_sym_BSLASHAvolcite] = ACTIONS(5933), + [anon_sym_BSLASHnotecite] = ACTIONS(5933), + [anon_sym_BSLASHNotecite] = ACTIONS(5933), + [anon_sym_BSLASHpnotecite] = ACTIONS(5933), + [anon_sym_BSLASHPnotecite] = ACTIONS(5933), + [anon_sym_BSLASHfnotecite] = ACTIONS(5933), + [anon_sym_BSLASHlabel] = ACTIONS(5933), + [anon_sym_BSLASHref] = ACTIONS(5933), + [anon_sym_BSLASHeqref] = ACTIONS(5933), + [anon_sym_BSLASHvref] = ACTIONS(5933), + [anon_sym_BSLASHVref] = ACTIONS(5933), + [anon_sym_BSLASHautoref] = ACTIONS(5933), + [anon_sym_BSLASHpageref] = ACTIONS(5933), + [anon_sym_BSLASHcref] = ACTIONS(5933), + [anon_sym_BSLASHCref] = ACTIONS(5933), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnameCref] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHlabelcref] = ACTIONS(5933), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCrefrange] = ACTIONS(5933), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnewlabel] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5933), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5933), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5933), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdef] = ACTIONS(5933), + [anon_sym_BSLASHlet] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5933), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5933), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5933), + [anon_sym_BSLASHgls] = ACTIONS(5933), + [anon_sym_BSLASHGls] = ACTIONS(5933), + [anon_sym_BSLASHGLS] = ACTIONS(5933), + [anon_sym_BSLASHglspl] = ACTIONS(5933), + [anon_sym_BSLASHGlspl] = ACTIONS(5933), + [anon_sym_BSLASHGLSpl] = ACTIONS(5933), + [anon_sym_BSLASHglsdisp] = ACTIONS(5933), + [anon_sym_BSLASHglslink] = ACTIONS(5933), + [anon_sym_BSLASHglstext] = ACTIONS(5933), + [anon_sym_BSLASHGlstext] = ACTIONS(5933), + [anon_sym_BSLASHGLStext] = ACTIONS(5933), + [anon_sym_BSLASHglsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5933), + [anon_sym_BSLASHglsplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSplural] = ACTIONS(5933), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHglsname] = ACTIONS(5933), + [anon_sym_BSLASHGlsname] = ACTIONS(5933), + [anon_sym_BSLASHGLSname] = ACTIONS(5933), + [anon_sym_BSLASHglssymbol] = ACTIONS(5933), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5933), + [anon_sym_BSLASHglsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5933), + [anon_sym_BSLASHglsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5933), + [anon_sym_BSLASHglsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5933), + [anon_sym_BSLASHglsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5933), + [anon_sym_BSLASHglsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5933), + [anon_sym_BSLASHnewacronym] = ACTIONS(5933), + [anon_sym_BSLASHacrshort] = ACTIONS(5933), + [anon_sym_BSLASHAcrshort] = ACTIONS(5933), + [anon_sym_BSLASHACRshort] = ACTIONS(5933), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5933), + [anon_sym_BSLASHacrlong] = ACTIONS(5933), + [anon_sym_BSLASHAcrlong] = ACTIONS(5933), + [anon_sym_BSLASHACRlong] = ACTIONS(5933), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5933), + [anon_sym_BSLASHacrfull] = ACTIONS(5933), + [anon_sym_BSLASHAcrfull] = ACTIONS(5933), + [anon_sym_BSLASHACRfull] = ACTIONS(5933), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5933), + [anon_sym_BSLASHacs] = ACTIONS(5933), + [anon_sym_BSLASHAcs] = ACTIONS(5933), + [anon_sym_BSLASHacsp] = ACTIONS(5933), + [anon_sym_BSLASHAcsp] = ACTIONS(5933), + [anon_sym_BSLASHacl] = ACTIONS(5933), + [anon_sym_BSLASHAcl] = ACTIONS(5933), + [anon_sym_BSLASHaclp] = ACTIONS(5933), + [anon_sym_BSLASHAclp] = ACTIONS(5933), + [anon_sym_BSLASHacf] = ACTIONS(5933), + [anon_sym_BSLASHAcf] = ACTIONS(5933), + [anon_sym_BSLASHacfp] = ACTIONS(5933), + [anon_sym_BSLASHAcfp] = ACTIONS(5933), + [anon_sym_BSLASHac] = ACTIONS(5933), + [anon_sym_BSLASHAc] = ACTIONS(5933), + [anon_sym_BSLASHacp] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5933), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5933), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5933), + [anon_sym_BSLASHcolor] = ACTIONS(5933), + [anon_sym_BSLASHcolorbox] = ACTIONS(5933), + [anon_sym_BSLASHtextcolor] = ACTIONS(5933), + [anon_sym_BSLASHpagecolor] = ACTIONS(5933), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5933), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5933), + [anon_sym_BSLASHtext] = ACTIONS(5933), + [anon_sym_BSLASHintertext] = ACTIONS(5933), + [anon_sym_shortintertext] = ACTIONS(5933), + }, + [1070] = { + [sym_command_name] = ACTIONS(5819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5819), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_BSLASHpart] = ACTIONS(5819), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddpart] = ACTIONS(5819), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHchapter] = ACTIONS(5819), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddchap] = ACTIONS(5819), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsection] = ACTIONS(5819), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddsec] = ACTIONS(5819), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHparagraph] = ACTIONS(5819), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5819), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHitem] = ACTIONS(5819), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [sym_word] = ACTIONS(5819), + [sym_placeholder] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym__] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5819), + [anon_sym_SQUOTE] = ACTIONS(5819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5817), + [anon_sym_DOLLAR] = ACTIONS(5819), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5817), + [anon_sym_BSLASHbegin] = ACTIONS(5819), + [anon_sym_BSLASHtitle] = ACTIONS(5819), + [anon_sym_BSLASHauthor] = ACTIONS(5819), + [anon_sym_BSLASHusepackage] = ACTIONS(5819), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5819), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5819), + [anon_sym_BSLASHinclude] = ACTIONS(5819), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5819), + [anon_sym_BSLASHinput] = ACTIONS(5819), + [anon_sym_BSLASHsubfile] = ACTIONS(5819), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5819), + [anon_sym_BSLASHbibliography] = ACTIONS(5819), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5819), + [anon_sym_BSLASHincludesvg] = ACTIONS(5819), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5819), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5819), + [anon_sym_BSLASHimport] = ACTIONS(5819), + [anon_sym_BSLASHsubimport] = ACTIONS(5819), + [anon_sym_BSLASHinputfrom] = ACTIONS(5819), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5819), + [anon_sym_BSLASHincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHcaption] = ACTIONS(5819), + [anon_sym_BSLASHcite] = ACTIONS(5819), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCite] = ACTIONS(5819), + [anon_sym_BSLASHnocite] = ACTIONS(5819), + [anon_sym_BSLASHcitet] = ACTIONS(5819), + [anon_sym_BSLASHcitep] = ACTIONS(5819), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteauthor] = ACTIONS(5819), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5819), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitetitle] = ACTIONS(5819), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteyear] = ACTIONS(5819), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitedate] = ACTIONS(5819), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteurl] = ACTIONS(5819), + [anon_sym_BSLASHfullcite] = ACTIONS(5819), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5819), + [anon_sym_BSLASHcitealt] = ACTIONS(5819), + [anon_sym_BSLASHcitealp] = ACTIONS(5819), + [anon_sym_BSLASHcitetext] = ACTIONS(5819), + [anon_sym_BSLASHparencite] = ACTIONS(5819), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHParencite] = ACTIONS(5819), + [anon_sym_BSLASHfootcite] = ACTIONS(5819), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5819), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5819), + [anon_sym_BSLASHtextcite] = ACTIONS(5819), + [anon_sym_BSLASHTextcite] = ACTIONS(5819), + [anon_sym_BSLASHsmartcite] = ACTIONS(5819), + [anon_sym_BSLASHSmartcite] = ACTIONS(5819), + [anon_sym_BSLASHsupercite] = ACTIONS(5819), + [anon_sym_BSLASHautocite] = ACTIONS(5819), + [anon_sym_BSLASHAutocite] = ACTIONS(5819), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHvolcite] = ACTIONS(5819), + [anon_sym_BSLASHVolcite] = ACTIONS(5819), + [anon_sym_BSLASHpvolcite] = ACTIONS(5819), + [anon_sym_BSLASHPvolcite] = ACTIONS(5819), + [anon_sym_BSLASHfvolcite] = ACTIONS(5819), + [anon_sym_BSLASHftvolcite] = ACTIONS(5819), + [anon_sym_BSLASHsvolcite] = ACTIONS(5819), + [anon_sym_BSLASHSvolcite] = ACTIONS(5819), + [anon_sym_BSLASHtvolcite] = ACTIONS(5819), + [anon_sym_BSLASHTvolcite] = ACTIONS(5819), + [anon_sym_BSLASHavolcite] = ACTIONS(5819), + [anon_sym_BSLASHAvolcite] = ACTIONS(5819), + [anon_sym_BSLASHnotecite] = ACTIONS(5819), + [anon_sym_BSLASHNotecite] = ACTIONS(5819), + [anon_sym_BSLASHpnotecite] = ACTIONS(5819), + [anon_sym_BSLASHPnotecite] = ACTIONS(5819), + [anon_sym_BSLASHfnotecite] = ACTIONS(5819), + [anon_sym_BSLASHlabel] = ACTIONS(5819), + [anon_sym_BSLASHref] = ACTIONS(5819), + [anon_sym_BSLASHeqref] = ACTIONS(5819), + [anon_sym_BSLASHvref] = ACTIONS(5819), + [anon_sym_BSLASHVref] = ACTIONS(5819), + [anon_sym_BSLASHautoref] = ACTIONS(5819), + [anon_sym_BSLASHpageref] = ACTIONS(5819), + [anon_sym_BSLASHcref] = ACTIONS(5819), + [anon_sym_BSLASHCref] = ACTIONS(5819), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnameCref] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHlabelcref] = ACTIONS(5819), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCrefrange] = ACTIONS(5819), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnewlabel] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5819), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5819), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5819), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdef] = ACTIONS(5819), + [anon_sym_BSLASHlet] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5819), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5819), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5819), + [anon_sym_BSLASHgls] = ACTIONS(5819), + [anon_sym_BSLASHGls] = ACTIONS(5819), + [anon_sym_BSLASHGLS] = ACTIONS(5819), + [anon_sym_BSLASHglspl] = ACTIONS(5819), + [anon_sym_BSLASHGlspl] = ACTIONS(5819), + [anon_sym_BSLASHGLSpl] = ACTIONS(5819), + [anon_sym_BSLASHglsdisp] = ACTIONS(5819), + [anon_sym_BSLASHglslink] = ACTIONS(5819), + [anon_sym_BSLASHglstext] = ACTIONS(5819), + [anon_sym_BSLASHGlstext] = ACTIONS(5819), + [anon_sym_BSLASHGLStext] = ACTIONS(5819), + [anon_sym_BSLASHglsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5819), + [anon_sym_BSLASHglsplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSplural] = ACTIONS(5819), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHglsname] = ACTIONS(5819), + [anon_sym_BSLASHGlsname] = ACTIONS(5819), + [anon_sym_BSLASHGLSname] = ACTIONS(5819), + [anon_sym_BSLASHglssymbol] = ACTIONS(5819), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5819), + [anon_sym_BSLASHglsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5819), + [anon_sym_BSLASHglsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5819), + [anon_sym_BSLASHglsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5819), + [anon_sym_BSLASHglsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5819), + [anon_sym_BSLASHglsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5819), + [anon_sym_BSLASHnewacronym] = ACTIONS(5819), + [anon_sym_BSLASHacrshort] = ACTIONS(5819), + [anon_sym_BSLASHAcrshort] = ACTIONS(5819), + [anon_sym_BSLASHACRshort] = ACTIONS(5819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5819), + [anon_sym_BSLASHacrlong] = ACTIONS(5819), + [anon_sym_BSLASHAcrlong] = ACTIONS(5819), + [anon_sym_BSLASHACRlong] = ACTIONS(5819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5819), + [anon_sym_BSLASHacrfull] = ACTIONS(5819), + [anon_sym_BSLASHAcrfull] = ACTIONS(5819), + [anon_sym_BSLASHACRfull] = ACTIONS(5819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5819), + [anon_sym_BSLASHacs] = ACTIONS(5819), + [anon_sym_BSLASHAcs] = ACTIONS(5819), + [anon_sym_BSLASHacsp] = ACTIONS(5819), + [anon_sym_BSLASHAcsp] = ACTIONS(5819), + [anon_sym_BSLASHacl] = ACTIONS(5819), + [anon_sym_BSLASHAcl] = ACTIONS(5819), + [anon_sym_BSLASHaclp] = ACTIONS(5819), + [anon_sym_BSLASHAclp] = ACTIONS(5819), + [anon_sym_BSLASHacf] = ACTIONS(5819), + [anon_sym_BSLASHAcf] = ACTIONS(5819), + [anon_sym_BSLASHacfp] = ACTIONS(5819), + [anon_sym_BSLASHAcfp] = ACTIONS(5819), + [anon_sym_BSLASHac] = ACTIONS(5819), + [anon_sym_BSLASHAc] = ACTIONS(5819), + [anon_sym_BSLASHacp] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5819), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5819), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5819), + [anon_sym_BSLASHcolor] = ACTIONS(5819), + [anon_sym_BSLASHcolorbox] = ACTIONS(5819), + [anon_sym_BSLASHtextcolor] = ACTIONS(5819), + [anon_sym_BSLASHpagecolor] = ACTIONS(5819), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5819), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5819), + [anon_sym_BSLASHtext] = ACTIONS(5819), + [anon_sym_BSLASHintertext] = ACTIONS(5819), + [anon_sym_shortintertext] = ACTIONS(5819), + }, + [1071] = { + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_BSLASHpart] = ACTIONS(5983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddpart] = ACTIONS(5983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHchapter] = ACTIONS(5983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddchap] = ACTIONS(5983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsection] = ACTIONS(5983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddsec] = ACTIONS(5983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHparagraph] = ACTIONS(5983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHitem] = ACTIONS(5983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), + }, + [1072] = { + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_BSLASHpart] = ACTIONS(6017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddpart] = ACTIONS(6017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHchapter] = ACTIONS(6017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddchap] = ACTIONS(6017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsection] = ACTIONS(6017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddsec] = ACTIONS(6017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHparagraph] = ACTIONS(6017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHitem] = ACTIONS(6017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), + }, + [1073] = { + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_BSLASHpart] = ACTIONS(6025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddpart] = ACTIONS(6025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHchapter] = ACTIONS(6025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddchap] = ACTIONS(6025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsection] = ACTIONS(6025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddsec] = ACTIONS(6025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHparagraph] = ACTIONS(6025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHitem] = ACTIONS(6025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), + }, + [1074] = { + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_BSLASHpart] = ACTIONS(6029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddpart] = ACTIONS(6029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHchapter] = ACTIONS(6029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddchap] = ACTIONS(6029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsection] = ACTIONS(6029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddsec] = ACTIONS(6029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHparagraph] = ACTIONS(6029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHitem] = ACTIONS(6029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), + }, + [1075] = { + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_BSLASHpart] = ACTIONS(6033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddpart] = ACTIONS(6033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHchapter] = ACTIONS(6033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddchap] = ACTIONS(6033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsection] = ACTIONS(6033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddsec] = ACTIONS(6033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHparagraph] = ACTIONS(6033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHitem] = ACTIONS(6033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), + }, + [1076] = { + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_BSLASHpart] = ACTIONS(6039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddpart] = ACTIONS(6039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHchapter] = ACTIONS(6039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddchap] = ACTIONS(6039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsection] = ACTIONS(6039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddsec] = ACTIONS(6039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHparagraph] = ACTIONS(6039), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6039), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHitem] = ACTIONS(6039), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), + }, + [1077] = { + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_BSLASHpart] = ACTIONS(6043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddpart] = ACTIONS(6043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHchapter] = ACTIONS(6043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddchap] = ACTIONS(6043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsection] = ACTIONS(6043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddsec] = ACTIONS(6043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHparagraph] = ACTIONS(6043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHitem] = ACTIONS(6043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), + }, + [1078] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_BSLASHpart] = ACTIONS(6047), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddpart] = ACTIONS(6047), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHchapter] = ACTIONS(6047), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddchap] = ACTIONS(6047), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsection] = ACTIONS(6047), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddsec] = ACTIONS(6047), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHparagraph] = ACTIONS(6047), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6047), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6047), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [1079] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_BSLASHpart] = ACTIONS(5877), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddpart] = ACTIONS(5877), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHchapter] = ACTIONS(5877), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddchap] = ACTIONS(5877), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsection] = ACTIONS(5877), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddsec] = ACTIONS(5877), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHparagraph] = ACTIONS(5877), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5877), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHitem] = ACTIONS(5877), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [1080] = { + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_BSLASHpart] = ACTIONS(5873), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddpart] = ACTIONS(5873), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHchapter] = ACTIONS(5873), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddchap] = ACTIONS(5873), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsection] = ACTIONS(5873), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddsec] = ACTIONS(5873), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHparagraph] = ACTIONS(5873), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5873), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHitem] = ACTIONS(5873), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), + }, + [1081] = { + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_BSLASHpart] = ACTIONS(5869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddpart] = ACTIONS(5869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHchapter] = ACTIONS(5869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddchap] = ACTIONS(5869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsection] = ACTIONS(5869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddsec] = ACTIONS(5869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHparagraph] = ACTIONS(5869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHitem] = ACTIONS(5869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), }, - [1399] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), + [1082] = { + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_BSLASHpart] = ACTIONS(5865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddpart] = ACTIONS(5865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHchapter] = ACTIONS(5865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddchap] = ACTIONS(5865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsection] = ACTIONS(5865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddsec] = ACTIONS(5865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHparagraph] = ACTIONS(5865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHitem] = ACTIONS(5865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), }, - [1400] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), + [1083] = { + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_BSLASHpart] = ACTIONS(6057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddpart] = ACTIONS(6057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHchapter] = ACTIONS(6057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddchap] = ACTIONS(6057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsection] = ACTIONS(6057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddsec] = ACTIONS(6057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHparagraph] = ACTIONS(6057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHitem] = ACTIONS(6057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), }, - [1401] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), + [1084] = { + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_BSLASHpart] = ACTIONS(5861), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddpart] = ACTIONS(5861), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHchapter] = ACTIONS(5861), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddchap] = ACTIONS(5861), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsection] = ACTIONS(5861), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddsec] = ACTIONS(5861), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHparagraph] = ACTIONS(5861), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5861), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHitem] = ACTIONS(5861), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), }, - [1402] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHbegin] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), + [1085] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_BSLASHpart] = ACTIONS(6089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddpart] = ACTIONS(6089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHchapter] = ACTIONS(6089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddchap] = ACTIONS(6089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsection] = ACTIONS(6089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddsec] = ACTIONS(6089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHparagraph] = ACTIONS(6089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHitem] = ACTIONS(6089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), }, - [1403] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), + [1086] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_BSLASHpart] = ACTIONS(6093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddpart] = ACTIONS(6093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHchapter] = ACTIONS(6093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddchap] = ACTIONS(6093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsection] = ACTIONS(6093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddsec] = ACTIONS(6093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHparagraph] = ACTIONS(6093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHitem] = ACTIONS(6093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), }, - [1404] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), + [1087] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_BSLASHpart] = ACTIONS(6135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddpart] = ACTIONS(6135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHchapter] = ACTIONS(6135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddchap] = ACTIONS(6135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsection] = ACTIONS(6135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddsec] = ACTIONS(6135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHparagraph] = ACTIONS(6135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHitem] = ACTIONS(6135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), }, - [1405] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHbegin] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), + [1088] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_BSLASHpart] = ACTIONS(6139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddpart] = ACTIONS(6139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHchapter] = ACTIONS(6139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddchap] = ACTIONS(6139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsection] = ACTIONS(6139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddsec] = ACTIONS(6139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHparagraph] = ACTIONS(6139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHitem] = ACTIONS(6139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), }, - [1406] = { - [sym_curly_group] = STATE(1446), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(5021), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5021), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), - [anon_sym_BSLASHtext] = ACTIONS(5023), - [anon_sym_BSLASHintertext] = ACTIONS(5023), - [anon_sym_shortintertext] = ACTIONS(5023), + [1089] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_BSLASHpart] = ACTIONS(6151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddpart] = ACTIONS(6151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHchapter] = ACTIONS(6151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddchap] = ACTIONS(6151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsection] = ACTIONS(6151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddsec] = ACTIONS(6151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHparagraph] = ACTIONS(6151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHitem] = ACTIONS(6151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), }, - [1407] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), + [1090] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_BSLASHpart] = ACTIONS(6159), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddpart] = ACTIONS(6159), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHchapter] = ACTIONS(6159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddchap] = ACTIONS(6159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsection] = ACTIONS(6159), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddsec] = ACTIONS(6159), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHparagraph] = ACTIONS(6159), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6159), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHitem] = ACTIONS(6159), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), }, - [1408] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [1091] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_BSLASHpart] = ACTIONS(6163), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddpart] = ACTIONS(6163), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHchapter] = ACTIONS(6163), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddchap] = ACTIONS(6163), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsection] = ACTIONS(6163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddsec] = ACTIONS(6163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHparagraph] = ACTIONS(6163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6163), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHitem] = ACTIONS(6163), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), }, - [1409] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHbegin] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), + [1092] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_BSLASHpart] = ACTIONS(6171), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddpart] = ACTIONS(6171), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHchapter] = ACTIONS(6171), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddchap] = ACTIONS(6171), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsection] = ACTIONS(6171), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddsec] = ACTIONS(6171), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHparagraph] = ACTIONS(6171), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6171), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHitem] = ACTIONS(6171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), }, - [1410] = { - [sym_brack_group_text] = STATE(1450), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5687), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - [anon_sym_BSLASHtext] = ACTIONS(5015), - [anon_sym_BSLASHintertext] = ACTIONS(5015), - [anon_sym_shortintertext] = ACTIONS(5015), + [1093] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_BSLASHpart] = ACTIONS(6175), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddpart] = ACTIONS(6175), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHchapter] = ACTIONS(6175), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddchap] = ACTIONS(6175), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsection] = ACTIONS(6175), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddsec] = ACTIONS(6175), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHparagraph] = ACTIONS(6175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6175), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHitem] = ACTIONS(6175), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), }, - [1411] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHbegin] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), + [1094] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_BSLASHpart] = ACTIONS(5841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddpart] = ACTIONS(5841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHchapter] = ACTIONS(5841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddchap] = ACTIONS(5841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsection] = ACTIONS(5841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddsec] = ACTIONS(5841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHparagraph] = ACTIONS(5841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHitem] = ACTIONS(5841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), }, - [1412] = { - [sym_curly_group] = STATE(1454), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(3837), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - [anon_sym_BSLASHtext] = ACTIONS(5011), - [anon_sym_BSLASHintertext] = ACTIONS(5011), - [anon_sym_shortintertext] = ACTIONS(5011), + [1095] = { + [sym_command_name] = ACTIONS(5825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5825), + [anon_sym_LPAREN] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_BSLASHpart] = ACTIONS(5825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddpart] = ACTIONS(5825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHchapter] = ACTIONS(5825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddchap] = ACTIONS(5825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsection] = ACTIONS(5825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddsec] = ACTIONS(5825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHparagraph] = ACTIONS(5825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHitem] = ACTIONS(5825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [sym_placeholder] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym__] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_SQUOTE] = ACTIONS(5825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5823), + [anon_sym_DOLLAR] = ACTIONS(5825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5823), + [anon_sym_BSLASHbegin] = ACTIONS(5825), + [anon_sym_BSLASHtitle] = ACTIONS(5825), + [anon_sym_BSLASHauthor] = ACTIONS(5825), + [anon_sym_BSLASHusepackage] = ACTIONS(5825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5825), + [anon_sym_BSLASHinclude] = ACTIONS(5825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5825), + [anon_sym_BSLASHinput] = ACTIONS(5825), + [anon_sym_BSLASHsubfile] = ACTIONS(5825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5825), + [anon_sym_BSLASHbibliography] = ACTIONS(5825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5825), + [anon_sym_BSLASHincludesvg] = ACTIONS(5825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5825), + [anon_sym_BSLASHimport] = ACTIONS(5825), + [anon_sym_BSLASHsubimport] = ACTIONS(5825), + [anon_sym_BSLASHinputfrom] = ACTIONS(5825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5825), + [anon_sym_BSLASHincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHcaption] = ACTIONS(5825), + [anon_sym_BSLASHcite] = ACTIONS(5825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCite] = ACTIONS(5825), + [anon_sym_BSLASHnocite] = ACTIONS(5825), + [anon_sym_BSLASHcitet] = ACTIONS(5825), + [anon_sym_BSLASHcitep] = ACTIONS(5825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteauthor] = ACTIONS(5825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitetitle] = ACTIONS(5825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteyear] = ACTIONS(5825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitedate] = ACTIONS(5825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteurl] = ACTIONS(5825), + [anon_sym_BSLASHfullcite] = ACTIONS(5825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5825), + [anon_sym_BSLASHcitealt] = ACTIONS(5825), + [anon_sym_BSLASHcitealp] = ACTIONS(5825), + [anon_sym_BSLASHcitetext] = ACTIONS(5825), + [anon_sym_BSLASHparencite] = ACTIONS(5825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHParencite] = ACTIONS(5825), + [anon_sym_BSLASHfootcite] = ACTIONS(5825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5825), + [anon_sym_BSLASHtextcite] = ACTIONS(5825), + [anon_sym_BSLASHTextcite] = ACTIONS(5825), + [anon_sym_BSLASHsmartcite] = ACTIONS(5825), + [anon_sym_BSLASHSmartcite] = ACTIONS(5825), + [anon_sym_BSLASHsupercite] = ACTIONS(5825), + [anon_sym_BSLASHautocite] = ACTIONS(5825), + [anon_sym_BSLASHAutocite] = ACTIONS(5825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHvolcite] = ACTIONS(5825), + [anon_sym_BSLASHVolcite] = ACTIONS(5825), + [anon_sym_BSLASHpvolcite] = ACTIONS(5825), + [anon_sym_BSLASHPvolcite] = ACTIONS(5825), + [anon_sym_BSLASHfvolcite] = ACTIONS(5825), + [anon_sym_BSLASHftvolcite] = ACTIONS(5825), + [anon_sym_BSLASHsvolcite] = ACTIONS(5825), + [anon_sym_BSLASHSvolcite] = ACTIONS(5825), + [anon_sym_BSLASHtvolcite] = ACTIONS(5825), + [anon_sym_BSLASHTvolcite] = ACTIONS(5825), + [anon_sym_BSLASHavolcite] = ACTIONS(5825), + [anon_sym_BSLASHAvolcite] = ACTIONS(5825), + [anon_sym_BSLASHnotecite] = ACTIONS(5825), + [anon_sym_BSLASHNotecite] = ACTIONS(5825), + [anon_sym_BSLASHpnotecite] = ACTIONS(5825), + [anon_sym_BSLASHPnotecite] = ACTIONS(5825), + [anon_sym_BSLASHfnotecite] = ACTIONS(5825), + [anon_sym_BSLASHlabel] = ACTIONS(5825), + [anon_sym_BSLASHref] = ACTIONS(5825), + [anon_sym_BSLASHeqref] = ACTIONS(5825), + [anon_sym_BSLASHvref] = ACTIONS(5825), + [anon_sym_BSLASHVref] = ACTIONS(5825), + [anon_sym_BSLASHautoref] = ACTIONS(5825), + [anon_sym_BSLASHpageref] = ACTIONS(5825), + [anon_sym_BSLASHcref] = ACTIONS(5825), + [anon_sym_BSLASHCref] = ACTIONS(5825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnameCref] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHlabelcref] = ACTIONS(5825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCrefrange] = ACTIONS(5825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnewlabel] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdef] = ACTIONS(5825), + [anon_sym_BSLASHlet] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5825), + [anon_sym_BSLASHgls] = ACTIONS(5825), + [anon_sym_BSLASHGls] = ACTIONS(5825), + [anon_sym_BSLASHGLS] = ACTIONS(5825), + [anon_sym_BSLASHglspl] = ACTIONS(5825), + [anon_sym_BSLASHGlspl] = ACTIONS(5825), + [anon_sym_BSLASHGLSpl] = ACTIONS(5825), + [anon_sym_BSLASHglsdisp] = ACTIONS(5825), + [anon_sym_BSLASHglslink] = ACTIONS(5825), + [anon_sym_BSLASHglstext] = ACTIONS(5825), + [anon_sym_BSLASHGlstext] = ACTIONS(5825), + [anon_sym_BSLASHGLStext] = ACTIONS(5825), + [anon_sym_BSLASHglsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5825), + [anon_sym_BSLASHglsplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSplural] = ACTIONS(5825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHglsname] = ACTIONS(5825), + [anon_sym_BSLASHGlsname] = ACTIONS(5825), + [anon_sym_BSLASHGLSname] = ACTIONS(5825), + [anon_sym_BSLASHglssymbol] = ACTIONS(5825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5825), + [anon_sym_BSLASHglsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5825), + [anon_sym_BSLASHglsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5825), + [anon_sym_BSLASHglsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5825), + [anon_sym_BSLASHglsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5825), + [anon_sym_BSLASHglsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5825), + [anon_sym_BSLASHnewacronym] = ACTIONS(5825), + [anon_sym_BSLASHacrshort] = ACTIONS(5825), + [anon_sym_BSLASHAcrshort] = ACTIONS(5825), + [anon_sym_BSLASHACRshort] = ACTIONS(5825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5825), + [anon_sym_BSLASHacrlong] = ACTIONS(5825), + [anon_sym_BSLASHAcrlong] = ACTIONS(5825), + [anon_sym_BSLASHACRlong] = ACTIONS(5825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5825), + [anon_sym_BSLASHacrfull] = ACTIONS(5825), + [anon_sym_BSLASHAcrfull] = ACTIONS(5825), + [anon_sym_BSLASHACRfull] = ACTIONS(5825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5825), + [anon_sym_BSLASHacs] = ACTIONS(5825), + [anon_sym_BSLASHAcs] = ACTIONS(5825), + [anon_sym_BSLASHacsp] = ACTIONS(5825), + [anon_sym_BSLASHAcsp] = ACTIONS(5825), + [anon_sym_BSLASHacl] = ACTIONS(5825), + [anon_sym_BSLASHAcl] = ACTIONS(5825), + [anon_sym_BSLASHaclp] = ACTIONS(5825), + [anon_sym_BSLASHAclp] = ACTIONS(5825), + [anon_sym_BSLASHacf] = ACTIONS(5825), + [anon_sym_BSLASHAcf] = ACTIONS(5825), + [anon_sym_BSLASHacfp] = ACTIONS(5825), + [anon_sym_BSLASHAcfp] = ACTIONS(5825), + [anon_sym_BSLASHac] = ACTIONS(5825), + [anon_sym_BSLASHAc] = ACTIONS(5825), + [anon_sym_BSLASHacp] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5825), + [anon_sym_BSLASHcolor] = ACTIONS(5825), + [anon_sym_BSLASHcolorbox] = ACTIONS(5825), + [anon_sym_BSLASHtextcolor] = ACTIONS(5825), + [anon_sym_BSLASHpagecolor] = ACTIONS(5825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5825), + [anon_sym_BSLASHtext] = ACTIONS(5825), + [anon_sym_BSLASHintertext] = ACTIONS(5825), + [anon_sym_shortintertext] = ACTIONS(5825), }, - [1413] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHbegin] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), + [1096] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_BSLASHpart] = ACTIONS(6189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddpart] = ACTIONS(6189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHchapter] = ACTIONS(6189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddchap] = ACTIONS(6189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsection] = ACTIONS(6189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddsec] = ACTIONS(6189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHparagraph] = ACTIONS(6189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHitem] = ACTIONS(6189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), }, - [1414] = { - [sym_command_name] = ACTIONS(5323), + [1097] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_BSLASHpart] = ACTIONS(6201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddpart] = ACTIONS(6201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHchapter] = ACTIONS(6201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddchap] = ACTIONS(6201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsection] = ACTIONS(6201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddsec] = ACTIONS(6201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHparagraph] = ACTIONS(6201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHitem] = ACTIONS(6201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [1098] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_BSLASHpart] = ACTIONS(6219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddpart] = ACTIONS(6219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHchapter] = ACTIONS(6219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddchap] = ACTIONS(6219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsection] = ACTIONS(6219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddsec] = ACTIONS(6219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHparagraph] = ACTIONS(6219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHitem] = ACTIONS(6219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [1099] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_BSLASHpart] = ACTIONS(6227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddpart] = ACTIONS(6227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHchapter] = ACTIONS(6227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddchap] = ACTIONS(6227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsection] = ACTIONS(6227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddsec] = ACTIONS(6227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHparagraph] = ACTIONS(6227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHitem] = ACTIONS(6227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [1100] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_BSLASHpart] = ACTIONS(5837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddpart] = ACTIONS(5837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHchapter] = ACTIONS(5837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddchap] = ACTIONS(5837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsection] = ACTIONS(5837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddsec] = ACTIONS(5837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHparagraph] = ACTIONS(5837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHitem] = ACTIONS(5837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [1101] = { + [sym_command_name] = ACTIONS(5833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5833), + [anon_sym_LPAREN] = ACTIONS(5831), + [anon_sym_RPAREN] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACK] = ACTIONS(5831), + [anon_sym_COMMA] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_BSLASHpart] = ACTIONS(5833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddpart] = ACTIONS(5833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHchapter] = ACTIONS(5833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddchap] = ACTIONS(5833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsection] = ACTIONS(5833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddsec] = ACTIONS(5833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHparagraph] = ACTIONS(5833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHitem] = ACTIONS(5833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5831), + [sym_word] = ACTIONS(5833), + [sym_placeholder] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5833), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5833), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym__] = ACTIONS(5833), + [anon_sym_LT] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_BANG] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5831), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5831), + [anon_sym_BSLASHbegin] = ACTIONS(5833), + [anon_sym_BSLASHtitle] = ACTIONS(5833), + [anon_sym_BSLASHauthor] = ACTIONS(5833), + [anon_sym_BSLASHusepackage] = ACTIONS(5833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5833), + [anon_sym_BSLASHinclude] = ACTIONS(5833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5833), + [anon_sym_BSLASHinput] = ACTIONS(5833), + [anon_sym_BSLASHsubfile] = ACTIONS(5833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5833), + [anon_sym_BSLASHbibliography] = ACTIONS(5833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5833), + [anon_sym_BSLASHincludesvg] = ACTIONS(5833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5833), + [anon_sym_BSLASHimport] = ACTIONS(5833), + [anon_sym_BSLASHsubimport] = ACTIONS(5833), + [anon_sym_BSLASHinputfrom] = ACTIONS(5833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5833), + [anon_sym_BSLASHincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHcaption] = ACTIONS(5833), + [anon_sym_BSLASHcite] = ACTIONS(5833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCite] = ACTIONS(5833), + [anon_sym_BSLASHnocite] = ACTIONS(5833), + [anon_sym_BSLASHcitet] = ACTIONS(5833), + [anon_sym_BSLASHcitep] = ACTIONS(5833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteauthor] = ACTIONS(5833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitetitle] = ACTIONS(5833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteyear] = ACTIONS(5833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitedate] = ACTIONS(5833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteurl] = ACTIONS(5833), + [anon_sym_BSLASHfullcite] = ACTIONS(5833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5833), + [anon_sym_BSLASHcitealt] = ACTIONS(5833), + [anon_sym_BSLASHcitealp] = ACTIONS(5833), + [anon_sym_BSLASHcitetext] = ACTIONS(5833), + [anon_sym_BSLASHparencite] = ACTIONS(5833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHParencite] = ACTIONS(5833), + [anon_sym_BSLASHfootcite] = ACTIONS(5833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5833), + [anon_sym_BSLASHtextcite] = ACTIONS(5833), + [anon_sym_BSLASHTextcite] = ACTIONS(5833), + [anon_sym_BSLASHsmartcite] = ACTIONS(5833), + [anon_sym_BSLASHSmartcite] = ACTIONS(5833), + [anon_sym_BSLASHsupercite] = ACTIONS(5833), + [anon_sym_BSLASHautocite] = ACTIONS(5833), + [anon_sym_BSLASHAutocite] = ACTIONS(5833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHvolcite] = ACTIONS(5833), + [anon_sym_BSLASHVolcite] = ACTIONS(5833), + [anon_sym_BSLASHpvolcite] = ACTIONS(5833), + [anon_sym_BSLASHPvolcite] = ACTIONS(5833), + [anon_sym_BSLASHfvolcite] = ACTIONS(5833), + [anon_sym_BSLASHftvolcite] = ACTIONS(5833), + [anon_sym_BSLASHsvolcite] = ACTIONS(5833), + [anon_sym_BSLASHSvolcite] = ACTIONS(5833), + [anon_sym_BSLASHtvolcite] = ACTIONS(5833), + [anon_sym_BSLASHTvolcite] = ACTIONS(5833), + [anon_sym_BSLASHavolcite] = ACTIONS(5833), + [anon_sym_BSLASHAvolcite] = ACTIONS(5833), + [anon_sym_BSLASHnotecite] = ACTIONS(5833), + [anon_sym_BSLASHNotecite] = ACTIONS(5833), + [anon_sym_BSLASHpnotecite] = ACTIONS(5833), + [anon_sym_BSLASHPnotecite] = ACTIONS(5833), + [anon_sym_BSLASHfnotecite] = ACTIONS(5833), + [anon_sym_BSLASHlabel] = ACTIONS(5833), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCrefrange] = ACTIONS(5833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnewlabel] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdef] = ACTIONS(5833), + [anon_sym_BSLASHlet] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5833), + [anon_sym_BSLASHgls] = ACTIONS(5833), + [anon_sym_BSLASHGls] = ACTIONS(5833), + [anon_sym_BSLASHGLS] = ACTIONS(5833), + [anon_sym_BSLASHglspl] = ACTIONS(5833), + [anon_sym_BSLASHGlspl] = ACTIONS(5833), + [anon_sym_BSLASHGLSpl] = ACTIONS(5833), + [anon_sym_BSLASHglsdisp] = ACTIONS(5833), + [anon_sym_BSLASHglslink] = ACTIONS(5833), + [anon_sym_BSLASHglstext] = ACTIONS(5833), + [anon_sym_BSLASHGlstext] = ACTIONS(5833), + [anon_sym_BSLASHGLStext] = ACTIONS(5833), + [anon_sym_BSLASHglsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5833), + [anon_sym_BSLASHglsplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSplural] = ACTIONS(5833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHglsname] = ACTIONS(5833), + [anon_sym_BSLASHGlsname] = ACTIONS(5833), + [anon_sym_BSLASHGLSname] = ACTIONS(5833), + [anon_sym_BSLASHglssymbol] = ACTIONS(5833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5833), + [anon_sym_BSLASHglsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5833), + [anon_sym_BSLASHglsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5833), + [anon_sym_BSLASHglsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5833), + [anon_sym_BSLASHglsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5833), + [anon_sym_BSLASHglsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5833), + [anon_sym_BSLASHnewacronym] = ACTIONS(5833), + [anon_sym_BSLASHacrshort] = ACTIONS(5833), + [anon_sym_BSLASHAcrshort] = ACTIONS(5833), + [anon_sym_BSLASHACRshort] = ACTIONS(5833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5833), + [anon_sym_BSLASHacrlong] = ACTIONS(5833), + [anon_sym_BSLASHAcrlong] = ACTIONS(5833), + [anon_sym_BSLASHACRlong] = ACTIONS(5833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5833), + [anon_sym_BSLASHacrfull] = ACTIONS(5833), + [anon_sym_BSLASHAcrfull] = ACTIONS(5833), + [anon_sym_BSLASHACRfull] = ACTIONS(5833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5833), + [anon_sym_BSLASHacs] = ACTIONS(5833), + [anon_sym_BSLASHAcs] = ACTIONS(5833), + [anon_sym_BSLASHacsp] = ACTIONS(5833), + [anon_sym_BSLASHAcsp] = ACTIONS(5833), + [anon_sym_BSLASHacl] = ACTIONS(5833), + [anon_sym_BSLASHAcl] = ACTIONS(5833), + [anon_sym_BSLASHaclp] = ACTIONS(5833), + [anon_sym_BSLASHAclp] = ACTIONS(5833), + [anon_sym_BSLASHacf] = ACTIONS(5833), + [anon_sym_BSLASHAcf] = ACTIONS(5833), + [anon_sym_BSLASHacfp] = ACTIONS(5833), + [anon_sym_BSLASHAcfp] = ACTIONS(5833), + [anon_sym_BSLASHac] = ACTIONS(5833), + [anon_sym_BSLASHAc] = ACTIONS(5833), + [anon_sym_BSLASHacp] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5833), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5833), + [anon_sym_BSLASHcolor] = ACTIONS(5833), + [anon_sym_BSLASHcolorbox] = ACTIONS(5833), + [anon_sym_BSLASHtextcolor] = ACTIONS(5833), + [anon_sym_BSLASHpagecolor] = ACTIONS(5833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5833), + [anon_sym_BSLASHtext] = ACTIONS(5833), + [anon_sym_BSLASHintertext] = ACTIONS(5833), + [anon_sym_shortintertext] = ACTIONS(5833), + }, + [1102] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_BSLASHpart] = ACTIONS(6241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddpart] = ACTIONS(6241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHchapter] = ACTIONS(6241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddchap] = ACTIONS(6241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsection] = ACTIONS(6241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddsec] = ACTIONS(6241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHparagraph] = ACTIONS(6241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHitem] = ACTIONS(6241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [1103] = { + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_BSLASHpart] = ACTIONS(6235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddpart] = ACTIONS(6235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHchapter] = ACTIONS(6235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddchap] = ACTIONS(6235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsection] = ACTIONS(6235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddsec] = ACTIONS(6235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHparagraph] = ACTIONS(6235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHitem] = ACTIONS(6235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), + }, + [1104] = { + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_BSLASHpart] = ACTIONS(6231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddpart] = ACTIONS(6231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHchapter] = ACTIONS(6231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddchap] = ACTIONS(6231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsection] = ACTIONS(6231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddsec] = ACTIONS(6231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHparagraph] = ACTIONS(6231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHitem] = ACTIONS(6231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), + }, + [1105] = { + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_BSLASHpart] = ACTIONS(6223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddpart] = ACTIONS(6223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHchapter] = ACTIONS(6223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddchap] = ACTIONS(6223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsection] = ACTIONS(6223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddsec] = ACTIONS(6223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHparagraph] = ACTIONS(6223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHitem] = ACTIONS(6223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), + }, + [1106] = { + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_BSLASHpart] = ACTIONS(6215), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddpart] = ACTIONS(6215), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHchapter] = ACTIONS(6215), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddchap] = ACTIONS(6215), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsection] = ACTIONS(6215), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddsec] = ACTIONS(6215), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHparagraph] = ACTIONS(6215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHitem] = ACTIONS(6215), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), + }, + [1107] = { + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_BSLASHpart] = ACTIONS(6193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddpart] = ACTIONS(6193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHchapter] = ACTIONS(6193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddchap] = ACTIONS(6193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsection] = ACTIONS(6193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddsec] = ACTIONS(6193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHparagraph] = ACTIONS(6193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHitem] = ACTIONS(6193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), + }, + [1108] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_BSLASHpart] = ACTIONS(6185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddpart] = ACTIONS(6185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHchapter] = ACTIONS(6185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddchap] = ACTIONS(6185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsection] = ACTIONS(6185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddsec] = ACTIONS(6185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHparagraph] = ACTIONS(6185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHitem] = ACTIONS(6185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [1109] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_BSLASHpart] = ACTIONS(6155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddpart] = ACTIONS(6155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHchapter] = ACTIONS(6155), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddchap] = ACTIONS(6155), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsection] = ACTIONS(6155), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddsec] = ACTIONS(6155), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHparagraph] = ACTIONS(6155), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6155), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHitem] = ACTIONS(6155), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [1110] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_BSLASHpart] = ACTIONS(6143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddpart] = ACTIONS(6143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHchapter] = ACTIONS(6143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddchap] = ACTIONS(6143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsection] = ACTIONS(6143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddsec] = ACTIONS(6143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHparagraph] = ACTIONS(6143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHitem] = ACTIONS(6143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [1111] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_BSLASHpart] = ACTIONS(6131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddpart] = ACTIONS(6131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHchapter] = ACTIONS(6131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddchap] = ACTIONS(6131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsection] = ACTIONS(6131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddsec] = ACTIONS(6131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHparagraph] = ACTIONS(6131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHitem] = ACTIONS(6131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [1112] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_BSLASHpart] = ACTIONS(5815), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddpart] = ACTIONS(5815), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHchapter] = ACTIONS(5815), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddchap] = ACTIONS(5815), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsection] = ACTIONS(5815), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddsec] = ACTIONS(5815), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHparagraph] = ACTIONS(5815), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5815), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHitem] = ACTIONS(5815), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), + }, + [1113] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_BSLASHpart] = ACTIONS(6127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddpart] = ACTIONS(6127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHchapter] = ACTIONS(6127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddchap] = ACTIONS(6127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsection] = ACTIONS(6127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddsec] = ACTIONS(6127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHparagraph] = ACTIONS(6127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [1114] = { + [sym_command_name] = ACTIONS(5853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5851), + [anon_sym_BSLASHpart] = ACTIONS(5853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddpart] = ACTIONS(5853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHchapter] = ACTIONS(5853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddchap] = ACTIONS(5853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsection] = ACTIONS(5853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddsec] = ACTIONS(5853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHparagraph] = ACTIONS(5853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHitem] = ACTIONS(5853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5851), + [anon_sym_LBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(5853), + [sym_placeholder] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym__] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_SQUOTE] = ACTIONS(5853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5851), + [anon_sym_DOLLAR] = ACTIONS(5853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5851), + [anon_sym_BSLASHbegin] = ACTIONS(5853), + [anon_sym_BSLASHtitle] = ACTIONS(5853), + [anon_sym_BSLASHauthor] = ACTIONS(5853), + [anon_sym_BSLASHusepackage] = ACTIONS(5853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5853), + [anon_sym_BSLASHinclude] = ACTIONS(5853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5853), + [anon_sym_BSLASHinput] = ACTIONS(5853), + [anon_sym_BSLASHsubfile] = ACTIONS(5853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5853), + [anon_sym_BSLASHbibliography] = ACTIONS(5853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5853), + [anon_sym_BSLASHincludesvg] = ACTIONS(5853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5853), + [anon_sym_BSLASHimport] = ACTIONS(5853), + [anon_sym_BSLASHsubimport] = ACTIONS(5853), + [anon_sym_BSLASHinputfrom] = ACTIONS(5853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5853), + [anon_sym_BSLASHincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHcaption] = ACTIONS(5853), + [anon_sym_BSLASHcite] = ACTIONS(5853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCite] = ACTIONS(5853), + [anon_sym_BSLASHnocite] = ACTIONS(5853), + [anon_sym_BSLASHcitet] = ACTIONS(5853), + [anon_sym_BSLASHcitep] = ACTIONS(5853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteauthor] = ACTIONS(5853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitetitle] = ACTIONS(5853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteyear] = ACTIONS(5853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitedate] = ACTIONS(5853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteurl] = ACTIONS(5853), + [anon_sym_BSLASHfullcite] = ACTIONS(5853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5853), + [anon_sym_BSLASHcitealt] = ACTIONS(5853), + [anon_sym_BSLASHcitealp] = ACTIONS(5853), + [anon_sym_BSLASHcitetext] = ACTIONS(5853), + [anon_sym_BSLASHparencite] = ACTIONS(5853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHParencite] = ACTIONS(5853), + [anon_sym_BSLASHfootcite] = ACTIONS(5853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5853), + [anon_sym_BSLASHtextcite] = ACTIONS(5853), + [anon_sym_BSLASHTextcite] = ACTIONS(5853), + [anon_sym_BSLASHsmartcite] = ACTIONS(5853), + [anon_sym_BSLASHSmartcite] = ACTIONS(5853), + [anon_sym_BSLASHsupercite] = ACTIONS(5853), + [anon_sym_BSLASHautocite] = ACTIONS(5853), + [anon_sym_BSLASHAutocite] = ACTIONS(5853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHvolcite] = ACTIONS(5853), + [anon_sym_BSLASHVolcite] = ACTIONS(5853), + [anon_sym_BSLASHpvolcite] = ACTIONS(5853), + [anon_sym_BSLASHPvolcite] = ACTIONS(5853), + [anon_sym_BSLASHfvolcite] = ACTIONS(5853), + [anon_sym_BSLASHftvolcite] = ACTIONS(5853), + [anon_sym_BSLASHsvolcite] = ACTIONS(5853), + [anon_sym_BSLASHSvolcite] = ACTIONS(5853), + [anon_sym_BSLASHtvolcite] = ACTIONS(5853), + [anon_sym_BSLASHTvolcite] = ACTIONS(5853), + [anon_sym_BSLASHavolcite] = ACTIONS(5853), + [anon_sym_BSLASHAvolcite] = ACTIONS(5853), + [anon_sym_BSLASHnotecite] = ACTIONS(5853), + [anon_sym_BSLASHNotecite] = ACTIONS(5853), + [anon_sym_BSLASHpnotecite] = ACTIONS(5853), + [anon_sym_BSLASHPnotecite] = ACTIONS(5853), + [anon_sym_BSLASHfnotecite] = ACTIONS(5853), + [anon_sym_BSLASHlabel] = ACTIONS(5853), + [anon_sym_BSLASHref] = ACTIONS(5853), + [anon_sym_BSLASHeqref] = ACTIONS(5853), + [anon_sym_BSLASHvref] = ACTIONS(5853), + [anon_sym_BSLASHVref] = ACTIONS(5853), + [anon_sym_BSLASHautoref] = ACTIONS(5853), + [anon_sym_BSLASHpageref] = ACTIONS(5853), + [anon_sym_BSLASHcref] = ACTIONS(5853), + [anon_sym_BSLASHCref] = ACTIONS(5853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnameCref] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHlabelcref] = ACTIONS(5853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCrefrange] = ACTIONS(5853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnewlabel] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdef] = ACTIONS(5853), + [anon_sym_BSLASHlet] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5853), + [anon_sym_BSLASHgls] = ACTIONS(5853), + [anon_sym_BSLASHGls] = ACTIONS(5853), + [anon_sym_BSLASHGLS] = ACTIONS(5853), + [anon_sym_BSLASHglspl] = ACTIONS(5853), + [anon_sym_BSLASHGlspl] = ACTIONS(5853), + [anon_sym_BSLASHGLSpl] = ACTIONS(5853), + [anon_sym_BSLASHglsdisp] = ACTIONS(5853), + [anon_sym_BSLASHglslink] = ACTIONS(5853), + [anon_sym_BSLASHglstext] = ACTIONS(5853), + [anon_sym_BSLASHGlstext] = ACTIONS(5853), + [anon_sym_BSLASHGLStext] = ACTIONS(5853), + [anon_sym_BSLASHglsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5853), + [anon_sym_BSLASHglsplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSplural] = ACTIONS(5853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHglsname] = ACTIONS(5853), + [anon_sym_BSLASHGlsname] = ACTIONS(5853), + [anon_sym_BSLASHGLSname] = ACTIONS(5853), + [anon_sym_BSLASHglssymbol] = ACTIONS(5853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5853), + [anon_sym_BSLASHglsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5853), + [anon_sym_BSLASHglsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5853), + [anon_sym_BSLASHglsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5853), + [anon_sym_BSLASHglsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5853), + [anon_sym_BSLASHglsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5853), + [anon_sym_BSLASHnewacronym] = ACTIONS(5853), + [anon_sym_BSLASHacrshort] = ACTIONS(5853), + [anon_sym_BSLASHAcrshort] = ACTIONS(5853), + [anon_sym_BSLASHACRshort] = ACTIONS(5853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5853), + [anon_sym_BSLASHacrlong] = ACTIONS(5853), + [anon_sym_BSLASHAcrlong] = ACTIONS(5853), + [anon_sym_BSLASHACRlong] = ACTIONS(5853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5853), + [anon_sym_BSLASHacrfull] = ACTIONS(5853), + [anon_sym_BSLASHAcrfull] = ACTIONS(5853), + [anon_sym_BSLASHACRfull] = ACTIONS(5853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5853), + [anon_sym_BSLASHacs] = ACTIONS(5853), + [anon_sym_BSLASHAcs] = ACTIONS(5853), + [anon_sym_BSLASHacsp] = ACTIONS(5853), + [anon_sym_BSLASHAcsp] = ACTIONS(5853), + [anon_sym_BSLASHacl] = ACTIONS(5853), + [anon_sym_BSLASHAcl] = ACTIONS(5853), + [anon_sym_BSLASHaclp] = ACTIONS(5853), + [anon_sym_BSLASHAclp] = ACTIONS(5853), + [anon_sym_BSLASHacf] = ACTIONS(5853), + [anon_sym_BSLASHAcf] = ACTIONS(5853), + [anon_sym_BSLASHacfp] = ACTIONS(5853), + [anon_sym_BSLASHAcfp] = ACTIONS(5853), + [anon_sym_BSLASHac] = ACTIONS(5853), + [anon_sym_BSLASHAc] = ACTIONS(5853), + [anon_sym_BSLASHacp] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5853), + [anon_sym_BSLASHcolor] = ACTIONS(5853), + [anon_sym_BSLASHcolorbox] = ACTIONS(5853), + [anon_sym_BSLASHtextcolor] = ACTIONS(5853), + [anon_sym_BSLASHpagecolor] = ACTIONS(5853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5853), + [anon_sym_BSLASHtext] = ACTIONS(5853), + [anon_sym_BSLASHintertext] = ACTIONS(5853), + [anon_sym_shortintertext] = ACTIONS(5853), + }, + [1115] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_BSLASHpart] = ACTIONS(6123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddpart] = ACTIONS(6123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHchapter] = ACTIONS(6123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddchap] = ACTIONS(6123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsection] = ACTIONS(6123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddsec] = ACTIONS(6123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHparagraph] = ACTIONS(6123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHitem] = ACTIONS(6123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), + }, + [1116] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_BSLASHpart] = ACTIONS(6119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddpart] = ACTIONS(6119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHchapter] = ACTIONS(6119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddchap] = ACTIONS(6119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsection] = ACTIONS(6119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddsec] = ACTIONS(6119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHparagraph] = ACTIONS(6119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHitem] = ACTIONS(6119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), + }, + [1117] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_BSLASHpart] = ACTIONS(6113), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddpart] = ACTIONS(6113), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHchapter] = ACTIONS(6113), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddchap] = ACTIONS(6113), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsection] = ACTIONS(6113), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddsec] = ACTIONS(6113), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHparagraph] = ACTIONS(6113), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHitem] = ACTIONS(6113), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), + }, + [1118] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_BSLASHpart] = ACTIONS(6109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddpart] = ACTIONS(6109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHchapter] = ACTIONS(6109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddchap] = ACTIONS(6109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsection] = ACTIONS(6109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddsec] = ACTIONS(6109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHparagraph] = ACTIONS(6109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHitem] = ACTIONS(6109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), + }, + [1119] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_BSLASHpart] = ACTIONS(6105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddpart] = ACTIONS(6105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHchapter] = ACTIONS(6105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddchap] = ACTIONS(6105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsection] = ACTIONS(6105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddsec] = ACTIONS(6105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHparagraph] = ACTIONS(6105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHitem] = ACTIONS(6105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), + }, + [1120] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_BSLASHpart] = ACTIONS(6101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddpart] = ACTIONS(6101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHchapter] = ACTIONS(6101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddchap] = ACTIONS(6101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsection] = ACTIONS(6101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddsec] = ACTIONS(6101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHparagraph] = ACTIONS(6101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHitem] = ACTIONS(6101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [1121] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_BSLASHpart] = ACTIONS(6097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddpart] = ACTIONS(6097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHchapter] = ACTIONS(6097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddchap] = ACTIONS(6097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsection] = ACTIONS(6097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddsec] = ACTIONS(6097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHparagraph] = ACTIONS(6097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHitem] = ACTIONS(6097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [1122] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_BSLASHpart] = ACTIONS(6085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddpart] = ACTIONS(6085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHchapter] = ACTIONS(6085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddchap] = ACTIONS(6085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsection] = ACTIONS(6085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddsec] = ACTIONS(6085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHparagraph] = ACTIONS(6085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHitem] = ACTIONS(6085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1123] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_BSLASHpart] = ACTIONS(6081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddpart] = ACTIONS(6081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHchapter] = ACTIONS(6081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddchap] = ACTIONS(6081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsection] = ACTIONS(6081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddsec] = ACTIONS(6081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHparagraph] = ACTIONS(6081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHitem] = ACTIONS(6081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [1124] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_BSLASHpart] = ACTIONS(6077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddpart] = ACTIONS(6077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHchapter] = ACTIONS(6077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddchap] = ACTIONS(6077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsection] = ACTIONS(6077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddsec] = ACTIONS(6077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHparagraph] = ACTIONS(6077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHitem] = ACTIONS(6077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASH_RBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [1125] = { + [sym_command_name] = ACTIONS(5881), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5881), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_BSLASHpart] = ACTIONS(5881), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddpart] = ACTIONS(5881), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHchapter] = ACTIONS(5881), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddchap] = ACTIONS(5881), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsection] = ACTIONS(5881), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddsec] = ACTIONS(5881), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHparagraph] = ACTIONS(5881), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5881), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHitem] = ACTIONS(5881), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5879), + [anon_sym_LBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(5881), + [sym_placeholder] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym__] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_SQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5879), + [anon_sym_BSLASHbegin] = ACTIONS(5881), + [anon_sym_BSLASHtitle] = ACTIONS(5881), + [anon_sym_BSLASHauthor] = ACTIONS(5881), + [anon_sym_BSLASHusepackage] = ACTIONS(5881), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5881), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5881), + [anon_sym_BSLASHinclude] = ACTIONS(5881), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5881), + [anon_sym_BSLASHinput] = ACTIONS(5881), + [anon_sym_BSLASHsubfile] = ACTIONS(5881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5881), + [anon_sym_BSLASHbibliography] = ACTIONS(5881), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5881), + [anon_sym_BSLASHincludesvg] = ACTIONS(5881), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5881), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5881), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5881), + [anon_sym_BSLASHimport] = ACTIONS(5881), + [anon_sym_BSLASHsubimport] = ACTIONS(5881), + [anon_sym_BSLASHinputfrom] = ACTIONS(5881), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5881), + [anon_sym_BSLASHincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHcaption] = ACTIONS(5881), + [anon_sym_BSLASHcite] = ACTIONS(5881), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCite] = ACTIONS(5881), + [anon_sym_BSLASHnocite] = ACTIONS(5881), + [anon_sym_BSLASHcitet] = ACTIONS(5881), + [anon_sym_BSLASHcitep] = ACTIONS(5881), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteauthor] = ACTIONS(5881), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5881), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitetitle] = ACTIONS(5881), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteyear] = ACTIONS(5881), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitedate] = ACTIONS(5881), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteurl] = ACTIONS(5881), + [anon_sym_BSLASHfullcite] = ACTIONS(5881), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5881), + [anon_sym_BSLASHcitealt] = ACTIONS(5881), + [anon_sym_BSLASHcitealp] = ACTIONS(5881), + [anon_sym_BSLASHcitetext] = ACTIONS(5881), + [anon_sym_BSLASHparencite] = ACTIONS(5881), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHParencite] = ACTIONS(5881), + [anon_sym_BSLASHfootcite] = ACTIONS(5881), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5881), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5881), + [anon_sym_BSLASHtextcite] = ACTIONS(5881), + [anon_sym_BSLASHTextcite] = ACTIONS(5881), + [anon_sym_BSLASHsmartcite] = ACTIONS(5881), + [anon_sym_BSLASHSmartcite] = ACTIONS(5881), + [anon_sym_BSLASHsupercite] = ACTIONS(5881), + [anon_sym_BSLASHautocite] = ACTIONS(5881), + [anon_sym_BSLASHAutocite] = ACTIONS(5881), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHvolcite] = ACTIONS(5881), + [anon_sym_BSLASHVolcite] = ACTIONS(5881), + [anon_sym_BSLASHpvolcite] = ACTIONS(5881), + [anon_sym_BSLASHPvolcite] = ACTIONS(5881), + [anon_sym_BSLASHfvolcite] = ACTIONS(5881), + [anon_sym_BSLASHftvolcite] = ACTIONS(5881), + [anon_sym_BSLASHsvolcite] = ACTIONS(5881), + [anon_sym_BSLASHSvolcite] = ACTIONS(5881), + [anon_sym_BSLASHtvolcite] = ACTIONS(5881), + [anon_sym_BSLASHTvolcite] = ACTIONS(5881), + [anon_sym_BSLASHavolcite] = ACTIONS(5881), + [anon_sym_BSLASHAvolcite] = ACTIONS(5881), + [anon_sym_BSLASHnotecite] = ACTIONS(5881), + [anon_sym_BSLASHNotecite] = ACTIONS(5881), + [anon_sym_BSLASHpnotecite] = ACTIONS(5881), + [anon_sym_BSLASHPnotecite] = ACTIONS(5881), + [anon_sym_BSLASHfnotecite] = ACTIONS(5881), + [anon_sym_BSLASHlabel] = ACTIONS(5881), + [anon_sym_BSLASHref] = ACTIONS(5881), + [anon_sym_BSLASHeqref] = ACTIONS(5881), + [anon_sym_BSLASHvref] = ACTIONS(5881), + [anon_sym_BSLASHVref] = ACTIONS(5881), + [anon_sym_BSLASHautoref] = ACTIONS(5881), + [anon_sym_BSLASHpageref] = ACTIONS(5881), + [anon_sym_BSLASHcref] = ACTIONS(5881), + [anon_sym_BSLASHCref] = ACTIONS(5881), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnameCref] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHlabelcref] = ACTIONS(5881), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCrefrange] = ACTIONS(5881), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnewlabel] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5881), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5881), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5881), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdef] = ACTIONS(5881), + [anon_sym_BSLASHlet] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5881), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5881), + [anon_sym_BSLASHgls] = ACTIONS(5881), + [anon_sym_BSLASHGls] = ACTIONS(5881), + [anon_sym_BSLASHGLS] = ACTIONS(5881), + [anon_sym_BSLASHglspl] = ACTIONS(5881), + [anon_sym_BSLASHGlspl] = ACTIONS(5881), + [anon_sym_BSLASHGLSpl] = ACTIONS(5881), + [anon_sym_BSLASHglsdisp] = ACTIONS(5881), + [anon_sym_BSLASHglslink] = ACTIONS(5881), + [anon_sym_BSLASHglstext] = ACTIONS(5881), + [anon_sym_BSLASHGlstext] = ACTIONS(5881), + [anon_sym_BSLASHGLStext] = ACTIONS(5881), + [anon_sym_BSLASHglsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5881), + [anon_sym_BSLASHglsplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSplural] = ACTIONS(5881), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHglsname] = ACTIONS(5881), + [anon_sym_BSLASHGlsname] = ACTIONS(5881), + [anon_sym_BSLASHGLSname] = ACTIONS(5881), + [anon_sym_BSLASHglssymbol] = ACTIONS(5881), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5881), + [anon_sym_BSLASHglsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5881), + [anon_sym_BSLASHglsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5881), + [anon_sym_BSLASHglsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5881), + [anon_sym_BSLASHglsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5881), + [anon_sym_BSLASHglsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5881), + [anon_sym_BSLASHnewacronym] = ACTIONS(5881), + [anon_sym_BSLASHacrshort] = ACTIONS(5881), + [anon_sym_BSLASHAcrshort] = ACTIONS(5881), + [anon_sym_BSLASHACRshort] = ACTIONS(5881), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5881), + [anon_sym_BSLASHacrlong] = ACTIONS(5881), + [anon_sym_BSLASHAcrlong] = ACTIONS(5881), + [anon_sym_BSLASHACRlong] = ACTIONS(5881), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5881), + [anon_sym_BSLASHacrfull] = ACTIONS(5881), + [anon_sym_BSLASHAcrfull] = ACTIONS(5881), + [anon_sym_BSLASHACRfull] = ACTIONS(5881), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5881), + [anon_sym_BSLASHacs] = ACTIONS(5881), + [anon_sym_BSLASHAcs] = ACTIONS(5881), + [anon_sym_BSLASHacsp] = ACTIONS(5881), + [anon_sym_BSLASHAcsp] = ACTIONS(5881), + [anon_sym_BSLASHacl] = ACTIONS(5881), + [anon_sym_BSLASHAcl] = ACTIONS(5881), + [anon_sym_BSLASHaclp] = ACTIONS(5881), + [anon_sym_BSLASHAclp] = ACTIONS(5881), + [anon_sym_BSLASHacf] = ACTIONS(5881), + [anon_sym_BSLASHAcf] = ACTIONS(5881), + [anon_sym_BSLASHacfp] = ACTIONS(5881), + [anon_sym_BSLASHAcfp] = ACTIONS(5881), + [anon_sym_BSLASHac] = ACTIONS(5881), + [anon_sym_BSLASHAc] = ACTIONS(5881), + [anon_sym_BSLASHacp] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5881), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5881), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHcolor] = ACTIONS(5881), + [anon_sym_BSLASHcolorbox] = ACTIONS(5881), + [anon_sym_BSLASHtextcolor] = ACTIONS(5881), + [anon_sym_BSLASHpagecolor] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5881), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5881), + [anon_sym_BSLASHtext] = ACTIONS(5881), + [anon_sym_BSLASHintertext] = ACTIONS(5881), + [anon_sym_shortintertext] = ACTIONS(5881), + }, + [1126] = { + [sym_command_name] = ACTIONS(5885), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5885), + [anon_sym_LPAREN] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_BSLASHpart] = ACTIONS(5885), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddpart] = ACTIONS(5885), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHchapter] = ACTIONS(5885), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddchap] = ACTIONS(5885), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsection] = ACTIONS(5885), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddsec] = ACTIONS(5885), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHparagraph] = ACTIONS(5885), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5885), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHitem] = ACTIONS(5885), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(5883), + [sym_word] = ACTIONS(5885), + [sym_placeholder] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym__] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_SQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5883), + [anon_sym_BSLASHbegin] = ACTIONS(5885), + [anon_sym_BSLASHtitle] = ACTIONS(5885), + [anon_sym_BSLASHauthor] = ACTIONS(5885), + [anon_sym_BSLASHusepackage] = ACTIONS(5885), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5885), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5885), + [anon_sym_BSLASHinclude] = ACTIONS(5885), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5885), + [anon_sym_BSLASHinput] = ACTIONS(5885), + [anon_sym_BSLASHsubfile] = ACTIONS(5885), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5885), + [anon_sym_BSLASHbibliography] = ACTIONS(5885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5885), + [anon_sym_BSLASHincludesvg] = ACTIONS(5885), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5885), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5885), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5885), + [anon_sym_BSLASHimport] = ACTIONS(5885), + [anon_sym_BSLASHsubimport] = ACTIONS(5885), + [anon_sym_BSLASHinputfrom] = ACTIONS(5885), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5885), + [anon_sym_BSLASHincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHcaption] = ACTIONS(5885), + [anon_sym_BSLASHcite] = ACTIONS(5885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCite] = ACTIONS(5885), + [anon_sym_BSLASHnocite] = ACTIONS(5885), + [anon_sym_BSLASHcitet] = ACTIONS(5885), + [anon_sym_BSLASHcitep] = ACTIONS(5885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteauthor] = ACTIONS(5885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitetitle] = ACTIONS(5885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteyear] = ACTIONS(5885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitedate] = ACTIONS(5885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteurl] = ACTIONS(5885), + [anon_sym_BSLASHfullcite] = ACTIONS(5885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5885), + [anon_sym_BSLASHcitealt] = ACTIONS(5885), + [anon_sym_BSLASHcitealp] = ACTIONS(5885), + [anon_sym_BSLASHcitetext] = ACTIONS(5885), + [anon_sym_BSLASHparencite] = ACTIONS(5885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHParencite] = ACTIONS(5885), + [anon_sym_BSLASHfootcite] = ACTIONS(5885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5885), + [anon_sym_BSLASHtextcite] = ACTIONS(5885), + [anon_sym_BSLASHTextcite] = ACTIONS(5885), + [anon_sym_BSLASHsmartcite] = ACTIONS(5885), + [anon_sym_BSLASHSmartcite] = ACTIONS(5885), + [anon_sym_BSLASHsupercite] = ACTIONS(5885), + [anon_sym_BSLASHautocite] = ACTIONS(5885), + [anon_sym_BSLASHAutocite] = ACTIONS(5885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHvolcite] = ACTIONS(5885), + [anon_sym_BSLASHVolcite] = ACTIONS(5885), + [anon_sym_BSLASHpvolcite] = ACTIONS(5885), + [anon_sym_BSLASHPvolcite] = ACTIONS(5885), + [anon_sym_BSLASHfvolcite] = ACTIONS(5885), + [anon_sym_BSLASHftvolcite] = ACTIONS(5885), + [anon_sym_BSLASHsvolcite] = ACTIONS(5885), + [anon_sym_BSLASHSvolcite] = ACTIONS(5885), + [anon_sym_BSLASHtvolcite] = ACTIONS(5885), + [anon_sym_BSLASHTvolcite] = ACTIONS(5885), + [anon_sym_BSLASHavolcite] = ACTIONS(5885), + [anon_sym_BSLASHAvolcite] = ACTIONS(5885), + [anon_sym_BSLASHnotecite] = ACTIONS(5885), + [anon_sym_BSLASHNotecite] = ACTIONS(5885), + [anon_sym_BSLASHpnotecite] = ACTIONS(5885), + [anon_sym_BSLASHPnotecite] = ACTIONS(5885), + [anon_sym_BSLASHfnotecite] = ACTIONS(5885), + [anon_sym_BSLASHlabel] = ACTIONS(5885), + [anon_sym_BSLASHref] = ACTIONS(5885), + [anon_sym_BSLASHeqref] = ACTIONS(5885), + [anon_sym_BSLASHvref] = ACTIONS(5885), + [anon_sym_BSLASHVref] = ACTIONS(5885), + [anon_sym_BSLASHautoref] = ACTIONS(5885), + [anon_sym_BSLASHpageref] = ACTIONS(5885), + [anon_sym_BSLASHcref] = ACTIONS(5885), + [anon_sym_BSLASHCref] = ACTIONS(5885), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnameCref] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHlabelcref] = ACTIONS(5885), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCrefrange] = ACTIONS(5885), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnewlabel] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5885), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5885), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5885), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdef] = ACTIONS(5885), + [anon_sym_BSLASHlet] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5885), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5885), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5885), + [anon_sym_BSLASHgls] = ACTIONS(5885), + [anon_sym_BSLASHGls] = ACTIONS(5885), + [anon_sym_BSLASHGLS] = ACTIONS(5885), + [anon_sym_BSLASHglspl] = ACTIONS(5885), + [anon_sym_BSLASHGlspl] = ACTIONS(5885), + [anon_sym_BSLASHGLSpl] = ACTIONS(5885), + [anon_sym_BSLASHglsdisp] = ACTIONS(5885), + [anon_sym_BSLASHglslink] = ACTIONS(5885), + [anon_sym_BSLASHglstext] = ACTIONS(5885), + [anon_sym_BSLASHGlstext] = ACTIONS(5885), + [anon_sym_BSLASHGLStext] = ACTIONS(5885), + [anon_sym_BSLASHglsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5885), + [anon_sym_BSLASHglsplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSplural] = ACTIONS(5885), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHglsname] = ACTIONS(5885), + [anon_sym_BSLASHGlsname] = ACTIONS(5885), + [anon_sym_BSLASHGLSname] = ACTIONS(5885), + [anon_sym_BSLASHglssymbol] = ACTIONS(5885), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5885), + [anon_sym_BSLASHglsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5885), + [anon_sym_BSLASHglsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5885), + [anon_sym_BSLASHglsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5885), + [anon_sym_BSLASHglsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5885), + [anon_sym_BSLASHglsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5885), + [anon_sym_BSLASHnewacronym] = ACTIONS(5885), + [anon_sym_BSLASHacrshort] = ACTIONS(5885), + [anon_sym_BSLASHAcrshort] = ACTIONS(5885), + [anon_sym_BSLASHACRshort] = ACTIONS(5885), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5885), + [anon_sym_BSLASHacrlong] = ACTIONS(5885), + [anon_sym_BSLASHAcrlong] = ACTIONS(5885), + [anon_sym_BSLASHACRlong] = ACTIONS(5885), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5885), + [anon_sym_BSLASHacrfull] = ACTIONS(5885), + [anon_sym_BSLASHAcrfull] = ACTIONS(5885), + [anon_sym_BSLASHACRfull] = ACTIONS(5885), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5885), + [anon_sym_BSLASHacs] = ACTIONS(5885), + [anon_sym_BSLASHAcs] = ACTIONS(5885), + [anon_sym_BSLASHacsp] = ACTIONS(5885), + [anon_sym_BSLASHAcsp] = ACTIONS(5885), + [anon_sym_BSLASHacl] = ACTIONS(5885), + [anon_sym_BSLASHAcl] = ACTIONS(5885), + [anon_sym_BSLASHaclp] = ACTIONS(5885), + [anon_sym_BSLASHAclp] = ACTIONS(5885), + [anon_sym_BSLASHacf] = ACTIONS(5885), + [anon_sym_BSLASHAcf] = ACTIONS(5885), + [anon_sym_BSLASHacfp] = ACTIONS(5885), + [anon_sym_BSLASHAcfp] = ACTIONS(5885), + [anon_sym_BSLASHac] = ACTIONS(5885), + [anon_sym_BSLASHAc] = ACTIONS(5885), + [anon_sym_BSLASHacp] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5885), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5885), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5885), + [anon_sym_BSLASHcolor] = ACTIONS(5885), + [anon_sym_BSLASHcolorbox] = ACTIONS(5885), + [anon_sym_BSLASHtextcolor] = ACTIONS(5885), + [anon_sym_BSLASHpagecolor] = ACTIONS(5885), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5885), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5885), + [anon_sym_BSLASHtext] = ACTIONS(5885), + [anon_sym_BSLASHintertext] = ACTIONS(5885), + [anon_sym_shortintertext] = ACTIONS(5885), + }, + [1127] = { + [sym_command_name] = ACTIONS(5889), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5889), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_BSLASHpart] = ACTIONS(5889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddpart] = ACTIONS(5889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHchapter] = ACTIONS(5889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddchap] = ACTIONS(5889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsection] = ACTIONS(5889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddsec] = ACTIONS(5889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHparagraph] = ACTIONS(5889), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5889), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHitem] = ACTIONS(5889), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(5889), + [sym_placeholder] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5889), + [anon_sym_SLASH] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5889), + [anon_sym__] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_SQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5887), + [anon_sym_BSLASHbegin] = ACTIONS(5889), + [anon_sym_BSLASHtitle] = ACTIONS(5889), + [anon_sym_BSLASHauthor] = ACTIONS(5889), + [anon_sym_BSLASHusepackage] = ACTIONS(5889), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5889), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5889), + [anon_sym_BSLASHinclude] = ACTIONS(5889), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5889), + [anon_sym_BSLASHinput] = ACTIONS(5889), + [anon_sym_BSLASHsubfile] = ACTIONS(5889), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5889), + [anon_sym_BSLASHbibliography] = ACTIONS(5889), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5889), + [anon_sym_BSLASHincludesvg] = ACTIONS(5889), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5889), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5889), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5889), + [anon_sym_BSLASHimport] = ACTIONS(5889), + [anon_sym_BSLASHsubimport] = ACTIONS(5889), + [anon_sym_BSLASHinputfrom] = ACTIONS(5889), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5889), + [anon_sym_BSLASHincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHcaption] = ACTIONS(5889), + [anon_sym_BSLASHcite] = ACTIONS(5889), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCite] = ACTIONS(5889), + [anon_sym_BSLASHnocite] = ACTIONS(5889), + [anon_sym_BSLASHcitet] = ACTIONS(5889), + [anon_sym_BSLASHcitep] = ACTIONS(5889), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteauthor] = ACTIONS(5889), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5889), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitetitle] = ACTIONS(5889), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteyear] = ACTIONS(5889), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitedate] = ACTIONS(5889), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteurl] = ACTIONS(5889), + [anon_sym_BSLASHfullcite] = ACTIONS(5889), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5889), + [anon_sym_BSLASHcitealt] = ACTIONS(5889), + [anon_sym_BSLASHcitealp] = ACTIONS(5889), + [anon_sym_BSLASHcitetext] = ACTIONS(5889), + [anon_sym_BSLASHparencite] = ACTIONS(5889), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHParencite] = ACTIONS(5889), + [anon_sym_BSLASHfootcite] = ACTIONS(5889), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5889), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5889), + [anon_sym_BSLASHtextcite] = ACTIONS(5889), + [anon_sym_BSLASHTextcite] = ACTIONS(5889), + [anon_sym_BSLASHsmartcite] = ACTIONS(5889), + [anon_sym_BSLASHSmartcite] = ACTIONS(5889), + [anon_sym_BSLASHsupercite] = ACTIONS(5889), + [anon_sym_BSLASHautocite] = ACTIONS(5889), + [anon_sym_BSLASHAutocite] = ACTIONS(5889), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHvolcite] = ACTIONS(5889), + [anon_sym_BSLASHVolcite] = ACTIONS(5889), + [anon_sym_BSLASHpvolcite] = ACTIONS(5889), + [anon_sym_BSLASHPvolcite] = ACTIONS(5889), + [anon_sym_BSLASHfvolcite] = ACTIONS(5889), + [anon_sym_BSLASHftvolcite] = ACTIONS(5889), + [anon_sym_BSLASHsvolcite] = ACTIONS(5889), + [anon_sym_BSLASHSvolcite] = ACTIONS(5889), + [anon_sym_BSLASHtvolcite] = ACTIONS(5889), + [anon_sym_BSLASHTvolcite] = ACTIONS(5889), + [anon_sym_BSLASHavolcite] = ACTIONS(5889), + [anon_sym_BSLASHAvolcite] = ACTIONS(5889), + [anon_sym_BSLASHnotecite] = ACTIONS(5889), + [anon_sym_BSLASHNotecite] = ACTIONS(5889), + [anon_sym_BSLASHpnotecite] = ACTIONS(5889), + [anon_sym_BSLASHPnotecite] = ACTIONS(5889), + [anon_sym_BSLASHfnotecite] = ACTIONS(5889), + [anon_sym_BSLASHlabel] = ACTIONS(5889), + [anon_sym_BSLASHref] = ACTIONS(5889), + [anon_sym_BSLASHeqref] = ACTIONS(5889), + [anon_sym_BSLASHvref] = ACTIONS(5889), + [anon_sym_BSLASHVref] = ACTIONS(5889), + [anon_sym_BSLASHautoref] = ACTIONS(5889), + [anon_sym_BSLASHpageref] = ACTIONS(5889), + [anon_sym_BSLASHcref] = ACTIONS(5889), + [anon_sym_BSLASHCref] = ACTIONS(5889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnameCref] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHlabelcref] = ACTIONS(5889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCrefrange] = ACTIONS(5889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnewlabel] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5889), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5889), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5889), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdef] = ACTIONS(5889), + [anon_sym_BSLASHlet] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5889), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5889), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5889), + [anon_sym_BSLASHgls] = ACTIONS(5889), + [anon_sym_BSLASHGls] = ACTIONS(5889), + [anon_sym_BSLASHGLS] = ACTIONS(5889), + [anon_sym_BSLASHglspl] = ACTIONS(5889), + [anon_sym_BSLASHGlspl] = ACTIONS(5889), + [anon_sym_BSLASHGLSpl] = ACTIONS(5889), + [anon_sym_BSLASHglsdisp] = ACTIONS(5889), + [anon_sym_BSLASHglslink] = ACTIONS(5889), + [anon_sym_BSLASHglstext] = ACTIONS(5889), + [anon_sym_BSLASHGlstext] = ACTIONS(5889), + [anon_sym_BSLASHGLStext] = ACTIONS(5889), + [anon_sym_BSLASHglsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5889), + [anon_sym_BSLASHglsplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSplural] = ACTIONS(5889), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHglsname] = ACTIONS(5889), + [anon_sym_BSLASHGlsname] = ACTIONS(5889), + [anon_sym_BSLASHGLSname] = ACTIONS(5889), + [anon_sym_BSLASHglssymbol] = ACTIONS(5889), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5889), + [anon_sym_BSLASHglsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5889), + [anon_sym_BSLASHglsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5889), + [anon_sym_BSLASHglsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5889), + [anon_sym_BSLASHglsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5889), + [anon_sym_BSLASHglsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5889), + [anon_sym_BSLASHnewacronym] = ACTIONS(5889), + [anon_sym_BSLASHacrshort] = ACTIONS(5889), + [anon_sym_BSLASHAcrshort] = ACTIONS(5889), + [anon_sym_BSLASHACRshort] = ACTIONS(5889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5889), + [anon_sym_BSLASHacrlong] = ACTIONS(5889), + [anon_sym_BSLASHAcrlong] = ACTIONS(5889), + [anon_sym_BSLASHACRlong] = ACTIONS(5889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5889), + [anon_sym_BSLASHacrfull] = ACTIONS(5889), + [anon_sym_BSLASHAcrfull] = ACTIONS(5889), + [anon_sym_BSLASHACRfull] = ACTIONS(5889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5889), + [anon_sym_BSLASHacs] = ACTIONS(5889), + [anon_sym_BSLASHAcs] = ACTIONS(5889), + [anon_sym_BSLASHacsp] = ACTIONS(5889), + [anon_sym_BSLASHAcsp] = ACTIONS(5889), + [anon_sym_BSLASHacl] = ACTIONS(5889), + [anon_sym_BSLASHAcl] = ACTIONS(5889), + [anon_sym_BSLASHaclp] = ACTIONS(5889), + [anon_sym_BSLASHAclp] = ACTIONS(5889), + [anon_sym_BSLASHacf] = ACTIONS(5889), + [anon_sym_BSLASHAcf] = ACTIONS(5889), + [anon_sym_BSLASHacfp] = ACTIONS(5889), + [anon_sym_BSLASHAcfp] = ACTIONS(5889), + [anon_sym_BSLASHac] = ACTIONS(5889), + [anon_sym_BSLASHAc] = ACTIONS(5889), + [anon_sym_BSLASHacp] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5889), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5889), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5889), + [anon_sym_BSLASHcolor] = ACTIONS(5889), + [anon_sym_BSLASHcolorbox] = ACTIONS(5889), + [anon_sym_BSLASHtextcolor] = ACTIONS(5889), + [anon_sym_BSLASHpagecolor] = ACTIONS(5889), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5889), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5889), + [anon_sym_BSLASHtext] = ACTIONS(5889), + [anon_sym_BSLASHintertext] = ACTIONS(5889), + [anon_sym_shortintertext] = ACTIONS(5889), + }, + [1128] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_BSLASHpart] = ACTIONS(5893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddpart] = ACTIONS(5893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHchapter] = ACTIONS(5893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddchap] = ACTIONS(5893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsection] = ACTIONS(5893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddsec] = ACTIONS(5893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHparagraph] = ACTIONS(5893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHitem] = ACTIONS(5893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [1129] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2054), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [anon_sym_LPAREN] = ACTIONS(5321), - [anon_sym_RPAREN] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5321), - [anon_sym_RBRACK] = ACTIONS(5321), - [anon_sym_COMMA] = ACTIONS(5321), - [anon_sym_EQ] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5323), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym__] = ACTIONS(5323), - [anon_sym_LT] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5323), - [anon_sym_BANG] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5323), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_SQUOTE] = ACTIONS(5323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [anon_sym_BSLASHbegin] = ACTIONS(5323), - [anon_sym_BSLASHusepackage] = ACTIONS(5323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), - [anon_sym_BSLASHinclude] = ACTIONS(5323), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), - [anon_sym_BSLASHinput] = ACTIONS(5323), - [anon_sym_BSLASHsubfile] = ACTIONS(5323), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5323), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), - [anon_sym_BSLASHincludesvg] = ACTIONS(5323), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), - [anon_sym_BSLASHimport] = ACTIONS(5323), - [anon_sym_BSLASHsubimport] = ACTIONS(5323), - [anon_sym_BSLASHinputfrom] = ACTIONS(5323), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), - [anon_sym_BSLASHincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHcaption] = ACTIONS(5323), - [anon_sym_BSLASHcite] = ACTIONS(5323), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCite] = ACTIONS(5323), - [anon_sym_BSLASHnocite] = ACTIONS(5323), - [anon_sym_BSLASHcitet] = ACTIONS(5323), - [anon_sym_BSLASHcitep] = ACTIONS(5323), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteurl] = ACTIONS(5323), - [anon_sym_BSLASHfullcite] = ACTIONS(5323), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), - [anon_sym_BSLASHcitealt] = ACTIONS(5323), - [anon_sym_BSLASHcitealp] = ACTIONS(5323), - [anon_sym_BSLASHcitetext] = ACTIONS(5323), - [anon_sym_BSLASHparencite] = ACTIONS(5323), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHParencite] = ACTIONS(5323), - [anon_sym_BSLASHfootcite] = ACTIONS(5323), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), - [anon_sym_BSLASHtextcite] = ACTIONS(5323), - [anon_sym_BSLASHTextcite] = ACTIONS(5323), - [anon_sym_BSLASHsmartcite] = ACTIONS(5323), - [anon_sym_BSLASHSmartcite] = ACTIONS(5323), - [anon_sym_BSLASHsupercite] = ACTIONS(5323), - [anon_sym_BSLASHautocite] = ACTIONS(5323), - [anon_sym_BSLASHAutocite] = ACTIONS(5323), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHvolcite] = ACTIONS(5323), - [anon_sym_BSLASHVolcite] = ACTIONS(5323), - [anon_sym_BSLASHpvolcite] = ACTIONS(5323), - [anon_sym_BSLASHPvolcite] = ACTIONS(5323), - [anon_sym_BSLASHfvolcite] = ACTIONS(5323), - [anon_sym_BSLASHftvolcite] = ACTIONS(5323), - [anon_sym_BSLASHsvolcite] = ACTIONS(5323), - [anon_sym_BSLASHSvolcite] = ACTIONS(5323), - [anon_sym_BSLASHtvolcite] = ACTIONS(5323), - [anon_sym_BSLASHTvolcite] = ACTIONS(5323), - [anon_sym_BSLASHavolcite] = ACTIONS(5323), - [anon_sym_BSLASHAvolcite] = ACTIONS(5323), - [anon_sym_BSLASHnotecite] = ACTIONS(5323), - [anon_sym_BSLASHNotecite] = ACTIONS(5323), - [anon_sym_BSLASHpnotecite] = ACTIONS(5323), - [anon_sym_BSLASHPnotecite] = ACTIONS(5323), - [anon_sym_BSLASHfnotecite] = ACTIONS(5323), - [anon_sym_BSLASHlabel] = ACTIONS(5323), - [anon_sym_BSLASHref] = ACTIONS(5323), - [anon_sym_BSLASHeqref] = ACTIONS(5323), - [anon_sym_BSLASHvref] = ACTIONS(5323), - [anon_sym_BSLASHVref] = ACTIONS(5323), - [anon_sym_BSLASHautoref] = ACTIONS(5323), - [anon_sym_BSLASHpageref] = ACTIONS(5323), - [anon_sym_BSLASHcref] = ACTIONS(5323), - [anon_sym_BSLASHCref] = ACTIONS(5323), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnameCref] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHlabelcref] = ACTIONS(5323), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), - [anon_sym_BSLASHgls] = ACTIONS(5323), - [anon_sym_BSLASHGls] = ACTIONS(5323), - [anon_sym_BSLASHGLS] = ACTIONS(5323), - [anon_sym_BSLASHglspl] = ACTIONS(5323), - [anon_sym_BSLASHGlspl] = ACTIONS(5323), - [anon_sym_BSLASHGLSpl] = ACTIONS(5323), - [anon_sym_BSLASHglsdisp] = ACTIONS(5323), - [anon_sym_BSLASHglslink] = ACTIONS(5323), - [anon_sym_BSLASHglstext] = ACTIONS(5323), - [anon_sym_BSLASHGlstext] = ACTIONS(5323), - [anon_sym_BSLASHGLStext] = ACTIONS(5323), - [anon_sym_BSLASHglsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), - [anon_sym_BSLASHglsplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSplural] = ACTIONS(5323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHglsname] = ACTIONS(5323), - [anon_sym_BSLASHGlsname] = ACTIONS(5323), - [anon_sym_BSLASHGLSname] = ACTIONS(5323), - [anon_sym_BSLASHglssymbol] = ACTIONS(5323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), - [anon_sym_BSLASHglsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), - [anon_sym_BSLASHglsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), - [anon_sym_BSLASHglsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), - [anon_sym_BSLASHglsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), - [anon_sym_BSLASHglsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), - [anon_sym_BSLASHnewacronym] = ACTIONS(5323), - [anon_sym_BSLASHacrshort] = ACTIONS(5323), - [anon_sym_BSLASHAcrshort] = ACTIONS(5323), - [anon_sym_BSLASHACRshort] = ACTIONS(5323), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), - [anon_sym_BSLASHacrlong] = ACTIONS(5323), - [anon_sym_BSLASHAcrlong] = ACTIONS(5323), - [anon_sym_BSLASHACRlong] = ACTIONS(5323), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), - [anon_sym_BSLASHacrfull] = ACTIONS(5323), - [anon_sym_BSLASHAcrfull] = ACTIONS(5323), - [anon_sym_BSLASHACRfull] = ACTIONS(5323), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), - [anon_sym_BSLASHtext] = ACTIONS(5323), - [anon_sym_BSLASHintertext] = ACTIONS(5323), - [anon_sym_shortintertext] = ACTIONS(5323), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6287), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1130] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_BSLASHpart] = ACTIONS(5995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddpart] = ACTIONS(5995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHchapter] = ACTIONS(5995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddchap] = ACTIONS(5995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsection] = ACTIONS(5995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddsec] = ACTIONS(5995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHparagraph] = ACTIONS(5995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHitem] = ACTIONS(5995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [1131] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_BSLASHpart] = ACTIONS(5999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddpart] = ACTIONS(5999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHchapter] = ACTIONS(5999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddchap] = ACTIONS(5999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsection] = ACTIONS(5999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddsec] = ACTIONS(5999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHparagraph] = ACTIONS(5999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHitem] = ACTIONS(5999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1132] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_BSLASHpart] = ACTIONS(6077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddpart] = ACTIONS(6077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHchapter] = ACTIONS(6077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddchap] = ACTIONS(6077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsection] = ACTIONS(6077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddsec] = ACTIONS(6077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHparagraph] = ACTIONS(6077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHitem] = ACTIONS(6077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [1133] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_BSLASHpart] = ACTIONS(6081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddpart] = ACTIONS(6081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHchapter] = ACTIONS(6081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddchap] = ACTIONS(6081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsection] = ACTIONS(6081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddsec] = ACTIONS(6081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHparagraph] = ACTIONS(6081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHitem] = ACTIONS(6081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [1134] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_BSLASHpart] = ACTIONS(5999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddpart] = ACTIONS(5999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHchapter] = ACTIONS(5999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddchap] = ACTIONS(5999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsection] = ACTIONS(5999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddsec] = ACTIONS(5999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHparagraph] = ACTIONS(5999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHitem] = ACTIONS(5999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHend] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1135] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_BSLASHpart] = ACTIONS(5995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddpart] = ACTIONS(5995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHchapter] = ACTIONS(5995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddchap] = ACTIONS(5995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsection] = ACTIONS(5995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddsec] = ACTIONS(5995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHparagraph] = ACTIONS(5995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHitem] = ACTIONS(5995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHend] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [1136] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_BSLASHpart] = ACTIONS(6085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddpart] = ACTIONS(6085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHchapter] = ACTIONS(6085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddchap] = ACTIONS(6085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsection] = ACTIONS(6085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddsec] = ACTIONS(6085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHparagraph] = ACTIONS(6085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHitem] = ACTIONS(6085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1137] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_BSLASHpart] = ACTIONS(6097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddpart] = ACTIONS(6097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHchapter] = ACTIONS(6097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddchap] = ACTIONS(6097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsection] = ACTIONS(6097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddsec] = ACTIONS(6097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHparagraph] = ACTIONS(6097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHitem] = ACTIONS(6097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [1138] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_BSLASHpart] = ACTIONS(6101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddpart] = ACTIONS(6101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHchapter] = ACTIONS(6101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddchap] = ACTIONS(6101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsection] = ACTIONS(6101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddsec] = ACTIONS(6101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHparagraph] = ACTIONS(6101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHitem] = ACTIONS(6101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [1139] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_BSLASHpart] = ACTIONS(6105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddpart] = ACTIONS(6105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHchapter] = ACTIONS(6105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddchap] = ACTIONS(6105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsection] = ACTIONS(6105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddsec] = ACTIONS(6105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHparagraph] = ACTIONS(6105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHitem] = ACTIONS(6105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), + }, + [1140] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_BSLASHpart] = ACTIONS(6109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddpart] = ACTIONS(6109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHchapter] = ACTIONS(6109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddchap] = ACTIONS(6109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsection] = ACTIONS(6109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddsec] = ACTIONS(6109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHparagraph] = ACTIONS(6109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHitem] = ACTIONS(6109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), + }, + [1141] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_BSLASHpart] = ACTIONS(6123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddpart] = ACTIONS(6123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHchapter] = ACTIONS(6123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddchap] = ACTIONS(6123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsection] = ACTIONS(6123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddsec] = ACTIONS(6123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHparagraph] = ACTIONS(6123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHitem] = ACTIONS(6123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), + }, + [1142] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_BSLASHpart] = ACTIONS(6119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddpart] = ACTIONS(6119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHchapter] = ACTIONS(6119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddchap] = ACTIONS(6119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsection] = ACTIONS(6119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddsec] = ACTIONS(6119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHparagraph] = ACTIONS(6119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHitem] = ACTIONS(6119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), + }, + [1143] = { + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_BSLASHpart] = ACTIONS(5869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddpart] = ACTIONS(5869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHchapter] = ACTIONS(5869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddchap] = ACTIONS(5869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsection] = ACTIONS(5869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddsec] = ACTIONS(5869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHparagraph] = ACTIONS(5869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHitem] = ACTIONS(5869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHend] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), + }, + [1144] = { + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_BSLASHpart] = ACTIONS(5865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddpart] = ACTIONS(5865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHchapter] = ACTIONS(5865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddchap] = ACTIONS(5865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsection] = ACTIONS(5865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddsec] = ACTIONS(5865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHparagraph] = ACTIONS(5865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHitem] = ACTIONS(5865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHend] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), + }, + [1145] = { + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_BSLASHpart] = ACTIONS(5927), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddpart] = ACTIONS(5927), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHchapter] = ACTIONS(5927), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddchap] = ACTIONS(5927), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsection] = ACTIONS(5927), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddsec] = ACTIONS(5927), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHparagraph] = ACTIONS(5927), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5927), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHitem] = ACTIONS(5927), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), + }, + [1146] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_BSLASHpart] = ACTIONS(6085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddpart] = ACTIONS(6085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHchapter] = ACTIONS(6085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddchap] = ACTIONS(6085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsection] = ACTIONS(6085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddsec] = ACTIONS(6085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHparagraph] = ACTIONS(6085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHitem] = ACTIONS(6085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1147] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_BSLASHpart] = ACTIONS(6131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddpart] = ACTIONS(6131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHchapter] = ACTIONS(6131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddchap] = ACTIONS(6131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsection] = ACTIONS(6131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddsec] = ACTIONS(6131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHparagraph] = ACTIONS(6131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHitem] = ACTIONS(6131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [1148] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_BSLASHpart] = ACTIONS(6143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddpart] = ACTIONS(6143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHchapter] = ACTIONS(6143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddchap] = ACTIONS(6143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsection] = ACTIONS(6143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddsec] = ACTIONS(6143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHparagraph] = ACTIONS(6143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHitem] = ACTIONS(6143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [1149] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_BSLASHpart] = ACTIONS(6155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddpart] = ACTIONS(6155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHchapter] = ACTIONS(6155), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddchap] = ACTIONS(6155), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsection] = ACTIONS(6155), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddsec] = ACTIONS(6155), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHparagraph] = ACTIONS(6155), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6155), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHitem] = ACTIONS(6155), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [1150] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_BSLASHpart] = ACTIONS(6185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddpart] = ACTIONS(6185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHchapter] = ACTIONS(6185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddchap] = ACTIONS(6185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsection] = ACTIONS(6185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddsec] = ACTIONS(6185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHparagraph] = ACTIONS(6185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHitem] = ACTIONS(6185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [1151] = { + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_BSLASHpart] = ACTIONS(6193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddpart] = ACTIONS(6193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHchapter] = ACTIONS(6193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddchap] = ACTIONS(6193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsection] = ACTIONS(6193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddsec] = ACTIONS(6193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHparagraph] = ACTIONS(6193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHitem] = ACTIONS(6193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), + }, + [1152] = { + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_BSLASHpart] = ACTIONS(6215), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddpart] = ACTIONS(6215), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHchapter] = ACTIONS(6215), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddchap] = ACTIONS(6215), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsection] = ACTIONS(6215), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddsec] = ACTIONS(6215), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHparagraph] = ACTIONS(6215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHitem] = ACTIONS(6215), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), + }, + [1153] = { + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_BSLASHpart] = ACTIONS(6223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddpart] = ACTIONS(6223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHchapter] = ACTIONS(6223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddchap] = ACTIONS(6223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsection] = ACTIONS(6223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddsec] = ACTIONS(6223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHparagraph] = ACTIONS(6223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHitem] = ACTIONS(6223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), + }, + [1154] = { + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_BSLASHpart] = ACTIONS(6231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddpart] = ACTIONS(6231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHchapter] = ACTIONS(6231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddchap] = ACTIONS(6231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsection] = ACTIONS(6231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddsec] = ACTIONS(6231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHparagraph] = ACTIONS(6231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHitem] = ACTIONS(6231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), + }, + [1155] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_BSLASHpart] = ACTIONS(5893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddpart] = ACTIONS(5893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHchapter] = ACTIONS(5893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddchap] = ACTIONS(5893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsection] = ACTIONS(5893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddsec] = ACTIONS(5893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHparagraph] = ACTIONS(5893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHitem] = ACTIONS(5893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHend] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [1156] = { + [sym_command_name] = ACTIONS(5889), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5889), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_BSLASHpart] = ACTIONS(5889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddpart] = ACTIONS(5889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHchapter] = ACTIONS(5889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddchap] = ACTIONS(5889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsection] = ACTIONS(5889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddsec] = ACTIONS(5889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHparagraph] = ACTIONS(5889), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5889), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHitem] = ACTIONS(5889), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(5889), + [sym_placeholder] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5889), + [anon_sym_SLASH] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5889), + [anon_sym__] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_SQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5887), + [anon_sym_BSLASHbegin] = ACTIONS(5889), + [anon_sym_BSLASHend] = ACTIONS(5889), + [anon_sym_BSLASHtitle] = ACTIONS(5889), + [anon_sym_BSLASHauthor] = ACTIONS(5889), + [anon_sym_BSLASHusepackage] = ACTIONS(5889), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5889), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5889), + [anon_sym_BSLASHinclude] = ACTIONS(5889), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5889), + [anon_sym_BSLASHinput] = ACTIONS(5889), + [anon_sym_BSLASHsubfile] = ACTIONS(5889), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5889), + [anon_sym_BSLASHbibliography] = ACTIONS(5889), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5889), + [anon_sym_BSLASHincludesvg] = ACTIONS(5889), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5889), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5889), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5889), + [anon_sym_BSLASHimport] = ACTIONS(5889), + [anon_sym_BSLASHsubimport] = ACTIONS(5889), + [anon_sym_BSLASHinputfrom] = ACTIONS(5889), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5889), + [anon_sym_BSLASHincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHcaption] = ACTIONS(5889), + [anon_sym_BSLASHcite] = ACTIONS(5889), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCite] = ACTIONS(5889), + [anon_sym_BSLASHnocite] = ACTIONS(5889), + [anon_sym_BSLASHcitet] = ACTIONS(5889), + [anon_sym_BSLASHcitep] = ACTIONS(5889), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteauthor] = ACTIONS(5889), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5889), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitetitle] = ACTIONS(5889), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteyear] = ACTIONS(5889), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitedate] = ACTIONS(5889), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteurl] = ACTIONS(5889), + [anon_sym_BSLASHfullcite] = ACTIONS(5889), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5889), + [anon_sym_BSLASHcitealt] = ACTIONS(5889), + [anon_sym_BSLASHcitealp] = ACTIONS(5889), + [anon_sym_BSLASHcitetext] = ACTIONS(5889), + [anon_sym_BSLASHparencite] = ACTIONS(5889), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHParencite] = ACTIONS(5889), + [anon_sym_BSLASHfootcite] = ACTIONS(5889), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5889), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5889), + [anon_sym_BSLASHtextcite] = ACTIONS(5889), + [anon_sym_BSLASHTextcite] = ACTIONS(5889), + [anon_sym_BSLASHsmartcite] = ACTIONS(5889), + [anon_sym_BSLASHSmartcite] = ACTIONS(5889), + [anon_sym_BSLASHsupercite] = ACTIONS(5889), + [anon_sym_BSLASHautocite] = ACTIONS(5889), + [anon_sym_BSLASHAutocite] = ACTIONS(5889), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHvolcite] = ACTIONS(5889), + [anon_sym_BSLASHVolcite] = ACTIONS(5889), + [anon_sym_BSLASHpvolcite] = ACTIONS(5889), + [anon_sym_BSLASHPvolcite] = ACTIONS(5889), + [anon_sym_BSLASHfvolcite] = ACTIONS(5889), + [anon_sym_BSLASHftvolcite] = ACTIONS(5889), + [anon_sym_BSLASHsvolcite] = ACTIONS(5889), + [anon_sym_BSLASHSvolcite] = ACTIONS(5889), + [anon_sym_BSLASHtvolcite] = ACTIONS(5889), + [anon_sym_BSLASHTvolcite] = ACTIONS(5889), + [anon_sym_BSLASHavolcite] = ACTIONS(5889), + [anon_sym_BSLASHAvolcite] = ACTIONS(5889), + [anon_sym_BSLASHnotecite] = ACTIONS(5889), + [anon_sym_BSLASHNotecite] = ACTIONS(5889), + [anon_sym_BSLASHpnotecite] = ACTIONS(5889), + [anon_sym_BSLASHPnotecite] = ACTIONS(5889), + [anon_sym_BSLASHfnotecite] = ACTIONS(5889), + [anon_sym_BSLASHlabel] = ACTIONS(5889), + [anon_sym_BSLASHref] = ACTIONS(5889), + [anon_sym_BSLASHeqref] = ACTIONS(5889), + [anon_sym_BSLASHvref] = ACTIONS(5889), + [anon_sym_BSLASHVref] = ACTIONS(5889), + [anon_sym_BSLASHautoref] = ACTIONS(5889), + [anon_sym_BSLASHpageref] = ACTIONS(5889), + [anon_sym_BSLASHcref] = ACTIONS(5889), + [anon_sym_BSLASHCref] = ACTIONS(5889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnameCref] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHlabelcref] = ACTIONS(5889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCrefrange] = ACTIONS(5889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnewlabel] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5889), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5889), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5889), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdef] = ACTIONS(5889), + [anon_sym_BSLASHlet] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5889), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5889), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5889), + [anon_sym_BSLASHgls] = ACTIONS(5889), + [anon_sym_BSLASHGls] = ACTIONS(5889), + [anon_sym_BSLASHGLS] = ACTIONS(5889), + [anon_sym_BSLASHglspl] = ACTIONS(5889), + [anon_sym_BSLASHGlspl] = ACTIONS(5889), + [anon_sym_BSLASHGLSpl] = ACTIONS(5889), + [anon_sym_BSLASHglsdisp] = ACTIONS(5889), + [anon_sym_BSLASHglslink] = ACTIONS(5889), + [anon_sym_BSLASHglstext] = ACTIONS(5889), + [anon_sym_BSLASHGlstext] = ACTIONS(5889), + [anon_sym_BSLASHGLStext] = ACTIONS(5889), + [anon_sym_BSLASHglsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5889), + [anon_sym_BSLASHglsplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSplural] = ACTIONS(5889), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHglsname] = ACTIONS(5889), + [anon_sym_BSLASHGlsname] = ACTIONS(5889), + [anon_sym_BSLASHGLSname] = ACTIONS(5889), + [anon_sym_BSLASHglssymbol] = ACTIONS(5889), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5889), + [anon_sym_BSLASHglsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5889), + [anon_sym_BSLASHglsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5889), + [anon_sym_BSLASHglsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5889), + [anon_sym_BSLASHglsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5889), + [anon_sym_BSLASHglsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5889), + [anon_sym_BSLASHnewacronym] = ACTIONS(5889), + [anon_sym_BSLASHacrshort] = ACTIONS(5889), + [anon_sym_BSLASHAcrshort] = ACTIONS(5889), + [anon_sym_BSLASHACRshort] = ACTIONS(5889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5889), + [anon_sym_BSLASHacrlong] = ACTIONS(5889), + [anon_sym_BSLASHAcrlong] = ACTIONS(5889), + [anon_sym_BSLASHACRlong] = ACTIONS(5889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5889), + [anon_sym_BSLASHacrfull] = ACTIONS(5889), + [anon_sym_BSLASHAcrfull] = ACTIONS(5889), + [anon_sym_BSLASHACRfull] = ACTIONS(5889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5889), + [anon_sym_BSLASHacs] = ACTIONS(5889), + [anon_sym_BSLASHAcs] = ACTIONS(5889), + [anon_sym_BSLASHacsp] = ACTIONS(5889), + [anon_sym_BSLASHAcsp] = ACTIONS(5889), + [anon_sym_BSLASHacl] = ACTIONS(5889), + [anon_sym_BSLASHAcl] = ACTIONS(5889), + [anon_sym_BSLASHaclp] = ACTIONS(5889), + [anon_sym_BSLASHAclp] = ACTIONS(5889), + [anon_sym_BSLASHacf] = ACTIONS(5889), + [anon_sym_BSLASHAcf] = ACTIONS(5889), + [anon_sym_BSLASHacfp] = ACTIONS(5889), + [anon_sym_BSLASHAcfp] = ACTIONS(5889), + [anon_sym_BSLASHac] = ACTIONS(5889), + [anon_sym_BSLASHAc] = ACTIONS(5889), + [anon_sym_BSLASHacp] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5889), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5889), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5889), + [anon_sym_BSLASHcolor] = ACTIONS(5889), + [anon_sym_BSLASHcolorbox] = ACTIONS(5889), + [anon_sym_BSLASHtextcolor] = ACTIONS(5889), + [anon_sym_BSLASHpagecolor] = ACTIONS(5889), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5889), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5889), + [anon_sym_BSLASHtext] = ACTIONS(5889), + [anon_sym_BSLASHintertext] = ACTIONS(5889), + [anon_sym_shortintertext] = ACTIONS(5889), + }, + [1157] = { + [sym_command_name] = ACTIONS(5885), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5885), + [anon_sym_LPAREN] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_BSLASHpart] = ACTIONS(5885), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddpart] = ACTIONS(5885), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHchapter] = ACTIONS(5885), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddchap] = ACTIONS(5885), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsection] = ACTIONS(5885), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddsec] = ACTIONS(5885), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHparagraph] = ACTIONS(5885), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5885), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHitem] = ACTIONS(5885), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(5883), + [sym_word] = ACTIONS(5885), + [sym_placeholder] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym__] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_SQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5883), + [anon_sym_BSLASHbegin] = ACTIONS(5885), + [anon_sym_BSLASHend] = ACTIONS(5885), + [anon_sym_BSLASHtitle] = ACTIONS(5885), + [anon_sym_BSLASHauthor] = ACTIONS(5885), + [anon_sym_BSLASHusepackage] = ACTIONS(5885), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5885), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5885), + [anon_sym_BSLASHinclude] = ACTIONS(5885), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5885), + [anon_sym_BSLASHinput] = ACTIONS(5885), + [anon_sym_BSLASHsubfile] = ACTIONS(5885), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5885), + [anon_sym_BSLASHbibliography] = ACTIONS(5885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5885), + [anon_sym_BSLASHincludesvg] = ACTIONS(5885), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5885), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5885), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5885), + [anon_sym_BSLASHimport] = ACTIONS(5885), + [anon_sym_BSLASHsubimport] = ACTIONS(5885), + [anon_sym_BSLASHinputfrom] = ACTIONS(5885), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5885), + [anon_sym_BSLASHincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHcaption] = ACTIONS(5885), + [anon_sym_BSLASHcite] = ACTIONS(5885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCite] = ACTIONS(5885), + [anon_sym_BSLASHnocite] = ACTIONS(5885), + [anon_sym_BSLASHcitet] = ACTIONS(5885), + [anon_sym_BSLASHcitep] = ACTIONS(5885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteauthor] = ACTIONS(5885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitetitle] = ACTIONS(5885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteyear] = ACTIONS(5885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitedate] = ACTIONS(5885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteurl] = ACTIONS(5885), + [anon_sym_BSLASHfullcite] = ACTIONS(5885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5885), + [anon_sym_BSLASHcitealt] = ACTIONS(5885), + [anon_sym_BSLASHcitealp] = ACTIONS(5885), + [anon_sym_BSLASHcitetext] = ACTIONS(5885), + [anon_sym_BSLASHparencite] = ACTIONS(5885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHParencite] = ACTIONS(5885), + [anon_sym_BSLASHfootcite] = ACTIONS(5885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5885), + [anon_sym_BSLASHtextcite] = ACTIONS(5885), + [anon_sym_BSLASHTextcite] = ACTIONS(5885), + [anon_sym_BSLASHsmartcite] = ACTIONS(5885), + [anon_sym_BSLASHSmartcite] = ACTIONS(5885), + [anon_sym_BSLASHsupercite] = ACTIONS(5885), + [anon_sym_BSLASHautocite] = ACTIONS(5885), + [anon_sym_BSLASHAutocite] = ACTIONS(5885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHvolcite] = ACTIONS(5885), + [anon_sym_BSLASHVolcite] = ACTIONS(5885), + [anon_sym_BSLASHpvolcite] = ACTIONS(5885), + [anon_sym_BSLASHPvolcite] = ACTIONS(5885), + [anon_sym_BSLASHfvolcite] = ACTIONS(5885), + [anon_sym_BSLASHftvolcite] = ACTIONS(5885), + [anon_sym_BSLASHsvolcite] = ACTIONS(5885), + [anon_sym_BSLASHSvolcite] = ACTIONS(5885), + [anon_sym_BSLASHtvolcite] = ACTIONS(5885), + [anon_sym_BSLASHTvolcite] = ACTIONS(5885), + [anon_sym_BSLASHavolcite] = ACTIONS(5885), + [anon_sym_BSLASHAvolcite] = ACTIONS(5885), + [anon_sym_BSLASHnotecite] = ACTIONS(5885), + [anon_sym_BSLASHNotecite] = ACTIONS(5885), + [anon_sym_BSLASHpnotecite] = ACTIONS(5885), + [anon_sym_BSLASHPnotecite] = ACTIONS(5885), + [anon_sym_BSLASHfnotecite] = ACTIONS(5885), + [anon_sym_BSLASHlabel] = ACTIONS(5885), + [anon_sym_BSLASHref] = ACTIONS(5885), + [anon_sym_BSLASHeqref] = ACTIONS(5885), + [anon_sym_BSLASHvref] = ACTIONS(5885), + [anon_sym_BSLASHVref] = ACTIONS(5885), + [anon_sym_BSLASHautoref] = ACTIONS(5885), + [anon_sym_BSLASHpageref] = ACTIONS(5885), + [anon_sym_BSLASHcref] = ACTIONS(5885), + [anon_sym_BSLASHCref] = ACTIONS(5885), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnameCref] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHlabelcref] = ACTIONS(5885), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCrefrange] = ACTIONS(5885), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnewlabel] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5885), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5885), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5885), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdef] = ACTIONS(5885), + [anon_sym_BSLASHlet] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5885), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5885), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5885), + [anon_sym_BSLASHgls] = ACTIONS(5885), + [anon_sym_BSLASHGls] = ACTIONS(5885), + [anon_sym_BSLASHGLS] = ACTIONS(5885), + [anon_sym_BSLASHglspl] = ACTIONS(5885), + [anon_sym_BSLASHGlspl] = ACTIONS(5885), + [anon_sym_BSLASHGLSpl] = ACTIONS(5885), + [anon_sym_BSLASHglsdisp] = ACTIONS(5885), + [anon_sym_BSLASHglslink] = ACTIONS(5885), + [anon_sym_BSLASHglstext] = ACTIONS(5885), + [anon_sym_BSLASHGlstext] = ACTIONS(5885), + [anon_sym_BSLASHGLStext] = ACTIONS(5885), + [anon_sym_BSLASHglsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5885), + [anon_sym_BSLASHglsplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSplural] = ACTIONS(5885), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHglsname] = ACTIONS(5885), + [anon_sym_BSLASHGlsname] = ACTIONS(5885), + [anon_sym_BSLASHGLSname] = ACTIONS(5885), + [anon_sym_BSLASHglssymbol] = ACTIONS(5885), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5885), + [anon_sym_BSLASHglsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5885), + [anon_sym_BSLASHglsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5885), + [anon_sym_BSLASHglsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5885), + [anon_sym_BSLASHglsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5885), + [anon_sym_BSLASHglsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5885), + [anon_sym_BSLASHnewacronym] = ACTIONS(5885), + [anon_sym_BSLASHacrshort] = ACTIONS(5885), + [anon_sym_BSLASHAcrshort] = ACTIONS(5885), + [anon_sym_BSLASHACRshort] = ACTIONS(5885), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5885), + [anon_sym_BSLASHacrlong] = ACTIONS(5885), + [anon_sym_BSLASHAcrlong] = ACTIONS(5885), + [anon_sym_BSLASHACRlong] = ACTIONS(5885), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5885), + [anon_sym_BSLASHacrfull] = ACTIONS(5885), + [anon_sym_BSLASHAcrfull] = ACTIONS(5885), + [anon_sym_BSLASHACRfull] = ACTIONS(5885), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5885), + [anon_sym_BSLASHacs] = ACTIONS(5885), + [anon_sym_BSLASHAcs] = ACTIONS(5885), + [anon_sym_BSLASHacsp] = ACTIONS(5885), + [anon_sym_BSLASHAcsp] = ACTIONS(5885), + [anon_sym_BSLASHacl] = ACTIONS(5885), + [anon_sym_BSLASHAcl] = ACTIONS(5885), + [anon_sym_BSLASHaclp] = ACTIONS(5885), + [anon_sym_BSLASHAclp] = ACTIONS(5885), + [anon_sym_BSLASHacf] = ACTIONS(5885), + [anon_sym_BSLASHAcf] = ACTIONS(5885), + [anon_sym_BSLASHacfp] = ACTIONS(5885), + [anon_sym_BSLASHAcfp] = ACTIONS(5885), + [anon_sym_BSLASHac] = ACTIONS(5885), + [anon_sym_BSLASHAc] = ACTIONS(5885), + [anon_sym_BSLASHacp] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5885), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5885), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5885), + [anon_sym_BSLASHcolor] = ACTIONS(5885), + [anon_sym_BSLASHcolorbox] = ACTIONS(5885), + [anon_sym_BSLASHtextcolor] = ACTIONS(5885), + [anon_sym_BSLASHpagecolor] = ACTIONS(5885), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5885), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5885), + [anon_sym_BSLASHtext] = ACTIONS(5885), + [anon_sym_BSLASHintertext] = ACTIONS(5885), + [anon_sym_shortintertext] = ACTIONS(5885), + }, + [1158] = { + [sym_command_name] = ACTIONS(5881), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5881), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_BSLASHpart] = ACTIONS(5881), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddpart] = ACTIONS(5881), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHchapter] = ACTIONS(5881), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddchap] = ACTIONS(5881), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsection] = ACTIONS(5881), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddsec] = ACTIONS(5881), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHparagraph] = ACTIONS(5881), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5881), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHitem] = ACTIONS(5881), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5879), + [anon_sym_LBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(5881), + [sym_placeholder] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym__] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_SQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5879), + [anon_sym_BSLASHbegin] = ACTIONS(5881), + [anon_sym_BSLASHend] = ACTIONS(5881), + [anon_sym_BSLASHtitle] = ACTIONS(5881), + [anon_sym_BSLASHauthor] = ACTIONS(5881), + [anon_sym_BSLASHusepackage] = ACTIONS(5881), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5881), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5881), + [anon_sym_BSLASHinclude] = ACTIONS(5881), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5881), + [anon_sym_BSLASHinput] = ACTIONS(5881), + [anon_sym_BSLASHsubfile] = ACTIONS(5881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5881), + [anon_sym_BSLASHbibliography] = ACTIONS(5881), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5881), + [anon_sym_BSLASHincludesvg] = ACTIONS(5881), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5881), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5881), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5881), + [anon_sym_BSLASHimport] = ACTIONS(5881), + [anon_sym_BSLASHsubimport] = ACTIONS(5881), + [anon_sym_BSLASHinputfrom] = ACTIONS(5881), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5881), + [anon_sym_BSLASHincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHcaption] = ACTIONS(5881), + [anon_sym_BSLASHcite] = ACTIONS(5881), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCite] = ACTIONS(5881), + [anon_sym_BSLASHnocite] = ACTIONS(5881), + [anon_sym_BSLASHcitet] = ACTIONS(5881), + [anon_sym_BSLASHcitep] = ACTIONS(5881), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteauthor] = ACTIONS(5881), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5881), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitetitle] = ACTIONS(5881), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteyear] = ACTIONS(5881), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitedate] = ACTIONS(5881), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteurl] = ACTIONS(5881), + [anon_sym_BSLASHfullcite] = ACTIONS(5881), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5881), + [anon_sym_BSLASHcitealt] = ACTIONS(5881), + [anon_sym_BSLASHcitealp] = ACTIONS(5881), + [anon_sym_BSLASHcitetext] = ACTIONS(5881), + [anon_sym_BSLASHparencite] = ACTIONS(5881), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHParencite] = ACTIONS(5881), + [anon_sym_BSLASHfootcite] = ACTIONS(5881), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5881), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5881), + [anon_sym_BSLASHtextcite] = ACTIONS(5881), + [anon_sym_BSLASHTextcite] = ACTIONS(5881), + [anon_sym_BSLASHsmartcite] = ACTIONS(5881), + [anon_sym_BSLASHSmartcite] = ACTIONS(5881), + [anon_sym_BSLASHsupercite] = ACTIONS(5881), + [anon_sym_BSLASHautocite] = ACTIONS(5881), + [anon_sym_BSLASHAutocite] = ACTIONS(5881), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHvolcite] = ACTIONS(5881), + [anon_sym_BSLASHVolcite] = ACTIONS(5881), + [anon_sym_BSLASHpvolcite] = ACTIONS(5881), + [anon_sym_BSLASHPvolcite] = ACTIONS(5881), + [anon_sym_BSLASHfvolcite] = ACTIONS(5881), + [anon_sym_BSLASHftvolcite] = ACTIONS(5881), + [anon_sym_BSLASHsvolcite] = ACTIONS(5881), + [anon_sym_BSLASHSvolcite] = ACTIONS(5881), + [anon_sym_BSLASHtvolcite] = ACTIONS(5881), + [anon_sym_BSLASHTvolcite] = ACTIONS(5881), + [anon_sym_BSLASHavolcite] = ACTIONS(5881), + [anon_sym_BSLASHAvolcite] = ACTIONS(5881), + [anon_sym_BSLASHnotecite] = ACTIONS(5881), + [anon_sym_BSLASHNotecite] = ACTIONS(5881), + [anon_sym_BSLASHpnotecite] = ACTIONS(5881), + [anon_sym_BSLASHPnotecite] = ACTIONS(5881), + [anon_sym_BSLASHfnotecite] = ACTIONS(5881), + [anon_sym_BSLASHlabel] = ACTIONS(5881), + [anon_sym_BSLASHref] = ACTIONS(5881), + [anon_sym_BSLASHeqref] = ACTIONS(5881), + [anon_sym_BSLASHvref] = ACTIONS(5881), + [anon_sym_BSLASHVref] = ACTIONS(5881), + [anon_sym_BSLASHautoref] = ACTIONS(5881), + [anon_sym_BSLASHpageref] = ACTIONS(5881), + [anon_sym_BSLASHcref] = ACTIONS(5881), + [anon_sym_BSLASHCref] = ACTIONS(5881), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnameCref] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHlabelcref] = ACTIONS(5881), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCrefrange] = ACTIONS(5881), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnewlabel] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5881), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5881), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5881), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdef] = ACTIONS(5881), + [anon_sym_BSLASHlet] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5881), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5881), + [anon_sym_BSLASHgls] = ACTIONS(5881), + [anon_sym_BSLASHGls] = ACTIONS(5881), + [anon_sym_BSLASHGLS] = ACTIONS(5881), + [anon_sym_BSLASHglspl] = ACTIONS(5881), + [anon_sym_BSLASHGlspl] = ACTIONS(5881), + [anon_sym_BSLASHGLSpl] = ACTIONS(5881), + [anon_sym_BSLASHglsdisp] = ACTIONS(5881), + [anon_sym_BSLASHglslink] = ACTIONS(5881), + [anon_sym_BSLASHglstext] = ACTIONS(5881), + [anon_sym_BSLASHGlstext] = ACTIONS(5881), + [anon_sym_BSLASHGLStext] = ACTIONS(5881), + [anon_sym_BSLASHglsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5881), + [anon_sym_BSLASHglsplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSplural] = ACTIONS(5881), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHglsname] = ACTIONS(5881), + [anon_sym_BSLASHGlsname] = ACTIONS(5881), + [anon_sym_BSLASHGLSname] = ACTIONS(5881), + [anon_sym_BSLASHglssymbol] = ACTIONS(5881), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5881), + [anon_sym_BSLASHglsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5881), + [anon_sym_BSLASHglsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5881), + [anon_sym_BSLASHglsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5881), + [anon_sym_BSLASHglsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5881), + [anon_sym_BSLASHglsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5881), + [anon_sym_BSLASHnewacronym] = ACTIONS(5881), + [anon_sym_BSLASHacrshort] = ACTIONS(5881), + [anon_sym_BSLASHAcrshort] = ACTIONS(5881), + [anon_sym_BSLASHACRshort] = ACTIONS(5881), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5881), + [anon_sym_BSLASHacrlong] = ACTIONS(5881), + [anon_sym_BSLASHAcrlong] = ACTIONS(5881), + [anon_sym_BSLASHACRlong] = ACTIONS(5881), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5881), + [anon_sym_BSLASHacrfull] = ACTIONS(5881), + [anon_sym_BSLASHAcrfull] = ACTIONS(5881), + [anon_sym_BSLASHACRfull] = ACTIONS(5881), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5881), + [anon_sym_BSLASHacs] = ACTIONS(5881), + [anon_sym_BSLASHAcs] = ACTIONS(5881), + [anon_sym_BSLASHacsp] = ACTIONS(5881), + [anon_sym_BSLASHAcsp] = ACTIONS(5881), + [anon_sym_BSLASHacl] = ACTIONS(5881), + [anon_sym_BSLASHAcl] = ACTIONS(5881), + [anon_sym_BSLASHaclp] = ACTIONS(5881), + [anon_sym_BSLASHAclp] = ACTIONS(5881), + [anon_sym_BSLASHacf] = ACTIONS(5881), + [anon_sym_BSLASHAcf] = ACTIONS(5881), + [anon_sym_BSLASHacfp] = ACTIONS(5881), + [anon_sym_BSLASHAcfp] = ACTIONS(5881), + [anon_sym_BSLASHac] = ACTIONS(5881), + [anon_sym_BSLASHAc] = ACTIONS(5881), + [anon_sym_BSLASHacp] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5881), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5881), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHcolor] = ACTIONS(5881), + [anon_sym_BSLASHcolorbox] = ACTIONS(5881), + [anon_sym_BSLASHtextcolor] = ACTIONS(5881), + [anon_sym_BSLASHpagecolor] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5881), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5881), + [anon_sym_BSLASHtext] = ACTIONS(5881), + [anon_sym_BSLASHintertext] = ACTIONS(5881), + [anon_sym_shortintertext] = ACTIONS(5881), + }, + [1159] = { + [sym_command_name] = ACTIONS(5853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5851), + [anon_sym_BSLASHpart] = ACTIONS(5853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddpart] = ACTIONS(5853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHchapter] = ACTIONS(5853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddchap] = ACTIONS(5853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsection] = ACTIONS(5853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddsec] = ACTIONS(5853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHparagraph] = ACTIONS(5853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHitem] = ACTIONS(5853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5851), + [anon_sym_LBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(5853), + [sym_placeholder] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym__] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_SQUOTE] = ACTIONS(5853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5851), + [anon_sym_DOLLAR] = ACTIONS(5853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5851), + [anon_sym_BSLASHbegin] = ACTIONS(5853), + [anon_sym_BSLASHend] = ACTIONS(5853), + [anon_sym_BSLASHtitle] = ACTIONS(5853), + [anon_sym_BSLASHauthor] = ACTIONS(5853), + [anon_sym_BSLASHusepackage] = ACTIONS(5853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5853), + [anon_sym_BSLASHinclude] = ACTIONS(5853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5853), + [anon_sym_BSLASHinput] = ACTIONS(5853), + [anon_sym_BSLASHsubfile] = ACTIONS(5853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5853), + [anon_sym_BSLASHbibliography] = ACTIONS(5853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5853), + [anon_sym_BSLASHincludesvg] = ACTIONS(5853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5853), + [anon_sym_BSLASHimport] = ACTIONS(5853), + [anon_sym_BSLASHsubimport] = ACTIONS(5853), + [anon_sym_BSLASHinputfrom] = ACTIONS(5853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5853), + [anon_sym_BSLASHincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHcaption] = ACTIONS(5853), + [anon_sym_BSLASHcite] = ACTIONS(5853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCite] = ACTIONS(5853), + [anon_sym_BSLASHnocite] = ACTIONS(5853), + [anon_sym_BSLASHcitet] = ACTIONS(5853), + [anon_sym_BSLASHcitep] = ACTIONS(5853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteauthor] = ACTIONS(5853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitetitle] = ACTIONS(5853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteyear] = ACTIONS(5853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitedate] = ACTIONS(5853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteurl] = ACTIONS(5853), + [anon_sym_BSLASHfullcite] = ACTIONS(5853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5853), + [anon_sym_BSLASHcitealt] = ACTIONS(5853), + [anon_sym_BSLASHcitealp] = ACTIONS(5853), + [anon_sym_BSLASHcitetext] = ACTIONS(5853), + [anon_sym_BSLASHparencite] = ACTIONS(5853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHParencite] = ACTIONS(5853), + [anon_sym_BSLASHfootcite] = ACTIONS(5853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5853), + [anon_sym_BSLASHtextcite] = ACTIONS(5853), + [anon_sym_BSLASHTextcite] = ACTIONS(5853), + [anon_sym_BSLASHsmartcite] = ACTIONS(5853), + [anon_sym_BSLASHSmartcite] = ACTIONS(5853), + [anon_sym_BSLASHsupercite] = ACTIONS(5853), + [anon_sym_BSLASHautocite] = ACTIONS(5853), + [anon_sym_BSLASHAutocite] = ACTIONS(5853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHvolcite] = ACTIONS(5853), + [anon_sym_BSLASHVolcite] = ACTIONS(5853), + [anon_sym_BSLASHpvolcite] = ACTIONS(5853), + [anon_sym_BSLASHPvolcite] = ACTIONS(5853), + [anon_sym_BSLASHfvolcite] = ACTIONS(5853), + [anon_sym_BSLASHftvolcite] = ACTIONS(5853), + [anon_sym_BSLASHsvolcite] = ACTIONS(5853), + [anon_sym_BSLASHSvolcite] = ACTIONS(5853), + [anon_sym_BSLASHtvolcite] = ACTIONS(5853), + [anon_sym_BSLASHTvolcite] = ACTIONS(5853), + [anon_sym_BSLASHavolcite] = ACTIONS(5853), + [anon_sym_BSLASHAvolcite] = ACTIONS(5853), + [anon_sym_BSLASHnotecite] = ACTIONS(5853), + [anon_sym_BSLASHNotecite] = ACTIONS(5853), + [anon_sym_BSLASHpnotecite] = ACTIONS(5853), + [anon_sym_BSLASHPnotecite] = ACTIONS(5853), + [anon_sym_BSLASHfnotecite] = ACTIONS(5853), + [anon_sym_BSLASHlabel] = ACTIONS(5853), + [anon_sym_BSLASHref] = ACTIONS(5853), + [anon_sym_BSLASHeqref] = ACTIONS(5853), + [anon_sym_BSLASHvref] = ACTIONS(5853), + [anon_sym_BSLASHVref] = ACTIONS(5853), + [anon_sym_BSLASHautoref] = ACTIONS(5853), + [anon_sym_BSLASHpageref] = ACTIONS(5853), + [anon_sym_BSLASHcref] = ACTIONS(5853), + [anon_sym_BSLASHCref] = ACTIONS(5853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnameCref] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHlabelcref] = ACTIONS(5853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCrefrange] = ACTIONS(5853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnewlabel] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdef] = ACTIONS(5853), + [anon_sym_BSLASHlet] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5853), + [anon_sym_BSLASHgls] = ACTIONS(5853), + [anon_sym_BSLASHGls] = ACTIONS(5853), + [anon_sym_BSLASHGLS] = ACTIONS(5853), + [anon_sym_BSLASHglspl] = ACTIONS(5853), + [anon_sym_BSLASHGlspl] = ACTIONS(5853), + [anon_sym_BSLASHGLSpl] = ACTIONS(5853), + [anon_sym_BSLASHglsdisp] = ACTIONS(5853), + [anon_sym_BSLASHglslink] = ACTIONS(5853), + [anon_sym_BSLASHglstext] = ACTIONS(5853), + [anon_sym_BSLASHGlstext] = ACTIONS(5853), + [anon_sym_BSLASHGLStext] = ACTIONS(5853), + [anon_sym_BSLASHglsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5853), + [anon_sym_BSLASHglsplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSplural] = ACTIONS(5853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHglsname] = ACTIONS(5853), + [anon_sym_BSLASHGlsname] = ACTIONS(5853), + [anon_sym_BSLASHGLSname] = ACTIONS(5853), + [anon_sym_BSLASHglssymbol] = ACTIONS(5853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5853), + [anon_sym_BSLASHglsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5853), + [anon_sym_BSLASHglsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5853), + [anon_sym_BSLASHglsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5853), + [anon_sym_BSLASHglsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5853), + [anon_sym_BSLASHglsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5853), + [anon_sym_BSLASHnewacronym] = ACTIONS(5853), + [anon_sym_BSLASHacrshort] = ACTIONS(5853), + [anon_sym_BSLASHAcrshort] = ACTIONS(5853), + [anon_sym_BSLASHACRshort] = ACTIONS(5853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5853), + [anon_sym_BSLASHacrlong] = ACTIONS(5853), + [anon_sym_BSLASHAcrlong] = ACTIONS(5853), + [anon_sym_BSLASHACRlong] = ACTIONS(5853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5853), + [anon_sym_BSLASHacrfull] = ACTIONS(5853), + [anon_sym_BSLASHAcrfull] = ACTIONS(5853), + [anon_sym_BSLASHACRfull] = ACTIONS(5853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5853), + [anon_sym_BSLASHacs] = ACTIONS(5853), + [anon_sym_BSLASHAcs] = ACTIONS(5853), + [anon_sym_BSLASHacsp] = ACTIONS(5853), + [anon_sym_BSLASHAcsp] = ACTIONS(5853), + [anon_sym_BSLASHacl] = ACTIONS(5853), + [anon_sym_BSLASHAcl] = ACTIONS(5853), + [anon_sym_BSLASHaclp] = ACTIONS(5853), + [anon_sym_BSLASHAclp] = ACTIONS(5853), + [anon_sym_BSLASHacf] = ACTIONS(5853), + [anon_sym_BSLASHAcf] = ACTIONS(5853), + [anon_sym_BSLASHacfp] = ACTIONS(5853), + [anon_sym_BSLASHAcfp] = ACTIONS(5853), + [anon_sym_BSLASHac] = ACTIONS(5853), + [anon_sym_BSLASHAc] = ACTIONS(5853), + [anon_sym_BSLASHacp] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5853), + [anon_sym_BSLASHcolor] = ACTIONS(5853), + [anon_sym_BSLASHcolorbox] = ACTIONS(5853), + [anon_sym_BSLASHtextcolor] = ACTIONS(5853), + [anon_sym_BSLASHpagecolor] = ACTIONS(5853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5853), + [anon_sym_BSLASHtext] = ACTIONS(5853), + [anon_sym_BSLASHintertext] = ACTIONS(5853), + [anon_sym_shortintertext] = ACTIONS(5853), + }, + [1160] = { + [sym_command_name] = ACTIONS(5833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5833), + [anon_sym_LPAREN] = ACTIONS(5831), + [anon_sym_RPAREN] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACK] = ACTIONS(5831), + [anon_sym_COMMA] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_BSLASHpart] = ACTIONS(5833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddpart] = ACTIONS(5833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHchapter] = ACTIONS(5833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddchap] = ACTIONS(5833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsection] = ACTIONS(5833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddsec] = ACTIONS(5833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHparagraph] = ACTIONS(5833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHitem] = ACTIONS(5833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5831), + [sym_word] = ACTIONS(5833), + [sym_placeholder] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5833), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5833), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym__] = ACTIONS(5833), + [anon_sym_LT] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_BANG] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5831), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5831), + [anon_sym_BSLASHbegin] = ACTIONS(5833), + [anon_sym_BSLASHend] = ACTIONS(5833), + [anon_sym_BSLASHtitle] = ACTIONS(5833), + [anon_sym_BSLASHauthor] = ACTIONS(5833), + [anon_sym_BSLASHusepackage] = ACTIONS(5833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5833), + [anon_sym_BSLASHinclude] = ACTIONS(5833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5833), + [anon_sym_BSLASHinput] = ACTIONS(5833), + [anon_sym_BSLASHsubfile] = ACTIONS(5833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5833), + [anon_sym_BSLASHbibliography] = ACTIONS(5833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5833), + [anon_sym_BSLASHincludesvg] = ACTIONS(5833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5833), + [anon_sym_BSLASHimport] = ACTIONS(5833), + [anon_sym_BSLASHsubimport] = ACTIONS(5833), + [anon_sym_BSLASHinputfrom] = ACTIONS(5833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5833), + [anon_sym_BSLASHincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHcaption] = ACTIONS(5833), + [anon_sym_BSLASHcite] = ACTIONS(5833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCite] = ACTIONS(5833), + [anon_sym_BSLASHnocite] = ACTIONS(5833), + [anon_sym_BSLASHcitet] = ACTIONS(5833), + [anon_sym_BSLASHcitep] = ACTIONS(5833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteauthor] = ACTIONS(5833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitetitle] = ACTIONS(5833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteyear] = ACTIONS(5833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitedate] = ACTIONS(5833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteurl] = ACTIONS(5833), + [anon_sym_BSLASHfullcite] = ACTIONS(5833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5833), + [anon_sym_BSLASHcitealt] = ACTIONS(5833), + [anon_sym_BSLASHcitealp] = ACTIONS(5833), + [anon_sym_BSLASHcitetext] = ACTIONS(5833), + [anon_sym_BSLASHparencite] = ACTIONS(5833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHParencite] = ACTIONS(5833), + [anon_sym_BSLASHfootcite] = ACTIONS(5833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5833), + [anon_sym_BSLASHtextcite] = ACTIONS(5833), + [anon_sym_BSLASHTextcite] = ACTIONS(5833), + [anon_sym_BSLASHsmartcite] = ACTIONS(5833), + [anon_sym_BSLASHSmartcite] = ACTIONS(5833), + [anon_sym_BSLASHsupercite] = ACTIONS(5833), + [anon_sym_BSLASHautocite] = ACTIONS(5833), + [anon_sym_BSLASHAutocite] = ACTIONS(5833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHvolcite] = ACTIONS(5833), + [anon_sym_BSLASHVolcite] = ACTIONS(5833), + [anon_sym_BSLASHpvolcite] = ACTIONS(5833), + [anon_sym_BSLASHPvolcite] = ACTIONS(5833), + [anon_sym_BSLASHfvolcite] = ACTIONS(5833), + [anon_sym_BSLASHftvolcite] = ACTIONS(5833), + [anon_sym_BSLASHsvolcite] = ACTIONS(5833), + [anon_sym_BSLASHSvolcite] = ACTIONS(5833), + [anon_sym_BSLASHtvolcite] = ACTIONS(5833), + [anon_sym_BSLASHTvolcite] = ACTIONS(5833), + [anon_sym_BSLASHavolcite] = ACTIONS(5833), + [anon_sym_BSLASHAvolcite] = ACTIONS(5833), + [anon_sym_BSLASHnotecite] = ACTIONS(5833), + [anon_sym_BSLASHNotecite] = ACTIONS(5833), + [anon_sym_BSLASHpnotecite] = ACTIONS(5833), + [anon_sym_BSLASHPnotecite] = ACTIONS(5833), + [anon_sym_BSLASHfnotecite] = ACTIONS(5833), + [anon_sym_BSLASHlabel] = ACTIONS(5833), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCrefrange] = ACTIONS(5833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnewlabel] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdef] = ACTIONS(5833), + [anon_sym_BSLASHlet] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5833), + [anon_sym_BSLASHgls] = ACTIONS(5833), + [anon_sym_BSLASHGls] = ACTIONS(5833), + [anon_sym_BSLASHGLS] = ACTIONS(5833), + [anon_sym_BSLASHglspl] = ACTIONS(5833), + [anon_sym_BSLASHGlspl] = ACTIONS(5833), + [anon_sym_BSLASHGLSpl] = ACTIONS(5833), + [anon_sym_BSLASHglsdisp] = ACTIONS(5833), + [anon_sym_BSLASHglslink] = ACTIONS(5833), + [anon_sym_BSLASHglstext] = ACTIONS(5833), + [anon_sym_BSLASHGlstext] = ACTIONS(5833), + [anon_sym_BSLASHGLStext] = ACTIONS(5833), + [anon_sym_BSLASHglsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5833), + [anon_sym_BSLASHglsplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSplural] = ACTIONS(5833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHglsname] = ACTIONS(5833), + [anon_sym_BSLASHGlsname] = ACTIONS(5833), + [anon_sym_BSLASHGLSname] = ACTIONS(5833), + [anon_sym_BSLASHglssymbol] = ACTIONS(5833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5833), + [anon_sym_BSLASHglsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5833), + [anon_sym_BSLASHglsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5833), + [anon_sym_BSLASHglsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5833), + [anon_sym_BSLASHglsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5833), + [anon_sym_BSLASHglsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5833), + [anon_sym_BSLASHnewacronym] = ACTIONS(5833), + [anon_sym_BSLASHacrshort] = ACTIONS(5833), + [anon_sym_BSLASHAcrshort] = ACTIONS(5833), + [anon_sym_BSLASHACRshort] = ACTIONS(5833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5833), + [anon_sym_BSLASHacrlong] = ACTIONS(5833), + [anon_sym_BSLASHAcrlong] = ACTIONS(5833), + [anon_sym_BSLASHACRlong] = ACTIONS(5833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5833), + [anon_sym_BSLASHacrfull] = ACTIONS(5833), + [anon_sym_BSLASHAcrfull] = ACTIONS(5833), + [anon_sym_BSLASHACRfull] = ACTIONS(5833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5833), + [anon_sym_BSLASHacs] = ACTIONS(5833), + [anon_sym_BSLASHAcs] = ACTIONS(5833), + [anon_sym_BSLASHacsp] = ACTIONS(5833), + [anon_sym_BSLASHAcsp] = ACTIONS(5833), + [anon_sym_BSLASHacl] = ACTIONS(5833), + [anon_sym_BSLASHAcl] = ACTIONS(5833), + [anon_sym_BSLASHaclp] = ACTIONS(5833), + [anon_sym_BSLASHAclp] = ACTIONS(5833), + [anon_sym_BSLASHacf] = ACTIONS(5833), + [anon_sym_BSLASHAcf] = ACTIONS(5833), + [anon_sym_BSLASHacfp] = ACTIONS(5833), + [anon_sym_BSLASHAcfp] = ACTIONS(5833), + [anon_sym_BSLASHac] = ACTIONS(5833), + [anon_sym_BSLASHAc] = ACTIONS(5833), + [anon_sym_BSLASHacp] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5833), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5833), + [anon_sym_BSLASHcolor] = ACTIONS(5833), + [anon_sym_BSLASHcolorbox] = ACTIONS(5833), + [anon_sym_BSLASHtextcolor] = ACTIONS(5833), + [anon_sym_BSLASHpagecolor] = ACTIONS(5833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5833), + [anon_sym_BSLASHtext] = ACTIONS(5833), + [anon_sym_BSLASHintertext] = ACTIONS(5833), + [anon_sym_shortintertext] = ACTIONS(5833), + }, + [1161] = { + [sym_command_name] = ACTIONS(5825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5825), + [anon_sym_LPAREN] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_BSLASHpart] = ACTIONS(5825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddpart] = ACTIONS(5825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHchapter] = ACTIONS(5825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddchap] = ACTIONS(5825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsection] = ACTIONS(5825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddsec] = ACTIONS(5825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHparagraph] = ACTIONS(5825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHitem] = ACTIONS(5825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [sym_placeholder] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym__] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_SQUOTE] = ACTIONS(5825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5823), + [anon_sym_DOLLAR] = ACTIONS(5825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5823), + [anon_sym_BSLASHbegin] = ACTIONS(5825), + [anon_sym_BSLASHend] = ACTIONS(5825), + [anon_sym_BSLASHtitle] = ACTIONS(5825), + [anon_sym_BSLASHauthor] = ACTIONS(5825), + [anon_sym_BSLASHusepackage] = ACTIONS(5825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5825), + [anon_sym_BSLASHinclude] = ACTIONS(5825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5825), + [anon_sym_BSLASHinput] = ACTIONS(5825), + [anon_sym_BSLASHsubfile] = ACTIONS(5825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5825), + [anon_sym_BSLASHbibliography] = ACTIONS(5825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5825), + [anon_sym_BSLASHincludesvg] = ACTIONS(5825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5825), + [anon_sym_BSLASHimport] = ACTIONS(5825), + [anon_sym_BSLASHsubimport] = ACTIONS(5825), + [anon_sym_BSLASHinputfrom] = ACTIONS(5825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5825), + [anon_sym_BSLASHincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHcaption] = ACTIONS(5825), + [anon_sym_BSLASHcite] = ACTIONS(5825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCite] = ACTIONS(5825), + [anon_sym_BSLASHnocite] = ACTIONS(5825), + [anon_sym_BSLASHcitet] = ACTIONS(5825), + [anon_sym_BSLASHcitep] = ACTIONS(5825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteauthor] = ACTIONS(5825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitetitle] = ACTIONS(5825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteyear] = ACTIONS(5825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitedate] = ACTIONS(5825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteurl] = ACTIONS(5825), + [anon_sym_BSLASHfullcite] = ACTIONS(5825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5825), + [anon_sym_BSLASHcitealt] = ACTIONS(5825), + [anon_sym_BSLASHcitealp] = ACTIONS(5825), + [anon_sym_BSLASHcitetext] = ACTIONS(5825), + [anon_sym_BSLASHparencite] = ACTIONS(5825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHParencite] = ACTIONS(5825), + [anon_sym_BSLASHfootcite] = ACTIONS(5825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5825), + [anon_sym_BSLASHtextcite] = ACTIONS(5825), + [anon_sym_BSLASHTextcite] = ACTIONS(5825), + [anon_sym_BSLASHsmartcite] = ACTIONS(5825), + [anon_sym_BSLASHSmartcite] = ACTIONS(5825), + [anon_sym_BSLASHsupercite] = ACTIONS(5825), + [anon_sym_BSLASHautocite] = ACTIONS(5825), + [anon_sym_BSLASHAutocite] = ACTIONS(5825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHvolcite] = ACTIONS(5825), + [anon_sym_BSLASHVolcite] = ACTIONS(5825), + [anon_sym_BSLASHpvolcite] = ACTIONS(5825), + [anon_sym_BSLASHPvolcite] = ACTIONS(5825), + [anon_sym_BSLASHfvolcite] = ACTIONS(5825), + [anon_sym_BSLASHftvolcite] = ACTIONS(5825), + [anon_sym_BSLASHsvolcite] = ACTIONS(5825), + [anon_sym_BSLASHSvolcite] = ACTIONS(5825), + [anon_sym_BSLASHtvolcite] = ACTIONS(5825), + [anon_sym_BSLASHTvolcite] = ACTIONS(5825), + [anon_sym_BSLASHavolcite] = ACTIONS(5825), + [anon_sym_BSLASHAvolcite] = ACTIONS(5825), + [anon_sym_BSLASHnotecite] = ACTIONS(5825), + [anon_sym_BSLASHNotecite] = ACTIONS(5825), + [anon_sym_BSLASHpnotecite] = ACTIONS(5825), + [anon_sym_BSLASHPnotecite] = ACTIONS(5825), + [anon_sym_BSLASHfnotecite] = ACTIONS(5825), + [anon_sym_BSLASHlabel] = ACTIONS(5825), + [anon_sym_BSLASHref] = ACTIONS(5825), + [anon_sym_BSLASHeqref] = ACTIONS(5825), + [anon_sym_BSLASHvref] = ACTIONS(5825), + [anon_sym_BSLASHVref] = ACTIONS(5825), + [anon_sym_BSLASHautoref] = ACTIONS(5825), + [anon_sym_BSLASHpageref] = ACTIONS(5825), + [anon_sym_BSLASHcref] = ACTIONS(5825), + [anon_sym_BSLASHCref] = ACTIONS(5825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnameCref] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHlabelcref] = ACTIONS(5825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCrefrange] = ACTIONS(5825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnewlabel] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdef] = ACTIONS(5825), + [anon_sym_BSLASHlet] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5825), + [anon_sym_BSLASHgls] = ACTIONS(5825), + [anon_sym_BSLASHGls] = ACTIONS(5825), + [anon_sym_BSLASHGLS] = ACTIONS(5825), + [anon_sym_BSLASHglspl] = ACTIONS(5825), + [anon_sym_BSLASHGlspl] = ACTIONS(5825), + [anon_sym_BSLASHGLSpl] = ACTIONS(5825), + [anon_sym_BSLASHglsdisp] = ACTIONS(5825), + [anon_sym_BSLASHglslink] = ACTIONS(5825), + [anon_sym_BSLASHglstext] = ACTIONS(5825), + [anon_sym_BSLASHGlstext] = ACTIONS(5825), + [anon_sym_BSLASHGLStext] = ACTIONS(5825), + [anon_sym_BSLASHglsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5825), + [anon_sym_BSLASHglsplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSplural] = ACTIONS(5825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHglsname] = ACTIONS(5825), + [anon_sym_BSLASHGlsname] = ACTIONS(5825), + [anon_sym_BSLASHGLSname] = ACTIONS(5825), + [anon_sym_BSLASHglssymbol] = ACTIONS(5825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5825), + [anon_sym_BSLASHglsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5825), + [anon_sym_BSLASHglsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5825), + [anon_sym_BSLASHglsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5825), + [anon_sym_BSLASHglsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5825), + [anon_sym_BSLASHglsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5825), + [anon_sym_BSLASHnewacronym] = ACTIONS(5825), + [anon_sym_BSLASHacrshort] = ACTIONS(5825), + [anon_sym_BSLASHAcrshort] = ACTIONS(5825), + [anon_sym_BSLASHACRshort] = ACTIONS(5825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5825), + [anon_sym_BSLASHacrlong] = ACTIONS(5825), + [anon_sym_BSLASHAcrlong] = ACTIONS(5825), + [anon_sym_BSLASHACRlong] = ACTIONS(5825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5825), + [anon_sym_BSLASHacrfull] = ACTIONS(5825), + [anon_sym_BSLASHAcrfull] = ACTIONS(5825), + [anon_sym_BSLASHACRfull] = ACTIONS(5825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5825), + [anon_sym_BSLASHacs] = ACTIONS(5825), + [anon_sym_BSLASHAcs] = ACTIONS(5825), + [anon_sym_BSLASHacsp] = ACTIONS(5825), + [anon_sym_BSLASHAcsp] = ACTIONS(5825), + [anon_sym_BSLASHacl] = ACTIONS(5825), + [anon_sym_BSLASHAcl] = ACTIONS(5825), + [anon_sym_BSLASHaclp] = ACTIONS(5825), + [anon_sym_BSLASHAclp] = ACTIONS(5825), + [anon_sym_BSLASHacf] = ACTIONS(5825), + [anon_sym_BSLASHAcf] = ACTIONS(5825), + [anon_sym_BSLASHacfp] = ACTIONS(5825), + [anon_sym_BSLASHAcfp] = ACTIONS(5825), + [anon_sym_BSLASHac] = ACTIONS(5825), + [anon_sym_BSLASHAc] = ACTIONS(5825), + [anon_sym_BSLASHacp] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5825), + [anon_sym_BSLASHcolor] = ACTIONS(5825), + [anon_sym_BSLASHcolorbox] = ACTIONS(5825), + [anon_sym_BSLASHtextcolor] = ACTIONS(5825), + [anon_sym_BSLASHpagecolor] = ACTIONS(5825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5825), + [anon_sym_BSLASHtext] = ACTIONS(5825), + [anon_sym_BSLASHintertext] = ACTIONS(5825), + [anon_sym_shortintertext] = ACTIONS(5825), + }, + [1162] = { + [sym_command_name] = ACTIONS(5819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5819), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_BSLASHpart] = ACTIONS(5819), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddpart] = ACTIONS(5819), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHchapter] = ACTIONS(5819), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddchap] = ACTIONS(5819), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsection] = ACTIONS(5819), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddsec] = ACTIONS(5819), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHparagraph] = ACTIONS(5819), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5819), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHitem] = ACTIONS(5819), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [sym_word] = ACTIONS(5819), + [sym_placeholder] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym__] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5819), + [anon_sym_SQUOTE] = ACTIONS(5819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5817), + [anon_sym_DOLLAR] = ACTIONS(5819), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5817), + [anon_sym_BSLASHbegin] = ACTIONS(5819), + [anon_sym_BSLASHend] = ACTIONS(5819), + [anon_sym_BSLASHtitle] = ACTIONS(5819), + [anon_sym_BSLASHauthor] = ACTIONS(5819), + [anon_sym_BSLASHusepackage] = ACTIONS(5819), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5819), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5819), + [anon_sym_BSLASHinclude] = ACTIONS(5819), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5819), + [anon_sym_BSLASHinput] = ACTIONS(5819), + [anon_sym_BSLASHsubfile] = ACTIONS(5819), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5819), + [anon_sym_BSLASHbibliography] = ACTIONS(5819), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5819), + [anon_sym_BSLASHincludesvg] = ACTIONS(5819), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5819), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5819), + [anon_sym_BSLASHimport] = ACTIONS(5819), + [anon_sym_BSLASHsubimport] = ACTIONS(5819), + [anon_sym_BSLASHinputfrom] = ACTIONS(5819), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5819), + [anon_sym_BSLASHincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHcaption] = ACTIONS(5819), + [anon_sym_BSLASHcite] = ACTIONS(5819), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCite] = ACTIONS(5819), + [anon_sym_BSLASHnocite] = ACTIONS(5819), + [anon_sym_BSLASHcitet] = ACTIONS(5819), + [anon_sym_BSLASHcitep] = ACTIONS(5819), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteauthor] = ACTIONS(5819), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5819), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitetitle] = ACTIONS(5819), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteyear] = ACTIONS(5819), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitedate] = ACTIONS(5819), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteurl] = ACTIONS(5819), + [anon_sym_BSLASHfullcite] = ACTIONS(5819), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5819), + [anon_sym_BSLASHcitealt] = ACTIONS(5819), + [anon_sym_BSLASHcitealp] = ACTIONS(5819), + [anon_sym_BSLASHcitetext] = ACTIONS(5819), + [anon_sym_BSLASHparencite] = ACTIONS(5819), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHParencite] = ACTIONS(5819), + [anon_sym_BSLASHfootcite] = ACTIONS(5819), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5819), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5819), + [anon_sym_BSLASHtextcite] = ACTIONS(5819), + [anon_sym_BSLASHTextcite] = ACTIONS(5819), + [anon_sym_BSLASHsmartcite] = ACTIONS(5819), + [anon_sym_BSLASHSmartcite] = ACTIONS(5819), + [anon_sym_BSLASHsupercite] = ACTIONS(5819), + [anon_sym_BSLASHautocite] = ACTIONS(5819), + [anon_sym_BSLASHAutocite] = ACTIONS(5819), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHvolcite] = ACTIONS(5819), + [anon_sym_BSLASHVolcite] = ACTIONS(5819), + [anon_sym_BSLASHpvolcite] = ACTIONS(5819), + [anon_sym_BSLASHPvolcite] = ACTIONS(5819), + [anon_sym_BSLASHfvolcite] = ACTIONS(5819), + [anon_sym_BSLASHftvolcite] = ACTIONS(5819), + [anon_sym_BSLASHsvolcite] = ACTIONS(5819), + [anon_sym_BSLASHSvolcite] = ACTIONS(5819), + [anon_sym_BSLASHtvolcite] = ACTIONS(5819), + [anon_sym_BSLASHTvolcite] = ACTIONS(5819), + [anon_sym_BSLASHavolcite] = ACTIONS(5819), + [anon_sym_BSLASHAvolcite] = ACTIONS(5819), + [anon_sym_BSLASHnotecite] = ACTIONS(5819), + [anon_sym_BSLASHNotecite] = ACTIONS(5819), + [anon_sym_BSLASHpnotecite] = ACTIONS(5819), + [anon_sym_BSLASHPnotecite] = ACTIONS(5819), + [anon_sym_BSLASHfnotecite] = ACTIONS(5819), + [anon_sym_BSLASHlabel] = ACTIONS(5819), + [anon_sym_BSLASHref] = ACTIONS(5819), + [anon_sym_BSLASHeqref] = ACTIONS(5819), + [anon_sym_BSLASHvref] = ACTIONS(5819), + [anon_sym_BSLASHVref] = ACTIONS(5819), + [anon_sym_BSLASHautoref] = ACTIONS(5819), + [anon_sym_BSLASHpageref] = ACTIONS(5819), + [anon_sym_BSLASHcref] = ACTIONS(5819), + [anon_sym_BSLASHCref] = ACTIONS(5819), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnameCref] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHlabelcref] = ACTIONS(5819), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCrefrange] = ACTIONS(5819), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnewlabel] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5819), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5819), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5819), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdef] = ACTIONS(5819), + [anon_sym_BSLASHlet] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5819), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5819), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5819), + [anon_sym_BSLASHgls] = ACTIONS(5819), + [anon_sym_BSLASHGls] = ACTIONS(5819), + [anon_sym_BSLASHGLS] = ACTIONS(5819), + [anon_sym_BSLASHglspl] = ACTIONS(5819), + [anon_sym_BSLASHGlspl] = ACTIONS(5819), + [anon_sym_BSLASHGLSpl] = ACTIONS(5819), + [anon_sym_BSLASHglsdisp] = ACTIONS(5819), + [anon_sym_BSLASHglslink] = ACTIONS(5819), + [anon_sym_BSLASHglstext] = ACTIONS(5819), + [anon_sym_BSLASHGlstext] = ACTIONS(5819), + [anon_sym_BSLASHGLStext] = ACTIONS(5819), + [anon_sym_BSLASHglsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5819), + [anon_sym_BSLASHglsplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSplural] = ACTIONS(5819), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHglsname] = ACTIONS(5819), + [anon_sym_BSLASHGlsname] = ACTIONS(5819), + [anon_sym_BSLASHGLSname] = ACTIONS(5819), + [anon_sym_BSLASHglssymbol] = ACTIONS(5819), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5819), + [anon_sym_BSLASHglsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5819), + [anon_sym_BSLASHglsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5819), + [anon_sym_BSLASHglsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5819), + [anon_sym_BSLASHglsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5819), + [anon_sym_BSLASHglsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5819), + [anon_sym_BSLASHnewacronym] = ACTIONS(5819), + [anon_sym_BSLASHacrshort] = ACTIONS(5819), + [anon_sym_BSLASHAcrshort] = ACTIONS(5819), + [anon_sym_BSLASHACRshort] = ACTIONS(5819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5819), + [anon_sym_BSLASHacrlong] = ACTIONS(5819), + [anon_sym_BSLASHAcrlong] = ACTIONS(5819), + [anon_sym_BSLASHACRlong] = ACTIONS(5819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5819), + [anon_sym_BSLASHacrfull] = ACTIONS(5819), + [anon_sym_BSLASHAcrfull] = ACTIONS(5819), + [anon_sym_BSLASHACRfull] = ACTIONS(5819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5819), + [anon_sym_BSLASHacs] = ACTIONS(5819), + [anon_sym_BSLASHAcs] = ACTIONS(5819), + [anon_sym_BSLASHacsp] = ACTIONS(5819), + [anon_sym_BSLASHAcsp] = ACTIONS(5819), + [anon_sym_BSLASHacl] = ACTIONS(5819), + [anon_sym_BSLASHAcl] = ACTIONS(5819), + [anon_sym_BSLASHaclp] = ACTIONS(5819), + [anon_sym_BSLASHAclp] = ACTIONS(5819), + [anon_sym_BSLASHacf] = ACTIONS(5819), + [anon_sym_BSLASHAcf] = ACTIONS(5819), + [anon_sym_BSLASHacfp] = ACTIONS(5819), + [anon_sym_BSLASHAcfp] = ACTIONS(5819), + [anon_sym_BSLASHac] = ACTIONS(5819), + [anon_sym_BSLASHAc] = ACTIONS(5819), + [anon_sym_BSLASHacp] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5819), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5819), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5819), + [anon_sym_BSLASHcolor] = ACTIONS(5819), + [anon_sym_BSLASHcolorbox] = ACTIONS(5819), + [anon_sym_BSLASHtextcolor] = ACTIONS(5819), + [anon_sym_BSLASHpagecolor] = ACTIONS(5819), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5819), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5819), + [anon_sym_BSLASHtext] = ACTIONS(5819), + [anon_sym_BSLASHintertext] = ACTIONS(5819), + [anon_sym_shortintertext] = ACTIONS(5819), + }, + [1163] = { + [sym_command_name] = ACTIONS(5933), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_BSLASHpart] = ACTIONS(5933), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddpart] = ACTIONS(5933), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHchapter] = ACTIONS(5933), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddchap] = ACTIONS(5933), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsection] = ACTIONS(5933), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddsec] = ACTIONS(5933), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHparagraph] = ACTIONS(5933), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5933), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHitem] = ACTIONS(5933), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), + [sym_word] = ACTIONS(5933), + [sym_placeholder] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym__] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_SQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5931), + [anon_sym_BSLASHbegin] = ACTIONS(5933), + [anon_sym_BSLASHend] = ACTIONS(5933), + [anon_sym_BSLASHtitle] = ACTIONS(5933), + [anon_sym_BSLASHauthor] = ACTIONS(5933), + [anon_sym_BSLASHusepackage] = ACTIONS(5933), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5933), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5933), + [anon_sym_BSLASHinclude] = ACTIONS(5933), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5933), + [anon_sym_BSLASHinput] = ACTIONS(5933), + [anon_sym_BSLASHsubfile] = ACTIONS(5933), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5933), + [anon_sym_BSLASHbibliography] = ACTIONS(5933), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5933), + [anon_sym_BSLASHincludesvg] = ACTIONS(5933), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5933), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5933), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5933), + [anon_sym_BSLASHimport] = ACTIONS(5933), + [anon_sym_BSLASHsubimport] = ACTIONS(5933), + [anon_sym_BSLASHinputfrom] = ACTIONS(5933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5933), + [anon_sym_BSLASHincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHcaption] = ACTIONS(5933), + [anon_sym_BSLASHcite] = ACTIONS(5933), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCite] = ACTIONS(5933), + [anon_sym_BSLASHnocite] = ACTIONS(5933), + [anon_sym_BSLASHcitet] = ACTIONS(5933), + [anon_sym_BSLASHcitep] = ACTIONS(5933), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteauthor] = ACTIONS(5933), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5933), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitetitle] = ACTIONS(5933), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteyear] = ACTIONS(5933), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitedate] = ACTIONS(5933), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteurl] = ACTIONS(5933), + [anon_sym_BSLASHfullcite] = ACTIONS(5933), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5933), + [anon_sym_BSLASHcitealt] = ACTIONS(5933), + [anon_sym_BSLASHcitealp] = ACTIONS(5933), + [anon_sym_BSLASHcitetext] = ACTIONS(5933), + [anon_sym_BSLASHparencite] = ACTIONS(5933), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHParencite] = ACTIONS(5933), + [anon_sym_BSLASHfootcite] = ACTIONS(5933), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5933), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5933), + [anon_sym_BSLASHtextcite] = ACTIONS(5933), + [anon_sym_BSLASHTextcite] = ACTIONS(5933), + [anon_sym_BSLASHsmartcite] = ACTIONS(5933), + [anon_sym_BSLASHSmartcite] = ACTIONS(5933), + [anon_sym_BSLASHsupercite] = ACTIONS(5933), + [anon_sym_BSLASHautocite] = ACTIONS(5933), + [anon_sym_BSLASHAutocite] = ACTIONS(5933), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHvolcite] = ACTIONS(5933), + [anon_sym_BSLASHVolcite] = ACTIONS(5933), + [anon_sym_BSLASHpvolcite] = ACTIONS(5933), + [anon_sym_BSLASHPvolcite] = ACTIONS(5933), + [anon_sym_BSLASHfvolcite] = ACTIONS(5933), + [anon_sym_BSLASHftvolcite] = ACTIONS(5933), + [anon_sym_BSLASHsvolcite] = ACTIONS(5933), + [anon_sym_BSLASHSvolcite] = ACTIONS(5933), + [anon_sym_BSLASHtvolcite] = ACTIONS(5933), + [anon_sym_BSLASHTvolcite] = ACTIONS(5933), + [anon_sym_BSLASHavolcite] = ACTIONS(5933), + [anon_sym_BSLASHAvolcite] = ACTIONS(5933), + [anon_sym_BSLASHnotecite] = ACTIONS(5933), + [anon_sym_BSLASHNotecite] = ACTIONS(5933), + [anon_sym_BSLASHpnotecite] = ACTIONS(5933), + [anon_sym_BSLASHPnotecite] = ACTIONS(5933), + [anon_sym_BSLASHfnotecite] = ACTIONS(5933), + [anon_sym_BSLASHlabel] = ACTIONS(5933), + [anon_sym_BSLASHref] = ACTIONS(5933), + [anon_sym_BSLASHeqref] = ACTIONS(5933), + [anon_sym_BSLASHvref] = ACTIONS(5933), + [anon_sym_BSLASHVref] = ACTIONS(5933), + [anon_sym_BSLASHautoref] = ACTIONS(5933), + [anon_sym_BSLASHpageref] = ACTIONS(5933), + [anon_sym_BSLASHcref] = ACTIONS(5933), + [anon_sym_BSLASHCref] = ACTIONS(5933), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnameCref] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHlabelcref] = ACTIONS(5933), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCrefrange] = ACTIONS(5933), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnewlabel] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5933), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5933), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5933), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdef] = ACTIONS(5933), + [anon_sym_BSLASHlet] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5933), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5933), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5933), + [anon_sym_BSLASHgls] = ACTIONS(5933), + [anon_sym_BSLASHGls] = ACTIONS(5933), + [anon_sym_BSLASHGLS] = ACTIONS(5933), + [anon_sym_BSLASHglspl] = ACTIONS(5933), + [anon_sym_BSLASHGlspl] = ACTIONS(5933), + [anon_sym_BSLASHGLSpl] = ACTIONS(5933), + [anon_sym_BSLASHglsdisp] = ACTIONS(5933), + [anon_sym_BSLASHglslink] = ACTIONS(5933), + [anon_sym_BSLASHglstext] = ACTIONS(5933), + [anon_sym_BSLASHGlstext] = ACTIONS(5933), + [anon_sym_BSLASHGLStext] = ACTIONS(5933), + [anon_sym_BSLASHglsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5933), + [anon_sym_BSLASHglsplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSplural] = ACTIONS(5933), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHglsname] = ACTIONS(5933), + [anon_sym_BSLASHGlsname] = ACTIONS(5933), + [anon_sym_BSLASHGLSname] = ACTIONS(5933), + [anon_sym_BSLASHglssymbol] = ACTIONS(5933), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5933), + [anon_sym_BSLASHglsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5933), + [anon_sym_BSLASHglsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5933), + [anon_sym_BSLASHglsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5933), + [anon_sym_BSLASHglsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5933), + [anon_sym_BSLASHglsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5933), + [anon_sym_BSLASHnewacronym] = ACTIONS(5933), + [anon_sym_BSLASHacrshort] = ACTIONS(5933), + [anon_sym_BSLASHAcrshort] = ACTIONS(5933), + [anon_sym_BSLASHACRshort] = ACTIONS(5933), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5933), + [anon_sym_BSLASHacrlong] = ACTIONS(5933), + [anon_sym_BSLASHAcrlong] = ACTIONS(5933), + [anon_sym_BSLASHACRlong] = ACTIONS(5933), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5933), + [anon_sym_BSLASHacrfull] = ACTIONS(5933), + [anon_sym_BSLASHAcrfull] = ACTIONS(5933), + [anon_sym_BSLASHACRfull] = ACTIONS(5933), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5933), + [anon_sym_BSLASHacs] = ACTIONS(5933), + [anon_sym_BSLASHAcs] = ACTIONS(5933), + [anon_sym_BSLASHacsp] = ACTIONS(5933), + [anon_sym_BSLASHAcsp] = ACTIONS(5933), + [anon_sym_BSLASHacl] = ACTIONS(5933), + [anon_sym_BSLASHAcl] = ACTIONS(5933), + [anon_sym_BSLASHaclp] = ACTIONS(5933), + [anon_sym_BSLASHAclp] = ACTIONS(5933), + [anon_sym_BSLASHacf] = ACTIONS(5933), + [anon_sym_BSLASHAcf] = ACTIONS(5933), + [anon_sym_BSLASHacfp] = ACTIONS(5933), + [anon_sym_BSLASHAcfp] = ACTIONS(5933), + [anon_sym_BSLASHac] = ACTIONS(5933), + [anon_sym_BSLASHAc] = ACTIONS(5933), + [anon_sym_BSLASHacp] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5933), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5933), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5933), + [anon_sym_BSLASHcolor] = ACTIONS(5933), + [anon_sym_BSLASHcolorbox] = ACTIONS(5933), + [anon_sym_BSLASHtextcolor] = ACTIONS(5933), + [anon_sym_BSLASHpagecolor] = ACTIONS(5933), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5933), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5933), + [anon_sym_BSLASHtext] = ACTIONS(5933), + [anon_sym_BSLASHintertext] = ACTIONS(5933), + [anon_sym_shortintertext] = ACTIONS(5933), + }, + [1164] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_BSLASHpart] = ACTIONS(5811), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddpart] = ACTIONS(5811), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHchapter] = ACTIONS(5811), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddchap] = ACTIONS(5811), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsection] = ACTIONS(5811), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddsec] = ACTIONS(5811), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHparagraph] = ACTIONS(5811), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5811), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHitem] = ACTIONS(5811), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHend] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), + }, + [1165] = { + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_BSLASHpart] = ACTIONS(6235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddpart] = ACTIONS(6235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHchapter] = ACTIONS(6235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddchap] = ACTIONS(6235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsection] = ACTIONS(6235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddsec] = ACTIONS(6235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHparagraph] = ACTIONS(6235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHitem] = ACTIONS(6235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), + }, + [1166] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHend] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [1167] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_BSLASHpart] = ACTIONS(6241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddpart] = ACTIONS(6241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHchapter] = ACTIONS(6241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddchap] = ACTIONS(6241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsection] = ACTIONS(6241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddsec] = ACTIONS(6241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHparagraph] = ACTIONS(6241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHitem] = ACTIONS(6241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [1168] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHend] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [1169] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_BSLASHpart] = ACTIONS(5803), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddpart] = ACTIONS(5803), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHchapter] = ACTIONS(5803), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddchap] = ACTIONS(5803), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsection] = ACTIONS(5803), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddsec] = ACTIONS(5803), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHparagraph] = ACTIONS(5803), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHitem] = ACTIONS(5803), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHend] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), + }, + [1170] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_BSLASHpart] = ACTIONS(5807), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddpart] = ACTIONS(5807), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHchapter] = ACTIONS(5807), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddchap] = ACTIONS(5807), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsection] = ACTIONS(5807), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddsec] = ACTIONS(5807), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHparagraph] = ACTIONS(5807), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5807), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHitem] = ACTIONS(5807), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHend] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1171] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_BSLASHpart] = ACTIONS(5837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddpart] = ACTIONS(5837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHchapter] = ACTIONS(5837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddchap] = ACTIONS(5837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsection] = ACTIONS(5837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddsec] = ACTIONS(5837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHparagraph] = ACTIONS(5837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHitem] = ACTIONS(5837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [1172] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_BSLASHpart] = ACTIONS(6245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddpart] = ACTIONS(6245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHchapter] = ACTIONS(6245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddchap] = ACTIONS(6245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsection] = ACTIONS(6245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddsec] = ACTIONS(6245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHparagraph] = ACTIONS(6245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHitem] = ACTIONS(6245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHend] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [1173] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_BSLASHpart] = ACTIONS(5969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddpart] = ACTIONS(5969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHchapter] = ACTIONS(5969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddchap] = ACTIONS(5969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsection] = ACTIONS(5969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddsec] = ACTIONS(5969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHparagraph] = ACTIONS(5969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHitem] = ACTIONS(5969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHend] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [1174] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_BSLASHpart] = ACTIONS(6003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddpart] = ACTIONS(6003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHchapter] = ACTIONS(6003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddchap] = ACTIONS(6003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsection] = ACTIONS(6003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddsec] = ACTIONS(6003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHparagraph] = ACTIONS(6003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHitem] = ACTIONS(6003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHend] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [1175] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_BSLASHpart] = ACTIONS(6007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddpart] = ACTIONS(6007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHchapter] = ACTIONS(6007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddchap] = ACTIONS(6007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsection] = ACTIONS(6007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddsec] = ACTIONS(6007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHparagraph] = ACTIONS(6007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHitem] = ACTIONS(6007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHend] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [1176] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_BSLASHpart] = ACTIONS(6011), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddpart] = ACTIONS(6011), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHchapter] = ACTIONS(6011), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddchap] = ACTIONS(6011), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsection] = ACTIONS(6011), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddsec] = ACTIONS(6011), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHparagraph] = ACTIONS(6011), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6011), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHitem] = ACTIONS(6011), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHend] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [1177] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_BSLASHpart] = ACTIONS(6021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddpart] = ACTIONS(6021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHchapter] = ACTIONS(6021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddchap] = ACTIONS(6021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsection] = ACTIONS(6021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddsec] = ACTIONS(6021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHparagraph] = ACTIONS(6021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHitem] = ACTIONS(6021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHend] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [1178] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_BSLASHpart] = ACTIONS(5791), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddpart] = ACTIONS(5791), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHchapter] = ACTIONS(5791), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddchap] = ACTIONS(5791), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsection] = ACTIONS(5791), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddsec] = ACTIONS(5791), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHparagraph] = ACTIONS(5791), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5791), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHitem] = ACTIONS(5791), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHend] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [1179] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_BSLASHpart] = ACTIONS(6053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddpart] = ACTIONS(6053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHchapter] = ACTIONS(6053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddchap] = ACTIONS(6053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsection] = ACTIONS(6053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddsec] = ACTIONS(6053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHparagraph] = ACTIONS(6053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHitem] = ACTIONS(6053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHend] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), + }, + [1180] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_BSLASHpart] = ACTIONS(6147), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddpart] = ACTIONS(6147), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHchapter] = ACTIONS(6147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddchap] = ACTIONS(6147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsection] = ACTIONS(6147), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddsec] = ACTIONS(6147), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHparagraph] = ACTIONS(6147), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6147), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHitem] = ACTIONS(6147), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHend] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [1181] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_BSLASHpart] = ACTIONS(6167), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddpart] = ACTIONS(6167), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHchapter] = ACTIONS(6167), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddchap] = ACTIONS(6167), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsection] = ACTIONS(6167), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddsec] = ACTIONS(6167), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHparagraph] = ACTIONS(6167), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHitem] = ACTIONS(6167), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHend] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [1182] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_BSLASHpart] = ACTIONS(6205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddpart] = ACTIONS(6205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHchapter] = ACTIONS(6205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddchap] = ACTIONS(6205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsection] = ACTIONS(6205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddsec] = ACTIONS(6205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHparagraph] = ACTIONS(6205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHitem] = ACTIONS(6205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHend] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), }, - [1415] = { - [sym_command_name] = ACTIONS(5423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(5421), - [anon_sym_COMMA] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_LBRACE] = ACTIONS(5421), - [sym_word] = ACTIONS(5423), - [sym_placeholder] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5423), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym__] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_BANG] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_SQUOTE] = ACTIONS(5423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5421), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5421), - [anon_sym_BSLASHbegin] = ACTIONS(5423), - [anon_sym_BSLASHusepackage] = ACTIONS(5423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5423), - [anon_sym_BSLASHinclude] = ACTIONS(5423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5423), - [anon_sym_BSLASHinput] = ACTIONS(5423), - [anon_sym_BSLASHsubfile] = ACTIONS(5423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5423), - [anon_sym_BSLASHbibliography] = ACTIONS(5423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5423), - [anon_sym_BSLASHincludesvg] = ACTIONS(5423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5423), - [anon_sym_BSLASHimport] = ACTIONS(5423), - [anon_sym_BSLASHsubimport] = ACTIONS(5423), - [anon_sym_BSLASHinputfrom] = ACTIONS(5423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5423), - [anon_sym_BSLASHincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5423), - [anon_sym_BSLASHcaption] = ACTIONS(5423), - [anon_sym_BSLASHcite] = ACTIONS(5423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCite] = ACTIONS(5423), - [anon_sym_BSLASHnocite] = ACTIONS(5423), - [anon_sym_BSLASHcitet] = ACTIONS(5423), - [anon_sym_BSLASHcitep] = ACTIONS(5423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteauthor] = ACTIONS(5423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitetitle] = ACTIONS(5423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteyear] = ACTIONS(5423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5421), - [anon_sym_BSLASHcitedate] = ACTIONS(5423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5421), - [anon_sym_BSLASHciteurl] = ACTIONS(5423), - [anon_sym_BSLASHfullcite] = ACTIONS(5423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5423), - [anon_sym_BSLASHcitealt] = ACTIONS(5423), - [anon_sym_BSLASHcitealp] = ACTIONS(5423), - [anon_sym_BSLASHcitetext] = ACTIONS(5423), - [anon_sym_BSLASHparencite] = ACTIONS(5423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHParencite] = ACTIONS(5423), - [anon_sym_BSLASHfootcite] = ACTIONS(5423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5423), - [anon_sym_BSLASHtextcite] = ACTIONS(5423), - [anon_sym_BSLASHTextcite] = ACTIONS(5423), - [anon_sym_BSLASHsmartcite] = ACTIONS(5423), - [anon_sym_BSLASHSmartcite] = ACTIONS(5423), - [anon_sym_BSLASHsupercite] = ACTIONS(5423), - [anon_sym_BSLASHautocite] = ACTIONS(5423), - [anon_sym_BSLASHAutocite] = ACTIONS(5423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5421), - [anon_sym_BSLASHvolcite] = ACTIONS(5423), - [anon_sym_BSLASHVolcite] = ACTIONS(5423), - [anon_sym_BSLASHpvolcite] = ACTIONS(5423), - [anon_sym_BSLASHPvolcite] = ACTIONS(5423), - [anon_sym_BSLASHfvolcite] = ACTIONS(5423), - [anon_sym_BSLASHftvolcite] = ACTIONS(5423), - [anon_sym_BSLASHsvolcite] = ACTIONS(5423), - [anon_sym_BSLASHSvolcite] = ACTIONS(5423), - [anon_sym_BSLASHtvolcite] = ACTIONS(5423), - [anon_sym_BSLASHTvolcite] = ACTIONS(5423), - [anon_sym_BSLASHavolcite] = ACTIONS(5423), - [anon_sym_BSLASHAvolcite] = ACTIONS(5423), - [anon_sym_BSLASHnotecite] = ACTIONS(5423), - [anon_sym_BSLASHNotecite] = ACTIONS(5423), - [anon_sym_BSLASHpnotecite] = ACTIONS(5423), - [anon_sym_BSLASHPnotecite] = ACTIONS(5423), - [anon_sym_BSLASHfnotecite] = ACTIONS(5423), - [anon_sym_BSLASHlabel] = ACTIONS(5423), - [anon_sym_BSLASHref] = ACTIONS(5423), - [anon_sym_BSLASHeqref] = ACTIONS(5423), - [anon_sym_BSLASHvref] = ACTIONS(5423), - [anon_sym_BSLASHVref] = ACTIONS(5423), - [anon_sym_BSLASHautoref] = ACTIONS(5423), - [anon_sym_BSLASHpageref] = ACTIONS(5423), - [anon_sym_BSLASHcref] = ACTIONS(5423), - [anon_sym_BSLASHCref] = ACTIONS(5423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnameCref] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5423), - [anon_sym_BSLASHlabelcref] = ACTIONS(5423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange] = ACTIONS(5423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHCrefrange] = ACTIONS(5423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5421), - [anon_sym_BSLASHnewlabel] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand] = ACTIONS(5423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdef] = ACTIONS(5423), - [anon_sym_BSLASHlet] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5423), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5423), - [anon_sym_BSLASHgls] = ACTIONS(5423), - [anon_sym_BSLASHGls] = ACTIONS(5423), - [anon_sym_BSLASHGLS] = ACTIONS(5423), - [anon_sym_BSLASHglspl] = ACTIONS(5423), - [anon_sym_BSLASHGlspl] = ACTIONS(5423), - [anon_sym_BSLASHGLSpl] = ACTIONS(5423), - [anon_sym_BSLASHglsdisp] = ACTIONS(5423), - [anon_sym_BSLASHglslink] = ACTIONS(5423), - [anon_sym_BSLASHglstext] = ACTIONS(5423), - [anon_sym_BSLASHGlstext] = ACTIONS(5423), - [anon_sym_BSLASHGLStext] = ACTIONS(5423), - [anon_sym_BSLASHglsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5423), - [anon_sym_BSLASHglsplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSplural] = ACTIONS(5423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5423), - [anon_sym_BSLASHglsname] = ACTIONS(5423), - [anon_sym_BSLASHGlsname] = ACTIONS(5423), - [anon_sym_BSLASHGLSname] = ACTIONS(5423), - [anon_sym_BSLASHglssymbol] = ACTIONS(5423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5423), - [anon_sym_BSLASHglsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5423), - [anon_sym_BSLASHglsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5423), - [anon_sym_BSLASHglsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5423), - [anon_sym_BSLASHglsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5423), - [anon_sym_BSLASHglsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5423), - [anon_sym_BSLASHnewacronym] = ACTIONS(5423), - [anon_sym_BSLASHacrshort] = ACTIONS(5423), - [anon_sym_BSLASHAcrshort] = ACTIONS(5423), - [anon_sym_BSLASHACRshort] = ACTIONS(5423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), - [anon_sym_BSLASHacrlong] = ACTIONS(5423), - [anon_sym_BSLASHAcrlong] = ACTIONS(5423), - [anon_sym_BSLASHACRlong] = ACTIONS(5423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), - [anon_sym_BSLASHacrfull] = ACTIONS(5423), - [anon_sym_BSLASHAcrfull] = ACTIONS(5423), - [anon_sym_BSLASHACRfull] = ACTIONS(5423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), - [anon_sym_BSLASHacs] = ACTIONS(5423), - [anon_sym_BSLASHAcs] = ACTIONS(5423), - [anon_sym_BSLASHacsp] = ACTIONS(5423), - [anon_sym_BSLASHAcsp] = ACTIONS(5423), - [anon_sym_BSLASHacl] = ACTIONS(5423), - [anon_sym_BSLASHAcl] = ACTIONS(5423), - [anon_sym_BSLASHaclp] = ACTIONS(5423), - [anon_sym_BSLASHAclp] = ACTIONS(5423), - [anon_sym_BSLASHacf] = ACTIONS(5423), - [anon_sym_BSLASHAcf] = ACTIONS(5423), - [anon_sym_BSLASHacfp] = ACTIONS(5423), - [anon_sym_BSLASHAcfp] = ACTIONS(5423), - [anon_sym_BSLASHac] = ACTIONS(5423), - [anon_sym_BSLASHAc] = ACTIONS(5423), - [anon_sym_BSLASHacp] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5423), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5423), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5421), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5423), - [anon_sym_BSLASHcolor] = ACTIONS(5423), - [anon_sym_BSLASHcolorbox] = ACTIONS(5423), - [anon_sym_BSLASHtextcolor] = ACTIONS(5423), - [anon_sym_BSLASHpagecolor] = ACTIONS(5423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5423), - [anon_sym_BSLASHtext] = ACTIONS(5423), - [anon_sym_BSLASHintertext] = ACTIONS(5423), - [anon_sym_shortintertext] = ACTIONS(5423), + [1183] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_BSLASHpart] = ACTIONS(6209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddpart] = ACTIONS(6209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHchapter] = ACTIONS(6209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddchap] = ACTIONS(6209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsection] = ACTIONS(6209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddsec] = ACTIONS(6209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHparagraph] = ACTIONS(6209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHitem] = ACTIONS(6209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHend] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), }, - [1416] = { - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_LBRACK] = ACTIONS(5417), - [anon_sym_RBRACK] = ACTIONS(5417), - [anon_sym_COMMA] = ACTIONS(5417), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_LBRACE] = ACTIONS(5417), - [sym_word] = ACTIONS(5419), - [sym_placeholder] = ACTIONS(5417), - [anon_sym_PLUS] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym__] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_BANG] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_SQUOTE] = ACTIONS(5419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(5419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5417), - [anon_sym_BSLASHbegin] = ACTIONS(5419), - [anon_sym_BSLASHusepackage] = ACTIONS(5419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5419), - [anon_sym_BSLASHinclude] = ACTIONS(5419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5419), - [anon_sym_BSLASHinput] = ACTIONS(5419), - [anon_sym_BSLASHsubfile] = ACTIONS(5419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5419), - [anon_sym_BSLASHbibliography] = ACTIONS(5419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5419), - [anon_sym_BSLASHincludesvg] = ACTIONS(5419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5419), - [anon_sym_BSLASHimport] = ACTIONS(5419), - [anon_sym_BSLASHsubimport] = ACTIONS(5419), - [anon_sym_BSLASHinputfrom] = ACTIONS(5419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5419), - [anon_sym_BSLASHincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5419), - [anon_sym_BSLASHcaption] = ACTIONS(5419), - [anon_sym_BSLASHcite] = ACTIONS(5419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCite] = ACTIONS(5419), - [anon_sym_BSLASHnocite] = ACTIONS(5419), - [anon_sym_BSLASHcitet] = ACTIONS(5419), - [anon_sym_BSLASHcitep] = ACTIONS(5419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteauthor] = ACTIONS(5419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitetitle] = ACTIONS(5419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteyear] = ACTIONS(5419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5417), - [anon_sym_BSLASHcitedate] = ACTIONS(5419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5417), - [anon_sym_BSLASHciteurl] = ACTIONS(5419), - [anon_sym_BSLASHfullcite] = ACTIONS(5419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5419), - [anon_sym_BSLASHcitealt] = ACTIONS(5419), - [anon_sym_BSLASHcitealp] = ACTIONS(5419), - [anon_sym_BSLASHcitetext] = ACTIONS(5419), - [anon_sym_BSLASHparencite] = ACTIONS(5419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHParencite] = ACTIONS(5419), - [anon_sym_BSLASHfootcite] = ACTIONS(5419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5419), - [anon_sym_BSLASHtextcite] = ACTIONS(5419), - [anon_sym_BSLASHTextcite] = ACTIONS(5419), - [anon_sym_BSLASHsmartcite] = ACTIONS(5419), - [anon_sym_BSLASHSmartcite] = ACTIONS(5419), - [anon_sym_BSLASHsupercite] = ACTIONS(5419), - [anon_sym_BSLASHautocite] = ACTIONS(5419), - [anon_sym_BSLASHAutocite] = ACTIONS(5419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5417), - [anon_sym_BSLASHvolcite] = ACTIONS(5419), - [anon_sym_BSLASHVolcite] = ACTIONS(5419), - [anon_sym_BSLASHpvolcite] = ACTIONS(5419), - [anon_sym_BSLASHPvolcite] = ACTIONS(5419), - [anon_sym_BSLASHfvolcite] = ACTIONS(5419), - [anon_sym_BSLASHftvolcite] = ACTIONS(5419), - [anon_sym_BSLASHsvolcite] = ACTIONS(5419), - [anon_sym_BSLASHSvolcite] = ACTIONS(5419), - [anon_sym_BSLASHtvolcite] = ACTIONS(5419), - [anon_sym_BSLASHTvolcite] = ACTIONS(5419), - [anon_sym_BSLASHavolcite] = ACTIONS(5419), - [anon_sym_BSLASHAvolcite] = ACTIONS(5419), - [anon_sym_BSLASHnotecite] = ACTIONS(5419), - [anon_sym_BSLASHNotecite] = ACTIONS(5419), - [anon_sym_BSLASHpnotecite] = ACTIONS(5419), - [anon_sym_BSLASHPnotecite] = ACTIONS(5419), - [anon_sym_BSLASHfnotecite] = ACTIONS(5419), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [anon_sym_BSLASHref] = ACTIONS(5419), - [anon_sym_BSLASHeqref] = ACTIONS(5419), - [anon_sym_BSLASHvref] = ACTIONS(5419), - [anon_sym_BSLASHVref] = ACTIONS(5419), - [anon_sym_BSLASHautoref] = ACTIONS(5419), - [anon_sym_BSLASHpageref] = ACTIONS(5419), - [anon_sym_BSLASHcref] = ACTIONS(5419), - [anon_sym_BSLASHCref] = ACTIONS(5419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnameCref] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5419), - [anon_sym_BSLASHlabelcref] = ACTIONS(5419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange] = ACTIONS(5419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHCrefrange] = ACTIONS(5419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5417), - [anon_sym_BSLASHnewlabel] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand] = ACTIONS(5419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdef] = ACTIONS(5419), - [anon_sym_BSLASHlet] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5419), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5419), - [anon_sym_BSLASHgls] = ACTIONS(5419), - [anon_sym_BSLASHGls] = ACTIONS(5419), - [anon_sym_BSLASHGLS] = ACTIONS(5419), - [anon_sym_BSLASHglspl] = ACTIONS(5419), - [anon_sym_BSLASHGlspl] = ACTIONS(5419), - [anon_sym_BSLASHGLSpl] = ACTIONS(5419), - [anon_sym_BSLASHglsdisp] = ACTIONS(5419), - [anon_sym_BSLASHglslink] = ACTIONS(5419), - [anon_sym_BSLASHglstext] = ACTIONS(5419), - [anon_sym_BSLASHGlstext] = ACTIONS(5419), - [anon_sym_BSLASHGLStext] = ACTIONS(5419), - [anon_sym_BSLASHglsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5419), - [anon_sym_BSLASHglsplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSplural] = ACTIONS(5419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5419), - [anon_sym_BSLASHglsname] = ACTIONS(5419), - [anon_sym_BSLASHGlsname] = ACTIONS(5419), - [anon_sym_BSLASHGLSname] = ACTIONS(5419), - [anon_sym_BSLASHglssymbol] = ACTIONS(5419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5419), - [anon_sym_BSLASHglsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5419), - [anon_sym_BSLASHglsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5419), - [anon_sym_BSLASHglsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5419), - [anon_sym_BSLASHglsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5419), - [anon_sym_BSLASHglsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5419), - [anon_sym_BSLASHnewacronym] = ACTIONS(5419), - [anon_sym_BSLASHacrshort] = ACTIONS(5419), - [anon_sym_BSLASHAcrshort] = ACTIONS(5419), - [anon_sym_BSLASHACRshort] = ACTIONS(5419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5419), - [anon_sym_BSLASHacrlong] = ACTIONS(5419), - [anon_sym_BSLASHAcrlong] = ACTIONS(5419), - [anon_sym_BSLASHACRlong] = ACTIONS(5419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5419), - [anon_sym_BSLASHacrfull] = ACTIONS(5419), - [anon_sym_BSLASHAcrfull] = ACTIONS(5419), - [anon_sym_BSLASHACRfull] = ACTIONS(5419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5419), - [anon_sym_BSLASHacs] = ACTIONS(5419), - [anon_sym_BSLASHAcs] = ACTIONS(5419), - [anon_sym_BSLASHacsp] = ACTIONS(5419), - [anon_sym_BSLASHAcsp] = ACTIONS(5419), - [anon_sym_BSLASHacl] = ACTIONS(5419), - [anon_sym_BSLASHAcl] = ACTIONS(5419), - [anon_sym_BSLASHaclp] = ACTIONS(5419), - [anon_sym_BSLASHAclp] = ACTIONS(5419), - [anon_sym_BSLASHacf] = ACTIONS(5419), - [anon_sym_BSLASHAcf] = ACTIONS(5419), - [anon_sym_BSLASHacfp] = ACTIONS(5419), - [anon_sym_BSLASHAcfp] = ACTIONS(5419), - [anon_sym_BSLASHac] = ACTIONS(5419), - [anon_sym_BSLASHAc] = ACTIONS(5419), - [anon_sym_BSLASHacp] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5419), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5419), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5417), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5419), - [anon_sym_BSLASHcolor] = ACTIONS(5419), - [anon_sym_BSLASHcolorbox] = ACTIONS(5419), - [anon_sym_BSLASHtextcolor] = ACTIONS(5419), - [anon_sym_BSLASHpagecolor] = ACTIONS(5419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5419), - [anon_sym_BSLASHtext] = ACTIONS(5419), - [anon_sym_BSLASHintertext] = ACTIONS(5419), - [anon_sym_shortintertext] = ACTIONS(5419), + [1184] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_BSLASHpart] = ACTIONS(6263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddpart] = ACTIONS(6263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHchapter] = ACTIONS(6263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddchap] = ACTIONS(6263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsection] = ACTIONS(6263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddsec] = ACTIONS(6263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHparagraph] = ACTIONS(6263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHitem] = ACTIONS(6263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHend] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), }, - [1417] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5411), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), - [anon_sym_BSLASHtext] = ACTIONS(5411), - [anon_sym_BSLASHintertext] = ACTIONS(5411), - [anon_sym_shortintertext] = ACTIONS(5411), + [1185] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_BSLASHpart] = ACTIONS(6249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddpart] = ACTIONS(6249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHchapter] = ACTIONS(6249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddchap] = ACTIONS(6249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsection] = ACTIONS(6249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddsec] = ACTIONS(6249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHparagraph] = ACTIONS(6249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHitem] = ACTIONS(6249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHend] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), }, - [1418] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5405), - [anon_sym_RPAREN] = ACTIONS(5405), - [anon_sym_LBRACK] = ACTIONS(5405), - [anon_sym_RBRACK] = ACTIONS(5405), - [anon_sym_COMMA] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_LBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5405), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5405), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5405), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5405), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5405), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5405), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5405), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5405), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5405), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5407), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5405), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - [anon_sym_BSLASHtext] = ACTIONS(5407), - [anon_sym_BSLASHintertext] = ACTIONS(5407), - [anon_sym_shortintertext] = ACTIONS(5407), + [1186] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_BSLASHpart] = ACTIONS(6253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddpart] = ACTIONS(6253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHchapter] = ACTIONS(6253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddchap] = ACTIONS(6253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsection] = ACTIONS(6253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddsec] = ACTIONS(6253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHparagraph] = ACTIONS(6253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHitem] = ACTIONS(6253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHend] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), }, - [1419] = { - [sym_command_name] = ACTIONS(5403), + [1187] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_BSLASHpart] = ACTIONS(6259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddpart] = ACTIONS(6259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHchapter] = ACTIONS(6259), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddchap] = ACTIONS(6259), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsection] = ACTIONS(6259), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddsec] = ACTIONS(6259), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHparagraph] = ACTIONS(6259), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6259), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHitem] = ACTIONS(6259), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHend] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [1188] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_BSLASHpart] = ACTIONS(5901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddpart] = ACTIONS(5901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHchapter] = ACTIONS(5901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddchap] = ACTIONS(5901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsection] = ACTIONS(5901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddsec] = ACTIONS(5901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHparagraph] = ACTIONS(5901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHend] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [1189] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_BSLASHpart] = ACTIONS(6069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddpart] = ACTIONS(6069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHchapter] = ACTIONS(6069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddchap] = ACTIONS(6069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsection] = ACTIONS(6069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddsec] = ACTIONS(6069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHparagraph] = ACTIONS(6069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHitem] = ACTIONS(6069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHend] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [1190] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_BSLASHpart] = ACTIONS(6219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddpart] = ACTIONS(6219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHchapter] = ACTIONS(6219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddchap] = ACTIONS(6219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsection] = ACTIONS(6219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddsec] = ACTIONS(6219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHparagraph] = ACTIONS(6219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHitem] = ACTIONS(6219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [1191] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_BSLASHpart] = ACTIONS(5975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddpart] = ACTIONS(5975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHchapter] = ACTIONS(5975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddchap] = ACTIONS(5975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsection] = ACTIONS(5975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddsec] = ACTIONS(5975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHparagraph] = ACTIONS(5975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHitem] = ACTIONS(5975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHend] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [1192] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_BSLASHpart] = ACTIONS(5965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddpart] = ACTIONS(5965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHchapter] = ACTIONS(5965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddchap] = ACTIONS(5965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsection] = ACTIONS(5965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddsec] = ACTIONS(5965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHparagraph] = ACTIONS(5965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHitem] = ACTIONS(5965), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHend] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [1193] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_BSLASHpart] = ACTIONS(5937), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddpart] = ACTIONS(5937), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHchapter] = ACTIONS(5937), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddchap] = ACTIONS(5937), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsection] = ACTIONS(5937), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddsec] = ACTIONS(5937), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHparagraph] = ACTIONS(5937), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5937), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHitem] = ACTIONS(5937), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHend] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), + }, + [1194] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_BSLASHpart] = ACTIONS(6201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddpart] = ACTIONS(6201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHchapter] = ACTIONS(6201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddchap] = ACTIONS(6201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsection] = ACTIONS(6201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddsec] = ACTIONS(6201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHparagraph] = ACTIONS(6201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHitem] = ACTIONS(6201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [1195] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_BSLASHpart] = ACTIONS(6189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddpart] = ACTIONS(6189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHchapter] = ACTIONS(6189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddchap] = ACTIONS(6189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsection] = ACTIONS(6189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddsec] = ACTIONS(6189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHparagraph] = ACTIONS(6189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHitem] = ACTIONS(6189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [1196] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_BSLASHpart] = ACTIONS(6175), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddpart] = ACTIONS(6175), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHchapter] = ACTIONS(6175), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddchap] = ACTIONS(6175), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsection] = ACTIONS(6175), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddsec] = ACTIONS(6175), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHparagraph] = ACTIONS(6175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6175), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHitem] = ACTIONS(6175), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [1197] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_BSLASHpart] = ACTIONS(6171), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddpart] = ACTIONS(6171), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHchapter] = ACTIONS(6171), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddchap] = ACTIONS(6171), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsection] = ACTIONS(6171), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddsec] = ACTIONS(6171), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHparagraph] = ACTIONS(6171), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6171), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHitem] = ACTIONS(6171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [1198] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_BSLASHpart] = ACTIONS(6163), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddpart] = ACTIONS(6163), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHchapter] = ACTIONS(6163), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddchap] = ACTIONS(6163), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsection] = ACTIONS(6163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddsec] = ACTIONS(6163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHparagraph] = ACTIONS(6163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6163), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHitem] = ACTIONS(6163), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [1199] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_BSLASHpart] = ACTIONS(6159), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddpart] = ACTIONS(6159), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHchapter] = ACTIONS(6159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddchap] = ACTIONS(6159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsection] = ACTIONS(6159), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddsec] = ACTIONS(6159), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHparagraph] = ACTIONS(6159), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6159), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHitem] = ACTIONS(6159), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), + }, + [1200] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_BSLASHpart] = ACTIONS(6151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddpart] = ACTIONS(6151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHchapter] = ACTIONS(6151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddchap] = ACTIONS(6151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsection] = ACTIONS(6151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddsec] = ACTIONS(6151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHparagraph] = ACTIONS(6151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHitem] = ACTIONS(6151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [1201] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_BSLASHpart] = ACTIONS(6139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddpart] = ACTIONS(6139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHchapter] = ACTIONS(6139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddchap] = ACTIONS(6139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsection] = ACTIONS(6139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddsec] = ACTIONS(6139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHparagraph] = ACTIONS(6139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHitem] = ACTIONS(6139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [1202] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_BSLASHpart] = ACTIONS(6135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddpart] = ACTIONS(6135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHchapter] = ACTIONS(6135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddchap] = ACTIONS(6135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsection] = ACTIONS(6135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddsec] = ACTIONS(6135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHparagraph] = ACTIONS(6135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHitem] = ACTIONS(6135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [1203] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_BSLASHpart] = ACTIONS(6093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddpart] = ACTIONS(6093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHchapter] = ACTIONS(6093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddchap] = ACTIONS(6093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsection] = ACTIONS(6093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddsec] = ACTIONS(6093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHparagraph] = ACTIONS(6093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHitem] = ACTIONS(6093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), + }, + [1204] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_BSLASHpart] = ACTIONS(6089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddpart] = ACTIONS(6089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHchapter] = ACTIONS(6089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddchap] = ACTIONS(6089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsection] = ACTIONS(6089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddsec] = ACTIONS(6089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHparagraph] = ACTIONS(6089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHitem] = ACTIONS(6089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), + }, + [1205] = { + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_BSLASHpart] = ACTIONS(6057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddpart] = ACTIONS(6057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHchapter] = ACTIONS(6057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddchap] = ACTIONS(6057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsection] = ACTIONS(6057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddsec] = ACTIONS(6057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHparagraph] = ACTIONS(6057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHitem] = ACTIONS(6057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), + }, + [1206] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_BSLASHpart] = ACTIONS(6047), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddpart] = ACTIONS(6047), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHchapter] = ACTIONS(6047), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddchap] = ACTIONS(6047), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsection] = ACTIONS(6047), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddsec] = ACTIONS(6047), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHparagraph] = ACTIONS(6047), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6047), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6047), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [1207] = { + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_BSLASHpart] = ACTIONS(6043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddpart] = ACTIONS(6043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHchapter] = ACTIONS(6043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddchap] = ACTIONS(6043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsection] = ACTIONS(6043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddsec] = ACTIONS(6043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHparagraph] = ACTIONS(6043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHitem] = ACTIONS(6043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), + }, + [1208] = { + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_BSLASHpart] = ACTIONS(6039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddpart] = ACTIONS(6039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHchapter] = ACTIONS(6039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddchap] = ACTIONS(6039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsection] = ACTIONS(6039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddsec] = ACTIONS(6039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHparagraph] = ACTIONS(6039), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6039), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHitem] = ACTIONS(6039), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), + }, + [1209] = { + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_BSLASHpart] = ACTIONS(6033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddpart] = ACTIONS(6033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHchapter] = ACTIONS(6033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddchap] = ACTIONS(6033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsection] = ACTIONS(6033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddsec] = ACTIONS(6033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHparagraph] = ACTIONS(6033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHitem] = ACTIONS(6033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), + }, + [1210] = { + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_BSLASHpart] = ACTIONS(6029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddpart] = ACTIONS(6029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHchapter] = ACTIONS(6029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddchap] = ACTIONS(6029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsection] = ACTIONS(6029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddsec] = ACTIONS(6029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHparagraph] = ACTIONS(6029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHitem] = ACTIONS(6029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), + }, + [1211] = { + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_BSLASHpart] = ACTIONS(6025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddpart] = ACTIONS(6025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHchapter] = ACTIONS(6025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddchap] = ACTIONS(6025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsection] = ACTIONS(6025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddsec] = ACTIONS(6025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHparagraph] = ACTIONS(6025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHitem] = ACTIONS(6025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), + }, + [1212] = { + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_BSLASHpart] = ACTIONS(6017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddpart] = ACTIONS(6017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHchapter] = ACTIONS(6017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddchap] = ACTIONS(6017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsection] = ACTIONS(6017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddsec] = ACTIONS(6017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHparagraph] = ACTIONS(6017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHitem] = ACTIONS(6017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), + }, + [1213] = { + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_BSLASHpart] = ACTIONS(5983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddpart] = ACTIONS(5983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHchapter] = ACTIONS(5983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddchap] = ACTIONS(5983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsection] = ACTIONS(5983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddsec] = ACTIONS(5983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHparagraph] = ACTIONS(5983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHitem] = ACTIONS(5983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), + }, + [1214] = { + [sym_command_name] = ACTIONS(6289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6289), + [anon_sym_LPAREN] = ACTIONS(6291), + [anon_sym_RPAREN] = ACTIONS(6291), + [anon_sym_LBRACK] = ACTIONS(6291), + [anon_sym_RBRACK] = ACTIONS(6291), + [anon_sym_COMMA] = ACTIONS(6291), + [anon_sym_EQ] = ACTIONS(6291), + [anon_sym_BSLASHpart] = ACTIONS(6289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), + [anon_sym_BSLASHaddpart] = ACTIONS(6289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), + [anon_sym_BSLASHchapter] = ACTIONS(6289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), + [anon_sym_BSLASHaddchap] = ACTIONS(6289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), + [anon_sym_BSLASHsection] = ACTIONS(6289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), + [anon_sym_BSLASHaddsec] = ACTIONS(6289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), + [anon_sym_BSLASHsubsection] = ACTIONS(6289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), + [anon_sym_BSLASHparagraph] = ACTIONS(6289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), + [anon_sym_BSLASHitem] = ACTIONS(6289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), + [anon_sym_LBRACE] = ACTIONS(6291), + [sym_word] = ACTIONS(6289), + [sym_placeholder] = ACTIONS(6291), + [anon_sym_PLUS] = ACTIONS(6289), + [anon_sym_DASH] = ACTIONS(6289), + [anon_sym_STAR] = ACTIONS(6289), + [anon_sym_SLASH] = ACTIONS(6289), + [anon_sym_CARET] = ACTIONS(6289), + [anon_sym__] = ACTIONS(6289), + [anon_sym_LT] = ACTIONS(6289), + [anon_sym_GT] = ACTIONS(6289), + [anon_sym_BANG] = ACTIONS(6289), + [anon_sym_PIPE] = ACTIONS(6289), + [anon_sym_COLON] = ACTIONS(6289), + [anon_sym_SQUOTE] = ACTIONS(6289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), + [anon_sym_DOLLAR] = ACTIONS(6289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6291), + [anon_sym_BSLASHbegin] = ACTIONS(6289), + [anon_sym_BSLASHend] = ACTIONS(6289), + [anon_sym_BSLASHtitle] = ACTIONS(6289), + [anon_sym_BSLASHauthor] = ACTIONS(6289), + [anon_sym_BSLASHusepackage] = ACTIONS(6289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), + [anon_sym_BSLASHinclude] = ACTIONS(6289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), + [anon_sym_BSLASHinput] = ACTIONS(6289), + [anon_sym_BSLASHsubfile] = ACTIONS(6289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), + [anon_sym_BSLASHbibliography] = ACTIONS(6289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), + [anon_sym_BSLASHincludesvg] = ACTIONS(6289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), + [anon_sym_BSLASHimport] = ACTIONS(6289), + [anon_sym_BSLASHsubimport] = ACTIONS(6289), + [anon_sym_BSLASHinputfrom] = ACTIONS(6289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), + [anon_sym_BSLASHincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHcaption] = ACTIONS(6289), + [anon_sym_BSLASHcite] = ACTIONS(6289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCite] = ACTIONS(6289), + [anon_sym_BSLASHnocite] = ACTIONS(6289), + [anon_sym_BSLASHcitet] = ACTIONS(6289), + [anon_sym_BSLASHcitep] = ACTIONS(6289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteauthor] = ACTIONS(6289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitetitle] = ACTIONS(6289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteyear] = ACTIONS(6289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitedate] = ACTIONS(6289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteurl] = ACTIONS(6289), + [anon_sym_BSLASHfullcite] = ACTIONS(6289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), + [anon_sym_BSLASHcitealt] = ACTIONS(6289), + [anon_sym_BSLASHcitealp] = ACTIONS(6289), + [anon_sym_BSLASHcitetext] = ACTIONS(6289), + [anon_sym_BSLASHparencite] = ACTIONS(6289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHParencite] = ACTIONS(6289), + [anon_sym_BSLASHfootcite] = ACTIONS(6289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), + [anon_sym_BSLASHtextcite] = ACTIONS(6289), + [anon_sym_BSLASHTextcite] = ACTIONS(6289), + [anon_sym_BSLASHsmartcite] = ACTIONS(6289), + [anon_sym_BSLASHSmartcite] = ACTIONS(6289), + [anon_sym_BSLASHsupercite] = ACTIONS(6289), + [anon_sym_BSLASHautocite] = ACTIONS(6289), + [anon_sym_BSLASHAutocite] = ACTIONS(6289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHvolcite] = ACTIONS(6289), + [anon_sym_BSLASHVolcite] = ACTIONS(6289), + [anon_sym_BSLASHpvolcite] = ACTIONS(6289), + [anon_sym_BSLASHPvolcite] = ACTIONS(6289), + [anon_sym_BSLASHfvolcite] = ACTIONS(6289), + [anon_sym_BSLASHftvolcite] = ACTIONS(6289), + [anon_sym_BSLASHsvolcite] = ACTIONS(6289), + [anon_sym_BSLASHSvolcite] = ACTIONS(6289), + [anon_sym_BSLASHtvolcite] = ACTIONS(6289), + [anon_sym_BSLASHTvolcite] = ACTIONS(6289), + [anon_sym_BSLASHavolcite] = ACTIONS(6289), + [anon_sym_BSLASHAvolcite] = ACTIONS(6289), + [anon_sym_BSLASHnotecite] = ACTIONS(6289), + [anon_sym_BSLASHNotecite] = ACTIONS(6289), + [anon_sym_BSLASHpnotecite] = ACTIONS(6289), + [anon_sym_BSLASHPnotecite] = ACTIONS(6289), + [anon_sym_BSLASHfnotecite] = ACTIONS(6289), + [anon_sym_BSLASHlabel] = ACTIONS(6289), + [anon_sym_BSLASHref] = ACTIONS(6289), + [anon_sym_BSLASHeqref] = ACTIONS(6289), + [anon_sym_BSLASHvref] = ACTIONS(6289), + [anon_sym_BSLASHVref] = ACTIONS(6289), + [anon_sym_BSLASHautoref] = ACTIONS(6289), + [anon_sym_BSLASHpageref] = ACTIONS(6289), + [anon_sym_BSLASHcref] = ACTIONS(6289), + [anon_sym_BSLASHCref] = ACTIONS(6289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnameCref] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHlabelcref] = ACTIONS(6289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCrefrange] = ACTIONS(6289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnewlabel] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdef] = ACTIONS(6289), + [anon_sym_BSLASHlet] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), + [anon_sym_BSLASHgls] = ACTIONS(6289), + [anon_sym_BSLASHGls] = ACTIONS(6289), + [anon_sym_BSLASHGLS] = ACTIONS(6289), + [anon_sym_BSLASHglspl] = ACTIONS(6289), + [anon_sym_BSLASHGlspl] = ACTIONS(6289), + [anon_sym_BSLASHGLSpl] = ACTIONS(6289), + [anon_sym_BSLASHglsdisp] = ACTIONS(6289), + [anon_sym_BSLASHglslink] = ACTIONS(6289), + [anon_sym_BSLASHglstext] = ACTIONS(6289), + [anon_sym_BSLASHGlstext] = ACTIONS(6289), + [anon_sym_BSLASHGLStext] = ACTIONS(6289), + [anon_sym_BSLASHglsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), + [anon_sym_BSLASHglsplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSplural] = ACTIONS(6289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHglsname] = ACTIONS(6289), + [anon_sym_BSLASHGlsname] = ACTIONS(6289), + [anon_sym_BSLASHGLSname] = ACTIONS(6289), + [anon_sym_BSLASHglssymbol] = ACTIONS(6289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), + [anon_sym_BSLASHglsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), + [anon_sym_BSLASHglsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), + [anon_sym_BSLASHglsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), + [anon_sym_BSLASHglsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), + [anon_sym_BSLASHglsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), + [anon_sym_BSLASHnewacronym] = ACTIONS(6289), + [anon_sym_BSLASHacrshort] = ACTIONS(6289), + [anon_sym_BSLASHAcrshort] = ACTIONS(6289), + [anon_sym_BSLASHACRshort] = ACTIONS(6289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), + [anon_sym_BSLASHacrlong] = ACTIONS(6289), + [anon_sym_BSLASHAcrlong] = ACTIONS(6289), + [anon_sym_BSLASHACRlong] = ACTIONS(6289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), + [anon_sym_BSLASHacrfull] = ACTIONS(6289), + [anon_sym_BSLASHAcrfull] = ACTIONS(6289), + [anon_sym_BSLASHACRfull] = ACTIONS(6289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), + [anon_sym_BSLASHacs] = ACTIONS(6289), + [anon_sym_BSLASHAcs] = ACTIONS(6289), + [anon_sym_BSLASHacsp] = ACTIONS(6289), + [anon_sym_BSLASHAcsp] = ACTIONS(6289), + [anon_sym_BSLASHacl] = ACTIONS(6289), + [anon_sym_BSLASHAcl] = ACTIONS(6289), + [anon_sym_BSLASHaclp] = ACTIONS(6289), + [anon_sym_BSLASHAclp] = ACTIONS(6289), + [anon_sym_BSLASHacf] = ACTIONS(6289), + [anon_sym_BSLASHAcf] = ACTIONS(6289), + [anon_sym_BSLASHacfp] = ACTIONS(6289), + [anon_sym_BSLASHAcfp] = ACTIONS(6289), + [anon_sym_BSLASHac] = ACTIONS(6289), + [anon_sym_BSLASHAc] = ACTIONS(6289), + [anon_sym_BSLASHacp] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), + [anon_sym_BSLASHcolor] = ACTIONS(6289), + [anon_sym_BSLASHcolorbox] = ACTIONS(6289), + [anon_sym_BSLASHtextcolor] = ACTIONS(6289), + [anon_sym_BSLASHpagecolor] = ACTIONS(6289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), + [anon_sym_BSLASHtext] = ACTIONS(6289), + [anon_sym_BSLASHintertext] = ACTIONS(6289), + [anon_sym_shortintertext] = ACTIONS(6289), + }, + [1215] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_BSLASHpart] = ACTIONS(5961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddpart] = ACTIONS(5961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHchapter] = ACTIONS(5961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddchap] = ACTIONS(5961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsection] = ACTIONS(5961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddsec] = ACTIONS(5961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHparagraph] = ACTIONS(5961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHitem] = ACTIONS(5961), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [1216] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_BSLASHpart] = ACTIONS(5957), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddpart] = ACTIONS(5957), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHchapter] = ACTIONS(5957), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddchap] = ACTIONS(5957), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsection] = ACTIONS(5957), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddsec] = ACTIONS(5957), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHparagraph] = ACTIONS(5957), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5957), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHitem] = ACTIONS(5957), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [1217] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_BSLASHpart] = ACTIONS(5953), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddpart] = ACTIONS(5953), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHchapter] = ACTIONS(5953), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddchap] = ACTIONS(5953), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsection] = ACTIONS(5953), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddsec] = ACTIONS(5953), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHparagraph] = ACTIONS(5953), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5953), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHitem] = ACTIONS(5953), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [1218] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_BSLASHpart] = ACTIONS(5945), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddpart] = ACTIONS(5945), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHchapter] = ACTIONS(5945), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddchap] = ACTIONS(5945), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsection] = ACTIONS(5945), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddsec] = ACTIONS(5945), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHparagraph] = ACTIONS(5945), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5945), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHitem] = ACTIONS(5945), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [1219] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_BSLASHpart] = ACTIONS(5941), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddpart] = ACTIONS(5941), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHchapter] = ACTIONS(5941), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddchap] = ACTIONS(5941), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsection] = ACTIONS(5941), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddsec] = ACTIONS(5941), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHparagraph] = ACTIONS(5941), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5941), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHitem] = ACTIONS(5941), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [1220] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_BSLASHpart] = ACTIONS(5923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddpart] = ACTIONS(5923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHchapter] = ACTIONS(5923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddchap] = ACTIONS(5923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsection] = ACTIONS(5923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddsec] = ACTIONS(5923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHparagraph] = ACTIONS(5923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHitem] = ACTIONS(5923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1221] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_BSLASHpart] = ACTIONS(5919), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddpart] = ACTIONS(5919), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHchapter] = ACTIONS(5919), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddchap] = ACTIONS(5919), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsection] = ACTIONS(5919), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddsec] = ACTIONS(5919), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHparagraph] = ACTIONS(5919), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5919), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHitem] = ACTIONS(5919), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1222] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_BSLASHpart] = ACTIONS(5911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddpart] = ACTIONS(5911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHchapter] = ACTIONS(5911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddchap] = ACTIONS(5911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsection] = ACTIONS(5911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddsec] = ACTIONS(5911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHparagraph] = ACTIONS(5911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHitem] = ACTIONS(5911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1223] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_BSLASHpart] = ACTIONS(5907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddpart] = ACTIONS(5907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHchapter] = ACTIONS(5907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddchap] = ACTIONS(5907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsection] = ACTIONS(5907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddsec] = ACTIONS(5907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHparagraph] = ACTIONS(5907), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5907), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHitem] = ACTIONS(5907), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1224] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_BSLASHpart] = ACTIONS(5979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddpart] = ACTIONS(5979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHchapter] = ACTIONS(5979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddchap] = ACTIONS(5979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsection] = ACTIONS(5979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddsec] = ACTIONS(5979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHparagraph] = ACTIONS(5979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHitem] = ACTIONS(5979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1225] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_BSLASHpart] = ACTIONS(5857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddpart] = ACTIONS(5857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHchapter] = ACTIONS(5857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddchap] = ACTIONS(5857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsection] = ACTIONS(5857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddsec] = ACTIONS(5857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHparagraph] = ACTIONS(5857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHitem] = ACTIONS(5857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1226] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_BSLASHpart] = ACTIONS(5845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddpart] = ACTIONS(5845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHchapter] = ACTIONS(5845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddchap] = ACTIONS(5845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsection] = ACTIONS(5845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddsec] = ACTIONS(5845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHparagraph] = ACTIONS(5845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHitem] = ACTIONS(5845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1227] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_BSLASHpart] = ACTIONS(5897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddpart] = ACTIONS(5897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHchapter] = ACTIONS(5897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddchap] = ACTIONS(5897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsection] = ACTIONS(5897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddsec] = ACTIONS(5897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHparagraph] = ACTIONS(5897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHitem] = ACTIONS(5897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1228] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2025), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5403), - [anon_sym_LPAREN] = ACTIONS(5401), - [anon_sym_RPAREN] = ACTIONS(5401), - [anon_sym_LBRACK] = ACTIONS(5401), - [anon_sym_RBRACK] = ACTIONS(5401), - [anon_sym_COMMA] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(5401), - [anon_sym_LBRACE] = ACTIONS(5401), - [sym_word] = ACTIONS(5403), - [sym_placeholder] = ACTIONS(5401), - [anon_sym_PLUS] = ACTIONS(5403), - [anon_sym_DASH] = ACTIONS(5403), - [anon_sym_STAR] = ACTIONS(5403), - [anon_sym_SLASH] = ACTIONS(5403), - [anon_sym_CARET] = ACTIONS(5403), - [anon_sym__] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5403), - [anon_sym_GT] = ACTIONS(5403), - [anon_sym_BANG] = ACTIONS(5403), - [anon_sym_PIPE] = ACTIONS(5403), - [anon_sym_COLON] = ACTIONS(5403), - [anon_sym_SQUOTE] = ACTIONS(5403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), - [anon_sym_DOLLAR] = ACTIONS(5403), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), - [anon_sym_BSLASHbegin] = ACTIONS(5403), - [anon_sym_BSLASHusepackage] = ACTIONS(5403), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), - [anon_sym_BSLASHinclude] = ACTIONS(5403), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), - [anon_sym_BSLASHinput] = ACTIONS(5403), - [anon_sym_BSLASHsubfile] = ACTIONS(5403), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), - [anon_sym_BSLASHbibliography] = ACTIONS(5403), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), - [anon_sym_BSLASHincludesvg] = ACTIONS(5403), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), - [anon_sym_BSLASHimport] = ACTIONS(5403), - [anon_sym_BSLASHsubimport] = ACTIONS(5403), - [anon_sym_BSLASHinputfrom] = ACTIONS(5403), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), - [anon_sym_BSLASHincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), - [anon_sym_BSLASHcaption] = ACTIONS(5403), - [anon_sym_BSLASHcite] = ACTIONS(5403), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCite] = ACTIONS(5403), - [anon_sym_BSLASHnocite] = ACTIONS(5403), - [anon_sym_BSLASHcitet] = ACTIONS(5403), - [anon_sym_BSLASHcitep] = ACTIONS(5403), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteauthor] = ACTIONS(5403), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitetitle] = ACTIONS(5403), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteyear] = ACTIONS(5403), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), - [anon_sym_BSLASHcitedate] = ACTIONS(5403), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), - [anon_sym_BSLASHciteurl] = ACTIONS(5403), - [anon_sym_BSLASHfullcite] = ACTIONS(5403), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), - [anon_sym_BSLASHcitealt] = ACTIONS(5403), - [anon_sym_BSLASHcitealp] = ACTIONS(5403), - [anon_sym_BSLASHcitetext] = ACTIONS(5403), - [anon_sym_BSLASHparencite] = ACTIONS(5403), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHParencite] = ACTIONS(5403), - [anon_sym_BSLASHfootcite] = ACTIONS(5403), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), - [anon_sym_BSLASHtextcite] = ACTIONS(5403), - [anon_sym_BSLASHTextcite] = ACTIONS(5403), - [anon_sym_BSLASHsmartcite] = ACTIONS(5403), - [anon_sym_BSLASHSmartcite] = ACTIONS(5403), - [anon_sym_BSLASHsupercite] = ACTIONS(5403), - [anon_sym_BSLASHautocite] = ACTIONS(5403), - [anon_sym_BSLASHAutocite] = ACTIONS(5403), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), - [anon_sym_BSLASHvolcite] = ACTIONS(5403), - [anon_sym_BSLASHVolcite] = ACTIONS(5403), - [anon_sym_BSLASHpvolcite] = ACTIONS(5403), - [anon_sym_BSLASHPvolcite] = ACTIONS(5403), - [anon_sym_BSLASHfvolcite] = ACTIONS(5403), - [anon_sym_BSLASHftvolcite] = ACTIONS(5403), - [anon_sym_BSLASHsvolcite] = ACTIONS(5403), - [anon_sym_BSLASHSvolcite] = ACTIONS(5403), - [anon_sym_BSLASHtvolcite] = ACTIONS(5403), - [anon_sym_BSLASHTvolcite] = ACTIONS(5403), - [anon_sym_BSLASHavolcite] = ACTIONS(5403), - [anon_sym_BSLASHAvolcite] = ACTIONS(5403), - [anon_sym_BSLASHnotecite] = ACTIONS(5403), - [anon_sym_BSLASHNotecite] = ACTIONS(5403), - [anon_sym_BSLASHpnotecite] = ACTIONS(5403), - [anon_sym_BSLASHPnotecite] = ACTIONS(5403), - [anon_sym_BSLASHfnotecite] = ACTIONS(5403), - [anon_sym_BSLASHlabel] = ACTIONS(5403), - [anon_sym_BSLASHref] = ACTIONS(5403), - [anon_sym_BSLASHeqref] = ACTIONS(5403), - [anon_sym_BSLASHvref] = ACTIONS(5403), - [anon_sym_BSLASHVref] = ACTIONS(5403), - [anon_sym_BSLASHautoref] = ACTIONS(5403), - [anon_sym_BSLASHpageref] = ACTIONS(5403), - [anon_sym_BSLASHcref] = ACTIONS(5403), - [anon_sym_BSLASHCref] = ACTIONS(5403), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnameCref] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), - [anon_sym_BSLASHlabelcref] = ACTIONS(5403), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange] = ACTIONS(5403), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHCrefrange] = ACTIONS(5403), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), - [anon_sym_BSLASHnewlabel] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand] = ACTIONS(5403), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdef] = ACTIONS(5403), - [anon_sym_BSLASHlet] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), - [anon_sym_BSLASHgls] = ACTIONS(5403), - [anon_sym_BSLASHGls] = ACTIONS(5403), - [anon_sym_BSLASHGLS] = ACTIONS(5403), - [anon_sym_BSLASHglspl] = ACTIONS(5403), - [anon_sym_BSLASHGlspl] = ACTIONS(5403), - [anon_sym_BSLASHGLSpl] = ACTIONS(5403), - [anon_sym_BSLASHglsdisp] = ACTIONS(5403), - [anon_sym_BSLASHglslink] = ACTIONS(5403), - [anon_sym_BSLASHglstext] = ACTIONS(5403), - [anon_sym_BSLASHGlstext] = ACTIONS(5403), - [anon_sym_BSLASHGLStext] = ACTIONS(5403), - [anon_sym_BSLASHglsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), - [anon_sym_BSLASHglsplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSplural] = ACTIONS(5403), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), - [anon_sym_BSLASHglsname] = ACTIONS(5403), - [anon_sym_BSLASHGlsname] = ACTIONS(5403), - [anon_sym_BSLASHGLSname] = ACTIONS(5403), - [anon_sym_BSLASHglssymbol] = ACTIONS(5403), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), - [anon_sym_BSLASHglsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), - [anon_sym_BSLASHglsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), - [anon_sym_BSLASHglsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), - [anon_sym_BSLASHglsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), - [anon_sym_BSLASHglsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), - [anon_sym_BSLASHnewacronym] = ACTIONS(5403), - [anon_sym_BSLASHacrshort] = ACTIONS(5403), - [anon_sym_BSLASHAcrshort] = ACTIONS(5403), - [anon_sym_BSLASHACRshort] = ACTIONS(5403), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), - [anon_sym_BSLASHacrlong] = ACTIONS(5403), - [anon_sym_BSLASHAcrlong] = ACTIONS(5403), - [anon_sym_BSLASHACRlong] = ACTIONS(5403), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), - [anon_sym_BSLASHacrfull] = ACTIONS(5403), - [anon_sym_BSLASHAcrfull] = ACTIONS(5403), - [anon_sym_BSLASHACRfull] = ACTIONS(5403), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), - [anon_sym_BSLASHacs] = ACTIONS(5403), - [anon_sym_BSLASHAcs] = ACTIONS(5403), - [anon_sym_BSLASHacsp] = ACTIONS(5403), - [anon_sym_BSLASHAcsp] = ACTIONS(5403), - [anon_sym_BSLASHacl] = ACTIONS(5403), - [anon_sym_BSLASHAcl] = ACTIONS(5403), - [anon_sym_BSLASHaclp] = ACTIONS(5403), - [anon_sym_BSLASHAclp] = ACTIONS(5403), - [anon_sym_BSLASHacf] = ACTIONS(5403), - [anon_sym_BSLASHAcf] = ACTIONS(5403), - [anon_sym_BSLASHacfp] = ACTIONS(5403), - [anon_sym_BSLASHAcfp] = ACTIONS(5403), - [anon_sym_BSLASHac] = ACTIONS(5403), - [anon_sym_BSLASHAc] = ACTIONS(5403), - [anon_sym_BSLASHacp] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), - [anon_sym_BSLASHcolor] = ACTIONS(5403), - [anon_sym_BSLASHcolorbox] = ACTIONS(5403), - [anon_sym_BSLASHtextcolor] = ACTIONS(5403), - [anon_sym_BSLASHpagecolor] = ACTIONS(5403), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), - [anon_sym_BSLASHtext] = ACTIONS(5403), - [anon_sym_BSLASHintertext] = ACTIONS(5403), - [anon_sym_shortintertext] = ACTIONS(5403), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6293), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1229] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_BSLASHpart] = ACTIONS(6065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddpart] = ACTIONS(6065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHchapter] = ACTIONS(6065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddchap] = ACTIONS(6065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsection] = ACTIONS(6065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddsec] = ACTIONS(6065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHparagraph] = ACTIONS(6065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHitem] = ACTIONS(6065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1230] = { + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_BSLASHpart] = ACTIONS(5927), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddpart] = ACTIONS(5927), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5925), + [anon_sym_BSLASHchapter] = ACTIONS(5927), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddchap] = ACTIONS(5927), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsection] = ACTIONS(5927), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHaddsec] = ACTIONS(5927), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5927), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5925), + [anon_sym_BSLASHparagraph] = ACTIONS(5927), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5927), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5925), + [anon_sym_BSLASHitem] = ACTIONS(5927), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHend] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), + }, + [1231] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2056), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2071), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1232] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_BSLASHpart] = ACTIONS(6073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddpart] = ACTIONS(6073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHchapter] = ACTIONS(6073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddchap] = ACTIONS(6073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsection] = ACTIONS(6073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddsec] = ACTIONS(6073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHparagraph] = ACTIONS(6073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHitem] = ACTIONS(6073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1233] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_BSLASHpart] = ACTIONS(6197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddpart] = ACTIONS(6197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHchapter] = ACTIONS(6197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddchap] = ACTIONS(6197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsection] = ACTIONS(6197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddsec] = ACTIONS(6197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHparagraph] = ACTIONS(6197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHitem] = ACTIONS(6197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1234] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_BSLASHpart] = ACTIONS(6267), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddpart] = ACTIONS(6267), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHchapter] = ACTIONS(6267), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddchap] = ACTIONS(6267), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsection] = ACTIONS(6267), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddsec] = ACTIONS(6267), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHparagraph] = ACTIONS(6267), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6267), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHitem] = ACTIONS(6267), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1235] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_BSLASHpart] = ACTIONS(5991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddpart] = ACTIONS(5991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHchapter] = ACTIONS(5991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddchap] = ACTIONS(5991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsection] = ACTIONS(5991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddsec] = ACTIONS(5991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHparagraph] = ACTIONS(5991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHitem] = ACTIONS(5991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1236] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_BSLASHpart] = ACTIONS(5987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddpart] = ACTIONS(5987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHchapter] = ACTIONS(5987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddchap] = ACTIONS(5987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsection] = ACTIONS(5987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddsec] = ACTIONS(5987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHparagraph] = ACTIONS(5987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHitem] = ACTIONS(5987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1237] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_BSLASHpart] = ACTIONS(6181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddpart] = ACTIONS(6181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), + [anon_sym_BSLASHchapter] = ACTIONS(6181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddchap] = ACTIONS(6181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsection] = ACTIONS(6181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHaddsec] = ACTIONS(6181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), + [anon_sym_BSLASHparagraph] = ACTIONS(6181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), + [anon_sym_BSLASHitem] = ACTIONS(6181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1238] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_BSLASHpart] = ACTIONS(5849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddpart] = ACTIONS(5849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHchapter] = ACTIONS(5849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddchap] = ACTIONS(5849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsection] = ACTIONS(5849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddsec] = ACTIONS(5849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHparagraph] = ACTIONS(5849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHitem] = ACTIONS(5849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1239] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_BSLASH_RBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [1240] = { + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_BSLASHpart] = ACTIONS(5861), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddpart] = ACTIONS(5861), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHchapter] = ACTIONS(5861), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddchap] = ACTIONS(5861), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsection] = ACTIONS(5861), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddsec] = ACTIONS(5861), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHparagraph] = ACTIONS(5861), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5861), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHitem] = ACTIONS(5861), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHend] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), + }, + [1241] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_BSLASHpart] = ACTIONS(5915), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddpart] = ACTIONS(5915), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHchapter] = ACTIONS(5915), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddchap] = ACTIONS(5915), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsection] = ACTIONS(5915), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddsec] = ACTIONS(5915), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHparagraph] = ACTIONS(5915), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5915), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHitem] = ACTIONS(5915), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHend] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1242] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_BSLASHpart] = ACTIONS(6061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddpart] = ACTIONS(6061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHchapter] = ACTIONS(6061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddchap] = ACTIONS(6061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsection] = ACTIONS(6061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddsec] = ACTIONS(6061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHparagraph] = ACTIONS(6061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHitem] = ACTIONS(6061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHend] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1243] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_BSLASHpart] = ACTIONS(6089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddpart] = ACTIONS(6089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6087), + [anon_sym_BSLASHchapter] = ACTIONS(6089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddchap] = ACTIONS(6089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsection] = ACTIONS(6089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHaddsec] = ACTIONS(6089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6087), + [anon_sym_BSLASHparagraph] = ACTIONS(6089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6087), + [anon_sym_BSLASHitem] = ACTIONS(6089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHend] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), + }, + [1244] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHend] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1245] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_BSLASHpart] = ACTIONS(5841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddpart] = ACTIONS(5841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHchapter] = ACTIONS(5841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddchap] = ACTIONS(5841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsection] = ACTIONS(5841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddsec] = ACTIONS(5841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHparagraph] = ACTIONS(5841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHitem] = ACTIONS(5841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHend] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), + }, + [1246] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(189), + [anon_sym_BSLASHchapter] = ACTIONS(191), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddchap] = ACTIONS(191), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(189), + [anon_sym_BSLASHsection] = ACTIONS(191), + [anon_sym_BSLASHsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHaddsec] = ACTIONS(191), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubsubsection] = ACTIONS(191), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(189), + [anon_sym_BSLASHparagraph] = ACTIONS(191), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHsubparagraph] = ACTIONS(191), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(189), + [anon_sym_BSLASHitem] = ACTIONS(191), + [anon_sym_BSLASHitem_STAR] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHend] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [1247] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_BSLASHpart] = ACTIONS(5849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddpart] = ACTIONS(5849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5847), + [anon_sym_BSLASHchapter] = ACTIONS(5849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddchap] = ACTIONS(5849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsection] = ACTIONS(5849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHaddsec] = ACTIONS(5849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5847), + [anon_sym_BSLASHparagraph] = ACTIONS(5849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5847), + [anon_sym_BSLASHitem] = ACTIONS(5849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHend] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1248] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_BSLASHpart] = ACTIONS(5815), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddpart] = ACTIONS(5815), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHchapter] = ACTIONS(5815), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddchap] = ACTIONS(5815), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsection] = ACTIONS(5815), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddsec] = ACTIONS(5815), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHparagraph] = ACTIONS(5815), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5815), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHitem] = ACTIONS(5815), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHend] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), + }, + [1249] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(175), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(175), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(175), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1250] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_BSLASHpart] = ACTIONS(5987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddpart] = ACTIONS(5987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), + [anon_sym_BSLASHchapter] = ACTIONS(5987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddchap] = ACTIONS(5987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsection] = ACTIONS(5987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHaddsec] = ACTIONS(5987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), + [anon_sym_BSLASHparagraph] = ACTIONS(5987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), + [anon_sym_BSLASHitem] = ACTIONS(5987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHend] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1251] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_BSLASHpart] = ACTIONS(5991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddpart] = ACTIONS(5991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5989), + [anon_sym_BSLASHchapter] = ACTIONS(5991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddchap] = ACTIONS(5991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsection] = ACTIONS(5991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHaddsec] = ACTIONS(5991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5989), + [anon_sym_BSLASHparagraph] = ACTIONS(5991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5989), + [anon_sym_BSLASHitem] = ACTIONS(5991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHend] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1252] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_BSLASHpart] = ACTIONS(6267), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddpart] = ACTIONS(6267), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6265), + [anon_sym_BSLASHchapter] = ACTIONS(6267), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddchap] = ACTIONS(6267), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsection] = ACTIONS(6267), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHaddsec] = ACTIONS(6267), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6265), + [anon_sym_BSLASHparagraph] = ACTIONS(6267), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6267), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6265), + [anon_sym_BSLASHitem] = ACTIONS(6267), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHend] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1253] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_BSLASHpart] = ACTIONS(6197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddpart] = ACTIONS(6197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), + [anon_sym_BSLASHchapter] = ACTIONS(6197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddchap] = ACTIONS(6197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsection] = ACTIONS(6197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHaddsec] = ACTIONS(6197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), + [anon_sym_BSLASHparagraph] = ACTIONS(6197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), + [anon_sym_BSLASHitem] = ACTIONS(6197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHend] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1254] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_BSLASHpart] = ACTIONS(6073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddpart] = ACTIONS(6073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6071), + [anon_sym_BSLASHchapter] = ACTIONS(6073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddchap] = ACTIONS(6073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsection] = ACTIONS(6073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHaddsec] = ACTIONS(6073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6071), + [anon_sym_BSLASHparagraph] = ACTIONS(6073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6071), + [anon_sym_BSLASHitem] = ACTIONS(6073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHend] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1255] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_BSLASHpart] = ACTIONS(6065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddpart] = ACTIONS(6065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6063), + [anon_sym_BSLASHchapter] = ACTIONS(6065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddchap] = ACTIONS(6065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsection] = ACTIONS(6065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHaddsec] = ACTIONS(6065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6063), + [anon_sym_BSLASHparagraph] = ACTIONS(6065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6063), + [anon_sym_BSLASHitem] = ACTIONS(6065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHend] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1256] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_BSLASHpart] = ACTIONS(5897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddpart] = ACTIONS(5897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5895), + [anon_sym_BSLASHchapter] = ACTIONS(5897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddchap] = ACTIONS(5897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsection] = ACTIONS(5897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHaddsec] = ACTIONS(5897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5895), + [anon_sym_BSLASHparagraph] = ACTIONS(5897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5895), + [anon_sym_BSLASHitem] = ACTIONS(5897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHend] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1257] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_BSLASHpart] = ACTIONS(5845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddpart] = ACTIONS(5845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5843), + [anon_sym_BSLASHchapter] = ACTIONS(5845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddchap] = ACTIONS(5845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsection] = ACTIONS(5845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHaddsec] = ACTIONS(5845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5843), + [anon_sym_BSLASHparagraph] = ACTIONS(5845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5843), + [anon_sym_BSLASHitem] = ACTIONS(5845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHend] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1258] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_BSLASHpart] = ACTIONS(5857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddpart] = ACTIONS(5857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5855), + [anon_sym_BSLASHchapter] = ACTIONS(5857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddchap] = ACTIONS(5857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsection] = ACTIONS(5857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHaddsec] = ACTIONS(5857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5855), + [anon_sym_BSLASHparagraph] = ACTIONS(5857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5855), + [anon_sym_BSLASHitem] = ACTIONS(5857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHend] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1259] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_BSLASHpart] = ACTIONS(5979), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddpart] = ACTIONS(5979), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5977), + [anon_sym_BSLASHchapter] = ACTIONS(5979), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddchap] = ACTIONS(5979), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsection] = ACTIONS(5979), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHaddsec] = ACTIONS(5979), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5979), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5977), + [anon_sym_BSLASHparagraph] = ACTIONS(5979), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5979), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5977), + [anon_sym_BSLASHitem] = ACTIONS(5979), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHend] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1260] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_BSLASHpart] = ACTIONS(5907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddpart] = ACTIONS(5907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5905), + [anon_sym_BSLASHchapter] = ACTIONS(5907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddchap] = ACTIONS(5907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsection] = ACTIONS(5907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHaddsec] = ACTIONS(5907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5907), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5905), + [anon_sym_BSLASHparagraph] = ACTIONS(5907), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5907), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5905), + [anon_sym_BSLASHitem] = ACTIONS(5907), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHend] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1261] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_BSLASHpart] = ACTIONS(5911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddpart] = ACTIONS(5911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5909), + [anon_sym_BSLASHchapter] = ACTIONS(5911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddchap] = ACTIONS(5911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsection] = ACTIONS(5911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHaddsec] = ACTIONS(5911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5909), + [anon_sym_BSLASHparagraph] = ACTIONS(5911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5909), + [anon_sym_BSLASHitem] = ACTIONS(5911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHend] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1262] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_BSLASHpart] = ACTIONS(5919), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddpart] = ACTIONS(5919), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5917), + [anon_sym_BSLASHchapter] = ACTIONS(5919), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddchap] = ACTIONS(5919), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsection] = ACTIONS(5919), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHaddsec] = ACTIONS(5919), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5919), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5917), + [anon_sym_BSLASHparagraph] = ACTIONS(5919), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5919), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5917), + [anon_sym_BSLASHitem] = ACTIONS(5919), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHend] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1263] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_BSLASHpart] = ACTIONS(5923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddpart] = ACTIONS(5923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5921), + [anon_sym_BSLASHchapter] = ACTIONS(5923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddchap] = ACTIONS(5923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsection] = ACTIONS(5923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHaddsec] = ACTIONS(5923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5921), + [anon_sym_BSLASHparagraph] = ACTIONS(5923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5921), + [anon_sym_BSLASHitem] = ACTIONS(5923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHend] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1264] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_BSLASHpart] = ACTIONS(5941), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddpart] = ACTIONS(5941), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5939), + [anon_sym_BSLASHchapter] = ACTIONS(5941), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddchap] = ACTIONS(5941), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsection] = ACTIONS(5941), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHaddsec] = ACTIONS(5941), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5941), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5939), + [anon_sym_BSLASHparagraph] = ACTIONS(5941), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5941), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), + [anon_sym_BSLASHitem] = ACTIONS(5941), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHend] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), }, - [1420] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), + [1265] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_BSLASHpart] = ACTIONS(5945), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddpart] = ACTIONS(5945), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5943), + [anon_sym_BSLASHchapter] = ACTIONS(5945), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddchap] = ACTIONS(5945), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsection] = ACTIONS(5945), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHaddsec] = ACTIONS(5945), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5945), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5943), + [anon_sym_BSLASHparagraph] = ACTIONS(5945), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5945), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5943), + [anon_sym_BSLASHitem] = ACTIONS(5945), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHend] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), }, - [1421] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), + [1266] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_BSLASHpart] = ACTIONS(5953), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddpart] = ACTIONS(5953), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5951), + [anon_sym_BSLASHchapter] = ACTIONS(5953), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddchap] = ACTIONS(5953), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsection] = ACTIONS(5953), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHaddsec] = ACTIONS(5953), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5953), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5951), + [anon_sym_BSLASHparagraph] = ACTIONS(5953), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5953), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5951), + [anon_sym_BSLASHitem] = ACTIONS(5953), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHend] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), }, - [1422] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), + [1267] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_BSLASHpart] = ACTIONS(5957), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddpart] = ACTIONS(5957), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5955), + [anon_sym_BSLASHchapter] = ACTIONS(5957), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddchap] = ACTIONS(5957), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsection] = ACTIONS(5957), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHaddsec] = ACTIONS(5957), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5957), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5955), + [anon_sym_BSLASHparagraph] = ACTIONS(5957), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5957), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5955), + [anon_sym_BSLASHitem] = ACTIONS(5957), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHend] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), }, - [1423] = { - [sym_command_name] = ACTIONS(5125), + [1268] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_BSLASHpart] = ACTIONS(5961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddpart] = ACTIONS(5961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5959), + [anon_sym_BSLASHchapter] = ACTIONS(5961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddchap] = ACTIONS(5961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsection] = ACTIONS(5961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHaddsec] = ACTIONS(5961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5959), + [anon_sym_BSLASHparagraph] = ACTIONS(5961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5959), + [anon_sym_BSLASHitem] = ACTIONS(5961), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHend] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [1269] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_BSLASHpart] = ACTIONS(6061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddpart] = ACTIONS(6061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), + [anon_sym_BSLASHchapter] = ACTIONS(6061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddchap] = ACTIONS(6061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsection] = ACTIONS(6061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHaddsec] = ACTIONS(6061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), + [anon_sym_BSLASHparagraph] = ACTIONS(6061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), + [anon_sym_BSLASHitem] = ACTIONS(6061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1270] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_BSLASHpart] = ACTIONS(5915), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddpart] = ACTIONS(5915), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5913), + [anon_sym_BSLASHchapter] = ACTIONS(5915), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddchap] = ACTIONS(5915), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsection] = ACTIONS(5915), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHaddsec] = ACTIONS(5915), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5915), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5913), + [anon_sym_BSLASHparagraph] = ACTIONS(5915), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5915), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5913), + [anon_sym_BSLASHitem] = ACTIONS(5915), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1271] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2059), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6295), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1424] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), + [1272] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_BSLASHpart] = ACTIONS(5937), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddpart] = ACTIONS(5937), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5935), + [anon_sym_BSLASHchapter] = ACTIONS(5937), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddchap] = ACTIONS(5937), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsection] = ACTIONS(5937), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHaddsec] = ACTIONS(5937), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5937), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5935), + [anon_sym_BSLASHparagraph] = ACTIONS(5937), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5937), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5935), + [anon_sym_BSLASHitem] = ACTIONS(5937), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), }, - [1425] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), + [1273] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_BSLASHpart] = ACTIONS(5965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddpart] = ACTIONS(5965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5963), + [anon_sym_BSLASHchapter] = ACTIONS(5965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddchap] = ACTIONS(5965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsection] = ACTIONS(5965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHaddsec] = ACTIONS(5965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5963), + [anon_sym_BSLASHparagraph] = ACTIONS(5965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5963), + [anon_sym_BSLASHitem] = ACTIONS(5965), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), }, - [1426] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), + [1274] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_BSLASHpart] = ACTIONS(5975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddpart] = ACTIONS(5975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5973), + [anon_sym_BSLASHchapter] = ACTIONS(5975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddchap] = ACTIONS(5975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsection] = ACTIONS(5975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHaddsec] = ACTIONS(5975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5973), + [anon_sym_BSLASHparagraph] = ACTIONS(5975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5973), + [anon_sym_BSLASHitem] = ACTIONS(5975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), }, - [1427] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), + [1275] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_BSLASHpart] = ACTIONS(6069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddpart] = ACTIONS(6069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6067), + [anon_sym_BSLASHchapter] = ACTIONS(6069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddchap] = ACTIONS(6069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsection] = ACTIONS(6069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHaddsec] = ACTIONS(6069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6067), + [anon_sym_BSLASHparagraph] = ACTIONS(6069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6067), + [anon_sym_BSLASHitem] = ACTIONS(6069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), }, - [1428] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), + [1276] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_BSLASHpart] = ACTIONS(5901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddpart] = ACTIONS(5901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5899), + [anon_sym_BSLASHchapter] = ACTIONS(5901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddchap] = ACTIONS(5901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsection] = ACTIONS(5901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHaddsec] = ACTIONS(5901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5899), + [anon_sym_BSLASHparagraph] = ACTIONS(5901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), }, - [1429] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), + [1277] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_BSLASHpart] = ACTIONS(6259), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddpart] = ACTIONS(6259), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6257), + [anon_sym_BSLASHchapter] = ACTIONS(6259), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddchap] = ACTIONS(6259), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsection] = ACTIONS(6259), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHaddsec] = ACTIONS(6259), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6259), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6257), + [anon_sym_BSLASHparagraph] = ACTIONS(6259), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6259), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6257), + [anon_sym_BSLASHitem] = ACTIONS(6259), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), }, - [1430] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), + [1278] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_BSLASHpart] = ACTIONS(6253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddpart] = ACTIONS(6253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), + [anon_sym_BSLASHchapter] = ACTIONS(6253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddchap] = ACTIONS(6253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsection] = ACTIONS(6253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHaddsec] = ACTIONS(6253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), + [anon_sym_BSLASHparagraph] = ACTIONS(6253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), + [anon_sym_BSLASHitem] = ACTIONS(6253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), }, - [1431] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), + [1279] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_BSLASHpart] = ACTIONS(6249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddpart] = ACTIONS(6249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), + [anon_sym_BSLASHchapter] = ACTIONS(6249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddchap] = ACTIONS(6249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsection] = ACTIONS(6249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHaddsec] = ACTIONS(6249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), + [anon_sym_BSLASHparagraph] = ACTIONS(6249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), + [anon_sym_BSLASHitem] = ACTIONS(6249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), }, - [1432] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), + [1280] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_BSLASHpart] = ACTIONS(6263), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddpart] = ACTIONS(6263), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6261), + [anon_sym_BSLASHchapter] = ACTIONS(6263), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddchap] = ACTIONS(6263), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsection] = ACTIONS(6263), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHaddsec] = ACTIONS(6263), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6263), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6261), + [anon_sym_BSLASHparagraph] = ACTIONS(6263), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6263), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6261), + [anon_sym_BSLASHitem] = ACTIONS(6263), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), }, - [1433] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), + [1281] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_BSLASHpart] = ACTIONS(6209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddpart] = ACTIONS(6209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), + [anon_sym_BSLASHchapter] = ACTIONS(6209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddchap] = ACTIONS(6209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsection] = ACTIONS(6209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHaddsec] = ACTIONS(6209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), + [anon_sym_BSLASHparagraph] = ACTIONS(6209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), + [anon_sym_BSLASHitem] = ACTIONS(6209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), }, - [1434] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHbegin] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), + [1282] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_BSLASHpart] = ACTIONS(6205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddpart] = ACTIONS(6205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), + [anon_sym_BSLASHchapter] = ACTIONS(6205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddchap] = ACTIONS(6205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsection] = ACTIONS(6205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHaddsec] = ACTIONS(6205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), + [anon_sym_BSLASHparagraph] = ACTIONS(6205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), + [anon_sym_BSLASHitem] = ACTIONS(6205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), }, - [1435] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), + [1283] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_BSLASHpart] = ACTIONS(6167), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddpart] = ACTIONS(6167), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6165), + [anon_sym_BSLASHchapter] = ACTIONS(6167), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddchap] = ACTIONS(6167), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsection] = ACTIONS(6167), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHaddsec] = ACTIONS(6167), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6167), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6165), + [anon_sym_BSLASHparagraph] = ACTIONS(6167), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6167), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6165), + [anon_sym_BSLASHitem] = ACTIONS(6167), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), }, - [1436] = { - [sym_brack_group_text] = STATE(1460), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5687), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), - [anon_sym_BSLASHtext] = ACTIONS(5045), - [anon_sym_BSLASHintertext] = ACTIONS(5045), - [anon_sym_shortintertext] = ACTIONS(5045), + [1284] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_BSLASHpart] = ACTIONS(6147), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddpart] = ACTIONS(6147), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6145), + [anon_sym_BSLASHchapter] = ACTIONS(6147), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddchap] = ACTIONS(6147), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsection] = ACTIONS(6147), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHaddsec] = ACTIONS(6147), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6147), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6145), + [anon_sym_BSLASHparagraph] = ACTIONS(6147), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6147), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6145), + [anon_sym_BSLASHitem] = ACTIONS(6147), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), }, - [1437] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), + [1285] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_BSLASHpart] = ACTIONS(6053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddpart] = ACTIONS(6053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), + [anon_sym_BSLASHchapter] = ACTIONS(6053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddchap] = ACTIONS(6053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsection] = ACTIONS(6053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHaddsec] = ACTIONS(6053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), + [anon_sym_BSLASHparagraph] = ACTIONS(6053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), + [anon_sym_BSLASHitem] = ACTIONS(6053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), }, - [1438] = { - [sym_command_name] = ACTIONS(5327), + [1286] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_BSLASHpart] = ACTIONS(5791), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddpart] = ACTIONS(5791), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5789), + [anon_sym_BSLASHchapter] = ACTIONS(5791), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddchap] = ACTIONS(5791), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsection] = ACTIONS(5791), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHaddsec] = ACTIONS(5791), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5789), + [anon_sym_BSLASHparagraph] = ACTIONS(5791), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5791), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5789), + [anon_sym_BSLASHitem] = ACTIONS(5791), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [1287] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_BSLASHpart] = ACTIONS(6021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddpart] = ACTIONS(6021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), + [anon_sym_BSLASHchapter] = ACTIONS(6021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddchap] = ACTIONS(6021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsection] = ACTIONS(6021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHaddsec] = ACTIONS(6021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), + [anon_sym_BSLASHparagraph] = ACTIONS(6021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), + [anon_sym_BSLASHitem] = ACTIONS(6021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [1288] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_BSLASHpart] = ACTIONS(6011), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddpart] = ACTIONS(6011), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6009), + [anon_sym_BSLASHchapter] = ACTIONS(6011), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddchap] = ACTIONS(6011), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsection] = ACTIONS(6011), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHaddsec] = ACTIONS(6011), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6011), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6009), + [anon_sym_BSLASHparagraph] = ACTIONS(6011), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6011), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6009), + [anon_sym_BSLASHitem] = ACTIONS(6011), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [1289] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_BSLASHpart] = ACTIONS(6007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddpart] = ACTIONS(6007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6005), + [anon_sym_BSLASHchapter] = ACTIONS(6007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddchap] = ACTIONS(6007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsection] = ACTIONS(6007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHaddsec] = ACTIONS(6007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6005), + [anon_sym_BSLASHparagraph] = ACTIONS(6007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6005), + [anon_sym_BSLASHitem] = ACTIONS(6007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [1290] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_BSLASHpart] = ACTIONS(6003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddpart] = ACTIONS(6003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), + [anon_sym_BSLASHchapter] = ACTIONS(6003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddchap] = ACTIONS(6003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsection] = ACTIONS(6003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHaddsec] = ACTIONS(6003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), + [anon_sym_BSLASHparagraph] = ACTIONS(6003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), + [anon_sym_BSLASHitem] = ACTIONS(6003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [1291] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_BSLASHpart] = ACTIONS(5969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddpart] = ACTIONS(5969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5967), + [anon_sym_BSLASHchapter] = ACTIONS(5969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddchap] = ACTIONS(5969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsection] = ACTIONS(5969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHaddsec] = ACTIONS(5969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5967), + [anon_sym_BSLASHparagraph] = ACTIONS(5969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5967), + [anon_sym_BSLASHitem] = ACTIONS(5969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [1292] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_BSLASHpart] = ACTIONS(6245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddpart] = ACTIONS(6245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), + [anon_sym_BSLASHchapter] = ACTIONS(6245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddchap] = ACTIONS(6245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsection] = ACTIONS(6245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHaddsec] = ACTIONS(6245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), + [anon_sym_BSLASHparagraph] = ACTIONS(6245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), + [anon_sym_BSLASHitem] = ACTIONS(6245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [1293] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_BSLASHpart] = ACTIONS(5807), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddpart] = ACTIONS(5807), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5805), + [anon_sym_BSLASHchapter] = ACTIONS(5807), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddchap] = ACTIONS(5807), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsection] = ACTIONS(5807), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHaddsec] = ACTIONS(5807), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5807), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5805), + [anon_sym_BSLASHparagraph] = ACTIONS(5807), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5807), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5805), + [anon_sym_BSLASHitem] = ACTIONS(5807), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1294] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_BSLASHpart] = ACTIONS(5803), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddpart] = ACTIONS(5803), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5801), + [anon_sym_BSLASHchapter] = ACTIONS(5803), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddchap] = ACTIONS(5803), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsection] = ACTIONS(5803), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHaddsec] = ACTIONS(5803), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5803), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5801), + [anon_sym_BSLASHparagraph] = ACTIONS(5803), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5801), + [anon_sym_BSLASHitem] = ACTIONS(5803), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), + }, + [1295] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_BSLASHpart] = ACTIONS(185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddpart] = ACTIONS(185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(183), + [anon_sym_BSLASHchapter] = ACTIONS(185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddchap] = ACTIONS(185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(183), + [anon_sym_BSLASHsection] = ACTIONS(185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHaddsec] = ACTIONS(185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(183), + [anon_sym_BSLASHparagraph] = ACTIONS(185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(183), + [anon_sym_BSLASHitem] = ACTIONS(185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_BSLASH_RBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [1296] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2075), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHbegin] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(6297), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1439] = { - [sym_command_name] = ACTIONS(5467), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_LPAREN] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5465), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_LBRACE] = ACTIONS(5465), - [anon_sym_RBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5465), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5465), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - [anon_sym_BSLASHtext] = ACTIONS(5467), - [anon_sym_BSLASHintertext] = ACTIONS(5467), - [anon_sym_shortintertext] = ACTIONS(5467), + [1297] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_BSLASHpart] = ACTIONS(181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddpart] = ACTIONS(181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(179), + [anon_sym_BSLASHchapter] = ACTIONS(181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddchap] = ACTIONS(181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(179), + [anon_sym_BSLASHsection] = ACTIONS(181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHaddsec] = ACTIONS(181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(179), + [anon_sym_BSLASHparagraph] = ACTIONS(181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [1440] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - [anon_sym_BSLASHtext] = ACTIONS(5225), - [anon_sym_BSLASHintertext] = ACTIONS(5225), - [anon_sym_shortintertext] = ACTIONS(5225), + [1298] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_BSLASHpart] = ACTIONS(5811), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddpart] = ACTIONS(5811), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5809), + [anon_sym_BSLASHchapter] = ACTIONS(5811), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddchap] = ACTIONS(5811), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsection] = ACTIONS(5811), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHaddsec] = ACTIONS(5811), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5811), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5809), + [anon_sym_BSLASHparagraph] = ACTIONS(5811), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5811), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5809), + [anon_sym_BSLASHitem] = ACTIONS(5811), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), }, - [1441] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - [anon_sym_BSLASHtext] = ACTIONS(5061), - [anon_sym_BSLASHintertext] = ACTIONS(5061), - [anon_sym_shortintertext] = ACTIONS(5061), + [1299] = { + [sym_command_name] = ACTIONS(5933), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_BSLASHpart] = ACTIONS(5933), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddpart] = ACTIONS(5933), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5931), + [anon_sym_BSLASHchapter] = ACTIONS(5933), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddchap] = ACTIONS(5933), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsection] = ACTIONS(5933), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHaddsec] = ACTIONS(5933), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5933), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5931), + [anon_sym_BSLASHparagraph] = ACTIONS(5933), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5933), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5931), + [anon_sym_BSLASHitem] = ACTIONS(5933), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(5931), + [sym_word] = ACTIONS(5933), + [sym_placeholder] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym__] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_SQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5931), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5931), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5931), + [anon_sym_BSLASHbegin] = ACTIONS(5933), + [anon_sym_BSLASHtitle] = ACTIONS(5933), + [anon_sym_BSLASHauthor] = ACTIONS(5933), + [anon_sym_BSLASHusepackage] = ACTIONS(5933), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5933), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5933), + [anon_sym_BSLASHinclude] = ACTIONS(5933), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5933), + [anon_sym_BSLASHinput] = ACTIONS(5933), + [anon_sym_BSLASHsubfile] = ACTIONS(5933), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5933), + [anon_sym_BSLASHbibliography] = ACTIONS(5933), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5933), + [anon_sym_BSLASHincludesvg] = ACTIONS(5933), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5933), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5933), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5933), + [anon_sym_BSLASHimport] = ACTIONS(5933), + [anon_sym_BSLASHsubimport] = ACTIONS(5933), + [anon_sym_BSLASHinputfrom] = ACTIONS(5933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5933), + [anon_sym_BSLASHincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5933), + [anon_sym_BSLASHcaption] = ACTIONS(5933), + [anon_sym_BSLASHcite] = ACTIONS(5933), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCite] = ACTIONS(5933), + [anon_sym_BSLASHnocite] = ACTIONS(5933), + [anon_sym_BSLASHcitet] = ACTIONS(5933), + [anon_sym_BSLASHcitep] = ACTIONS(5933), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteauthor] = ACTIONS(5933), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5933), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitetitle] = ACTIONS(5933), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteyear] = ACTIONS(5933), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5931), + [anon_sym_BSLASHcitedate] = ACTIONS(5933), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5931), + [anon_sym_BSLASHciteurl] = ACTIONS(5933), + [anon_sym_BSLASHfullcite] = ACTIONS(5933), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5933), + [anon_sym_BSLASHcitealt] = ACTIONS(5933), + [anon_sym_BSLASHcitealp] = ACTIONS(5933), + [anon_sym_BSLASHcitetext] = ACTIONS(5933), + [anon_sym_BSLASHparencite] = ACTIONS(5933), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHParencite] = ACTIONS(5933), + [anon_sym_BSLASHfootcite] = ACTIONS(5933), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5933), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5933), + [anon_sym_BSLASHtextcite] = ACTIONS(5933), + [anon_sym_BSLASHTextcite] = ACTIONS(5933), + [anon_sym_BSLASHsmartcite] = ACTIONS(5933), + [anon_sym_BSLASHSmartcite] = ACTIONS(5933), + [anon_sym_BSLASHsupercite] = ACTIONS(5933), + [anon_sym_BSLASHautocite] = ACTIONS(5933), + [anon_sym_BSLASHAutocite] = ACTIONS(5933), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5931), + [anon_sym_BSLASHvolcite] = ACTIONS(5933), + [anon_sym_BSLASHVolcite] = ACTIONS(5933), + [anon_sym_BSLASHpvolcite] = ACTIONS(5933), + [anon_sym_BSLASHPvolcite] = ACTIONS(5933), + [anon_sym_BSLASHfvolcite] = ACTIONS(5933), + [anon_sym_BSLASHftvolcite] = ACTIONS(5933), + [anon_sym_BSLASHsvolcite] = ACTIONS(5933), + [anon_sym_BSLASHSvolcite] = ACTIONS(5933), + [anon_sym_BSLASHtvolcite] = ACTIONS(5933), + [anon_sym_BSLASHTvolcite] = ACTIONS(5933), + [anon_sym_BSLASHavolcite] = ACTIONS(5933), + [anon_sym_BSLASHAvolcite] = ACTIONS(5933), + [anon_sym_BSLASHnotecite] = ACTIONS(5933), + [anon_sym_BSLASHNotecite] = ACTIONS(5933), + [anon_sym_BSLASHpnotecite] = ACTIONS(5933), + [anon_sym_BSLASHPnotecite] = ACTIONS(5933), + [anon_sym_BSLASHfnotecite] = ACTIONS(5933), + [anon_sym_BSLASHlabel] = ACTIONS(5933), + [anon_sym_BSLASHref] = ACTIONS(5933), + [anon_sym_BSLASHeqref] = ACTIONS(5933), + [anon_sym_BSLASHvref] = ACTIONS(5933), + [anon_sym_BSLASHVref] = ACTIONS(5933), + [anon_sym_BSLASHautoref] = ACTIONS(5933), + [anon_sym_BSLASHpageref] = ACTIONS(5933), + [anon_sym_BSLASHcref] = ACTIONS(5933), + [anon_sym_BSLASHCref] = ACTIONS(5933), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnameCref] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5933), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5933), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5933), + [anon_sym_BSLASHlabelcref] = ACTIONS(5933), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange] = ACTIONS(5933), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHCrefrange] = ACTIONS(5933), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5931), + [anon_sym_BSLASHnewlabel] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand] = ACTIONS(5933), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5933), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5933), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5931), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5933), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdef] = ACTIONS(5933), + [anon_sym_BSLASHlet] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5933), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5933), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5933), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5933), + [anon_sym_BSLASHgls] = ACTIONS(5933), + [anon_sym_BSLASHGls] = ACTIONS(5933), + [anon_sym_BSLASHGLS] = ACTIONS(5933), + [anon_sym_BSLASHglspl] = ACTIONS(5933), + [anon_sym_BSLASHGlspl] = ACTIONS(5933), + [anon_sym_BSLASHGLSpl] = ACTIONS(5933), + [anon_sym_BSLASHglsdisp] = ACTIONS(5933), + [anon_sym_BSLASHglslink] = ACTIONS(5933), + [anon_sym_BSLASHglstext] = ACTIONS(5933), + [anon_sym_BSLASHGlstext] = ACTIONS(5933), + [anon_sym_BSLASHGLStext] = ACTIONS(5933), + [anon_sym_BSLASHglsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5933), + [anon_sym_BSLASHglsplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSplural] = ACTIONS(5933), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5933), + [anon_sym_BSLASHglsname] = ACTIONS(5933), + [anon_sym_BSLASHGlsname] = ACTIONS(5933), + [anon_sym_BSLASHGLSname] = ACTIONS(5933), + [anon_sym_BSLASHglssymbol] = ACTIONS(5933), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5933), + [anon_sym_BSLASHglsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5933), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5933), + [anon_sym_BSLASHglsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5933), + [anon_sym_BSLASHglsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5933), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5933), + [anon_sym_BSLASHglsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5933), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5933), + [anon_sym_BSLASHglsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5933), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5933), + [anon_sym_BSLASHnewacronym] = ACTIONS(5933), + [anon_sym_BSLASHacrshort] = ACTIONS(5933), + [anon_sym_BSLASHAcrshort] = ACTIONS(5933), + [anon_sym_BSLASHACRshort] = ACTIONS(5933), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5933), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5933), + [anon_sym_BSLASHacrlong] = ACTIONS(5933), + [anon_sym_BSLASHAcrlong] = ACTIONS(5933), + [anon_sym_BSLASHACRlong] = ACTIONS(5933), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5933), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5933), + [anon_sym_BSLASHacrfull] = ACTIONS(5933), + [anon_sym_BSLASHAcrfull] = ACTIONS(5933), + [anon_sym_BSLASHACRfull] = ACTIONS(5933), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5933), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5933), + [anon_sym_BSLASHacs] = ACTIONS(5933), + [anon_sym_BSLASHAcs] = ACTIONS(5933), + [anon_sym_BSLASHacsp] = ACTIONS(5933), + [anon_sym_BSLASHAcsp] = ACTIONS(5933), + [anon_sym_BSLASHacl] = ACTIONS(5933), + [anon_sym_BSLASHAcl] = ACTIONS(5933), + [anon_sym_BSLASHaclp] = ACTIONS(5933), + [anon_sym_BSLASHAclp] = ACTIONS(5933), + [anon_sym_BSLASHacf] = ACTIONS(5933), + [anon_sym_BSLASHAcf] = ACTIONS(5933), + [anon_sym_BSLASHacfp] = ACTIONS(5933), + [anon_sym_BSLASHAcfp] = ACTIONS(5933), + [anon_sym_BSLASHac] = ACTIONS(5933), + [anon_sym_BSLASHAc] = ACTIONS(5933), + [anon_sym_BSLASHacp] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5933), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5933), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5933), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5933), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5933), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5933), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5933), + [anon_sym_BSLASHcolor] = ACTIONS(5933), + [anon_sym_BSLASHcolorbox] = ACTIONS(5933), + [anon_sym_BSLASHtextcolor] = ACTIONS(5933), + [anon_sym_BSLASHpagecolor] = ACTIONS(5933), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5933), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5933), + [anon_sym_BSLASHtext] = ACTIONS(5933), + [anon_sym_BSLASHintertext] = ACTIONS(5933), + [anon_sym_shortintertext] = ACTIONS(5933), + }, + [1300] = { + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_BSLASHpart] = ACTIONS(5983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddpart] = ACTIONS(5983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5981), + [anon_sym_BSLASHchapter] = ACTIONS(5983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddchap] = ACTIONS(5983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsection] = ACTIONS(5983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHaddsec] = ACTIONS(5983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5981), + [anon_sym_BSLASHparagraph] = ACTIONS(5983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5981), + [anon_sym_BSLASHitem] = ACTIONS(5983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHend] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), + }, + [1301] = { + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_BSLASHpart] = ACTIONS(6017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddpart] = ACTIONS(6017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), + [anon_sym_BSLASHchapter] = ACTIONS(6017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddchap] = ACTIONS(6017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsection] = ACTIONS(6017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHaddsec] = ACTIONS(6017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), + [anon_sym_BSLASHparagraph] = ACTIONS(6017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), + [anon_sym_BSLASHitem] = ACTIONS(6017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHend] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), + }, + [1302] = { + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_BSLASHpart] = ACTIONS(6025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddpart] = ACTIONS(6025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), + [anon_sym_BSLASHchapter] = ACTIONS(6025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddchap] = ACTIONS(6025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsection] = ACTIONS(6025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHaddsec] = ACTIONS(6025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), + [anon_sym_BSLASHparagraph] = ACTIONS(6025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), + [anon_sym_BSLASHitem] = ACTIONS(6025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHend] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), + }, + [1303] = { + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_BSLASHpart] = ACTIONS(6029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddpart] = ACTIONS(6029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), + [anon_sym_BSLASHchapter] = ACTIONS(6029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddchap] = ACTIONS(6029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsection] = ACTIONS(6029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHaddsec] = ACTIONS(6029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), + [anon_sym_BSLASHparagraph] = ACTIONS(6029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), + [anon_sym_BSLASHitem] = ACTIONS(6029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHend] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), + }, + [1304] = { + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_BSLASHpart] = ACTIONS(6033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddpart] = ACTIONS(6033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), + [anon_sym_BSLASHchapter] = ACTIONS(6033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddchap] = ACTIONS(6033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsection] = ACTIONS(6033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHaddsec] = ACTIONS(6033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), + [anon_sym_BSLASHparagraph] = ACTIONS(6033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), + [anon_sym_BSLASHitem] = ACTIONS(6033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHend] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), + }, + [1305] = { + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_BSLASHpart] = ACTIONS(6039), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddpart] = ACTIONS(6039), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6037), + [anon_sym_BSLASHchapter] = ACTIONS(6039), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddchap] = ACTIONS(6039), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsection] = ACTIONS(6039), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHaddsec] = ACTIONS(6039), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6039), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6037), + [anon_sym_BSLASHparagraph] = ACTIONS(6039), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6039), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6037), + [anon_sym_BSLASHitem] = ACTIONS(6039), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHend] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), + }, + [1306] = { + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_BSLASHpart] = ACTIONS(6043), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddpart] = ACTIONS(6043), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6041), + [anon_sym_BSLASHchapter] = ACTIONS(6043), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddchap] = ACTIONS(6043), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsection] = ACTIONS(6043), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHaddsec] = ACTIONS(6043), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6043), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6041), + [anon_sym_BSLASHparagraph] = ACTIONS(6043), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6043), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6041), + [anon_sym_BSLASHitem] = ACTIONS(6043), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHend] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), + }, + [1307] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_BSLASHpart] = ACTIONS(6047), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddpart] = ACTIONS(6047), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6045), + [anon_sym_BSLASHchapter] = ACTIONS(6047), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddchap] = ACTIONS(6047), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsection] = ACTIONS(6047), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHaddsec] = ACTIONS(6047), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6047), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6045), + [anon_sym_BSLASHparagraph] = ACTIONS(6047), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6047), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6047), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHend] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [1308] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_BSLASHpart] = ACTIONS(5877), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddpart] = ACTIONS(5877), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHchapter] = ACTIONS(5877), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddchap] = ACTIONS(5877), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsection] = ACTIONS(5877), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddsec] = ACTIONS(5877), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHparagraph] = ACTIONS(5877), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5877), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHitem] = ACTIONS(5877), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [1309] = { + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_BSLASHpart] = ACTIONS(5873), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddpart] = ACTIONS(5873), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5871), + [anon_sym_BSLASHchapter] = ACTIONS(5873), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddchap] = ACTIONS(5873), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsection] = ACTIONS(5873), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHaddsec] = ACTIONS(5873), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5873), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5871), + [anon_sym_BSLASHparagraph] = ACTIONS(5873), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5873), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5871), + [anon_sym_BSLASHitem] = ACTIONS(5873), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), + }, + [1310] = { + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_BSLASHpart] = ACTIONS(5869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddpart] = ACTIONS(5869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5867), + [anon_sym_BSLASHchapter] = ACTIONS(5869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddchap] = ACTIONS(5869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsection] = ACTIONS(5869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHaddsec] = ACTIONS(5869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5867), + [anon_sym_BSLASHparagraph] = ACTIONS(5869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5867), + [anon_sym_BSLASHitem] = ACTIONS(5869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), + }, + [1311] = { + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_BSLASHpart] = ACTIONS(5865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddpart] = ACTIONS(5865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5863), + [anon_sym_BSLASHchapter] = ACTIONS(5865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddchap] = ACTIONS(5865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsection] = ACTIONS(5865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHaddsec] = ACTIONS(5865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5863), + [anon_sym_BSLASHparagraph] = ACTIONS(5865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5863), + [anon_sym_BSLASHitem] = ACTIONS(5865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), + }, + [1312] = { + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_BSLASHpart] = ACTIONS(6057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddpart] = ACTIONS(6057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), + [anon_sym_BSLASHchapter] = ACTIONS(6057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddchap] = ACTIONS(6057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsection] = ACTIONS(6057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHaddsec] = ACTIONS(6057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), + [anon_sym_BSLASHparagraph] = ACTIONS(6057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), + [anon_sym_BSLASHitem] = ACTIONS(6057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHend] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), + }, + [1313] = { + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_BSLASHpart] = ACTIONS(5861), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddpart] = ACTIONS(5861), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5859), + [anon_sym_BSLASHchapter] = ACTIONS(5861), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddchap] = ACTIONS(5861), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsection] = ACTIONS(5861), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHaddsec] = ACTIONS(5861), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5861), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5859), + [anon_sym_BSLASHparagraph] = ACTIONS(5861), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5861), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5859), + [anon_sym_BSLASHitem] = ACTIONS(5861), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), + }, + [1314] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_BSLASHpart] = ACTIONS(5999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddpart] = ACTIONS(5999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5997), + [anon_sym_BSLASHchapter] = ACTIONS(5999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddchap] = ACTIONS(5999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsection] = ACTIONS(5999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHaddsec] = ACTIONS(5999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5997), + [anon_sym_BSLASHparagraph] = ACTIONS(5999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5997), + [anon_sym_BSLASHitem] = ACTIONS(5999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1315] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_BSLASHpart] = ACTIONS(6093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddpart] = ACTIONS(6093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6091), + [anon_sym_BSLASHchapter] = ACTIONS(6093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddchap] = ACTIONS(6093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsection] = ACTIONS(6093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHaddsec] = ACTIONS(6093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6091), + [anon_sym_BSLASHparagraph] = ACTIONS(6093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6091), + [anon_sym_BSLASHitem] = ACTIONS(6093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHend] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), + }, + [1316] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_BSLASHpart] = ACTIONS(6135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddpart] = ACTIONS(6135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6133), + [anon_sym_BSLASHchapter] = ACTIONS(6135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddchap] = ACTIONS(6135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsection] = ACTIONS(6135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHaddsec] = ACTIONS(6135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6133), + [anon_sym_BSLASHparagraph] = ACTIONS(6135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6133), + [anon_sym_BSLASHitem] = ACTIONS(6135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHend] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [1317] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_BSLASHpart] = ACTIONS(6139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddpart] = ACTIONS(6139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6137), + [anon_sym_BSLASHchapter] = ACTIONS(6139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddchap] = ACTIONS(6139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsection] = ACTIONS(6139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHaddsec] = ACTIONS(6139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6137), + [anon_sym_BSLASHparagraph] = ACTIONS(6139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6137), + [anon_sym_BSLASHitem] = ACTIONS(6139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHend] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [1318] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_BSLASHpart] = ACTIONS(6151), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddpart] = ACTIONS(6151), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6149), + [anon_sym_BSLASHchapter] = ACTIONS(6151), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddchap] = ACTIONS(6151), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsection] = ACTIONS(6151), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHaddsec] = ACTIONS(6151), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6151), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6149), + [anon_sym_BSLASHparagraph] = ACTIONS(6151), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6151), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6149), + [anon_sym_BSLASHitem] = ACTIONS(6151), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHend] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [1319] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_BSLASHpart] = ACTIONS(6159), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddpart] = ACTIONS(6159), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6157), + [anon_sym_BSLASHchapter] = ACTIONS(6159), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddchap] = ACTIONS(6159), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsection] = ACTIONS(6159), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHaddsec] = ACTIONS(6159), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6159), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6157), + [anon_sym_BSLASHparagraph] = ACTIONS(6159), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6159), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6157), + [anon_sym_BSLASHitem] = ACTIONS(6159), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHend] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), + }, + [1320] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_BSLASHpart] = ACTIONS(6163), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddpart] = ACTIONS(6163), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6161), + [anon_sym_BSLASHchapter] = ACTIONS(6163), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddchap] = ACTIONS(6163), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsection] = ACTIONS(6163), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHaddsec] = ACTIONS(6163), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6163), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6161), + [anon_sym_BSLASHparagraph] = ACTIONS(6163), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6163), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6161), + [anon_sym_BSLASHitem] = ACTIONS(6163), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHend] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [1321] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_BSLASHpart] = ACTIONS(6171), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddpart] = ACTIONS(6171), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6169), + [anon_sym_BSLASHchapter] = ACTIONS(6171), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddchap] = ACTIONS(6171), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsection] = ACTIONS(6171), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHaddsec] = ACTIONS(6171), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6171), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6169), + [anon_sym_BSLASHparagraph] = ACTIONS(6171), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6171), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6169), + [anon_sym_BSLASHitem] = ACTIONS(6171), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHend] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [1322] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_BSLASHpart] = ACTIONS(6175), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddpart] = ACTIONS(6175), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6173), + [anon_sym_BSLASHchapter] = ACTIONS(6175), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddchap] = ACTIONS(6175), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsection] = ACTIONS(6175), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHaddsec] = ACTIONS(6175), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6175), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6173), + [anon_sym_BSLASHparagraph] = ACTIONS(6175), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6175), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6173), + [anon_sym_BSLASHitem] = ACTIONS(6175), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHend] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [1323] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_BSLASHpart] = ACTIONS(5841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddpart] = ACTIONS(5841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5839), + [anon_sym_BSLASHchapter] = ACTIONS(5841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddchap] = ACTIONS(5841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsection] = ACTIONS(5841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHaddsec] = ACTIONS(5841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5839), + [anon_sym_BSLASHparagraph] = ACTIONS(5841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5839), + [anon_sym_BSLASHitem] = ACTIONS(5841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), + }, + [1324] = { + [sym_command_name] = ACTIONS(5819), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5819), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_BSLASHpart] = ACTIONS(5819), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddpart] = ACTIONS(5819), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5817), + [anon_sym_BSLASHchapter] = ACTIONS(5819), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddchap] = ACTIONS(5819), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsection] = ACTIONS(5819), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHaddsec] = ACTIONS(5819), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5819), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5817), + [anon_sym_BSLASHparagraph] = ACTIONS(5819), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5819), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5817), + [anon_sym_BSLASHitem] = ACTIONS(5819), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [sym_word] = ACTIONS(5819), + [sym_placeholder] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym__] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5819), + [anon_sym_SQUOTE] = ACTIONS(5819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5817), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5817), + [anon_sym_DOLLAR] = ACTIONS(5819), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5817), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5817), + [anon_sym_BSLASHbegin] = ACTIONS(5819), + [anon_sym_BSLASHtitle] = ACTIONS(5819), + [anon_sym_BSLASHauthor] = ACTIONS(5819), + [anon_sym_BSLASHusepackage] = ACTIONS(5819), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5819), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5819), + [anon_sym_BSLASHinclude] = ACTIONS(5819), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5819), + [anon_sym_BSLASHinput] = ACTIONS(5819), + [anon_sym_BSLASHsubfile] = ACTIONS(5819), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5819), + [anon_sym_BSLASHbibliography] = ACTIONS(5819), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5819), + [anon_sym_BSLASHincludesvg] = ACTIONS(5819), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5819), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5819), + [anon_sym_BSLASHimport] = ACTIONS(5819), + [anon_sym_BSLASHsubimport] = ACTIONS(5819), + [anon_sym_BSLASHinputfrom] = ACTIONS(5819), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5819), + [anon_sym_BSLASHincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5819), + [anon_sym_BSLASHcaption] = ACTIONS(5819), + [anon_sym_BSLASHcite] = ACTIONS(5819), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCite] = ACTIONS(5819), + [anon_sym_BSLASHnocite] = ACTIONS(5819), + [anon_sym_BSLASHcitet] = ACTIONS(5819), + [anon_sym_BSLASHcitep] = ACTIONS(5819), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteauthor] = ACTIONS(5819), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5819), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitetitle] = ACTIONS(5819), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteyear] = ACTIONS(5819), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5817), + [anon_sym_BSLASHcitedate] = ACTIONS(5819), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5817), + [anon_sym_BSLASHciteurl] = ACTIONS(5819), + [anon_sym_BSLASHfullcite] = ACTIONS(5819), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5819), + [anon_sym_BSLASHcitealt] = ACTIONS(5819), + [anon_sym_BSLASHcitealp] = ACTIONS(5819), + [anon_sym_BSLASHcitetext] = ACTIONS(5819), + [anon_sym_BSLASHparencite] = ACTIONS(5819), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHParencite] = ACTIONS(5819), + [anon_sym_BSLASHfootcite] = ACTIONS(5819), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5819), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5819), + [anon_sym_BSLASHtextcite] = ACTIONS(5819), + [anon_sym_BSLASHTextcite] = ACTIONS(5819), + [anon_sym_BSLASHsmartcite] = ACTIONS(5819), + [anon_sym_BSLASHSmartcite] = ACTIONS(5819), + [anon_sym_BSLASHsupercite] = ACTIONS(5819), + [anon_sym_BSLASHautocite] = ACTIONS(5819), + [anon_sym_BSLASHAutocite] = ACTIONS(5819), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5817), + [anon_sym_BSLASHvolcite] = ACTIONS(5819), + [anon_sym_BSLASHVolcite] = ACTIONS(5819), + [anon_sym_BSLASHpvolcite] = ACTIONS(5819), + [anon_sym_BSLASHPvolcite] = ACTIONS(5819), + [anon_sym_BSLASHfvolcite] = ACTIONS(5819), + [anon_sym_BSLASHftvolcite] = ACTIONS(5819), + [anon_sym_BSLASHsvolcite] = ACTIONS(5819), + [anon_sym_BSLASHSvolcite] = ACTIONS(5819), + [anon_sym_BSLASHtvolcite] = ACTIONS(5819), + [anon_sym_BSLASHTvolcite] = ACTIONS(5819), + [anon_sym_BSLASHavolcite] = ACTIONS(5819), + [anon_sym_BSLASHAvolcite] = ACTIONS(5819), + [anon_sym_BSLASHnotecite] = ACTIONS(5819), + [anon_sym_BSLASHNotecite] = ACTIONS(5819), + [anon_sym_BSLASHpnotecite] = ACTIONS(5819), + [anon_sym_BSLASHPnotecite] = ACTIONS(5819), + [anon_sym_BSLASHfnotecite] = ACTIONS(5819), + [anon_sym_BSLASHlabel] = ACTIONS(5819), + [anon_sym_BSLASHref] = ACTIONS(5819), + [anon_sym_BSLASHeqref] = ACTIONS(5819), + [anon_sym_BSLASHvref] = ACTIONS(5819), + [anon_sym_BSLASHVref] = ACTIONS(5819), + [anon_sym_BSLASHautoref] = ACTIONS(5819), + [anon_sym_BSLASHpageref] = ACTIONS(5819), + [anon_sym_BSLASHcref] = ACTIONS(5819), + [anon_sym_BSLASHCref] = ACTIONS(5819), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnameCref] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5819), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5819), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5819), + [anon_sym_BSLASHlabelcref] = ACTIONS(5819), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange] = ACTIONS(5819), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHCrefrange] = ACTIONS(5819), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5817), + [anon_sym_BSLASHnewlabel] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand] = ACTIONS(5819), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5819), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5819), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5817), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5819), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdef] = ACTIONS(5819), + [anon_sym_BSLASHlet] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5819), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5819), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5819), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5819), + [anon_sym_BSLASHgls] = ACTIONS(5819), + [anon_sym_BSLASHGls] = ACTIONS(5819), + [anon_sym_BSLASHGLS] = ACTIONS(5819), + [anon_sym_BSLASHglspl] = ACTIONS(5819), + [anon_sym_BSLASHGlspl] = ACTIONS(5819), + [anon_sym_BSLASHGLSpl] = ACTIONS(5819), + [anon_sym_BSLASHglsdisp] = ACTIONS(5819), + [anon_sym_BSLASHglslink] = ACTIONS(5819), + [anon_sym_BSLASHglstext] = ACTIONS(5819), + [anon_sym_BSLASHGlstext] = ACTIONS(5819), + [anon_sym_BSLASHGLStext] = ACTIONS(5819), + [anon_sym_BSLASHglsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5819), + [anon_sym_BSLASHglsplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSplural] = ACTIONS(5819), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5819), + [anon_sym_BSLASHglsname] = ACTIONS(5819), + [anon_sym_BSLASHGlsname] = ACTIONS(5819), + [anon_sym_BSLASHGLSname] = ACTIONS(5819), + [anon_sym_BSLASHglssymbol] = ACTIONS(5819), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5819), + [anon_sym_BSLASHglsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5819), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5819), + [anon_sym_BSLASHglsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5819), + [anon_sym_BSLASHglsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5819), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5819), + [anon_sym_BSLASHglsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5819), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5819), + [anon_sym_BSLASHglsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5819), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5819), + [anon_sym_BSLASHnewacronym] = ACTIONS(5819), + [anon_sym_BSLASHacrshort] = ACTIONS(5819), + [anon_sym_BSLASHAcrshort] = ACTIONS(5819), + [anon_sym_BSLASHACRshort] = ACTIONS(5819), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5819), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5819), + [anon_sym_BSLASHacrlong] = ACTIONS(5819), + [anon_sym_BSLASHAcrlong] = ACTIONS(5819), + [anon_sym_BSLASHACRlong] = ACTIONS(5819), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5819), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5819), + [anon_sym_BSLASHacrfull] = ACTIONS(5819), + [anon_sym_BSLASHAcrfull] = ACTIONS(5819), + [anon_sym_BSLASHACRfull] = ACTIONS(5819), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5819), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5819), + [anon_sym_BSLASHacs] = ACTIONS(5819), + [anon_sym_BSLASHAcs] = ACTIONS(5819), + [anon_sym_BSLASHacsp] = ACTIONS(5819), + [anon_sym_BSLASHAcsp] = ACTIONS(5819), + [anon_sym_BSLASHacl] = ACTIONS(5819), + [anon_sym_BSLASHAcl] = ACTIONS(5819), + [anon_sym_BSLASHaclp] = ACTIONS(5819), + [anon_sym_BSLASHAclp] = ACTIONS(5819), + [anon_sym_BSLASHacf] = ACTIONS(5819), + [anon_sym_BSLASHAcf] = ACTIONS(5819), + [anon_sym_BSLASHacfp] = ACTIONS(5819), + [anon_sym_BSLASHAcfp] = ACTIONS(5819), + [anon_sym_BSLASHac] = ACTIONS(5819), + [anon_sym_BSLASHAc] = ACTIONS(5819), + [anon_sym_BSLASHacp] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5819), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5819), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5819), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5819), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5819), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5819), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5819), + [anon_sym_BSLASHcolor] = ACTIONS(5819), + [anon_sym_BSLASHcolorbox] = ACTIONS(5819), + [anon_sym_BSLASHtextcolor] = ACTIONS(5819), + [anon_sym_BSLASHpagecolor] = ACTIONS(5819), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5819), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5819), + [anon_sym_BSLASHtext] = ACTIONS(5819), + [anon_sym_BSLASHintertext] = ACTIONS(5819), + [anon_sym_shortintertext] = ACTIONS(5819), + }, + [1325] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_BSLASHpart] = ACTIONS(6189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddpart] = ACTIONS(6189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), + [anon_sym_BSLASHchapter] = ACTIONS(6189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddchap] = ACTIONS(6189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsection] = ACTIONS(6189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHaddsec] = ACTIONS(6189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), + [anon_sym_BSLASHparagraph] = ACTIONS(6189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), + [anon_sym_BSLASHitem] = ACTIONS(6189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHend] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [1326] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_BSLASHpart] = ACTIONS(6201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddpart] = ACTIONS(6201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), + [anon_sym_BSLASHchapter] = ACTIONS(6201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddchap] = ACTIONS(6201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsection] = ACTIONS(6201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHaddsec] = ACTIONS(6201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), + [anon_sym_BSLASHparagraph] = ACTIONS(6201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), + [anon_sym_BSLASHitem] = ACTIONS(6201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHend] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [1327] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_BSLASHpart] = ACTIONS(6219), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddpart] = ACTIONS(6219), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6217), + [anon_sym_BSLASHchapter] = ACTIONS(6219), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddchap] = ACTIONS(6219), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsection] = ACTIONS(6219), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHaddsec] = ACTIONS(6219), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6219), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6217), + [anon_sym_BSLASHparagraph] = ACTIONS(6219), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6219), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6217), + [anon_sym_BSLASHitem] = ACTIONS(6219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHend] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [1328] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_BSLASHpart] = ACTIONS(6227), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddpart] = ACTIONS(6227), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6225), + [anon_sym_BSLASHchapter] = ACTIONS(6227), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddchap] = ACTIONS(6227), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsection] = ACTIONS(6227), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHaddsec] = ACTIONS(6227), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6227), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6225), + [anon_sym_BSLASHparagraph] = ACTIONS(6227), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6227), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6225), + [anon_sym_BSLASHitem] = ACTIONS(6227), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHend] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [1329] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_BSLASHpart] = ACTIONS(5837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddpart] = ACTIONS(5837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5835), + [anon_sym_BSLASHchapter] = ACTIONS(5837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddchap] = ACTIONS(5837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsection] = ACTIONS(5837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHaddsec] = ACTIONS(5837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5835), + [anon_sym_BSLASHparagraph] = ACTIONS(5837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5835), + [anon_sym_BSLASHitem] = ACTIONS(5837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHend] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [1330] = { + [sym_command_name] = ACTIONS(5825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5825), + [anon_sym_LPAREN] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_BSLASHpart] = ACTIONS(5825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddpart] = ACTIONS(5825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5823), + [anon_sym_BSLASHchapter] = ACTIONS(5825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddchap] = ACTIONS(5825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsection] = ACTIONS(5825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHaddsec] = ACTIONS(5825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5823), + [anon_sym_BSLASHparagraph] = ACTIONS(5825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5823), + [anon_sym_BSLASHitem] = ACTIONS(5825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [sym_placeholder] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym__] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_SQUOTE] = ACTIONS(5825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5823), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5823), + [anon_sym_DOLLAR] = ACTIONS(5825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5823), + [anon_sym_BSLASHbegin] = ACTIONS(5825), + [anon_sym_BSLASHtitle] = ACTIONS(5825), + [anon_sym_BSLASHauthor] = ACTIONS(5825), + [anon_sym_BSLASHusepackage] = ACTIONS(5825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5825), + [anon_sym_BSLASHinclude] = ACTIONS(5825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5825), + [anon_sym_BSLASHinput] = ACTIONS(5825), + [anon_sym_BSLASHsubfile] = ACTIONS(5825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5825), + [anon_sym_BSLASHbibliography] = ACTIONS(5825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5825), + [anon_sym_BSLASHincludesvg] = ACTIONS(5825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5825), + [anon_sym_BSLASHimport] = ACTIONS(5825), + [anon_sym_BSLASHsubimport] = ACTIONS(5825), + [anon_sym_BSLASHinputfrom] = ACTIONS(5825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5825), + [anon_sym_BSLASHincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5825), + [anon_sym_BSLASHcaption] = ACTIONS(5825), + [anon_sym_BSLASHcite] = ACTIONS(5825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCite] = ACTIONS(5825), + [anon_sym_BSLASHnocite] = ACTIONS(5825), + [anon_sym_BSLASHcitet] = ACTIONS(5825), + [anon_sym_BSLASHcitep] = ACTIONS(5825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteauthor] = ACTIONS(5825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitetitle] = ACTIONS(5825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteyear] = ACTIONS(5825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5823), + [anon_sym_BSLASHcitedate] = ACTIONS(5825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5823), + [anon_sym_BSLASHciteurl] = ACTIONS(5825), + [anon_sym_BSLASHfullcite] = ACTIONS(5825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5825), + [anon_sym_BSLASHcitealt] = ACTIONS(5825), + [anon_sym_BSLASHcitealp] = ACTIONS(5825), + [anon_sym_BSLASHcitetext] = ACTIONS(5825), + [anon_sym_BSLASHparencite] = ACTIONS(5825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHParencite] = ACTIONS(5825), + [anon_sym_BSLASHfootcite] = ACTIONS(5825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5825), + [anon_sym_BSLASHtextcite] = ACTIONS(5825), + [anon_sym_BSLASHTextcite] = ACTIONS(5825), + [anon_sym_BSLASHsmartcite] = ACTIONS(5825), + [anon_sym_BSLASHSmartcite] = ACTIONS(5825), + [anon_sym_BSLASHsupercite] = ACTIONS(5825), + [anon_sym_BSLASHautocite] = ACTIONS(5825), + [anon_sym_BSLASHAutocite] = ACTIONS(5825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5823), + [anon_sym_BSLASHvolcite] = ACTIONS(5825), + [anon_sym_BSLASHVolcite] = ACTIONS(5825), + [anon_sym_BSLASHpvolcite] = ACTIONS(5825), + [anon_sym_BSLASHPvolcite] = ACTIONS(5825), + [anon_sym_BSLASHfvolcite] = ACTIONS(5825), + [anon_sym_BSLASHftvolcite] = ACTIONS(5825), + [anon_sym_BSLASHsvolcite] = ACTIONS(5825), + [anon_sym_BSLASHSvolcite] = ACTIONS(5825), + [anon_sym_BSLASHtvolcite] = ACTIONS(5825), + [anon_sym_BSLASHTvolcite] = ACTIONS(5825), + [anon_sym_BSLASHavolcite] = ACTIONS(5825), + [anon_sym_BSLASHAvolcite] = ACTIONS(5825), + [anon_sym_BSLASHnotecite] = ACTIONS(5825), + [anon_sym_BSLASHNotecite] = ACTIONS(5825), + [anon_sym_BSLASHpnotecite] = ACTIONS(5825), + [anon_sym_BSLASHPnotecite] = ACTIONS(5825), + [anon_sym_BSLASHfnotecite] = ACTIONS(5825), + [anon_sym_BSLASHlabel] = ACTIONS(5825), + [anon_sym_BSLASHref] = ACTIONS(5825), + [anon_sym_BSLASHeqref] = ACTIONS(5825), + [anon_sym_BSLASHvref] = ACTIONS(5825), + [anon_sym_BSLASHVref] = ACTIONS(5825), + [anon_sym_BSLASHautoref] = ACTIONS(5825), + [anon_sym_BSLASHpageref] = ACTIONS(5825), + [anon_sym_BSLASHcref] = ACTIONS(5825), + [anon_sym_BSLASHCref] = ACTIONS(5825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnameCref] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5825), + [anon_sym_BSLASHlabelcref] = ACTIONS(5825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange] = ACTIONS(5825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHCrefrange] = ACTIONS(5825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5823), + [anon_sym_BSLASHnewlabel] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand] = ACTIONS(5825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdef] = ACTIONS(5825), + [anon_sym_BSLASHlet] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5825), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5825), + [anon_sym_BSLASHgls] = ACTIONS(5825), + [anon_sym_BSLASHGls] = ACTIONS(5825), + [anon_sym_BSLASHGLS] = ACTIONS(5825), + [anon_sym_BSLASHglspl] = ACTIONS(5825), + [anon_sym_BSLASHGlspl] = ACTIONS(5825), + [anon_sym_BSLASHGLSpl] = ACTIONS(5825), + [anon_sym_BSLASHglsdisp] = ACTIONS(5825), + [anon_sym_BSLASHglslink] = ACTIONS(5825), + [anon_sym_BSLASHglstext] = ACTIONS(5825), + [anon_sym_BSLASHGlstext] = ACTIONS(5825), + [anon_sym_BSLASHGLStext] = ACTIONS(5825), + [anon_sym_BSLASHglsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5825), + [anon_sym_BSLASHglsplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSplural] = ACTIONS(5825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5825), + [anon_sym_BSLASHglsname] = ACTIONS(5825), + [anon_sym_BSLASHGlsname] = ACTIONS(5825), + [anon_sym_BSLASHGLSname] = ACTIONS(5825), + [anon_sym_BSLASHglssymbol] = ACTIONS(5825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5825), + [anon_sym_BSLASHglsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5825), + [anon_sym_BSLASHglsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5825), + [anon_sym_BSLASHglsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5825), + [anon_sym_BSLASHglsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5825), + [anon_sym_BSLASHglsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5825), + [anon_sym_BSLASHnewacronym] = ACTIONS(5825), + [anon_sym_BSLASHacrshort] = ACTIONS(5825), + [anon_sym_BSLASHAcrshort] = ACTIONS(5825), + [anon_sym_BSLASHACRshort] = ACTIONS(5825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5825), + [anon_sym_BSLASHacrlong] = ACTIONS(5825), + [anon_sym_BSLASHAcrlong] = ACTIONS(5825), + [anon_sym_BSLASHACRlong] = ACTIONS(5825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5825), + [anon_sym_BSLASHacrfull] = ACTIONS(5825), + [anon_sym_BSLASHAcrfull] = ACTIONS(5825), + [anon_sym_BSLASHACRfull] = ACTIONS(5825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5825), + [anon_sym_BSLASHacs] = ACTIONS(5825), + [anon_sym_BSLASHAcs] = ACTIONS(5825), + [anon_sym_BSLASHacsp] = ACTIONS(5825), + [anon_sym_BSLASHAcsp] = ACTIONS(5825), + [anon_sym_BSLASHacl] = ACTIONS(5825), + [anon_sym_BSLASHAcl] = ACTIONS(5825), + [anon_sym_BSLASHaclp] = ACTIONS(5825), + [anon_sym_BSLASHAclp] = ACTIONS(5825), + [anon_sym_BSLASHacf] = ACTIONS(5825), + [anon_sym_BSLASHAcf] = ACTIONS(5825), + [anon_sym_BSLASHacfp] = ACTIONS(5825), + [anon_sym_BSLASHAcfp] = ACTIONS(5825), + [anon_sym_BSLASHac] = ACTIONS(5825), + [anon_sym_BSLASHAc] = ACTIONS(5825), + [anon_sym_BSLASHacp] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5825), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5825), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5823), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5825), + [anon_sym_BSLASHcolor] = ACTIONS(5825), + [anon_sym_BSLASHcolorbox] = ACTIONS(5825), + [anon_sym_BSLASHtextcolor] = ACTIONS(5825), + [anon_sym_BSLASHpagecolor] = ACTIONS(5825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5825), + [anon_sym_BSLASHtext] = ACTIONS(5825), + [anon_sym_BSLASHintertext] = ACTIONS(5825), + [anon_sym_shortintertext] = ACTIONS(5825), + }, + [1331] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_BSLASHpart] = ACTIONS(6241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddpart] = ACTIONS(6241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), + [anon_sym_BSLASHchapter] = ACTIONS(6241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddchap] = ACTIONS(6241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsection] = ACTIONS(6241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHaddsec] = ACTIONS(6241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), + [anon_sym_BSLASHparagraph] = ACTIONS(6241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), + [anon_sym_BSLASHitem] = ACTIONS(6241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHend] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [1332] = { + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_BSLASHpart] = ACTIONS(6235), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddpart] = ACTIONS(6235), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6233), + [anon_sym_BSLASHchapter] = ACTIONS(6235), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddchap] = ACTIONS(6235), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsection] = ACTIONS(6235), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHaddsec] = ACTIONS(6235), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6235), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6233), + [anon_sym_BSLASHparagraph] = ACTIONS(6235), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6235), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6233), + [anon_sym_BSLASHitem] = ACTIONS(6235), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHend] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), + }, + [1333] = { + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_BSLASHpart] = ACTIONS(6231), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddpart] = ACTIONS(6231), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6229), + [anon_sym_BSLASHchapter] = ACTIONS(6231), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddchap] = ACTIONS(6231), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsection] = ACTIONS(6231), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHaddsec] = ACTIONS(6231), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6231), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6229), + [anon_sym_BSLASHparagraph] = ACTIONS(6231), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6231), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6229), + [anon_sym_BSLASHitem] = ACTIONS(6231), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHend] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), + }, + [1334] = { + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_BSLASHpart] = ACTIONS(6223), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddpart] = ACTIONS(6223), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6221), + [anon_sym_BSLASHchapter] = ACTIONS(6223), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddchap] = ACTIONS(6223), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsection] = ACTIONS(6223), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHaddsec] = ACTIONS(6223), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6223), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6221), + [anon_sym_BSLASHparagraph] = ACTIONS(6223), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6223), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6221), + [anon_sym_BSLASHitem] = ACTIONS(6223), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHend] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), + }, + [1335] = { + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_BSLASHpart] = ACTIONS(6215), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddpart] = ACTIONS(6215), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6213), + [anon_sym_BSLASHchapter] = ACTIONS(6215), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddchap] = ACTIONS(6215), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsection] = ACTIONS(6215), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHaddsec] = ACTIONS(6215), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6215), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6213), + [anon_sym_BSLASHparagraph] = ACTIONS(6215), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6213), + [anon_sym_BSLASHitem] = ACTIONS(6215), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHend] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), + }, + [1336] = { + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_BSLASHpart] = ACTIONS(6193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddpart] = ACTIONS(6193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), + [anon_sym_BSLASHchapter] = ACTIONS(6193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddchap] = ACTIONS(6193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsection] = ACTIONS(6193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHaddsec] = ACTIONS(6193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), + [anon_sym_BSLASHparagraph] = ACTIONS(6193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), + [anon_sym_BSLASHitem] = ACTIONS(6193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHend] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), + }, + [1337] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_BSLASHpart] = ACTIONS(6185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddpart] = ACTIONS(6185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), + [anon_sym_BSLASHchapter] = ACTIONS(6185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddchap] = ACTIONS(6185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsection] = ACTIONS(6185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHaddsec] = ACTIONS(6185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), + [anon_sym_BSLASHparagraph] = ACTIONS(6185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), + [anon_sym_BSLASHitem] = ACTIONS(6185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHend] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [1338] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_BSLASHpart] = ACTIONS(6155), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddpart] = ACTIONS(6155), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6153), + [anon_sym_BSLASHchapter] = ACTIONS(6155), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddchap] = ACTIONS(6155), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsection] = ACTIONS(6155), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHaddsec] = ACTIONS(6155), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6155), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6153), + [anon_sym_BSLASHparagraph] = ACTIONS(6155), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6155), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6153), + [anon_sym_BSLASHitem] = ACTIONS(6155), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHend] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [1339] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_BSLASHpart] = ACTIONS(6143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddpart] = ACTIONS(6143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6141), + [anon_sym_BSLASHchapter] = ACTIONS(6143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddchap] = ACTIONS(6143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsection] = ACTIONS(6143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHaddsec] = ACTIONS(6143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6141), + [anon_sym_BSLASHparagraph] = ACTIONS(6143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6141), + [anon_sym_BSLASHitem] = ACTIONS(6143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHend] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [1340] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_BSLASHpart] = ACTIONS(6131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddpart] = ACTIONS(6131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6129), + [anon_sym_BSLASHchapter] = ACTIONS(6131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddchap] = ACTIONS(6131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsection] = ACTIONS(6131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHaddsec] = ACTIONS(6131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6129), + [anon_sym_BSLASHparagraph] = ACTIONS(6131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6129), + [anon_sym_BSLASHitem] = ACTIONS(6131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHend] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [1341] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_BSLASHpart] = ACTIONS(5815), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddpart] = ACTIONS(5815), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5813), + [anon_sym_BSLASHchapter] = ACTIONS(5815), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddchap] = ACTIONS(5815), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsection] = ACTIONS(5815), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHaddsec] = ACTIONS(5815), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5815), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5813), + [anon_sym_BSLASHparagraph] = ACTIONS(5815), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5815), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5813), + [anon_sym_BSLASHitem] = ACTIONS(5815), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), }, - [1442] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - [anon_sym_BSLASHtext] = ACTIONS(5081), - [anon_sym_BSLASHintertext] = ACTIONS(5081), - [anon_sym_shortintertext] = ACTIONS(5081), + [1342] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_BSLASHpart] = ACTIONS(6127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddpart] = ACTIONS(6127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6125), + [anon_sym_BSLASHchapter] = ACTIONS(6127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddchap] = ACTIONS(6127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsection] = ACTIONS(6127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHaddsec] = ACTIONS(6127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6125), + [anon_sym_BSLASHparagraph] = ACTIONS(6127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6125), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHend] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), }, - [1443] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - [anon_sym_BSLASHtext] = ACTIONS(5125), - [anon_sym_BSLASHintertext] = ACTIONS(5125), - [anon_sym_shortintertext] = ACTIONS(5125), + [1343] = { + [sym_command_name] = ACTIONS(5833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5833), + [anon_sym_LPAREN] = ACTIONS(5831), + [anon_sym_RPAREN] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACK] = ACTIONS(5831), + [anon_sym_COMMA] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_BSLASHpart] = ACTIONS(5833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddpart] = ACTIONS(5833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5831), + [anon_sym_BSLASHchapter] = ACTIONS(5833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddchap] = ACTIONS(5833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsection] = ACTIONS(5833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHaddsec] = ACTIONS(5833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5831), + [anon_sym_BSLASHparagraph] = ACTIONS(5833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5831), + [anon_sym_BSLASHitem] = ACTIONS(5833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5831), + [sym_word] = ACTIONS(5833), + [sym_placeholder] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5833), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5833), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym__] = ACTIONS(5833), + [anon_sym_LT] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_BANG] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5831), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5831), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5831), + [anon_sym_BSLASHbegin] = ACTIONS(5833), + [anon_sym_BSLASHtitle] = ACTIONS(5833), + [anon_sym_BSLASHauthor] = ACTIONS(5833), + [anon_sym_BSLASHusepackage] = ACTIONS(5833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5833), + [anon_sym_BSLASHinclude] = ACTIONS(5833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5833), + [anon_sym_BSLASHinput] = ACTIONS(5833), + [anon_sym_BSLASHsubfile] = ACTIONS(5833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5833), + [anon_sym_BSLASHbibliography] = ACTIONS(5833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5833), + [anon_sym_BSLASHincludesvg] = ACTIONS(5833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5833), + [anon_sym_BSLASHimport] = ACTIONS(5833), + [anon_sym_BSLASHsubimport] = ACTIONS(5833), + [anon_sym_BSLASHinputfrom] = ACTIONS(5833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5833), + [anon_sym_BSLASHincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5833), + [anon_sym_BSLASHcaption] = ACTIONS(5833), + [anon_sym_BSLASHcite] = ACTIONS(5833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCite] = ACTIONS(5833), + [anon_sym_BSLASHnocite] = ACTIONS(5833), + [anon_sym_BSLASHcitet] = ACTIONS(5833), + [anon_sym_BSLASHcitep] = ACTIONS(5833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteauthor] = ACTIONS(5833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitetitle] = ACTIONS(5833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteyear] = ACTIONS(5833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5831), + [anon_sym_BSLASHcitedate] = ACTIONS(5833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5831), + [anon_sym_BSLASHciteurl] = ACTIONS(5833), + [anon_sym_BSLASHfullcite] = ACTIONS(5833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5833), + [anon_sym_BSLASHcitealt] = ACTIONS(5833), + [anon_sym_BSLASHcitealp] = ACTIONS(5833), + [anon_sym_BSLASHcitetext] = ACTIONS(5833), + [anon_sym_BSLASHparencite] = ACTIONS(5833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHParencite] = ACTIONS(5833), + [anon_sym_BSLASHfootcite] = ACTIONS(5833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5833), + [anon_sym_BSLASHtextcite] = ACTIONS(5833), + [anon_sym_BSLASHTextcite] = ACTIONS(5833), + [anon_sym_BSLASHsmartcite] = ACTIONS(5833), + [anon_sym_BSLASHSmartcite] = ACTIONS(5833), + [anon_sym_BSLASHsupercite] = ACTIONS(5833), + [anon_sym_BSLASHautocite] = ACTIONS(5833), + [anon_sym_BSLASHAutocite] = ACTIONS(5833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5831), + [anon_sym_BSLASHvolcite] = ACTIONS(5833), + [anon_sym_BSLASHVolcite] = ACTIONS(5833), + [anon_sym_BSLASHpvolcite] = ACTIONS(5833), + [anon_sym_BSLASHPvolcite] = ACTIONS(5833), + [anon_sym_BSLASHfvolcite] = ACTIONS(5833), + [anon_sym_BSLASHftvolcite] = ACTIONS(5833), + [anon_sym_BSLASHsvolcite] = ACTIONS(5833), + [anon_sym_BSLASHSvolcite] = ACTIONS(5833), + [anon_sym_BSLASHtvolcite] = ACTIONS(5833), + [anon_sym_BSLASHTvolcite] = ACTIONS(5833), + [anon_sym_BSLASHavolcite] = ACTIONS(5833), + [anon_sym_BSLASHAvolcite] = ACTIONS(5833), + [anon_sym_BSLASHnotecite] = ACTIONS(5833), + [anon_sym_BSLASHNotecite] = ACTIONS(5833), + [anon_sym_BSLASHpnotecite] = ACTIONS(5833), + [anon_sym_BSLASHPnotecite] = ACTIONS(5833), + [anon_sym_BSLASHfnotecite] = ACTIONS(5833), + [anon_sym_BSLASHlabel] = ACTIONS(5833), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange] = ACTIONS(5833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHCrefrange] = ACTIONS(5833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5831), + [anon_sym_BSLASHnewlabel] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand] = ACTIONS(5833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdef] = ACTIONS(5833), + [anon_sym_BSLASHlet] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5833), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5833), + [anon_sym_BSLASHgls] = ACTIONS(5833), + [anon_sym_BSLASHGls] = ACTIONS(5833), + [anon_sym_BSLASHGLS] = ACTIONS(5833), + [anon_sym_BSLASHglspl] = ACTIONS(5833), + [anon_sym_BSLASHGlspl] = ACTIONS(5833), + [anon_sym_BSLASHGLSpl] = ACTIONS(5833), + [anon_sym_BSLASHglsdisp] = ACTIONS(5833), + [anon_sym_BSLASHglslink] = ACTIONS(5833), + [anon_sym_BSLASHglstext] = ACTIONS(5833), + [anon_sym_BSLASHGlstext] = ACTIONS(5833), + [anon_sym_BSLASHGLStext] = ACTIONS(5833), + [anon_sym_BSLASHglsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5833), + [anon_sym_BSLASHglsplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSplural] = ACTIONS(5833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5833), + [anon_sym_BSLASHglsname] = ACTIONS(5833), + [anon_sym_BSLASHGlsname] = ACTIONS(5833), + [anon_sym_BSLASHGLSname] = ACTIONS(5833), + [anon_sym_BSLASHglssymbol] = ACTIONS(5833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5833), + [anon_sym_BSLASHglsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5833), + [anon_sym_BSLASHglsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5833), + [anon_sym_BSLASHglsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5833), + [anon_sym_BSLASHglsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5833), + [anon_sym_BSLASHglsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5833), + [anon_sym_BSLASHnewacronym] = ACTIONS(5833), + [anon_sym_BSLASHacrshort] = ACTIONS(5833), + [anon_sym_BSLASHAcrshort] = ACTIONS(5833), + [anon_sym_BSLASHACRshort] = ACTIONS(5833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5833), + [anon_sym_BSLASHacrlong] = ACTIONS(5833), + [anon_sym_BSLASHAcrlong] = ACTIONS(5833), + [anon_sym_BSLASHACRlong] = ACTIONS(5833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5833), + [anon_sym_BSLASHacrfull] = ACTIONS(5833), + [anon_sym_BSLASHAcrfull] = ACTIONS(5833), + [anon_sym_BSLASHACRfull] = ACTIONS(5833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5833), + [anon_sym_BSLASHacs] = ACTIONS(5833), + [anon_sym_BSLASHAcs] = ACTIONS(5833), + [anon_sym_BSLASHacsp] = ACTIONS(5833), + [anon_sym_BSLASHAcsp] = ACTIONS(5833), + [anon_sym_BSLASHacl] = ACTIONS(5833), + [anon_sym_BSLASHAcl] = ACTIONS(5833), + [anon_sym_BSLASHaclp] = ACTIONS(5833), + [anon_sym_BSLASHAclp] = ACTIONS(5833), + [anon_sym_BSLASHacf] = ACTIONS(5833), + [anon_sym_BSLASHAcf] = ACTIONS(5833), + [anon_sym_BSLASHacfp] = ACTIONS(5833), + [anon_sym_BSLASHAcfp] = ACTIONS(5833), + [anon_sym_BSLASHac] = ACTIONS(5833), + [anon_sym_BSLASHAc] = ACTIONS(5833), + [anon_sym_BSLASHacp] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5833), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5833), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5831), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5833), + [anon_sym_BSLASHcolor] = ACTIONS(5833), + [anon_sym_BSLASHcolorbox] = ACTIONS(5833), + [anon_sym_BSLASHtextcolor] = ACTIONS(5833), + [anon_sym_BSLASHpagecolor] = ACTIONS(5833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5833), + [anon_sym_BSLASHtext] = ACTIONS(5833), + [anon_sym_BSLASHintertext] = ACTIONS(5833), + [anon_sym_shortintertext] = ACTIONS(5833), }, - [1444] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_LPAREN] = ACTIONS(5317), - [anon_sym_RPAREN] = ACTIONS(5317), - [anon_sym_LBRACK] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_LBRACE] = ACTIONS(5317), - [anon_sym_RBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), - [anon_sym_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), - [anon_sym_BSLASHtext] = ACTIONS(5319), - [anon_sym_BSLASHintertext] = ACTIONS(5319), - [anon_sym_shortintertext] = ACTIONS(5319), + [1344] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_BSLASHpart] = ACTIONS(6123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddpart] = ACTIONS(6123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6121), + [anon_sym_BSLASHchapter] = ACTIONS(6123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddchap] = ACTIONS(6123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsection] = ACTIONS(6123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHaddsec] = ACTIONS(6123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6121), + [anon_sym_BSLASHparagraph] = ACTIONS(6123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6121), + [anon_sym_BSLASHitem] = ACTIONS(6123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHend] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), }, - [1445] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [anon_sym_RBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - [anon_sym_BSLASHtext] = ACTIONS(5337), - [anon_sym_BSLASHintertext] = ACTIONS(5337), - [anon_sym_shortintertext] = ACTIONS(5337), + [1345] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_BSLASHpart] = ACTIONS(6119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddpart] = ACTIONS(6119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6117), + [anon_sym_BSLASHchapter] = ACTIONS(6119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddchap] = ACTIONS(6119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsection] = ACTIONS(6119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHaddsec] = ACTIONS(6119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6117), + [anon_sym_BSLASHparagraph] = ACTIONS(6119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6117), + [anon_sym_BSLASHitem] = ACTIONS(6119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHend] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), }, - [1446] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - [anon_sym_BSLASHtext] = ACTIONS(5341), - [anon_sym_BSLASHintertext] = ACTIONS(5341), - [anon_sym_shortintertext] = ACTIONS(5341), + [1346] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_BSLASHpart] = ACTIONS(6113), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddpart] = ACTIONS(6113), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), + [anon_sym_BSLASHchapter] = ACTIONS(6113), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddchap] = ACTIONS(6113), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsection] = ACTIONS(6113), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHaddsec] = ACTIONS(6113), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), + [anon_sym_BSLASHparagraph] = ACTIONS(6113), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), + [anon_sym_BSLASHitem] = ACTIONS(6113), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHend] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), }, - [1447] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - [anon_sym_BSLASHtext] = ACTIONS(5345), - [anon_sym_BSLASHintertext] = ACTIONS(5345), - [anon_sym_shortintertext] = ACTIONS(5345), + [1347] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_BSLASHpart] = ACTIONS(6109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddpart] = ACTIONS(6109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6107), + [anon_sym_BSLASHchapter] = ACTIONS(6109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddchap] = ACTIONS(6109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsection] = ACTIONS(6109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHaddsec] = ACTIONS(6109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6107), + [anon_sym_BSLASHparagraph] = ACTIONS(6109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6107), + [anon_sym_BSLASHitem] = ACTIONS(6109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHend] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), }, - [1448] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - [anon_sym_BSLASHtext] = ACTIONS(5349), - [anon_sym_BSLASHintertext] = ACTIONS(5349), - [anon_sym_shortintertext] = ACTIONS(5349), + [1348] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_BSLASHpart] = ACTIONS(6105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddpart] = ACTIONS(6105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6103), + [anon_sym_BSLASHchapter] = ACTIONS(6105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddchap] = ACTIONS(6105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsection] = ACTIONS(6105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHaddsec] = ACTIONS(6105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6103), + [anon_sym_BSLASHparagraph] = ACTIONS(6105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6103), + [anon_sym_BSLASHitem] = ACTIONS(6105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHend] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), }, - [1449] = { - [sym_command_name] = ACTIONS(5353), + [1349] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_BSLASHpart] = ACTIONS(6101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddpart] = ACTIONS(6101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6099), + [anon_sym_BSLASHchapter] = ACTIONS(6101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddchap] = ACTIONS(6101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsection] = ACTIONS(6101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHaddsec] = ACTIONS(6101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6099), + [anon_sym_BSLASHparagraph] = ACTIONS(6101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6099), + [anon_sym_BSLASHitem] = ACTIONS(6101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHend] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [1350] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_BSLASHpart] = ACTIONS(6097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddpart] = ACTIONS(6097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6095), + [anon_sym_BSLASHchapter] = ACTIONS(6097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddchap] = ACTIONS(6097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsection] = ACTIONS(6097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHaddsec] = ACTIONS(6097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6095), + [anon_sym_BSLASHparagraph] = ACTIONS(6097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6095), + [anon_sym_BSLASHitem] = ACTIONS(6097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHend] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [1351] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_BSLASHpart] = ACTIONS(6085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddpart] = ACTIONS(6085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6083), + [anon_sym_BSLASHchapter] = ACTIONS(6085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddchap] = ACTIONS(6085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsection] = ACTIONS(6085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHaddsec] = ACTIONS(6085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6083), + [anon_sym_BSLASHparagraph] = ACTIONS(6085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6083), + [anon_sym_BSLASHitem] = ACTIONS(6085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHend] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1352] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_BSLASHpart] = ACTIONS(6081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddpart] = ACTIONS(6081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6079), + [anon_sym_BSLASHchapter] = ACTIONS(6081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddchap] = ACTIONS(6081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsection] = ACTIONS(6081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHaddsec] = ACTIONS(6081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6079), + [anon_sym_BSLASHparagraph] = ACTIONS(6081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6079), + [anon_sym_BSLASHitem] = ACTIONS(6081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHend] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [1353] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_BSLASHpart] = ACTIONS(6077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddpart] = ACTIONS(6077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6075), + [anon_sym_BSLASHchapter] = ACTIONS(6077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddchap] = ACTIONS(6077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsection] = ACTIONS(6077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHaddsec] = ACTIONS(6077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(6077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6075), + [anon_sym_BSLASHparagraph] = ACTIONS(6077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(6077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6075), + [anon_sym_BSLASHitem] = ACTIONS(6077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHend] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [1354] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_BSLASHpart] = ACTIONS(5995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddpart] = ACTIONS(5995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5993), + [anon_sym_BSLASHchapter] = ACTIONS(5995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddchap] = ACTIONS(5995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsection] = ACTIONS(5995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHaddsec] = ACTIONS(5995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5993), + [anon_sym_BSLASHparagraph] = ACTIONS(5995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5993), + [anon_sym_BSLASHitem] = ACTIONS(5995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [1355] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_BSLASHpart] = ACTIONS(5877), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddpart] = ACTIONS(5877), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5875), + [anon_sym_BSLASHchapter] = ACTIONS(5877), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddchap] = ACTIONS(5877), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsection] = ACTIONS(5877), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHaddsec] = ACTIONS(5877), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5877), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5875), + [anon_sym_BSLASHparagraph] = ACTIONS(5877), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5877), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5875), + [anon_sym_BSLASHitem] = ACTIONS(5877), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHend] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [1356] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_BSLASHpart] = ACTIONS(5893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddpart] = ACTIONS(5893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5891), + [anon_sym_BSLASHchapter] = ACTIONS(5893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddchap] = ACTIONS(5893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsection] = ACTIONS(5893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHaddsec] = ACTIONS(5893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5891), + [anon_sym_BSLASHparagraph] = ACTIONS(5893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5891), + [anon_sym_BSLASHitem] = ACTIONS(5893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [1357] = { + [sym_command_name] = ACTIONS(5889), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5889), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_BSLASHpart] = ACTIONS(5889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddpart] = ACTIONS(5889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5887), + [anon_sym_BSLASHchapter] = ACTIONS(5889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddchap] = ACTIONS(5889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsection] = ACTIONS(5889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHaddsec] = ACTIONS(5889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5889), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5887), + [anon_sym_BSLASHparagraph] = ACTIONS(5889), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5889), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5887), + [anon_sym_BSLASHitem] = ACTIONS(5889), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(5889), + [sym_placeholder] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5889), + [anon_sym_SLASH] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5889), + [anon_sym__] = ACTIONS(5889), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_SQUOTE] = ACTIONS(5889), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5887), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5887), + [anon_sym_DOLLAR] = ACTIONS(5889), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5887), + [anon_sym_BSLASHbegin] = ACTIONS(5889), + [anon_sym_BSLASHtitle] = ACTIONS(5889), + [anon_sym_BSLASHauthor] = ACTIONS(5889), + [anon_sym_BSLASHusepackage] = ACTIONS(5889), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5889), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5889), + [anon_sym_BSLASHinclude] = ACTIONS(5889), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5889), + [anon_sym_BSLASHinput] = ACTIONS(5889), + [anon_sym_BSLASHsubfile] = ACTIONS(5889), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5889), + [anon_sym_BSLASHbibliography] = ACTIONS(5889), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5889), + [anon_sym_BSLASHincludesvg] = ACTIONS(5889), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5889), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5889), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5889), + [anon_sym_BSLASHimport] = ACTIONS(5889), + [anon_sym_BSLASHsubimport] = ACTIONS(5889), + [anon_sym_BSLASHinputfrom] = ACTIONS(5889), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5889), + [anon_sym_BSLASHincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5889), + [anon_sym_BSLASHcaption] = ACTIONS(5889), + [anon_sym_BSLASHcite] = ACTIONS(5889), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCite] = ACTIONS(5889), + [anon_sym_BSLASHnocite] = ACTIONS(5889), + [anon_sym_BSLASHcitet] = ACTIONS(5889), + [anon_sym_BSLASHcitep] = ACTIONS(5889), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteauthor] = ACTIONS(5889), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5889), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitetitle] = ACTIONS(5889), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteyear] = ACTIONS(5889), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5887), + [anon_sym_BSLASHcitedate] = ACTIONS(5889), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5887), + [anon_sym_BSLASHciteurl] = ACTIONS(5889), + [anon_sym_BSLASHfullcite] = ACTIONS(5889), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5889), + [anon_sym_BSLASHcitealt] = ACTIONS(5889), + [anon_sym_BSLASHcitealp] = ACTIONS(5889), + [anon_sym_BSLASHcitetext] = ACTIONS(5889), + [anon_sym_BSLASHparencite] = ACTIONS(5889), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHParencite] = ACTIONS(5889), + [anon_sym_BSLASHfootcite] = ACTIONS(5889), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5889), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5889), + [anon_sym_BSLASHtextcite] = ACTIONS(5889), + [anon_sym_BSLASHTextcite] = ACTIONS(5889), + [anon_sym_BSLASHsmartcite] = ACTIONS(5889), + [anon_sym_BSLASHSmartcite] = ACTIONS(5889), + [anon_sym_BSLASHsupercite] = ACTIONS(5889), + [anon_sym_BSLASHautocite] = ACTIONS(5889), + [anon_sym_BSLASHAutocite] = ACTIONS(5889), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5887), + [anon_sym_BSLASHvolcite] = ACTIONS(5889), + [anon_sym_BSLASHVolcite] = ACTIONS(5889), + [anon_sym_BSLASHpvolcite] = ACTIONS(5889), + [anon_sym_BSLASHPvolcite] = ACTIONS(5889), + [anon_sym_BSLASHfvolcite] = ACTIONS(5889), + [anon_sym_BSLASHftvolcite] = ACTIONS(5889), + [anon_sym_BSLASHsvolcite] = ACTIONS(5889), + [anon_sym_BSLASHSvolcite] = ACTIONS(5889), + [anon_sym_BSLASHtvolcite] = ACTIONS(5889), + [anon_sym_BSLASHTvolcite] = ACTIONS(5889), + [anon_sym_BSLASHavolcite] = ACTIONS(5889), + [anon_sym_BSLASHAvolcite] = ACTIONS(5889), + [anon_sym_BSLASHnotecite] = ACTIONS(5889), + [anon_sym_BSLASHNotecite] = ACTIONS(5889), + [anon_sym_BSLASHpnotecite] = ACTIONS(5889), + [anon_sym_BSLASHPnotecite] = ACTIONS(5889), + [anon_sym_BSLASHfnotecite] = ACTIONS(5889), + [anon_sym_BSLASHlabel] = ACTIONS(5889), + [anon_sym_BSLASHref] = ACTIONS(5889), + [anon_sym_BSLASHeqref] = ACTIONS(5889), + [anon_sym_BSLASHvref] = ACTIONS(5889), + [anon_sym_BSLASHVref] = ACTIONS(5889), + [anon_sym_BSLASHautoref] = ACTIONS(5889), + [anon_sym_BSLASHpageref] = ACTIONS(5889), + [anon_sym_BSLASHcref] = ACTIONS(5889), + [anon_sym_BSLASHCref] = ACTIONS(5889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnameCref] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5889), + [anon_sym_BSLASHlabelcref] = ACTIONS(5889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange] = ACTIONS(5889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHCrefrange] = ACTIONS(5889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5887), + [anon_sym_BSLASHnewlabel] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand] = ACTIONS(5889), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5889), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5889), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5887), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5889), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdef] = ACTIONS(5889), + [anon_sym_BSLASHlet] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5889), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5889), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5889), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5889), + [anon_sym_BSLASHgls] = ACTIONS(5889), + [anon_sym_BSLASHGls] = ACTIONS(5889), + [anon_sym_BSLASHGLS] = ACTIONS(5889), + [anon_sym_BSLASHglspl] = ACTIONS(5889), + [anon_sym_BSLASHGlspl] = ACTIONS(5889), + [anon_sym_BSLASHGLSpl] = ACTIONS(5889), + [anon_sym_BSLASHglsdisp] = ACTIONS(5889), + [anon_sym_BSLASHglslink] = ACTIONS(5889), + [anon_sym_BSLASHglstext] = ACTIONS(5889), + [anon_sym_BSLASHGlstext] = ACTIONS(5889), + [anon_sym_BSLASHGLStext] = ACTIONS(5889), + [anon_sym_BSLASHglsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5889), + [anon_sym_BSLASHglsplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSplural] = ACTIONS(5889), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5889), + [anon_sym_BSLASHglsname] = ACTIONS(5889), + [anon_sym_BSLASHGlsname] = ACTIONS(5889), + [anon_sym_BSLASHGLSname] = ACTIONS(5889), + [anon_sym_BSLASHglssymbol] = ACTIONS(5889), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5889), + [anon_sym_BSLASHglsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5889), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5889), + [anon_sym_BSLASHglsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5889), + [anon_sym_BSLASHglsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5889), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5889), + [anon_sym_BSLASHglsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5889), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5889), + [anon_sym_BSLASHglsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5889), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5889), + [anon_sym_BSLASHnewacronym] = ACTIONS(5889), + [anon_sym_BSLASHacrshort] = ACTIONS(5889), + [anon_sym_BSLASHAcrshort] = ACTIONS(5889), + [anon_sym_BSLASHACRshort] = ACTIONS(5889), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5889), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5889), + [anon_sym_BSLASHacrlong] = ACTIONS(5889), + [anon_sym_BSLASHAcrlong] = ACTIONS(5889), + [anon_sym_BSLASHACRlong] = ACTIONS(5889), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5889), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5889), + [anon_sym_BSLASHacrfull] = ACTIONS(5889), + [anon_sym_BSLASHAcrfull] = ACTIONS(5889), + [anon_sym_BSLASHACRfull] = ACTIONS(5889), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5889), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5889), + [anon_sym_BSLASHacs] = ACTIONS(5889), + [anon_sym_BSLASHAcs] = ACTIONS(5889), + [anon_sym_BSLASHacsp] = ACTIONS(5889), + [anon_sym_BSLASHAcsp] = ACTIONS(5889), + [anon_sym_BSLASHacl] = ACTIONS(5889), + [anon_sym_BSLASHAcl] = ACTIONS(5889), + [anon_sym_BSLASHaclp] = ACTIONS(5889), + [anon_sym_BSLASHAclp] = ACTIONS(5889), + [anon_sym_BSLASHacf] = ACTIONS(5889), + [anon_sym_BSLASHAcf] = ACTIONS(5889), + [anon_sym_BSLASHacfp] = ACTIONS(5889), + [anon_sym_BSLASHAcfp] = ACTIONS(5889), + [anon_sym_BSLASHac] = ACTIONS(5889), + [anon_sym_BSLASHAc] = ACTIONS(5889), + [anon_sym_BSLASHacp] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5889), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5889), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5889), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5889), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5889), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5889), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5889), + [anon_sym_BSLASHcolor] = ACTIONS(5889), + [anon_sym_BSLASHcolorbox] = ACTIONS(5889), + [anon_sym_BSLASHtextcolor] = ACTIONS(5889), + [anon_sym_BSLASHpagecolor] = ACTIONS(5889), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5889), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5889), + [anon_sym_BSLASHtext] = ACTIONS(5889), + [anon_sym_BSLASHintertext] = ACTIONS(5889), + [anon_sym_shortintertext] = ACTIONS(5889), + }, + [1358] = { + [sym_command_name] = ACTIONS(5853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5851), + [anon_sym_BSLASHpart] = ACTIONS(5853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddpart] = ACTIONS(5853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5851), + [anon_sym_BSLASHchapter] = ACTIONS(5853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddchap] = ACTIONS(5853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsection] = ACTIONS(5853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHaddsec] = ACTIONS(5853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5851), + [anon_sym_BSLASHparagraph] = ACTIONS(5853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5851), + [anon_sym_BSLASHitem] = ACTIONS(5853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5851), + [anon_sym_LBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(5853), + [sym_placeholder] = ACTIONS(5851), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym__] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_SQUOTE] = ACTIONS(5853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5851), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5851), + [anon_sym_DOLLAR] = ACTIONS(5853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5851), + [anon_sym_BSLASHbegin] = ACTIONS(5853), + [anon_sym_BSLASHtitle] = ACTIONS(5853), + [anon_sym_BSLASHauthor] = ACTIONS(5853), + [anon_sym_BSLASHusepackage] = ACTIONS(5853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5853), + [anon_sym_BSLASHinclude] = ACTIONS(5853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5853), + [anon_sym_BSLASHinput] = ACTIONS(5853), + [anon_sym_BSLASHsubfile] = ACTIONS(5853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5853), + [anon_sym_BSLASHbibliography] = ACTIONS(5853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5853), + [anon_sym_BSLASHincludesvg] = ACTIONS(5853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5853), + [anon_sym_BSLASHimport] = ACTIONS(5853), + [anon_sym_BSLASHsubimport] = ACTIONS(5853), + [anon_sym_BSLASHinputfrom] = ACTIONS(5853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5853), + [anon_sym_BSLASHincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5853), + [anon_sym_BSLASHcaption] = ACTIONS(5853), + [anon_sym_BSLASHcite] = ACTIONS(5853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCite] = ACTIONS(5853), + [anon_sym_BSLASHnocite] = ACTIONS(5853), + [anon_sym_BSLASHcitet] = ACTIONS(5853), + [anon_sym_BSLASHcitep] = ACTIONS(5853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteauthor] = ACTIONS(5853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitetitle] = ACTIONS(5853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteyear] = ACTIONS(5853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5851), + [anon_sym_BSLASHcitedate] = ACTIONS(5853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5851), + [anon_sym_BSLASHciteurl] = ACTIONS(5853), + [anon_sym_BSLASHfullcite] = ACTIONS(5853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5853), + [anon_sym_BSLASHcitealt] = ACTIONS(5853), + [anon_sym_BSLASHcitealp] = ACTIONS(5853), + [anon_sym_BSLASHcitetext] = ACTIONS(5853), + [anon_sym_BSLASHparencite] = ACTIONS(5853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHParencite] = ACTIONS(5853), + [anon_sym_BSLASHfootcite] = ACTIONS(5853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5853), + [anon_sym_BSLASHtextcite] = ACTIONS(5853), + [anon_sym_BSLASHTextcite] = ACTIONS(5853), + [anon_sym_BSLASHsmartcite] = ACTIONS(5853), + [anon_sym_BSLASHSmartcite] = ACTIONS(5853), + [anon_sym_BSLASHsupercite] = ACTIONS(5853), + [anon_sym_BSLASHautocite] = ACTIONS(5853), + [anon_sym_BSLASHAutocite] = ACTIONS(5853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5851), + [anon_sym_BSLASHvolcite] = ACTIONS(5853), + [anon_sym_BSLASHVolcite] = ACTIONS(5853), + [anon_sym_BSLASHpvolcite] = ACTIONS(5853), + [anon_sym_BSLASHPvolcite] = ACTIONS(5853), + [anon_sym_BSLASHfvolcite] = ACTIONS(5853), + [anon_sym_BSLASHftvolcite] = ACTIONS(5853), + [anon_sym_BSLASHsvolcite] = ACTIONS(5853), + [anon_sym_BSLASHSvolcite] = ACTIONS(5853), + [anon_sym_BSLASHtvolcite] = ACTIONS(5853), + [anon_sym_BSLASHTvolcite] = ACTIONS(5853), + [anon_sym_BSLASHavolcite] = ACTIONS(5853), + [anon_sym_BSLASHAvolcite] = ACTIONS(5853), + [anon_sym_BSLASHnotecite] = ACTIONS(5853), + [anon_sym_BSLASHNotecite] = ACTIONS(5853), + [anon_sym_BSLASHpnotecite] = ACTIONS(5853), + [anon_sym_BSLASHPnotecite] = ACTIONS(5853), + [anon_sym_BSLASHfnotecite] = ACTIONS(5853), + [anon_sym_BSLASHlabel] = ACTIONS(5853), + [anon_sym_BSLASHref] = ACTIONS(5853), + [anon_sym_BSLASHeqref] = ACTIONS(5853), + [anon_sym_BSLASHvref] = ACTIONS(5853), + [anon_sym_BSLASHVref] = ACTIONS(5853), + [anon_sym_BSLASHautoref] = ACTIONS(5853), + [anon_sym_BSLASHpageref] = ACTIONS(5853), + [anon_sym_BSLASHcref] = ACTIONS(5853), + [anon_sym_BSLASHCref] = ACTIONS(5853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnameCref] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5853), + [anon_sym_BSLASHlabelcref] = ACTIONS(5853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange] = ACTIONS(5853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHCrefrange] = ACTIONS(5853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5851), + [anon_sym_BSLASHnewlabel] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand] = ACTIONS(5853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdef] = ACTIONS(5853), + [anon_sym_BSLASHlet] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5853), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5853), + [anon_sym_BSLASHgls] = ACTIONS(5853), + [anon_sym_BSLASHGls] = ACTIONS(5853), + [anon_sym_BSLASHGLS] = ACTIONS(5853), + [anon_sym_BSLASHglspl] = ACTIONS(5853), + [anon_sym_BSLASHGlspl] = ACTIONS(5853), + [anon_sym_BSLASHGLSpl] = ACTIONS(5853), + [anon_sym_BSLASHglsdisp] = ACTIONS(5853), + [anon_sym_BSLASHglslink] = ACTIONS(5853), + [anon_sym_BSLASHglstext] = ACTIONS(5853), + [anon_sym_BSLASHGlstext] = ACTIONS(5853), + [anon_sym_BSLASHGLStext] = ACTIONS(5853), + [anon_sym_BSLASHglsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5853), + [anon_sym_BSLASHglsplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSplural] = ACTIONS(5853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5853), + [anon_sym_BSLASHglsname] = ACTIONS(5853), + [anon_sym_BSLASHGlsname] = ACTIONS(5853), + [anon_sym_BSLASHGLSname] = ACTIONS(5853), + [anon_sym_BSLASHglssymbol] = ACTIONS(5853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5853), + [anon_sym_BSLASHglsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5853), + [anon_sym_BSLASHglsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5853), + [anon_sym_BSLASHglsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5853), + [anon_sym_BSLASHglsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5853), + [anon_sym_BSLASHglsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5853), + [anon_sym_BSLASHnewacronym] = ACTIONS(5853), + [anon_sym_BSLASHacrshort] = ACTIONS(5853), + [anon_sym_BSLASHAcrshort] = ACTIONS(5853), + [anon_sym_BSLASHACRshort] = ACTIONS(5853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5853), + [anon_sym_BSLASHacrlong] = ACTIONS(5853), + [anon_sym_BSLASHAcrlong] = ACTIONS(5853), + [anon_sym_BSLASHACRlong] = ACTIONS(5853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5853), + [anon_sym_BSLASHacrfull] = ACTIONS(5853), + [anon_sym_BSLASHAcrfull] = ACTIONS(5853), + [anon_sym_BSLASHACRfull] = ACTIONS(5853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5853), + [anon_sym_BSLASHacs] = ACTIONS(5853), + [anon_sym_BSLASHAcs] = ACTIONS(5853), + [anon_sym_BSLASHacsp] = ACTIONS(5853), + [anon_sym_BSLASHAcsp] = ACTIONS(5853), + [anon_sym_BSLASHacl] = ACTIONS(5853), + [anon_sym_BSLASHAcl] = ACTIONS(5853), + [anon_sym_BSLASHaclp] = ACTIONS(5853), + [anon_sym_BSLASHAclp] = ACTIONS(5853), + [anon_sym_BSLASHacf] = ACTIONS(5853), + [anon_sym_BSLASHAcf] = ACTIONS(5853), + [anon_sym_BSLASHacfp] = ACTIONS(5853), + [anon_sym_BSLASHAcfp] = ACTIONS(5853), + [anon_sym_BSLASHac] = ACTIONS(5853), + [anon_sym_BSLASHAc] = ACTIONS(5853), + [anon_sym_BSLASHacp] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5853), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5853), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5851), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5853), + [anon_sym_BSLASHcolor] = ACTIONS(5853), + [anon_sym_BSLASHcolorbox] = ACTIONS(5853), + [anon_sym_BSLASHtextcolor] = ACTIONS(5853), + [anon_sym_BSLASHpagecolor] = ACTIONS(5853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5853), + [anon_sym_BSLASHtext] = ACTIONS(5853), + [anon_sym_BSLASHintertext] = ACTIONS(5853), + [anon_sym_shortintertext] = ACTIONS(5853), + }, + [1359] = { + [sym_command_name] = ACTIONS(5885), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5885), + [anon_sym_LPAREN] = ACTIONS(5883), + [anon_sym_RPAREN] = ACTIONS(5883), + [anon_sym_LBRACK] = ACTIONS(5883), + [anon_sym_RBRACK] = ACTIONS(5883), + [anon_sym_COMMA] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_BSLASHpart] = ACTIONS(5885), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddpart] = ACTIONS(5885), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5883), + [anon_sym_BSLASHchapter] = ACTIONS(5885), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddchap] = ACTIONS(5885), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsection] = ACTIONS(5885), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHaddsec] = ACTIONS(5885), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5885), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5883), + [anon_sym_BSLASHparagraph] = ACTIONS(5885), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5885), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5883), + [anon_sym_BSLASHitem] = ACTIONS(5885), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5883), + [anon_sym_LBRACE] = ACTIONS(5883), + [sym_word] = ACTIONS(5885), + [sym_placeholder] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym__] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_BANG] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_SQUOTE] = ACTIONS(5885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5883), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5883), + [anon_sym_DOLLAR] = ACTIONS(5885), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5883), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5883), + [anon_sym_BSLASHbegin] = ACTIONS(5885), + [anon_sym_BSLASHtitle] = ACTIONS(5885), + [anon_sym_BSLASHauthor] = ACTIONS(5885), + [anon_sym_BSLASHusepackage] = ACTIONS(5885), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5885), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5885), + [anon_sym_BSLASHinclude] = ACTIONS(5885), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5885), + [anon_sym_BSLASHinput] = ACTIONS(5885), + [anon_sym_BSLASHsubfile] = ACTIONS(5885), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5885), + [anon_sym_BSLASHbibliography] = ACTIONS(5885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5885), + [anon_sym_BSLASHincludesvg] = ACTIONS(5885), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5885), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5885), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5885), + [anon_sym_BSLASHimport] = ACTIONS(5885), + [anon_sym_BSLASHsubimport] = ACTIONS(5885), + [anon_sym_BSLASHinputfrom] = ACTIONS(5885), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5885), + [anon_sym_BSLASHincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5885), + [anon_sym_BSLASHcaption] = ACTIONS(5885), + [anon_sym_BSLASHcite] = ACTIONS(5885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCite] = ACTIONS(5885), + [anon_sym_BSLASHnocite] = ACTIONS(5885), + [anon_sym_BSLASHcitet] = ACTIONS(5885), + [anon_sym_BSLASHcitep] = ACTIONS(5885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteauthor] = ACTIONS(5885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitetitle] = ACTIONS(5885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteyear] = ACTIONS(5885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5883), + [anon_sym_BSLASHcitedate] = ACTIONS(5885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5883), + [anon_sym_BSLASHciteurl] = ACTIONS(5885), + [anon_sym_BSLASHfullcite] = ACTIONS(5885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5885), + [anon_sym_BSLASHcitealt] = ACTIONS(5885), + [anon_sym_BSLASHcitealp] = ACTIONS(5885), + [anon_sym_BSLASHcitetext] = ACTIONS(5885), + [anon_sym_BSLASHparencite] = ACTIONS(5885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHParencite] = ACTIONS(5885), + [anon_sym_BSLASHfootcite] = ACTIONS(5885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5885), + [anon_sym_BSLASHtextcite] = ACTIONS(5885), + [anon_sym_BSLASHTextcite] = ACTIONS(5885), + [anon_sym_BSLASHsmartcite] = ACTIONS(5885), + [anon_sym_BSLASHSmartcite] = ACTIONS(5885), + [anon_sym_BSLASHsupercite] = ACTIONS(5885), + [anon_sym_BSLASHautocite] = ACTIONS(5885), + [anon_sym_BSLASHAutocite] = ACTIONS(5885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5883), + [anon_sym_BSLASHvolcite] = ACTIONS(5885), + [anon_sym_BSLASHVolcite] = ACTIONS(5885), + [anon_sym_BSLASHpvolcite] = ACTIONS(5885), + [anon_sym_BSLASHPvolcite] = ACTIONS(5885), + [anon_sym_BSLASHfvolcite] = ACTIONS(5885), + [anon_sym_BSLASHftvolcite] = ACTIONS(5885), + [anon_sym_BSLASHsvolcite] = ACTIONS(5885), + [anon_sym_BSLASHSvolcite] = ACTIONS(5885), + [anon_sym_BSLASHtvolcite] = ACTIONS(5885), + [anon_sym_BSLASHTvolcite] = ACTIONS(5885), + [anon_sym_BSLASHavolcite] = ACTIONS(5885), + [anon_sym_BSLASHAvolcite] = ACTIONS(5885), + [anon_sym_BSLASHnotecite] = ACTIONS(5885), + [anon_sym_BSLASHNotecite] = ACTIONS(5885), + [anon_sym_BSLASHpnotecite] = ACTIONS(5885), + [anon_sym_BSLASHPnotecite] = ACTIONS(5885), + [anon_sym_BSLASHfnotecite] = ACTIONS(5885), + [anon_sym_BSLASHlabel] = ACTIONS(5885), + [anon_sym_BSLASHref] = ACTIONS(5885), + [anon_sym_BSLASHeqref] = ACTIONS(5885), + [anon_sym_BSLASHvref] = ACTIONS(5885), + [anon_sym_BSLASHVref] = ACTIONS(5885), + [anon_sym_BSLASHautoref] = ACTIONS(5885), + [anon_sym_BSLASHpageref] = ACTIONS(5885), + [anon_sym_BSLASHcref] = ACTIONS(5885), + [anon_sym_BSLASHCref] = ACTIONS(5885), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnameCref] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5885), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5885), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5885), + [anon_sym_BSLASHlabelcref] = ACTIONS(5885), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange] = ACTIONS(5885), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHCrefrange] = ACTIONS(5885), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5883), + [anon_sym_BSLASHnewlabel] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand] = ACTIONS(5885), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5885), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5885), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5883), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5885), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdef] = ACTIONS(5885), + [anon_sym_BSLASHlet] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5885), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5885), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5885), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5885), + [anon_sym_BSLASHgls] = ACTIONS(5885), + [anon_sym_BSLASHGls] = ACTIONS(5885), + [anon_sym_BSLASHGLS] = ACTIONS(5885), + [anon_sym_BSLASHglspl] = ACTIONS(5885), + [anon_sym_BSLASHGlspl] = ACTIONS(5885), + [anon_sym_BSLASHGLSpl] = ACTIONS(5885), + [anon_sym_BSLASHglsdisp] = ACTIONS(5885), + [anon_sym_BSLASHglslink] = ACTIONS(5885), + [anon_sym_BSLASHglstext] = ACTIONS(5885), + [anon_sym_BSLASHGlstext] = ACTIONS(5885), + [anon_sym_BSLASHGLStext] = ACTIONS(5885), + [anon_sym_BSLASHglsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5885), + [anon_sym_BSLASHglsplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSplural] = ACTIONS(5885), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5885), + [anon_sym_BSLASHglsname] = ACTIONS(5885), + [anon_sym_BSLASHGlsname] = ACTIONS(5885), + [anon_sym_BSLASHGLSname] = ACTIONS(5885), + [anon_sym_BSLASHglssymbol] = ACTIONS(5885), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5885), + [anon_sym_BSLASHglsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5885), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5885), + [anon_sym_BSLASHglsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5885), + [anon_sym_BSLASHglsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5885), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5885), + [anon_sym_BSLASHglsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5885), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5885), + [anon_sym_BSLASHglsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5885), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5885), + [anon_sym_BSLASHnewacronym] = ACTIONS(5885), + [anon_sym_BSLASHacrshort] = ACTIONS(5885), + [anon_sym_BSLASHAcrshort] = ACTIONS(5885), + [anon_sym_BSLASHACRshort] = ACTIONS(5885), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5885), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5885), + [anon_sym_BSLASHacrlong] = ACTIONS(5885), + [anon_sym_BSLASHAcrlong] = ACTIONS(5885), + [anon_sym_BSLASHACRlong] = ACTIONS(5885), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5885), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5885), + [anon_sym_BSLASHacrfull] = ACTIONS(5885), + [anon_sym_BSLASHAcrfull] = ACTIONS(5885), + [anon_sym_BSLASHACRfull] = ACTIONS(5885), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5885), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5885), + [anon_sym_BSLASHacs] = ACTIONS(5885), + [anon_sym_BSLASHAcs] = ACTIONS(5885), + [anon_sym_BSLASHacsp] = ACTIONS(5885), + [anon_sym_BSLASHAcsp] = ACTIONS(5885), + [anon_sym_BSLASHacl] = ACTIONS(5885), + [anon_sym_BSLASHAcl] = ACTIONS(5885), + [anon_sym_BSLASHaclp] = ACTIONS(5885), + [anon_sym_BSLASHAclp] = ACTIONS(5885), + [anon_sym_BSLASHacf] = ACTIONS(5885), + [anon_sym_BSLASHAcf] = ACTIONS(5885), + [anon_sym_BSLASHacfp] = ACTIONS(5885), + [anon_sym_BSLASHAcfp] = ACTIONS(5885), + [anon_sym_BSLASHac] = ACTIONS(5885), + [anon_sym_BSLASHAc] = ACTIONS(5885), + [anon_sym_BSLASHacp] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5885), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5885), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5885), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5885), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5885), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5885), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5885), + [anon_sym_BSLASHcolor] = ACTIONS(5885), + [anon_sym_BSLASHcolorbox] = ACTIONS(5885), + [anon_sym_BSLASHtextcolor] = ACTIONS(5885), + [anon_sym_BSLASHpagecolor] = ACTIONS(5885), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5885), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5885), + [anon_sym_BSLASHtext] = ACTIONS(5885), + [anon_sym_BSLASHintertext] = ACTIONS(5885), + [anon_sym_shortintertext] = ACTIONS(5885), + }, + [1360] = { + [sym_command_name] = ACTIONS(5881), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5881), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_BSLASHpart] = ACTIONS(5881), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddpart] = ACTIONS(5881), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), + [anon_sym_BSLASHchapter] = ACTIONS(5881), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddchap] = ACTIONS(5881), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsection] = ACTIONS(5881), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHaddsec] = ACTIONS(5881), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5881), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5879), + [anon_sym_BSLASHparagraph] = ACTIONS(5881), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5881), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5879), + [anon_sym_BSLASHitem] = ACTIONS(5881), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5879), + [anon_sym_LBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(5881), + [sym_placeholder] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5881), + [anon_sym__] = ACTIONS(5881), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_SQUOTE] = ACTIONS(5881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5879), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5879), + [anon_sym_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5879), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5879), + [anon_sym_BSLASHbegin] = ACTIONS(5881), + [anon_sym_BSLASHtitle] = ACTIONS(5881), + [anon_sym_BSLASHauthor] = ACTIONS(5881), + [anon_sym_BSLASHusepackage] = ACTIONS(5881), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5881), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5881), + [anon_sym_BSLASHinclude] = ACTIONS(5881), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5881), + [anon_sym_BSLASHinput] = ACTIONS(5881), + [anon_sym_BSLASHsubfile] = ACTIONS(5881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5881), + [anon_sym_BSLASHbibliography] = ACTIONS(5881), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5881), + [anon_sym_BSLASHincludesvg] = ACTIONS(5881), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5881), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5881), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5881), + [anon_sym_BSLASHimport] = ACTIONS(5881), + [anon_sym_BSLASHsubimport] = ACTIONS(5881), + [anon_sym_BSLASHinputfrom] = ACTIONS(5881), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5881), + [anon_sym_BSLASHincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5881), + [anon_sym_BSLASHcaption] = ACTIONS(5881), + [anon_sym_BSLASHcite] = ACTIONS(5881), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCite] = ACTIONS(5881), + [anon_sym_BSLASHnocite] = ACTIONS(5881), + [anon_sym_BSLASHcitet] = ACTIONS(5881), + [anon_sym_BSLASHcitep] = ACTIONS(5881), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteauthor] = ACTIONS(5881), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5881), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitetitle] = ACTIONS(5881), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteyear] = ACTIONS(5881), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5879), + [anon_sym_BSLASHcitedate] = ACTIONS(5881), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5879), + [anon_sym_BSLASHciteurl] = ACTIONS(5881), + [anon_sym_BSLASHfullcite] = ACTIONS(5881), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5881), + [anon_sym_BSLASHcitealt] = ACTIONS(5881), + [anon_sym_BSLASHcitealp] = ACTIONS(5881), + [anon_sym_BSLASHcitetext] = ACTIONS(5881), + [anon_sym_BSLASHparencite] = ACTIONS(5881), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHParencite] = ACTIONS(5881), + [anon_sym_BSLASHfootcite] = ACTIONS(5881), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5881), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5881), + [anon_sym_BSLASHtextcite] = ACTIONS(5881), + [anon_sym_BSLASHTextcite] = ACTIONS(5881), + [anon_sym_BSLASHsmartcite] = ACTIONS(5881), + [anon_sym_BSLASHSmartcite] = ACTIONS(5881), + [anon_sym_BSLASHsupercite] = ACTIONS(5881), + [anon_sym_BSLASHautocite] = ACTIONS(5881), + [anon_sym_BSLASHAutocite] = ACTIONS(5881), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5879), + [anon_sym_BSLASHvolcite] = ACTIONS(5881), + [anon_sym_BSLASHVolcite] = ACTIONS(5881), + [anon_sym_BSLASHpvolcite] = ACTIONS(5881), + [anon_sym_BSLASHPvolcite] = ACTIONS(5881), + [anon_sym_BSLASHfvolcite] = ACTIONS(5881), + [anon_sym_BSLASHftvolcite] = ACTIONS(5881), + [anon_sym_BSLASHsvolcite] = ACTIONS(5881), + [anon_sym_BSLASHSvolcite] = ACTIONS(5881), + [anon_sym_BSLASHtvolcite] = ACTIONS(5881), + [anon_sym_BSLASHTvolcite] = ACTIONS(5881), + [anon_sym_BSLASHavolcite] = ACTIONS(5881), + [anon_sym_BSLASHAvolcite] = ACTIONS(5881), + [anon_sym_BSLASHnotecite] = ACTIONS(5881), + [anon_sym_BSLASHNotecite] = ACTIONS(5881), + [anon_sym_BSLASHpnotecite] = ACTIONS(5881), + [anon_sym_BSLASHPnotecite] = ACTIONS(5881), + [anon_sym_BSLASHfnotecite] = ACTIONS(5881), + [anon_sym_BSLASHlabel] = ACTIONS(5881), + [anon_sym_BSLASHref] = ACTIONS(5881), + [anon_sym_BSLASHeqref] = ACTIONS(5881), + [anon_sym_BSLASHvref] = ACTIONS(5881), + [anon_sym_BSLASHVref] = ACTIONS(5881), + [anon_sym_BSLASHautoref] = ACTIONS(5881), + [anon_sym_BSLASHpageref] = ACTIONS(5881), + [anon_sym_BSLASHcref] = ACTIONS(5881), + [anon_sym_BSLASHCref] = ACTIONS(5881), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnameCref] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5881), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5881), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5881), + [anon_sym_BSLASHlabelcref] = ACTIONS(5881), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange] = ACTIONS(5881), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHCrefrange] = ACTIONS(5881), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5879), + [anon_sym_BSLASHnewlabel] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand] = ACTIONS(5881), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5881), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5881), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5879), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5881), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdef] = ACTIONS(5881), + [anon_sym_BSLASHlet] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5881), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5881), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5881), + [anon_sym_BSLASHgls] = ACTIONS(5881), + [anon_sym_BSLASHGls] = ACTIONS(5881), + [anon_sym_BSLASHGLS] = ACTIONS(5881), + [anon_sym_BSLASHglspl] = ACTIONS(5881), + [anon_sym_BSLASHGlspl] = ACTIONS(5881), + [anon_sym_BSLASHGLSpl] = ACTIONS(5881), + [anon_sym_BSLASHglsdisp] = ACTIONS(5881), + [anon_sym_BSLASHglslink] = ACTIONS(5881), + [anon_sym_BSLASHglstext] = ACTIONS(5881), + [anon_sym_BSLASHGlstext] = ACTIONS(5881), + [anon_sym_BSLASHGLStext] = ACTIONS(5881), + [anon_sym_BSLASHglsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5881), + [anon_sym_BSLASHglsplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSplural] = ACTIONS(5881), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5881), + [anon_sym_BSLASHglsname] = ACTIONS(5881), + [anon_sym_BSLASHGlsname] = ACTIONS(5881), + [anon_sym_BSLASHGLSname] = ACTIONS(5881), + [anon_sym_BSLASHglssymbol] = ACTIONS(5881), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5881), + [anon_sym_BSLASHglsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5881), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5881), + [anon_sym_BSLASHglsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5881), + [anon_sym_BSLASHglsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5881), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5881), + [anon_sym_BSLASHglsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5881), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5881), + [anon_sym_BSLASHglsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5881), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5881), + [anon_sym_BSLASHnewacronym] = ACTIONS(5881), + [anon_sym_BSLASHacrshort] = ACTIONS(5881), + [anon_sym_BSLASHAcrshort] = ACTIONS(5881), + [anon_sym_BSLASHACRshort] = ACTIONS(5881), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5881), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5881), + [anon_sym_BSLASHacrlong] = ACTIONS(5881), + [anon_sym_BSLASHAcrlong] = ACTIONS(5881), + [anon_sym_BSLASHACRlong] = ACTIONS(5881), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5881), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5881), + [anon_sym_BSLASHacrfull] = ACTIONS(5881), + [anon_sym_BSLASHAcrfull] = ACTIONS(5881), + [anon_sym_BSLASHACRfull] = ACTIONS(5881), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5881), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5881), + [anon_sym_BSLASHacs] = ACTIONS(5881), + [anon_sym_BSLASHAcs] = ACTIONS(5881), + [anon_sym_BSLASHacsp] = ACTIONS(5881), + [anon_sym_BSLASHAcsp] = ACTIONS(5881), + [anon_sym_BSLASHacl] = ACTIONS(5881), + [anon_sym_BSLASHAcl] = ACTIONS(5881), + [anon_sym_BSLASHaclp] = ACTIONS(5881), + [anon_sym_BSLASHAclp] = ACTIONS(5881), + [anon_sym_BSLASHacf] = ACTIONS(5881), + [anon_sym_BSLASHAcf] = ACTIONS(5881), + [anon_sym_BSLASHacfp] = ACTIONS(5881), + [anon_sym_BSLASHAcfp] = ACTIONS(5881), + [anon_sym_BSLASHac] = ACTIONS(5881), + [anon_sym_BSLASHAc] = ACTIONS(5881), + [anon_sym_BSLASHacp] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5881), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5881), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5881), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5881), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5881), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5881), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHcolor] = ACTIONS(5881), + [anon_sym_BSLASHcolorbox] = ACTIONS(5881), + [anon_sym_BSLASHtextcolor] = ACTIONS(5881), + [anon_sym_BSLASHpagecolor] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5881), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5881), + [anon_sym_BSLASHtext] = ACTIONS(5881), + [anon_sym_BSLASHintertext] = ACTIONS(5881), + [anon_sym_shortintertext] = ACTIONS(5881), + }, + [1361] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2068), + [sym_operator] = STATE(1724), + [sym_key_value_pair] = STATE(2071), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - [anon_sym_BSLASHtext] = ACTIONS(5353), - [anon_sym_BSLASHintertext] = ACTIONS(5353), - [anon_sym_shortintertext] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1362] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2817), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1363] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2698), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1364] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2775), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1365] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2774), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1450] = { - [sym_command_name] = ACTIONS(5357), + [1366] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2752), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - [anon_sym_BSLASHtext] = ACTIONS(5357), - [anon_sym_BSLASHintertext] = ACTIONS(5357), - [anon_sym_shortintertext] = ACTIONS(5357), - }, - [1451] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - [anon_sym_BSLASHtext] = ACTIONS(5361), - [anon_sym_BSLASHintertext] = ACTIONS(5361), - [anon_sym_shortintertext] = ACTIONS(5361), - }, - [1452] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5363), - [anon_sym_RPAREN] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5363), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(5363), - [anon_sym_RBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5363), - [anon_sym_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5363), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5363), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), - [anon_sym_BSLASHtext] = ACTIONS(5365), - [anon_sym_BSLASHintertext] = ACTIONS(5365), - [anon_sym_shortintertext] = ACTIONS(5365), - }, - [1453] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_LBRACE] = ACTIONS(5373), - [anon_sym_RBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5373), - [anon_sym_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5373), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5373), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), - [anon_sym_BSLASHtext] = ACTIONS(5375), - [anon_sym_BSLASHintertext] = ACTIONS(5375), - [anon_sym_shortintertext] = ACTIONS(5375), - }, - [1454] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_RPAREN] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_RBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5381), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), - [anon_sym_BSLASHtext] = ACTIONS(5383), - [anon_sym_BSLASHintertext] = ACTIONS(5383), - [anon_sym_shortintertext] = ACTIONS(5383), - }, - [1455] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_LBRACE] = ACTIONS(5385), - [anon_sym_RBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5385), - [anon_sym_DOLLAR] = ACTIONS(5387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), - [anon_sym_BSLASHtext] = ACTIONS(5387), - [anon_sym_BSLASHintertext] = ACTIONS(5387), - [anon_sym_shortintertext] = ACTIONS(5387), - }, - [1456] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_LPAREN] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5389), - [anon_sym_LBRACK] = ACTIONS(5389), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5389), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5389), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), - [anon_sym_BSLASHtext] = ACTIONS(5391), - [anon_sym_BSLASHintertext] = ACTIONS(5391), - [anon_sym_shortintertext] = ACTIONS(5391), - }, - [1457] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_LPAREN] = ACTIONS(5393), - [anon_sym_RPAREN] = ACTIONS(5393), - [anon_sym_LBRACK] = ACTIONS(5393), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_LBRACE] = ACTIONS(5393), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5393), - [anon_sym_DOLLAR] = ACTIONS(5395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5393), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), - [anon_sym_BSLASHtext] = ACTIONS(5395), - [anon_sym_BSLASHintertext] = ACTIONS(5395), - [anon_sym_shortintertext] = ACTIONS(5395), - }, - [1458] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5425), - [anon_sym_RPAREN] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_LBRACE] = ACTIONS(5425), - [anon_sym_RBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5425), - [anon_sym_DOLLAR] = ACTIONS(5427), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5425), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5425), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), - [anon_sym_BSLASHtext] = ACTIONS(5427), - [anon_sym_BSLASHintertext] = ACTIONS(5427), - [anon_sym_shortintertext] = ACTIONS(5427), - }, - [1459] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(5433), - [anon_sym_RPAREN] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_LBRACE] = ACTIONS(5433), - [anon_sym_RBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5433), - [anon_sym_DOLLAR] = ACTIONS(5435), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5433), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5433), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), - [anon_sym_BSLASHtext] = ACTIONS(5435), - [anon_sym_BSLASHintertext] = ACTIONS(5435), - [anon_sym_shortintertext] = ACTIONS(5435), - }, - [1460] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_LPAREN] = ACTIONS(5437), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_LBRACK] = ACTIONS(5437), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_LBRACE] = ACTIONS(5437), - [anon_sym_RBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(5439), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5437), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5437), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), - [anon_sym_BSLASHtext] = ACTIONS(5439), - [anon_sym_BSLASHintertext] = ACTIONS(5439), - [anon_sym_shortintertext] = ACTIONS(5439), - }, - [1461] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_LPAREN] = ACTIONS(5441), - [anon_sym_RPAREN] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(5441), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_LBRACE] = ACTIONS(5441), - [anon_sym_RBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5441), - [anon_sym_DOLLAR] = ACTIONS(5443), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5441), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5441), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), - [anon_sym_BSLASHtext] = ACTIONS(5443), - [anon_sym_BSLASHintertext] = ACTIONS(5443), - [anon_sym_shortintertext] = ACTIONS(5443), - }, - [1462] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_RPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_LBRACE] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5445), - [anon_sym_DOLLAR] = ACTIONS(5447), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5445), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5445), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), - [anon_sym_BSLASHtext] = ACTIONS(5447), - [anon_sym_BSLASHintertext] = ACTIONS(5447), - [anon_sym_shortintertext] = ACTIONS(5447), - }, - [1463] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_RPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_LBRACE] = ACTIONS(5449), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5449), - [anon_sym_DOLLAR] = ACTIONS(5451), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5449), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5449), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), - [anon_sym_BSLASHtext] = ACTIONS(5451), - [anon_sym_BSLASHintertext] = ACTIONS(5451), - [anon_sym_shortintertext] = ACTIONS(5451), - }, - [1464] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_LPAREN] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_LBRACE] = ACTIONS(5457), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5457), - [anon_sym_DOLLAR] = ACTIONS(5459), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5457), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5457), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), - [anon_sym_BSLASHtext] = ACTIONS(5459), - [anon_sym_BSLASHintertext] = ACTIONS(5459), - [anon_sym_shortintertext] = ACTIONS(5459), - }, - [1465] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - [anon_sym_BSLASHtext] = ACTIONS(5333), - [anon_sym_BSLASHintertext] = ACTIONS(5333), - [anon_sym_shortintertext] = ACTIONS(5333), - }, - [1466] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - [anon_sym_BSLASHtext] = ACTIONS(137), - [anon_sym_BSLASHintertext] = ACTIONS(137), - [anon_sym_shortintertext] = ACTIONS(137), - }, - [1467] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_LPAREN] = ACTIONS(5461), - [anon_sym_RPAREN] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5461), - [anon_sym_RBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(5463), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5461), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5461), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - [anon_sym_BSLASHtext] = ACTIONS(5463), - [anon_sym_BSLASHintertext] = ACTIONS(5463), - [anon_sym_shortintertext] = ACTIONS(5463), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1468] = { - [sym_command_name] = ACTIONS(143), + [1367] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2751), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_RBRACK] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(141), - [sym_word] = ACTIONS(143), - [sym_placeholder] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym__] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(143), - [anon_sym_BSLASHinclude] = ACTIONS(143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), - [anon_sym_BSLASHinput] = ACTIONS(143), - [anon_sym_BSLASHsubfile] = ACTIONS(143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(143), - [anon_sym_BSLASHbibliography] = ACTIONS(143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(143), - [anon_sym_BSLASHincludesvg] = ACTIONS(143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), - [anon_sym_BSLASHimport] = ACTIONS(143), - [anon_sym_BSLASHsubimport] = ACTIONS(143), - [anon_sym_BSLASHinputfrom] = ACTIONS(143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), - [anon_sym_BSLASHincludefrom] = ACTIONS(143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), - [anon_sym_BSLASHcaption] = ACTIONS(143), - [anon_sym_BSLASHcite] = ACTIONS(143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(141), - [anon_sym_BSLASHCite] = ACTIONS(143), - [anon_sym_BSLASHnocite] = ACTIONS(143), - [anon_sym_BSLASHcitet] = ACTIONS(143), - [anon_sym_BSLASHcitep] = ACTIONS(143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteauthor] = ACTIONS(143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitetitle] = ACTIONS(143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteyear] = ACTIONS(143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), - [anon_sym_BSLASHcitedate] = ACTIONS(143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), - [anon_sym_BSLASHciteurl] = ACTIONS(143), - [anon_sym_BSLASHfullcite] = ACTIONS(143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(143), - [anon_sym_BSLASHcitealt] = ACTIONS(143), - [anon_sym_BSLASHcitealp] = ACTIONS(143), - [anon_sym_BSLASHcitetext] = ACTIONS(143), - [anon_sym_BSLASHparencite] = ACTIONS(143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), - [anon_sym_BSLASHParencite] = ACTIONS(143), - [anon_sym_BSLASHfootcite] = ACTIONS(143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(143), - [anon_sym_BSLASHtextcite] = ACTIONS(143), - [anon_sym_BSLASHTextcite] = ACTIONS(143), - [anon_sym_BSLASHsmartcite] = ACTIONS(143), - [anon_sym_BSLASHSmartcite] = ACTIONS(143), - [anon_sym_BSLASHsupercite] = ACTIONS(143), - [anon_sym_BSLASHautocite] = ACTIONS(143), - [anon_sym_BSLASHAutocite] = ACTIONS(143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), - [anon_sym_BSLASHvolcite] = ACTIONS(143), - [anon_sym_BSLASHVolcite] = ACTIONS(143), - [anon_sym_BSLASHpvolcite] = ACTIONS(143), - [anon_sym_BSLASHPvolcite] = ACTIONS(143), - [anon_sym_BSLASHfvolcite] = ACTIONS(143), - [anon_sym_BSLASHftvolcite] = ACTIONS(143), - [anon_sym_BSLASHsvolcite] = ACTIONS(143), - [anon_sym_BSLASHSvolcite] = ACTIONS(143), - [anon_sym_BSLASHtvolcite] = ACTIONS(143), - [anon_sym_BSLASHTvolcite] = ACTIONS(143), - [anon_sym_BSLASHavolcite] = ACTIONS(143), - [anon_sym_BSLASHAvolcite] = ACTIONS(143), - [anon_sym_BSLASHnotecite] = ACTIONS(143), - [anon_sym_BSLASHNotecite] = ACTIONS(143), - [anon_sym_BSLASHpnotecite] = ACTIONS(143), - [anon_sym_BSLASHPnotecite] = ACTIONS(143), - [anon_sym_BSLASHfnotecite] = ACTIONS(143), - [anon_sym_BSLASHlabel] = ACTIONS(143), - [anon_sym_BSLASHref] = ACTIONS(143), - [anon_sym_BSLASHeqref] = ACTIONS(143), - [anon_sym_BSLASHvref] = ACTIONS(143), - [anon_sym_BSLASHVref] = ACTIONS(143), - [anon_sym_BSLASHautoref] = ACTIONS(143), - [anon_sym_BSLASHpageref] = ACTIONS(143), - [anon_sym_BSLASHcref] = ACTIONS(143), - [anon_sym_BSLASHCref] = ACTIONS(143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(141), - [anon_sym_BSLASHnamecref] = ACTIONS(143), - [anon_sym_BSLASHnameCref] = ACTIONS(143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), - [anon_sym_BSLASHlabelcref] = ACTIONS(143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), - [anon_sym_BSLASHcrefrange] = ACTIONS(143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHCrefrange] = ACTIONS(143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), - [anon_sym_BSLASHnewlabel] = ACTIONS(143), - [anon_sym_BSLASHnewcommand] = ACTIONS(143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), - [anon_sym_BSLASHdef] = ACTIONS(143), - [anon_sym_BSLASHlet] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), - [anon_sym_BSLASHgls] = ACTIONS(143), - [anon_sym_BSLASHGls] = ACTIONS(143), - [anon_sym_BSLASHGLS] = ACTIONS(143), - [anon_sym_BSLASHglspl] = ACTIONS(143), - [anon_sym_BSLASHGlspl] = ACTIONS(143), - [anon_sym_BSLASHGLSpl] = ACTIONS(143), - [anon_sym_BSLASHglsdisp] = ACTIONS(143), - [anon_sym_BSLASHglslink] = ACTIONS(143), - [anon_sym_BSLASHglstext] = ACTIONS(143), - [anon_sym_BSLASHGlstext] = ACTIONS(143), - [anon_sym_BSLASHGLStext] = ACTIONS(143), - [anon_sym_BSLASHglsfirst] = ACTIONS(143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(143), - [anon_sym_BSLASHglsplural] = ACTIONS(143), - [anon_sym_BSLASHGlsplural] = ACTIONS(143), - [anon_sym_BSLASHGLSplural] = ACTIONS(143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), - [anon_sym_BSLASHglsname] = ACTIONS(143), - [anon_sym_BSLASHGlsname] = ACTIONS(143), - [anon_sym_BSLASHGLSname] = ACTIONS(143), - [anon_sym_BSLASHglssymbol] = ACTIONS(143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(143), - [anon_sym_BSLASHglsdesc] = ACTIONS(143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(143), - [anon_sym_BSLASHglsuseri] = ACTIONS(143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(143), - [anon_sym_BSLASHglsuserii] = ACTIONS(143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), - [anon_sym_BSLASHglsuserv] = ACTIONS(143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(143), - [anon_sym_BSLASHglsuservi] = ACTIONS(143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(143), - [anon_sym_BSLASHnewacronym] = ACTIONS(143), - [anon_sym_BSLASHacrshort] = ACTIONS(143), - [anon_sym_BSLASHAcrshort] = ACTIONS(143), - [anon_sym_BSLASHACRshort] = ACTIONS(143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(143), - [anon_sym_BSLASHacrlong] = ACTIONS(143), - [anon_sym_BSLASHAcrlong] = ACTIONS(143), - [anon_sym_BSLASHACRlong] = ACTIONS(143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(143), - [anon_sym_BSLASHacrfull] = ACTIONS(143), - [anon_sym_BSLASHAcrfull] = ACTIONS(143), - [anon_sym_BSLASHACRfull] = ACTIONS(143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(143), - [anon_sym_BSLASHacs] = ACTIONS(143), - [anon_sym_BSLASHAcs] = ACTIONS(143), - [anon_sym_BSLASHacsp] = ACTIONS(143), - [anon_sym_BSLASHAcsp] = ACTIONS(143), - [anon_sym_BSLASHacl] = ACTIONS(143), - [anon_sym_BSLASHAcl] = ACTIONS(143), - [anon_sym_BSLASHaclp] = ACTIONS(143), - [anon_sym_BSLASHAclp] = ACTIONS(143), - [anon_sym_BSLASHacf] = ACTIONS(143), - [anon_sym_BSLASHAcf] = ACTIONS(143), - [anon_sym_BSLASHacfp] = ACTIONS(143), - [anon_sym_BSLASHAcfp] = ACTIONS(143), - [anon_sym_BSLASHac] = ACTIONS(143), - [anon_sym_BSLASHAc] = ACTIONS(143), - [anon_sym_BSLASHacp] = ACTIONS(143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), - [anon_sym_BSLASHcolor] = ACTIONS(143), - [anon_sym_BSLASHcolorbox] = ACTIONS(143), - [anon_sym_BSLASHtextcolor] = ACTIONS(143), - [anon_sym_BSLASHpagecolor] = ACTIONS(143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [1469] = { - [sym_command_name] = ACTIONS(5431), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5431), - [anon_sym_LPAREN] = ACTIONS(5429), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_LBRACK] = ACTIONS(5429), - [anon_sym_RBRACK] = ACTIONS(5429), - [anon_sym_COMMA] = ACTIONS(5429), - [anon_sym_LBRACE] = ACTIONS(5429), - [anon_sym_RBRACE] = ACTIONS(5429), - [sym_word] = ACTIONS(5431), - [sym_placeholder] = ACTIONS(5429), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_CARET] = ACTIONS(5431), - [anon_sym__] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_SQUOTE] = ACTIONS(5431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(5431), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5429), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5429), - [anon_sym_BSLASHusepackage] = ACTIONS(5431), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5431), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5431), - [anon_sym_BSLASHinclude] = ACTIONS(5431), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5431), - [anon_sym_BSLASHinput] = ACTIONS(5431), - [anon_sym_BSLASHsubfile] = ACTIONS(5431), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5431), - [anon_sym_BSLASHbibliography] = ACTIONS(5431), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5431), - [anon_sym_BSLASHincludesvg] = ACTIONS(5431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5431), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5431), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5431), - [anon_sym_BSLASHimport] = ACTIONS(5431), - [anon_sym_BSLASHsubimport] = ACTIONS(5431), - [anon_sym_BSLASHinputfrom] = ACTIONS(5431), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5431), - [anon_sym_BSLASHincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5431), - [anon_sym_BSLASHcaption] = ACTIONS(5431), - [anon_sym_BSLASHcite] = ACTIONS(5431), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCite] = ACTIONS(5431), - [anon_sym_BSLASHnocite] = ACTIONS(5431), - [anon_sym_BSLASHcitet] = ACTIONS(5431), - [anon_sym_BSLASHcitep] = ACTIONS(5431), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteauthor] = ACTIONS(5431), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5431), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitetitle] = ACTIONS(5431), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteyear] = ACTIONS(5431), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5429), - [anon_sym_BSLASHcitedate] = ACTIONS(5431), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5429), - [anon_sym_BSLASHciteurl] = ACTIONS(5431), - [anon_sym_BSLASHfullcite] = ACTIONS(5431), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5431), - [anon_sym_BSLASHcitealt] = ACTIONS(5431), - [anon_sym_BSLASHcitealp] = ACTIONS(5431), - [anon_sym_BSLASHcitetext] = ACTIONS(5431), - [anon_sym_BSLASHparencite] = ACTIONS(5431), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHParencite] = ACTIONS(5431), - [anon_sym_BSLASHfootcite] = ACTIONS(5431), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5431), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5431), - [anon_sym_BSLASHtextcite] = ACTIONS(5431), - [anon_sym_BSLASHTextcite] = ACTIONS(5431), - [anon_sym_BSLASHsmartcite] = ACTIONS(5431), - [anon_sym_BSLASHSmartcite] = ACTIONS(5431), - [anon_sym_BSLASHsupercite] = ACTIONS(5431), - [anon_sym_BSLASHautocite] = ACTIONS(5431), - [anon_sym_BSLASHAutocite] = ACTIONS(5431), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5429), - [anon_sym_BSLASHvolcite] = ACTIONS(5431), - [anon_sym_BSLASHVolcite] = ACTIONS(5431), - [anon_sym_BSLASHpvolcite] = ACTIONS(5431), - [anon_sym_BSLASHPvolcite] = ACTIONS(5431), - [anon_sym_BSLASHfvolcite] = ACTIONS(5431), - [anon_sym_BSLASHftvolcite] = ACTIONS(5431), - [anon_sym_BSLASHsvolcite] = ACTIONS(5431), - [anon_sym_BSLASHSvolcite] = ACTIONS(5431), - [anon_sym_BSLASHtvolcite] = ACTIONS(5431), - [anon_sym_BSLASHTvolcite] = ACTIONS(5431), - [anon_sym_BSLASHavolcite] = ACTIONS(5431), - [anon_sym_BSLASHAvolcite] = ACTIONS(5431), - [anon_sym_BSLASHnotecite] = ACTIONS(5431), - [anon_sym_BSLASHNotecite] = ACTIONS(5431), - [anon_sym_BSLASHpnotecite] = ACTIONS(5431), - [anon_sym_BSLASHPnotecite] = ACTIONS(5431), - [anon_sym_BSLASHfnotecite] = ACTIONS(5431), - [anon_sym_BSLASHlabel] = ACTIONS(5431), - [anon_sym_BSLASHref] = ACTIONS(5431), - [anon_sym_BSLASHeqref] = ACTIONS(5431), - [anon_sym_BSLASHvref] = ACTIONS(5431), - [anon_sym_BSLASHVref] = ACTIONS(5431), - [anon_sym_BSLASHautoref] = ACTIONS(5431), - [anon_sym_BSLASHpageref] = ACTIONS(5431), - [anon_sym_BSLASHcref] = ACTIONS(5431), - [anon_sym_BSLASHCref] = ACTIONS(5431), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnameCref] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5431), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5431), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5431), - [anon_sym_BSLASHlabelcref] = ACTIONS(5431), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange] = ACTIONS(5431), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHCrefrange] = ACTIONS(5431), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5429), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand] = ACTIONS(5431), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5431), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5431), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5429), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5431), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdef] = ACTIONS(5431), - [anon_sym_BSLASHlet] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5431), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5431), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5431), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5431), - [anon_sym_BSLASHgls] = ACTIONS(5431), - [anon_sym_BSLASHGls] = ACTIONS(5431), - [anon_sym_BSLASHGLS] = ACTIONS(5431), - [anon_sym_BSLASHglspl] = ACTIONS(5431), - [anon_sym_BSLASHGlspl] = ACTIONS(5431), - [anon_sym_BSLASHGLSpl] = ACTIONS(5431), - [anon_sym_BSLASHglsdisp] = ACTIONS(5431), - [anon_sym_BSLASHglslink] = ACTIONS(5431), - [anon_sym_BSLASHglstext] = ACTIONS(5431), - [anon_sym_BSLASHGlstext] = ACTIONS(5431), - [anon_sym_BSLASHGLStext] = ACTIONS(5431), - [anon_sym_BSLASHglsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5431), - [anon_sym_BSLASHglsplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSplural] = ACTIONS(5431), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5431), - [anon_sym_BSLASHglsname] = ACTIONS(5431), - [anon_sym_BSLASHGlsname] = ACTIONS(5431), - [anon_sym_BSLASHGLSname] = ACTIONS(5431), - [anon_sym_BSLASHglssymbol] = ACTIONS(5431), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5431), - [anon_sym_BSLASHglsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5431), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5431), - [anon_sym_BSLASHglsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5431), - [anon_sym_BSLASHglsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5431), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5431), - [anon_sym_BSLASHglsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5431), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5431), - [anon_sym_BSLASHglsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5431), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5431), - [anon_sym_BSLASHnewacronym] = ACTIONS(5431), - [anon_sym_BSLASHacrshort] = ACTIONS(5431), - [anon_sym_BSLASHAcrshort] = ACTIONS(5431), - [anon_sym_BSLASHACRshort] = ACTIONS(5431), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5431), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5431), - [anon_sym_BSLASHacrlong] = ACTIONS(5431), - [anon_sym_BSLASHAcrlong] = ACTIONS(5431), - [anon_sym_BSLASHACRlong] = ACTIONS(5431), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5431), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5431), - [anon_sym_BSLASHacrfull] = ACTIONS(5431), - [anon_sym_BSLASHAcrfull] = ACTIONS(5431), - [anon_sym_BSLASHACRfull] = ACTIONS(5431), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5431), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5431), - [anon_sym_BSLASHacs] = ACTIONS(5431), - [anon_sym_BSLASHAcs] = ACTIONS(5431), - [anon_sym_BSLASHacsp] = ACTIONS(5431), - [anon_sym_BSLASHAcsp] = ACTIONS(5431), - [anon_sym_BSLASHacl] = ACTIONS(5431), - [anon_sym_BSLASHAcl] = ACTIONS(5431), - [anon_sym_BSLASHaclp] = ACTIONS(5431), - [anon_sym_BSLASHAclp] = ACTIONS(5431), - [anon_sym_BSLASHacf] = ACTIONS(5431), - [anon_sym_BSLASHAcf] = ACTIONS(5431), - [anon_sym_BSLASHacfp] = ACTIONS(5431), - [anon_sym_BSLASHAcfp] = ACTIONS(5431), - [anon_sym_BSLASHac] = ACTIONS(5431), - [anon_sym_BSLASHAc] = ACTIONS(5431), - [anon_sym_BSLASHacp] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5431), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5431), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5431), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5431), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5431), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5429), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5431), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5431), - [anon_sym_BSLASHcolor] = ACTIONS(5431), - [anon_sym_BSLASHcolorbox] = ACTIONS(5431), - [anon_sym_BSLASHtextcolor] = ACTIONS(5431), - [anon_sym_BSLASHpagecolor] = ACTIONS(5431), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5431), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5431), - [anon_sym_BSLASHtext] = ACTIONS(5431), - [anon_sym_BSLASHintertext] = ACTIONS(5431), - [anon_sym_shortintertext] = ACTIONS(5431), - }, - [1470] = { - [sym_command_name] = ACTIONS(5315), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5315), - [anon_sym_LPAREN] = ACTIONS(5313), - [anon_sym_RPAREN] = ACTIONS(5313), - [anon_sym_LBRACK] = ACTIONS(5313), - [anon_sym_RBRACK] = ACTIONS(5313), - [anon_sym_COMMA] = ACTIONS(5313), - [anon_sym_LBRACE] = ACTIONS(5313), - [anon_sym_RBRACE] = ACTIONS(5313), - [sym_word] = ACTIONS(5315), - [sym_placeholder] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5315), - [anon_sym_CARET] = ACTIONS(5315), - [anon_sym__] = ACTIONS(5315), - [anon_sym_LT] = ACTIONS(5315), - [anon_sym_GT] = ACTIONS(5315), - [anon_sym_BANG] = ACTIONS(5315), - [anon_sym_PIPE] = ACTIONS(5315), - [anon_sym_COLON] = ACTIONS(5315), - [anon_sym_SQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), - [anon_sym_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5313), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5313), - [anon_sym_BSLASHusepackage] = ACTIONS(5315), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), - [anon_sym_BSLASHinclude] = ACTIONS(5315), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), - [anon_sym_BSLASHinput] = ACTIONS(5315), - [anon_sym_BSLASHsubfile] = ACTIONS(5315), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), - [anon_sym_BSLASHbibliography] = ACTIONS(5315), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), - [anon_sym_BSLASHincludesvg] = ACTIONS(5315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), - [anon_sym_BSLASHimport] = ACTIONS(5315), - [anon_sym_BSLASHsubimport] = ACTIONS(5315), - [anon_sym_BSLASHinputfrom] = ACTIONS(5315), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), - [anon_sym_BSLASHincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), - [anon_sym_BSLASHcaption] = ACTIONS(5315), - [anon_sym_BSLASHcite] = ACTIONS(5315), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCite] = ACTIONS(5315), - [anon_sym_BSLASHnocite] = ACTIONS(5315), - [anon_sym_BSLASHcitet] = ACTIONS(5315), - [anon_sym_BSLASHcitep] = ACTIONS(5315), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteauthor] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitetitle] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteyear] = ACTIONS(5315), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5313), - [anon_sym_BSLASHcitedate] = ACTIONS(5315), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5313), - [anon_sym_BSLASHciteurl] = ACTIONS(5315), - [anon_sym_BSLASHfullcite] = ACTIONS(5315), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), - [anon_sym_BSLASHcitealt] = ACTIONS(5315), - [anon_sym_BSLASHcitealp] = ACTIONS(5315), - [anon_sym_BSLASHcitetext] = ACTIONS(5315), - [anon_sym_BSLASHparencite] = ACTIONS(5315), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHParencite] = ACTIONS(5315), - [anon_sym_BSLASHfootcite] = ACTIONS(5315), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), - [anon_sym_BSLASHtextcite] = ACTIONS(5315), - [anon_sym_BSLASHTextcite] = ACTIONS(5315), - [anon_sym_BSLASHsmartcite] = ACTIONS(5315), - [anon_sym_BSLASHSmartcite] = ACTIONS(5315), - [anon_sym_BSLASHsupercite] = ACTIONS(5315), - [anon_sym_BSLASHautocite] = ACTIONS(5315), - [anon_sym_BSLASHAutocite] = ACTIONS(5315), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5313), - [anon_sym_BSLASHvolcite] = ACTIONS(5315), - [anon_sym_BSLASHVolcite] = ACTIONS(5315), - [anon_sym_BSLASHpvolcite] = ACTIONS(5315), - [anon_sym_BSLASHPvolcite] = ACTIONS(5315), - [anon_sym_BSLASHfvolcite] = ACTIONS(5315), - [anon_sym_BSLASHftvolcite] = ACTIONS(5315), - [anon_sym_BSLASHsvolcite] = ACTIONS(5315), - [anon_sym_BSLASHSvolcite] = ACTIONS(5315), - [anon_sym_BSLASHtvolcite] = ACTIONS(5315), - [anon_sym_BSLASHTvolcite] = ACTIONS(5315), - [anon_sym_BSLASHavolcite] = ACTIONS(5315), - [anon_sym_BSLASHAvolcite] = ACTIONS(5315), - [anon_sym_BSLASHnotecite] = ACTIONS(5315), - [anon_sym_BSLASHNotecite] = ACTIONS(5315), - [anon_sym_BSLASHpnotecite] = ACTIONS(5315), - [anon_sym_BSLASHPnotecite] = ACTIONS(5315), - [anon_sym_BSLASHfnotecite] = ACTIONS(5315), - [anon_sym_BSLASHlabel] = ACTIONS(5315), - [anon_sym_BSLASHref] = ACTIONS(5315), - [anon_sym_BSLASHeqref] = ACTIONS(5315), - [anon_sym_BSLASHvref] = ACTIONS(5315), - [anon_sym_BSLASHVref] = ACTIONS(5315), - [anon_sym_BSLASHautoref] = ACTIONS(5315), - [anon_sym_BSLASHpageref] = ACTIONS(5315), - [anon_sym_BSLASHcref] = ACTIONS(5315), - [anon_sym_BSLASHCref] = ACTIONS(5315), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnameCref] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), - [anon_sym_BSLASHlabelcref] = ACTIONS(5315), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange] = ACTIONS(5315), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHCrefrange] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5313), - [anon_sym_BSLASHnewlabel] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand] = ACTIONS(5315), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdef] = ACTIONS(5315), - [anon_sym_BSLASHlet] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5315), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5315), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), - [anon_sym_BSLASHgls] = ACTIONS(5315), - [anon_sym_BSLASHGls] = ACTIONS(5315), - [anon_sym_BSLASHGLS] = ACTIONS(5315), - [anon_sym_BSLASHglspl] = ACTIONS(5315), - [anon_sym_BSLASHGlspl] = ACTIONS(5315), - [anon_sym_BSLASHGLSpl] = ACTIONS(5315), - [anon_sym_BSLASHglsdisp] = ACTIONS(5315), - [anon_sym_BSLASHglslink] = ACTIONS(5315), - [anon_sym_BSLASHglstext] = ACTIONS(5315), - [anon_sym_BSLASHGlstext] = ACTIONS(5315), - [anon_sym_BSLASHGLStext] = ACTIONS(5315), - [anon_sym_BSLASHglsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), - [anon_sym_BSLASHglsplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSplural] = ACTIONS(5315), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), - [anon_sym_BSLASHglsname] = ACTIONS(5315), - [anon_sym_BSLASHGlsname] = ACTIONS(5315), - [anon_sym_BSLASHGLSname] = ACTIONS(5315), - [anon_sym_BSLASHglssymbol] = ACTIONS(5315), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), - [anon_sym_BSLASHglsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), - [anon_sym_BSLASHglsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), - [anon_sym_BSLASHglsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), - [anon_sym_BSLASHglsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), - [anon_sym_BSLASHglsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [anon_sym_BSLASHacrshort] = ACTIONS(5315), - [anon_sym_BSLASHAcrshort] = ACTIONS(5315), - [anon_sym_BSLASHACRshort] = ACTIONS(5315), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), - [anon_sym_BSLASHacrlong] = ACTIONS(5315), - [anon_sym_BSLASHAcrlong] = ACTIONS(5315), - [anon_sym_BSLASHACRlong] = ACTIONS(5315), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), - [anon_sym_BSLASHacrfull] = ACTIONS(5315), - [anon_sym_BSLASHAcrfull] = ACTIONS(5315), - [anon_sym_BSLASHACRfull] = ACTIONS(5315), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), - [anon_sym_BSLASHacs] = ACTIONS(5315), - [anon_sym_BSLASHAcs] = ACTIONS(5315), - [anon_sym_BSLASHacsp] = ACTIONS(5315), - [anon_sym_BSLASHAcsp] = ACTIONS(5315), - [anon_sym_BSLASHacl] = ACTIONS(5315), - [anon_sym_BSLASHAcl] = ACTIONS(5315), - [anon_sym_BSLASHaclp] = ACTIONS(5315), - [anon_sym_BSLASHAclp] = ACTIONS(5315), - [anon_sym_BSLASHacf] = ACTIONS(5315), - [anon_sym_BSLASHAcf] = ACTIONS(5315), - [anon_sym_BSLASHacfp] = ACTIONS(5315), - [anon_sym_BSLASHAcfp] = ACTIONS(5315), - [anon_sym_BSLASHac] = ACTIONS(5315), - [anon_sym_BSLASHAc] = ACTIONS(5315), - [anon_sym_BSLASHacp] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5313), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), - [anon_sym_BSLASHcolor] = ACTIONS(5315), - [anon_sym_BSLASHcolorbox] = ACTIONS(5315), - [anon_sym_BSLASHtextcolor] = ACTIONS(5315), - [anon_sym_BSLASHpagecolor] = ACTIONS(5315), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), - [anon_sym_BSLASHtext] = ACTIONS(5315), - [anon_sym_BSLASHintertext] = ACTIONS(5315), - [anon_sym_shortintertext] = ACTIONS(5315), - }, - [1471] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_LPAREN] = ACTIONS(5469), - [anon_sym_RPAREN] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5469), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_LBRACE] = ACTIONS(5469), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5469), - [anon_sym_DOLLAR] = ACTIONS(5471), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5469), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5469), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), - [anon_sym_BSLASHtext] = ACTIONS(5471), - [anon_sym_BSLASHintertext] = ACTIONS(5471), - [anon_sym_shortintertext] = ACTIONS(5471), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1472] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_LPAREN] = ACTIONS(5473), - [anon_sym_RPAREN] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_LBRACE] = ACTIONS(5473), - [anon_sym_RBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5473), - [anon_sym_DOLLAR] = ACTIONS(5475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5473), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5473), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), - [anon_sym_BSLASHtext] = ACTIONS(5475), - [anon_sym_BSLASHintertext] = ACTIONS(5475), - [anon_sym_shortintertext] = ACTIONS(5475), + [1368] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2743), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1473] = { - [sym_command_name] = ACTIONS(5327), + [1369] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2764), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_LPAREN] = ACTIONS(5325), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_LBRACK] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_LBRACE] = ACTIONS(5325), - [anon_sym_RBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), - [anon_sym_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), - [anon_sym_BSLASHtext] = ACTIONS(5327), - [anon_sym_BSLASHintertext] = ACTIONS(5327), - [anon_sym_shortintertext] = ACTIONS(5327), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1474] = { - [sym_command_name] = ACTIONS(5613), + [1370] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2799), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5615), - [sym_word] = ACTIONS(5613), - [sym_placeholder] = ACTIONS(5615), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5613), - [anon_sym__] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_BANG] = ACTIONS(5613), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5613), - [anon_sym_SQUOTE] = ACTIONS(5613), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5615), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5615), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5615), - [anon_sym_BSLASHusepackage] = ACTIONS(5613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5613), - [anon_sym_BSLASHinclude] = ACTIONS(5613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5613), - [anon_sym_BSLASHinput] = ACTIONS(5613), - [anon_sym_BSLASHsubfile] = ACTIONS(5613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5613), - [anon_sym_BSLASHbibliography] = ACTIONS(5613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5613), - [anon_sym_BSLASHincludesvg] = ACTIONS(5613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5613), - [anon_sym_BSLASHimport] = ACTIONS(5613), - [anon_sym_BSLASHsubimport] = ACTIONS(5613), - [anon_sym_BSLASHinputfrom] = ACTIONS(5613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5613), - [anon_sym_BSLASHincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5613), - [anon_sym_BSLASHcaption] = ACTIONS(5613), - [anon_sym_BSLASHcite] = ACTIONS(5613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCite] = ACTIONS(5613), - [anon_sym_BSLASHnocite] = ACTIONS(5613), - [anon_sym_BSLASHcitet] = ACTIONS(5613), - [anon_sym_BSLASHcitep] = ACTIONS(5613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteauthor] = ACTIONS(5613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitetitle] = ACTIONS(5613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteyear] = ACTIONS(5613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5615), - [anon_sym_BSLASHcitedate] = ACTIONS(5613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5615), - [anon_sym_BSLASHciteurl] = ACTIONS(5613), - [anon_sym_BSLASHfullcite] = ACTIONS(5613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5613), - [anon_sym_BSLASHcitealt] = ACTIONS(5613), - [anon_sym_BSLASHcitealp] = ACTIONS(5613), - [anon_sym_BSLASHcitetext] = ACTIONS(5613), - [anon_sym_BSLASHparencite] = ACTIONS(5613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHParencite] = ACTIONS(5613), - [anon_sym_BSLASHfootcite] = ACTIONS(5613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5613), - [anon_sym_BSLASHtextcite] = ACTIONS(5613), - [anon_sym_BSLASHTextcite] = ACTIONS(5613), - [anon_sym_BSLASHsmartcite] = ACTIONS(5613), - [anon_sym_BSLASHSmartcite] = ACTIONS(5613), - [anon_sym_BSLASHsupercite] = ACTIONS(5613), - [anon_sym_BSLASHautocite] = ACTIONS(5613), - [anon_sym_BSLASHAutocite] = ACTIONS(5613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5615), - [anon_sym_BSLASHvolcite] = ACTIONS(5613), - [anon_sym_BSLASHVolcite] = ACTIONS(5613), - [anon_sym_BSLASHpvolcite] = ACTIONS(5613), - [anon_sym_BSLASHPvolcite] = ACTIONS(5613), - [anon_sym_BSLASHfvolcite] = ACTIONS(5613), - [anon_sym_BSLASHftvolcite] = ACTIONS(5613), - [anon_sym_BSLASHsvolcite] = ACTIONS(5613), - [anon_sym_BSLASHSvolcite] = ACTIONS(5613), - [anon_sym_BSLASHtvolcite] = ACTIONS(5613), - [anon_sym_BSLASHTvolcite] = ACTIONS(5613), - [anon_sym_BSLASHavolcite] = ACTIONS(5613), - [anon_sym_BSLASHAvolcite] = ACTIONS(5613), - [anon_sym_BSLASHnotecite] = ACTIONS(5613), - [anon_sym_BSLASHNotecite] = ACTIONS(5613), - [anon_sym_BSLASHpnotecite] = ACTIONS(5613), - [anon_sym_BSLASHPnotecite] = ACTIONS(5613), - [anon_sym_BSLASHfnotecite] = ACTIONS(5613), - [anon_sym_BSLASHlabel] = ACTIONS(5613), - [anon_sym_BSLASHref] = ACTIONS(5613), - [anon_sym_BSLASHeqref] = ACTIONS(5613), - [anon_sym_BSLASHvref] = ACTIONS(5613), - [anon_sym_BSLASHVref] = ACTIONS(5613), - [anon_sym_BSLASHautoref] = ACTIONS(5613), - [anon_sym_BSLASHpageref] = ACTIONS(5613), - [anon_sym_BSLASHcref] = ACTIONS(5613), - [anon_sym_BSLASHCref] = ACTIONS(5613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnameCref] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5613), - [anon_sym_BSLASHlabelcref] = ACTIONS(5613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange] = ACTIONS(5613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHCrefrange] = ACTIONS(5613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5615), - [anon_sym_BSLASHnewlabel] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand] = ACTIONS(5613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5615), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdef] = ACTIONS(5613), - [anon_sym_BSLASHlet] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5613), - [anon_sym_BSLASHgls] = ACTIONS(5613), - [anon_sym_BSLASHGls] = ACTIONS(5613), - [anon_sym_BSLASHGLS] = ACTIONS(5613), - [anon_sym_BSLASHglspl] = ACTIONS(5613), - [anon_sym_BSLASHGlspl] = ACTIONS(5613), - [anon_sym_BSLASHGLSpl] = ACTIONS(5613), - [anon_sym_BSLASHglsdisp] = ACTIONS(5613), - [anon_sym_BSLASHglslink] = ACTIONS(5613), - [anon_sym_BSLASHglstext] = ACTIONS(5613), - [anon_sym_BSLASHGlstext] = ACTIONS(5613), - [anon_sym_BSLASHGLStext] = ACTIONS(5613), - [anon_sym_BSLASHglsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5613), - [anon_sym_BSLASHglsplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSplural] = ACTIONS(5613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5613), - [anon_sym_BSLASHglsname] = ACTIONS(5613), - [anon_sym_BSLASHGlsname] = ACTIONS(5613), - [anon_sym_BSLASHGLSname] = ACTIONS(5613), - [anon_sym_BSLASHglssymbol] = ACTIONS(5613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5613), - [anon_sym_BSLASHglsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5613), - [anon_sym_BSLASHglsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5613), - [anon_sym_BSLASHglsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5613), - [anon_sym_BSLASHglsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5613), - [anon_sym_BSLASHglsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5613), - [anon_sym_BSLASHnewacronym] = ACTIONS(5613), - [anon_sym_BSLASHacrshort] = ACTIONS(5613), - [anon_sym_BSLASHAcrshort] = ACTIONS(5613), - [anon_sym_BSLASHACRshort] = ACTIONS(5613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5613), - [anon_sym_BSLASHacrlong] = ACTIONS(5613), - [anon_sym_BSLASHAcrlong] = ACTIONS(5613), - [anon_sym_BSLASHACRlong] = ACTIONS(5613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5613), - [anon_sym_BSLASHacrfull] = ACTIONS(5613), - [anon_sym_BSLASHAcrfull] = ACTIONS(5613), - [anon_sym_BSLASHACRfull] = ACTIONS(5613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5613), - [anon_sym_BSLASHacs] = ACTIONS(5613), - [anon_sym_BSLASHAcs] = ACTIONS(5613), - [anon_sym_BSLASHacsp] = ACTIONS(5613), - [anon_sym_BSLASHAcsp] = ACTIONS(5613), - [anon_sym_BSLASHacl] = ACTIONS(5613), - [anon_sym_BSLASHAcl] = ACTIONS(5613), - [anon_sym_BSLASHaclp] = ACTIONS(5613), - [anon_sym_BSLASHAclp] = ACTIONS(5613), - [anon_sym_BSLASHacf] = ACTIONS(5613), - [anon_sym_BSLASHAcf] = ACTIONS(5613), - [anon_sym_BSLASHacfp] = ACTIONS(5613), - [anon_sym_BSLASHAcfp] = ACTIONS(5613), - [anon_sym_BSLASHac] = ACTIONS(5613), - [anon_sym_BSLASHAc] = ACTIONS(5613), - [anon_sym_BSLASHacp] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5615), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5613), - [anon_sym_BSLASHcolor] = ACTIONS(5613), - [anon_sym_BSLASHcolorbox] = ACTIONS(5613), - [anon_sym_BSLASHtextcolor] = ACTIONS(5613), - [anon_sym_BSLASHpagecolor] = ACTIONS(5613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5613), - [anon_sym_BSLASHtext] = ACTIONS(5613), - [anon_sym_BSLASHintertext] = ACTIONS(5613), - [anon_sym_shortintertext] = ACTIONS(5613), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1371] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2847), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1372] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2843), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1373] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2823), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1374] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2113), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1475] = { - [sym_command_name] = ACTIONS(153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(151), - [sym_word] = ACTIONS(153), - [sym_placeholder] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_CARET] = ACTIONS(153), - [anon_sym__] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(151), - [anon_sym_BSLASH_LBRACE] = ACTIONS(151), - [anon_sym_BSLASHusepackage] = ACTIONS(153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(153), - [anon_sym_BSLASHinclude] = ACTIONS(153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(153), - [anon_sym_BSLASHinput] = ACTIONS(153), - [anon_sym_BSLASHsubfile] = ACTIONS(153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(153), - [anon_sym_BSLASHbibliography] = ACTIONS(153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(153), - [anon_sym_BSLASHincludesvg] = ACTIONS(153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(153), - [anon_sym_BSLASHimport] = ACTIONS(153), - [anon_sym_BSLASHsubimport] = ACTIONS(153), - [anon_sym_BSLASHinputfrom] = ACTIONS(153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(153), - [anon_sym_BSLASHincludefrom] = ACTIONS(153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(153), - [anon_sym_BSLASHcaption] = ACTIONS(153), - [anon_sym_BSLASHcite] = ACTIONS(153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(151), - [anon_sym_BSLASHCite] = ACTIONS(153), - [anon_sym_BSLASHnocite] = ACTIONS(153), - [anon_sym_BSLASHcitet] = ACTIONS(153), - [anon_sym_BSLASHcitep] = ACTIONS(153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteauthor] = ACTIONS(153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitetitle] = ACTIONS(153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteyear] = ACTIONS(153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(151), - [anon_sym_BSLASHcitedate] = ACTIONS(153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(151), - [anon_sym_BSLASHciteurl] = ACTIONS(153), - [anon_sym_BSLASHfullcite] = ACTIONS(153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(153), - [anon_sym_BSLASHcitealt] = ACTIONS(153), - [anon_sym_BSLASHcitealp] = ACTIONS(153), - [anon_sym_BSLASHcitetext] = ACTIONS(153), - [anon_sym_BSLASHparencite] = ACTIONS(153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(151), - [anon_sym_BSLASHParencite] = ACTIONS(153), - [anon_sym_BSLASHfootcite] = ACTIONS(153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(153), - [anon_sym_BSLASHtextcite] = ACTIONS(153), - [anon_sym_BSLASHTextcite] = ACTIONS(153), - [anon_sym_BSLASHsmartcite] = ACTIONS(153), - [anon_sym_BSLASHSmartcite] = ACTIONS(153), - [anon_sym_BSLASHsupercite] = ACTIONS(153), - [anon_sym_BSLASHautocite] = ACTIONS(153), - [anon_sym_BSLASHAutocite] = ACTIONS(153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(151), - [anon_sym_BSLASHvolcite] = ACTIONS(153), - [anon_sym_BSLASHVolcite] = ACTIONS(153), - [anon_sym_BSLASHpvolcite] = ACTIONS(153), - [anon_sym_BSLASHPvolcite] = ACTIONS(153), - [anon_sym_BSLASHfvolcite] = ACTIONS(153), - [anon_sym_BSLASHftvolcite] = ACTIONS(153), - [anon_sym_BSLASHsvolcite] = ACTIONS(153), - [anon_sym_BSLASHSvolcite] = ACTIONS(153), - [anon_sym_BSLASHtvolcite] = ACTIONS(153), - [anon_sym_BSLASHTvolcite] = ACTIONS(153), - [anon_sym_BSLASHavolcite] = ACTIONS(153), - [anon_sym_BSLASHAvolcite] = ACTIONS(153), - [anon_sym_BSLASHnotecite] = ACTIONS(153), - [anon_sym_BSLASHNotecite] = ACTIONS(153), - [anon_sym_BSLASHpnotecite] = ACTIONS(153), - [anon_sym_BSLASHPnotecite] = ACTIONS(153), - [anon_sym_BSLASHfnotecite] = ACTIONS(153), - [anon_sym_BSLASHlabel] = ACTIONS(153), - [anon_sym_BSLASHref] = ACTIONS(153), - [anon_sym_BSLASHeqref] = ACTIONS(153), - [anon_sym_BSLASHvref] = ACTIONS(153), - [anon_sym_BSLASHVref] = ACTIONS(153), - [anon_sym_BSLASHautoref] = ACTIONS(153), - [anon_sym_BSLASHpageref] = ACTIONS(153), - [anon_sym_BSLASHcref] = ACTIONS(153), - [anon_sym_BSLASHCref] = ACTIONS(153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(151), - [anon_sym_BSLASHnamecref] = ACTIONS(153), - [anon_sym_BSLASHnameCref] = ACTIONS(153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(153), - [anon_sym_BSLASHlabelcref] = ACTIONS(153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(153), - [anon_sym_BSLASHcrefrange] = ACTIONS(153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHCrefrange] = ACTIONS(153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(151), - [anon_sym_BSLASHnewlabel] = ACTIONS(153), - [anon_sym_BSLASHnewcommand] = ACTIONS(153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(151), - [anon_sym_BSLASHdef] = ACTIONS(153), - [anon_sym_BSLASHlet] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(153), - [anon_sym_BSLASHgls] = ACTIONS(153), - [anon_sym_BSLASHGls] = ACTIONS(153), - [anon_sym_BSLASHGLS] = ACTIONS(153), - [anon_sym_BSLASHglspl] = ACTIONS(153), - [anon_sym_BSLASHGlspl] = ACTIONS(153), - [anon_sym_BSLASHGLSpl] = ACTIONS(153), - [anon_sym_BSLASHglsdisp] = ACTIONS(153), - [anon_sym_BSLASHglslink] = ACTIONS(153), - [anon_sym_BSLASHglstext] = ACTIONS(153), - [anon_sym_BSLASHGlstext] = ACTIONS(153), - [anon_sym_BSLASHGLStext] = ACTIONS(153), - [anon_sym_BSLASHglsfirst] = ACTIONS(153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(153), - [anon_sym_BSLASHglsplural] = ACTIONS(153), - [anon_sym_BSLASHGlsplural] = ACTIONS(153), - [anon_sym_BSLASHGLSplural] = ACTIONS(153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(153), - [anon_sym_BSLASHglsname] = ACTIONS(153), - [anon_sym_BSLASHGlsname] = ACTIONS(153), - [anon_sym_BSLASHGLSname] = ACTIONS(153), - [anon_sym_BSLASHglssymbol] = ACTIONS(153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(153), - [anon_sym_BSLASHglsdesc] = ACTIONS(153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(153), - [anon_sym_BSLASHglsuseri] = ACTIONS(153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(153), - [anon_sym_BSLASHglsuserii] = ACTIONS(153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(153), - [anon_sym_BSLASHglsuserv] = ACTIONS(153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(153), - [anon_sym_BSLASHglsuservi] = ACTIONS(153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(153), - [anon_sym_BSLASHnewacronym] = ACTIONS(153), - [anon_sym_BSLASHacrshort] = ACTIONS(153), - [anon_sym_BSLASHAcrshort] = ACTIONS(153), - [anon_sym_BSLASHACRshort] = ACTIONS(153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(153), - [anon_sym_BSLASHacrlong] = ACTIONS(153), - [anon_sym_BSLASHAcrlong] = ACTIONS(153), - [anon_sym_BSLASHACRlong] = ACTIONS(153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(153), - [anon_sym_BSLASHacrfull] = ACTIONS(153), - [anon_sym_BSLASHAcrfull] = ACTIONS(153), - [anon_sym_BSLASHACRfull] = ACTIONS(153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(153), - [anon_sym_BSLASHacs] = ACTIONS(153), - [anon_sym_BSLASHAcs] = ACTIONS(153), - [anon_sym_BSLASHacsp] = ACTIONS(153), - [anon_sym_BSLASHAcsp] = ACTIONS(153), - [anon_sym_BSLASHacl] = ACTIONS(153), - [anon_sym_BSLASHAcl] = ACTIONS(153), - [anon_sym_BSLASHaclp] = ACTIONS(153), - [anon_sym_BSLASHAclp] = ACTIONS(153), - [anon_sym_BSLASHacf] = ACTIONS(153), - [anon_sym_BSLASHAcf] = ACTIONS(153), - [anon_sym_BSLASHacfp] = ACTIONS(153), - [anon_sym_BSLASHAcfp] = ACTIONS(153), - [anon_sym_BSLASHac] = ACTIONS(153), - [anon_sym_BSLASHAc] = ACTIONS(153), - [anon_sym_BSLASHacp] = ACTIONS(153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(153), - [anon_sym_BSLASHcolor] = ACTIONS(153), - [anon_sym_BSLASHcolorbox] = ACTIONS(153), - [anon_sym_BSLASHtextcolor] = ACTIONS(153), - [anon_sym_BSLASHpagecolor] = ACTIONS(153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(153), - [anon_sym_BSLASHtext] = ACTIONS(153), - [anon_sym_BSLASHintertext] = ACTIONS(153), - [anon_sym_shortintertext] = ACTIONS(153), + [1375] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2777), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1476] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_LPAREN] = ACTIONS(5477), - [anon_sym_RPAREN] = ACTIONS(5477), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5477), - [anon_sym_RBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5477), - [anon_sym_DOLLAR] = ACTIONS(5479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5477), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5477), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), - [anon_sym_BSLASHtext] = ACTIONS(5479), - [anon_sym_BSLASHintertext] = ACTIONS(5479), - [anon_sym_shortintertext] = ACTIONS(5479), + [1376] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2841), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1477] = { - [sym_command_name] = ACTIONS(149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(147), - [sym_word] = ACTIONS(149), - [sym_placeholder] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym__] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(147), - [anon_sym_BSLASH_LBRACE] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(149), - [anon_sym_BSLASHinclude] = ACTIONS(149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), - [anon_sym_BSLASHinput] = ACTIONS(149), - [anon_sym_BSLASHsubfile] = ACTIONS(149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(149), - [anon_sym_BSLASHbibliography] = ACTIONS(149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(149), - [anon_sym_BSLASHincludesvg] = ACTIONS(149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), - [anon_sym_BSLASHimport] = ACTIONS(149), - [anon_sym_BSLASHsubimport] = ACTIONS(149), - [anon_sym_BSLASHinputfrom] = ACTIONS(149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), - [anon_sym_BSLASHincludefrom] = ACTIONS(149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), - [anon_sym_BSLASHcaption] = ACTIONS(149), - [anon_sym_BSLASHcite] = ACTIONS(149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(147), - [anon_sym_BSLASHCite] = ACTIONS(149), - [anon_sym_BSLASHnocite] = ACTIONS(149), - [anon_sym_BSLASHcitet] = ACTIONS(149), - [anon_sym_BSLASHcitep] = ACTIONS(149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteauthor] = ACTIONS(149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitetitle] = ACTIONS(149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteyear] = ACTIONS(149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), - [anon_sym_BSLASHcitedate] = ACTIONS(149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), - [anon_sym_BSLASHciteurl] = ACTIONS(149), - [anon_sym_BSLASHfullcite] = ACTIONS(149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(149), - [anon_sym_BSLASHcitealt] = ACTIONS(149), - [anon_sym_BSLASHcitealp] = ACTIONS(149), - [anon_sym_BSLASHcitetext] = ACTIONS(149), - [anon_sym_BSLASHparencite] = ACTIONS(149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), - [anon_sym_BSLASHParencite] = ACTIONS(149), - [anon_sym_BSLASHfootcite] = ACTIONS(149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(149), - [anon_sym_BSLASHtextcite] = ACTIONS(149), - [anon_sym_BSLASHTextcite] = ACTIONS(149), - [anon_sym_BSLASHsmartcite] = ACTIONS(149), - [anon_sym_BSLASHSmartcite] = ACTIONS(149), - [anon_sym_BSLASHsupercite] = ACTIONS(149), - [anon_sym_BSLASHautocite] = ACTIONS(149), - [anon_sym_BSLASHAutocite] = ACTIONS(149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), - [anon_sym_BSLASHvolcite] = ACTIONS(149), - [anon_sym_BSLASHVolcite] = ACTIONS(149), - [anon_sym_BSLASHpvolcite] = ACTIONS(149), - [anon_sym_BSLASHPvolcite] = ACTIONS(149), - [anon_sym_BSLASHfvolcite] = ACTIONS(149), - [anon_sym_BSLASHftvolcite] = ACTIONS(149), - [anon_sym_BSLASHsvolcite] = ACTIONS(149), - [anon_sym_BSLASHSvolcite] = ACTIONS(149), - [anon_sym_BSLASHtvolcite] = ACTIONS(149), - [anon_sym_BSLASHTvolcite] = ACTIONS(149), - [anon_sym_BSLASHavolcite] = ACTIONS(149), - [anon_sym_BSLASHAvolcite] = ACTIONS(149), - [anon_sym_BSLASHnotecite] = ACTIONS(149), - [anon_sym_BSLASHNotecite] = ACTIONS(149), - [anon_sym_BSLASHpnotecite] = ACTIONS(149), - [anon_sym_BSLASHPnotecite] = ACTIONS(149), - [anon_sym_BSLASHfnotecite] = ACTIONS(149), - [anon_sym_BSLASHlabel] = ACTIONS(149), - [anon_sym_BSLASHref] = ACTIONS(149), - [anon_sym_BSLASHeqref] = ACTIONS(149), - [anon_sym_BSLASHvref] = ACTIONS(149), - [anon_sym_BSLASHVref] = ACTIONS(149), - [anon_sym_BSLASHautoref] = ACTIONS(149), - [anon_sym_BSLASHpageref] = ACTIONS(149), - [anon_sym_BSLASHcref] = ACTIONS(149), - [anon_sym_BSLASHCref] = ACTIONS(149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(147), - [anon_sym_BSLASHnamecref] = ACTIONS(149), - [anon_sym_BSLASHnameCref] = ACTIONS(149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), - [anon_sym_BSLASHlabelcref] = ACTIONS(149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), - [anon_sym_BSLASHcrefrange] = ACTIONS(149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHCrefrange] = ACTIONS(149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), - [anon_sym_BSLASHnewlabel] = ACTIONS(149), - [anon_sym_BSLASHnewcommand] = ACTIONS(149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), - [anon_sym_BSLASHdef] = ACTIONS(149), - [anon_sym_BSLASHlet] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), - [anon_sym_BSLASHgls] = ACTIONS(149), - [anon_sym_BSLASHGls] = ACTIONS(149), - [anon_sym_BSLASHGLS] = ACTIONS(149), - [anon_sym_BSLASHglspl] = ACTIONS(149), - [anon_sym_BSLASHGlspl] = ACTIONS(149), - [anon_sym_BSLASHGLSpl] = ACTIONS(149), - [anon_sym_BSLASHglsdisp] = ACTIONS(149), - [anon_sym_BSLASHglslink] = ACTIONS(149), - [anon_sym_BSLASHglstext] = ACTIONS(149), - [anon_sym_BSLASHGlstext] = ACTIONS(149), - [anon_sym_BSLASHGLStext] = ACTIONS(149), - [anon_sym_BSLASHglsfirst] = ACTIONS(149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(149), - [anon_sym_BSLASHglsplural] = ACTIONS(149), - [anon_sym_BSLASHGlsplural] = ACTIONS(149), - [anon_sym_BSLASHGLSplural] = ACTIONS(149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), - [anon_sym_BSLASHglsname] = ACTIONS(149), - [anon_sym_BSLASHGlsname] = ACTIONS(149), - [anon_sym_BSLASHGLSname] = ACTIONS(149), - [anon_sym_BSLASHglssymbol] = ACTIONS(149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(149), - [anon_sym_BSLASHglsdesc] = ACTIONS(149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(149), - [anon_sym_BSLASHglsuseri] = ACTIONS(149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(149), - [anon_sym_BSLASHglsuserii] = ACTIONS(149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), - [anon_sym_BSLASHglsuserv] = ACTIONS(149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(149), - [anon_sym_BSLASHglsuservi] = ACTIONS(149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(149), - [anon_sym_BSLASHnewacronym] = ACTIONS(149), - [anon_sym_BSLASHacrshort] = ACTIONS(149), - [anon_sym_BSLASHAcrshort] = ACTIONS(149), - [anon_sym_BSLASHACRshort] = ACTIONS(149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(149), - [anon_sym_BSLASHacrlong] = ACTIONS(149), - [anon_sym_BSLASHAcrlong] = ACTIONS(149), - [anon_sym_BSLASHACRlong] = ACTIONS(149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(149), - [anon_sym_BSLASHacrfull] = ACTIONS(149), - [anon_sym_BSLASHAcrfull] = ACTIONS(149), - [anon_sym_BSLASHACRfull] = ACTIONS(149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(149), - [anon_sym_BSLASHacs] = ACTIONS(149), - [anon_sym_BSLASHAcs] = ACTIONS(149), - [anon_sym_BSLASHacsp] = ACTIONS(149), - [anon_sym_BSLASHAcsp] = ACTIONS(149), - [anon_sym_BSLASHacl] = ACTIONS(149), - [anon_sym_BSLASHAcl] = ACTIONS(149), - [anon_sym_BSLASHaclp] = ACTIONS(149), - [anon_sym_BSLASHAclp] = ACTIONS(149), - [anon_sym_BSLASHacf] = ACTIONS(149), - [anon_sym_BSLASHAcf] = ACTIONS(149), - [anon_sym_BSLASHacfp] = ACTIONS(149), - [anon_sym_BSLASHAcfp] = ACTIONS(149), - [anon_sym_BSLASHac] = ACTIONS(149), - [anon_sym_BSLASHAc] = ACTIONS(149), - [anon_sym_BSLASHacp] = ACTIONS(149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), - [anon_sym_BSLASHcolor] = ACTIONS(149), - [anon_sym_BSLASHcolorbox] = ACTIONS(149), - [anon_sym_BSLASHtextcolor] = ACTIONS(149), - [anon_sym_BSLASHpagecolor] = ACTIONS(149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), - [anon_sym_BSLASHtext] = ACTIONS(149), - [anon_sym_BSLASHintertext] = ACTIONS(149), - [anon_sym_shortintertext] = ACTIONS(149), + [1377] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2815), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), }, - [1478] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_RBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), + [1378] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2816), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1379] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2766), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1380] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2798), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1381] = { + [sym_block_comment] = STATE(1724), + [sym_text] = STATE(2840), + [sym_operator] = STATE(1724), + [sym__command] = STATE(1724), + [sym_generic_command] = STATE(1724), + [sym_title_declaration] = STATE(1724), + [sym_author_declaration] = STATE(1724), + [sym_package_include] = STATE(1724), + [sym_class_include] = STATE(1724), + [sym_latex_include] = STATE(1724), + [sym_biblatex_include] = STATE(1724), + [sym_bibtex_include] = STATE(1724), + [sym_graphics_include] = STATE(1724), + [sym_svg_include] = STATE(1724), + [sym_inkscape_include] = STATE(1724), + [sym_verbatim_include] = STATE(1724), + [sym_import_include] = STATE(1724), + [sym_caption] = STATE(1724), + [sym_citation] = STATE(1724), + [sym_label_definition] = STATE(1724), + [sym_label_reference] = STATE(1724), + [sym_label_reference_range] = STATE(1724), + [sym_label_number] = STATE(1724), + [sym_new_command_definition] = STATE(1724), + [sym_old_command_definition] = STATE(1724), + [sym_let_command_definition] = STATE(1724), + [sym_paired_delimiter_definition] = STATE(1724), + [sym_environment_definition] = STATE(1724), + [sym_glossary_entry_definition] = STATE(1724), + [sym_glossary_entry_reference] = STATE(1724), + [sym_acronym_definition] = STATE(1724), + [sym_acronym_reference] = STATE(1724), + [sym_theorem_definition] = STATE(1724), + [sym_color_definition] = STATE(1724), + [sym_color_set_definition] = STATE(1724), + [sym_color_reference] = STATE(1724), + [sym_tikz_library_import] = STATE(1724), + [aux_sym_text_repeat1] = STATE(706), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_BSLASHtitle] = ACTIONS(5143), + [anon_sym_BSLASHauthor] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), + [anon_sym_BSLASHinput] = ACTIONS(5151), + [anon_sym_BSLASHsubfile] = ACTIONS(5151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5155), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - [anon_sym_BSLASHtext] = ACTIONS(5155), - [anon_sym_BSLASHintertext] = ACTIONS(5155), - [anon_sym_shortintertext] = ACTIONS(5155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5167), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5171), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5171), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5171), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5173), + [anon_sym_BSLASHref] = ACTIONS(5175), + [anon_sym_BSLASHeqref] = ACTIONS(5175), + [anon_sym_BSLASHvref] = ACTIONS(5175), + [anon_sym_BSLASHVref] = ACTIONS(5175), + [anon_sym_BSLASHautoref] = ACTIONS(5175), + [anon_sym_BSLASHpageref] = ACTIONS(5175), + [anon_sym_BSLASHcref] = ACTIONS(5175), + [anon_sym_BSLASHCref] = ACTIONS(5175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), + [anon_sym_BSLASHnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnameCref] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), + [anon_sym_BSLASHlabelcref] = ACTIONS(5175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), + [anon_sym_BSLASHcrefrange] = ACTIONS(5179), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5181), + [anon_sym_BSLASHnewlabel] = ACTIONS(5183), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5199), + [anon_sym_BSLASHGls] = ACTIONS(5199), + [anon_sym_BSLASHGLS] = ACTIONS(5199), + [anon_sym_BSLASHglspl] = ACTIONS(5199), + [anon_sym_BSLASHGlspl] = ACTIONS(5199), + [anon_sym_BSLASHGLSpl] = ACTIONS(5199), + [anon_sym_BSLASHglsdisp] = ACTIONS(5199), + [anon_sym_BSLASHglslink] = ACTIONS(5199), + [anon_sym_BSLASHglstext] = ACTIONS(5199), + [anon_sym_BSLASHGlstext] = ACTIONS(5199), + [anon_sym_BSLASHGLStext] = ACTIONS(5199), + [anon_sym_BSLASHglsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5199), + [anon_sym_BSLASHglsplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSplural] = ACTIONS(5199), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5199), + [anon_sym_BSLASHglsname] = ACTIONS(5199), + [anon_sym_BSLASHGlsname] = ACTIONS(5199), + [anon_sym_BSLASHGLSname] = ACTIONS(5199), + [anon_sym_BSLASHglssymbol] = ACTIONS(5199), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5199), + [anon_sym_BSLASHglsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5199), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5199), + [anon_sym_BSLASHglsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5199), + [anon_sym_BSLASHglsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5199), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5199), + [anon_sym_BSLASHglsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5199), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5199), + [anon_sym_BSLASHglsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5199), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5199), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5203), + [anon_sym_BSLASHAcrshort] = ACTIONS(5203), + [anon_sym_BSLASHACRshort] = ACTIONS(5203), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5203), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5203), + [anon_sym_BSLASHacrlong] = ACTIONS(5203), + [anon_sym_BSLASHAcrlong] = ACTIONS(5203), + [anon_sym_BSLASHACRlong] = ACTIONS(5203), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5203), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5203), + [anon_sym_BSLASHacrfull] = ACTIONS(5203), + [anon_sym_BSLASHAcrfull] = ACTIONS(5203), + [anon_sym_BSLASHACRfull] = ACTIONS(5203), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5203), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5203), + [anon_sym_BSLASHacs] = ACTIONS(5203), + [anon_sym_BSLASHAcs] = ACTIONS(5203), + [anon_sym_BSLASHacsp] = ACTIONS(5203), + [anon_sym_BSLASHAcsp] = ACTIONS(5203), + [anon_sym_BSLASHacl] = ACTIONS(5203), + [anon_sym_BSLASHAcl] = ACTIONS(5203), + [anon_sym_BSLASHaclp] = ACTIONS(5203), + [anon_sym_BSLASHAclp] = ACTIONS(5203), + [anon_sym_BSLASHacf] = ACTIONS(5203), + [anon_sym_BSLASHAcf] = ACTIONS(5203), + [anon_sym_BSLASHacfp] = ACTIONS(5203), + [anon_sym_BSLASHAcfp] = ACTIONS(5203), + [anon_sym_BSLASHac] = ACTIONS(5203), + [anon_sym_BSLASHAc] = ACTIONS(5203), + [anon_sym_BSLASHacp] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5203), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5203), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5203), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5203), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5211), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5215), + }, + [1382] = { + [sym_curly_group] = STATE(1490), + [sym_mixed_group] = STATE(1490), + [aux_sym_generic_command_repeat1] = STATE(1383), + [sym_command_name] = ACTIONS(5337), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHbegin] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), }, - [1479] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - [anon_sym_BSLASHtext] = ACTIONS(5311), - [anon_sym_BSLASHintertext] = ACTIONS(5311), - [anon_sym_shortintertext] = ACTIONS(5311), + [1383] = { + [sym_curly_group] = STATE(1490), + [sym_mixed_group] = STATE(1490), + [aux_sym_generic_command_repeat1] = STATE(1383), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(6299), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(6299), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(6302), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHbegin] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [1480] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_RPAREN] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5485), - [anon_sym_RBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5485), - [anon_sym_DOLLAR] = ACTIONS(5487), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5485), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5485), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - [anon_sym_BSLASHtext] = ACTIONS(5487), - [anon_sym_BSLASHintertext] = ACTIONS(5487), - [anon_sym_shortintertext] = ACTIONS(5487), + [1384] = { + [sym_curly_group] = STATE(1490), + [sym_mixed_group] = STATE(1490), + [aux_sym_generic_command_repeat1] = STATE(1382), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHbegin] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [1481] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - [anon_sym_BSLASHtext] = ACTIONS(5299), - [anon_sym_BSLASHintertext] = ACTIONS(5299), - [anon_sym_shortintertext] = ACTIONS(5299), + [1385] = { + [sym_curly_group] = STATE(1394), + [sym_brack_group_text] = STATE(2381), + [sym_command_name] = ACTIONS(5417), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHbegin] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1482] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - [anon_sym_BSLASHtext] = ACTIONS(5057), - [anon_sym_BSLASHintertext] = ACTIONS(5057), - [anon_sym_shortintertext] = ACTIONS(5057), + [1386] = { + [sym_command_name] = ACTIONS(5403), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(6305), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASHbegin] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(6307), }, - [1483] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), - [anon_sym_BSLASHtext] = ACTIONS(5233), - [anon_sym_BSLASHintertext] = ACTIONS(5233), - [anon_sym_shortintertext] = ACTIONS(5233), + [1387] = { + [sym_curly_group] = STATE(1603), + [sym_mixed_group] = STATE(1603), + [aux_sym_generic_command_repeat1] = STATE(1389), + [sym_command_name] = ACTIONS(5337), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(6309), + [anon_sym_RPAREN] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(6309), + [anon_sym_RBRACK] = ACTIONS(5335), + [anon_sym_COMMA] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5335), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), }, - [1484] = { - [sym_command_name] = ACTIONS(5617), + [1388] = { + [sym_curly_group] = STATE(1396), + [sym_brack_group_text] = STATE(2392), + [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5617), - [anon_sym_LPAREN] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [sym_word] = ACTIONS(5617), - [sym_placeholder] = ACTIONS(5619), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym__] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_BANG] = ACTIONS(5617), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5617), - [anon_sym_SQUOTE] = ACTIONS(5617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5619), - [anon_sym_DOLLAR] = ACTIONS(5617), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5619), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5619), - [anon_sym_BSLASHusepackage] = ACTIONS(5617), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5617), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5617), - [anon_sym_BSLASHinclude] = ACTIONS(5617), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5617), - [anon_sym_BSLASHinput] = ACTIONS(5617), - [anon_sym_BSLASHsubfile] = ACTIONS(5617), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5617), - [anon_sym_BSLASHbibliography] = ACTIONS(5617), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5617), - [anon_sym_BSLASHincludesvg] = ACTIONS(5617), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5617), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5617), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5617), - [anon_sym_BSLASHimport] = ACTIONS(5617), - [anon_sym_BSLASHsubimport] = ACTIONS(5617), - [anon_sym_BSLASHinputfrom] = ACTIONS(5617), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5617), - [anon_sym_BSLASHincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5617), - [anon_sym_BSLASHcaption] = ACTIONS(5617), - [anon_sym_BSLASHcite] = ACTIONS(5617), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCite] = ACTIONS(5617), - [anon_sym_BSLASHnocite] = ACTIONS(5617), - [anon_sym_BSLASHcitet] = ACTIONS(5617), - [anon_sym_BSLASHcitep] = ACTIONS(5617), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteauthor] = ACTIONS(5617), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitetitle] = ACTIONS(5617), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteyear] = ACTIONS(5617), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5619), - [anon_sym_BSLASHcitedate] = ACTIONS(5617), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5619), - [anon_sym_BSLASHciteurl] = ACTIONS(5617), - [anon_sym_BSLASHfullcite] = ACTIONS(5617), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), - [anon_sym_BSLASHcitealt] = ACTIONS(5617), - [anon_sym_BSLASHcitealp] = ACTIONS(5617), - [anon_sym_BSLASHcitetext] = ACTIONS(5617), - [anon_sym_BSLASHparencite] = ACTIONS(5617), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHParencite] = ACTIONS(5617), - [anon_sym_BSLASHfootcite] = ACTIONS(5617), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), - [anon_sym_BSLASHtextcite] = ACTIONS(5617), - [anon_sym_BSLASHTextcite] = ACTIONS(5617), - [anon_sym_BSLASHsmartcite] = ACTIONS(5617), - [anon_sym_BSLASHSmartcite] = ACTIONS(5617), - [anon_sym_BSLASHsupercite] = ACTIONS(5617), - [anon_sym_BSLASHautocite] = ACTIONS(5617), - [anon_sym_BSLASHAutocite] = ACTIONS(5617), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5619), - [anon_sym_BSLASHvolcite] = ACTIONS(5617), - [anon_sym_BSLASHVolcite] = ACTIONS(5617), - [anon_sym_BSLASHpvolcite] = ACTIONS(5617), - [anon_sym_BSLASHPvolcite] = ACTIONS(5617), - [anon_sym_BSLASHfvolcite] = ACTIONS(5617), - [anon_sym_BSLASHftvolcite] = ACTIONS(5617), - [anon_sym_BSLASHsvolcite] = ACTIONS(5617), - [anon_sym_BSLASHSvolcite] = ACTIONS(5617), - [anon_sym_BSLASHtvolcite] = ACTIONS(5617), - [anon_sym_BSLASHTvolcite] = ACTIONS(5617), - [anon_sym_BSLASHavolcite] = ACTIONS(5617), - [anon_sym_BSLASHAvolcite] = ACTIONS(5617), - [anon_sym_BSLASHnotecite] = ACTIONS(5617), - [anon_sym_BSLASHNotecite] = ACTIONS(5617), - [anon_sym_BSLASHpnotecite] = ACTIONS(5617), - [anon_sym_BSLASHPnotecite] = ACTIONS(5617), - [anon_sym_BSLASHfnotecite] = ACTIONS(5617), - [anon_sym_BSLASHlabel] = ACTIONS(5617), - [anon_sym_BSLASHref] = ACTIONS(5617), - [anon_sym_BSLASHeqref] = ACTIONS(5617), - [anon_sym_BSLASHvref] = ACTIONS(5617), - [anon_sym_BSLASHVref] = ACTIONS(5617), - [anon_sym_BSLASHautoref] = ACTIONS(5617), - [anon_sym_BSLASHpageref] = ACTIONS(5617), - [anon_sym_BSLASHcref] = ACTIONS(5617), - [anon_sym_BSLASHCref] = ACTIONS(5617), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnameCref] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5617), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5617), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5617), - [anon_sym_BSLASHlabelcref] = ACTIONS(5617), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange] = ACTIONS(5617), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHCrefrange] = ACTIONS(5617), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5619), - [anon_sym_BSLASHnewlabel] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand] = ACTIONS(5617), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5617), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5617), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5619), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5617), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdef] = ACTIONS(5617), - [anon_sym_BSLASHlet] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5617), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5617), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5617), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5617), - [anon_sym_BSLASHgls] = ACTIONS(5617), - [anon_sym_BSLASHGls] = ACTIONS(5617), - [anon_sym_BSLASHGLS] = ACTIONS(5617), - [anon_sym_BSLASHglspl] = ACTIONS(5617), - [anon_sym_BSLASHGlspl] = ACTIONS(5617), - [anon_sym_BSLASHGLSpl] = ACTIONS(5617), - [anon_sym_BSLASHglsdisp] = ACTIONS(5617), - [anon_sym_BSLASHglslink] = ACTIONS(5617), - [anon_sym_BSLASHglstext] = ACTIONS(5617), - [anon_sym_BSLASHGlstext] = ACTIONS(5617), - [anon_sym_BSLASHGLStext] = ACTIONS(5617), - [anon_sym_BSLASHglsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5617), - [anon_sym_BSLASHglsplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSplural] = ACTIONS(5617), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5617), - [anon_sym_BSLASHglsname] = ACTIONS(5617), - [anon_sym_BSLASHGlsname] = ACTIONS(5617), - [anon_sym_BSLASHGLSname] = ACTIONS(5617), - [anon_sym_BSLASHglssymbol] = ACTIONS(5617), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5617), - [anon_sym_BSLASHglsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5617), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5617), - [anon_sym_BSLASHglsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5617), - [anon_sym_BSLASHglsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5617), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5617), - [anon_sym_BSLASHglsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5617), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5617), - [anon_sym_BSLASHglsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5617), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5617), - [anon_sym_BSLASHnewacronym] = ACTIONS(5617), - [anon_sym_BSLASHacrshort] = ACTIONS(5617), - [anon_sym_BSLASHAcrshort] = ACTIONS(5617), - [anon_sym_BSLASHACRshort] = ACTIONS(5617), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5617), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5617), - [anon_sym_BSLASHacrlong] = ACTIONS(5617), - [anon_sym_BSLASHAcrlong] = ACTIONS(5617), - [anon_sym_BSLASHACRlong] = ACTIONS(5617), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5617), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5617), - [anon_sym_BSLASHacrfull] = ACTIONS(5617), - [anon_sym_BSLASHAcrfull] = ACTIONS(5617), - [anon_sym_BSLASHACRfull] = ACTIONS(5617), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5617), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5617), - [anon_sym_BSLASHacs] = ACTIONS(5617), - [anon_sym_BSLASHAcs] = ACTIONS(5617), - [anon_sym_BSLASHacsp] = ACTIONS(5617), - [anon_sym_BSLASHAcsp] = ACTIONS(5617), - [anon_sym_BSLASHacl] = ACTIONS(5617), - [anon_sym_BSLASHAcl] = ACTIONS(5617), - [anon_sym_BSLASHaclp] = ACTIONS(5617), - [anon_sym_BSLASHAclp] = ACTIONS(5617), - [anon_sym_BSLASHacf] = ACTIONS(5617), - [anon_sym_BSLASHAcf] = ACTIONS(5617), - [anon_sym_BSLASHacfp] = ACTIONS(5617), - [anon_sym_BSLASHAcfp] = ACTIONS(5617), - [anon_sym_BSLASHac] = ACTIONS(5617), - [anon_sym_BSLASHAc] = ACTIONS(5617), - [anon_sym_BSLASHacp] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5617), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5617), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5617), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5617), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5617), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5619), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5617), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5617), - [anon_sym_BSLASHcolor] = ACTIONS(5617), - [anon_sym_BSLASHcolorbox] = ACTIONS(5617), - [anon_sym_BSLASHtextcolor] = ACTIONS(5617), - [anon_sym_BSLASHpagecolor] = ACTIONS(5617), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5617), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5617), - [anon_sym_BSLASHtext] = ACTIONS(5617), - [anon_sym_BSLASHintertext] = ACTIONS(5617), - [anon_sym_shortintertext] = ACTIONS(5617), - }, - [1485] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_RBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), - [anon_sym_BSLASHtext] = ACTIONS(5229), - [anon_sym_BSLASHintertext] = ACTIONS(5229), - [anon_sym_shortintertext] = ACTIONS(5229), - }, - [1486] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), - [anon_sym_BSLASHtext] = ACTIONS(5237), - [anon_sym_BSLASHintertext] = ACTIONS(5237), - [anon_sym_shortintertext] = ACTIONS(5237), - }, - [1487] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - [anon_sym_BSLASHtext] = ACTIONS(5139), - [anon_sym_BSLASHintertext] = ACTIONS(5139), - [anon_sym_shortintertext] = ACTIONS(5139), - }, - [1488] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - [anon_sym_BSLASHtext] = ACTIONS(5221), - [anon_sym_BSLASHintertext] = ACTIONS(5221), - [anon_sym_shortintertext] = ACTIONS(5221), - }, - [1489] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_LBRACE] = ACTIONS(5267), - [anon_sym_RBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), - [anon_sym_BSLASHtext] = ACTIONS(5269), - [anon_sym_BSLASHintertext] = ACTIONS(5269), - [anon_sym_shortintertext] = ACTIONS(5269), - }, - [1490] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), - [anon_sym_BSLASHtext] = ACTIONS(5213), - [anon_sym_BSLASHintertext] = ACTIONS(5213), - [anon_sym_shortintertext] = ACTIONS(5213), - }, - [1491] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - [anon_sym_BSLASHtext] = ACTIONS(5209), - [anon_sym_BSLASHintertext] = ACTIONS(5209), - [anon_sym_shortintertext] = ACTIONS(5209), - }, - [1492] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - [anon_sym_BSLASHtext] = ACTIONS(5205), - [anon_sym_BSLASHintertext] = ACTIONS(5205), - [anon_sym_shortintertext] = ACTIONS(5205), - }, - [1493] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - [anon_sym_BSLASHtext] = ACTIONS(5201), - [anon_sym_BSLASHintertext] = ACTIONS(5201), - [anon_sym_shortintertext] = ACTIONS(5201), - }, - [1494] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - [anon_sym_BSLASHtext] = ACTIONS(5197), - [anon_sym_BSLASHintertext] = ACTIONS(5197), - [anon_sym_shortintertext] = ACTIONS(5197), - }, - [1495] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - [anon_sym_BSLASHtext] = ACTIONS(5193), - [anon_sym_BSLASHintertext] = ACTIONS(5193), - [anon_sym_shortintertext] = ACTIONS(5193), - }, - [1496] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - [anon_sym_BSLASHtext] = ACTIONS(5189), - [anon_sym_BSLASHintertext] = ACTIONS(5189), - [anon_sym_shortintertext] = ACTIONS(5189), - }, - [1497] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - [anon_sym_BSLASHtext] = ACTIONS(5185), - [anon_sym_BSLASHintertext] = ACTIONS(5185), - [anon_sym_shortintertext] = ACTIONS(5185), - }, - [1498] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - [anon_sym_BSLASHtext] = ACTIONS(5179), - [anon_sym_BSLASHintertext] = ACTIONS(5179), - [anon_sym_shortintertext] = ACTIONS(5179), - }, - [1499] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - [anon_sym_BSLASHtext] = ACTIONS(5175), - [anon_sym_BSLASHintertext] = ACTIONS(5175), - [anon_sym_shortintertext] = ACTIONS(5175), - }, - [1500] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - [anon_sym_BSLASHtext] = ACTIONS(5171), - [anon_sym_BSLASHintertext] = ACTIONS(5171), - [anon_sym_shortintertext] = ACTIONS(5171), - }, - [1501] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - [anon_sym_BSLASHtext] = ACTIONS(5167), - [anon_sym_BSLASHintertext] = ACTIONS(5167), - [anon_sym_shortintertext] = ACTIONS(5167), - }, - [1502] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [anon_sym_RBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - [anon_sym_BSLASHtext] = ACTIONS(5163), - [anon_sym_BSLASHintertext] = ACTIONS(5163), - [anon_sym_shortintertext] = ACTIONS(5163), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHbegin] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1503] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_RBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - [anon_sym_BSLASHtext] = ACTIONS(5159), - [anon_sym_BSLASHintertext] = ACTIONS(5159), - [anon_sym_shortintertext] = ACTIONS(5159), + [1389] = { + [sym_curly_group] = STATE(1603), + [sym_mixed_group] = STATE(1603), + [aux_sym_generic_command_repeat1] = STATE(1389), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_RPAREN] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(6311), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(6314), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [1504] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - [anon_sym_BSLASHtext] = ACTIONS(5143), - [anon_sym_BSLASHintertext] = ACTIONS(5143), - [anon_sym_shortintertext] = ACTIONS(5143), + [1390] = { + [sym_curly_group] = STATE(1603), + [sym_mixed_group] = STATE(1603), + [aux_sym_generic_command_repeat1] = STATE(1387), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(6309), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_LBRACK] = ACTIONS(6309), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5315), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [1505] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - [anon_sym_BSLASHtext] = ACTIONS(5217), - [anon_sym_BSLASHintertext] = ACTIONS(5217), - [anon_sym_shortintertext] = ACTIONS(5217), + [1391] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6317), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHbegin] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), }, - [1506] = { - [sym_command_name] = ACTIONS(5323), + [1392] = { + [sym_curly_group] = STATE(1407), + [sym_brack_group_text] = STATE(2544), + [sym_command_name] = ACTIONS(5417), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [anon_sym_LPAREN] = ACTIONS(5321), - [anon_sym_RPAREN] = ACTIONS(5321), - [anon_sym_LBRACK] = ACTIONS(5321), - [anon_sym_RBRACK] = ACTIONS(5321), - [anon_sym_COMMA] = ACTIONS(5321), - [anon_sym_LBRACE] = ACTIONS(5321), - [anon_sym_RBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5323), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym__] = ACTIONS(5323), - [anon_sym_LT] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5323), - [anon_sym_BANG] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5323), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_SQUOTE] = ACTIONS(5323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), - [anon_sym_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), - [anon_sym_BSLASHinclude] = ACTIONS(5323), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), - [anon_sym_BSLASHinput] = ACTIONS(5323), - [anon_sym_BSLASHsubfile] = ACTIONS(5323), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5323), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), - [anon_sym_BSLASHincludesvg] = ACTIONS(5323), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), - [anon_sym_BSLASHimport] = ACTIONS(5323), - [anon_sym_BSLASHsubimport] = ACTIONS(5323), - [anon_sym_BSLASHinputfrom] = ACTIONS(5323), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), - [anon_sym_BSLASHincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHcaption] = ACTIONS(5323), - [anon_sym_BSLASHcite] = ACTIONS(5323), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCite] = ACTIONS(5323), - [anon_sym_BSLASHnocite] = ACTIONS(5323), - [anon_sym_BSLASHcitet] = ACTIONS(5323), - [anon_sym_BSLASHcitep] = ACTIONS(5323), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteurl] = ACTIONS(5323), - [anon_sym_BSLASHfullcite] = ACTIONS(5323), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), - [anon_sym_BSLASHcitealt] = ACTIONS(5323), - [anon_sym_BSLASHcitealp] = ACTIONS(5323), - [anon_sym_BSLASHcitetext] = ACTIONS(5323), - [anon_sym_BSLASHparencite] = ACTIONS(5323), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHParencite] = ACTIONS(5323), - [anon_sym_BSLASHfootcite] = ACTIONS(5323), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), - [anon_sym_BSLASHtextcite] = ACTIONS(5323), - [anon_sym_BSLASHTextcite] = ACTIONS(5323), - [anon_sym_BSLASHsmartcite] = ACTIONS(5323), - [anon_sym_BSLASHSmartcite] = ACTIONS(5323), - [anon_sym_BSLASHsupercite] = ACTIONS(5323), - [anon_sym_BSLASHautocite] = ACTIONS(5323), - [anon_sym_BSLASHAutocite] = ACTIONS(5323), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHvolcite] = ACTIONS(5323), - [anon_sym_BSLASHVolcite] = ACTIONS(5323), - [anon_sym_BSLASHpvolcite] = ACTIONS(5323), - [anon_sym_BSLASHPvolcite] = ACTIONS(5323), - [anon_sym_BSLASHfvolcite] = ACTIONS(5323), - [anon_sym_BSLASHftvolcite] = ACTIONS(5323), - [anon_sym_BSLASHsvolcite] = ACTIONS(5323), - [anon_sym_BSLASHSvolcite] = ACTIONS(5323), - [anon_sym_BSLASHtvolcite] = ACTIONS(5323), - [anon_sym_BSLASHTvolcite] = ACTIONS(5323), - [anon_sym_BSLASHavolcite] = ACTIONS(5323), - [anon_sym_BSLASHAvolcite] = ACTIONS(5323), - [anon_sym_BSLASHnotecite] = ACTIONS(5323), - [anon_sym_BSLASHNotecite] = ACTIONS(5323), - [anon_sym_BSLASHpnotecite] = ACTIONS(5323), - [anon_sym_BSLASHPnotecite] = ACTIONS(5323), - [anon_sym_BSLASHfnotecite] = ACTIONS(5323), - [anon_sym_BSLASHlabel] = ACTIONS(5323), - [anon_sym_BSLASHref] = ACTIONS(5323), - [anon_sym_BSLASHeqref] = ACTIONS(5323), - [anon_sym_BSLASHvref] = ACTIONS(5323), - [anon_sym_BSLASHVref] = ACTIONS(5323), - [anon_sym_BSLASHautoref] = ACTIONS(5323), - [anon_sym_BSLASHpageref] = ACTIONS(5323), - [anon_sym_BSLASHcref] = ACTIONS(5323), - [anon_sym_BSLASHCref] = ACTIONS(5323), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnameCref] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHlabelcref] = ACTIONS(5323), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), - [anon_sym_BSLASHgls] = ACTIONS(5323), - [anon_sym_BSLASHGls] = ACTIONS(5323), - [anon_sym_BSLASHGLS] = ACTIONS(5323), - [anon_sym_BSLASHglspl] = ACTIONS(5323), - [anon_sym_BSLASHGlspl] = ACTIONS(5323), - [anon_sym_BSLASHGLSpl] = ACTIONS(5323), - [anon_sym_BSLASHglsdisp] = ACTIONS(5323), - [anon_sym_BSLASHglslink] = ACTIONS(5323), - [anon_sym_BSLASHglstext] = ACTIONS(5323), - [anon_sym_BSLASHGlstext] = ACTIONS(5323), - [anon_sym_BSLASHGLStext] = ACTIONS(5323), - [anon_sym_BSLASHglsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), - [anon_sym_BSLASHglsplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSplural] = ACTIONS(5323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHglsname] = ACTIONS(5323), - [anon_sym_BSLASHGlsname] = ACTIONS(5323), - [anon_sym_BSLASHGLSname] = ACTIONS(5323), - [anon_sym_BSLASHglssymbol] = ACTIONS(5323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), - [anon_sym_BSLASHglsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), - [anon_sym_BSLASHglsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), - [anon_sym_BSLASHglsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), - [anon_sym_BSLASHglsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), - [anon_sym_BSLASHglsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), - [anon_sym_BSLASHnewacronym] = ACTIONS(5323), - [anon_sym_BSLASHacrshort] = ACTIONS(5323), - [anon_sym_BSLASHAcrshort] = ACTIONS(5323), - [anon_sym_BSLASHACRshort] = ACTIONS(5323), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), - [anon_sym_BSLASHacrlong] = ACTIONS(5323), - [anon_sym_BSLASHAcrlong] = ACTIONS(5323), - [anon_sym_BSLASHACRlong] = ACTIONS(5323), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), - [anon_sym_BSLASHacrfull] = ACTIONS(5323), - [anon_sym_BSLASHAcrfull] = ACTIONS(5323), - [anon_sym_BSLASHACRfull] = ACTIONS(5323), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), - [anon_sym_BSLASHtext] = ACTIONS(5323), - [anon_sym_BSLASHintertext] = ACTIONS(5323), - [anon_sym_shortintertext] = ACTIONS(5323), - }, - [1507] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - [anon_sym_BSLASHtext] = ACTIONS(5135), - [anon_sym_BSLASHintertext] = ACTIONS(5135), - [anon_sym_shortintertext] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5415), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), }, - [1508] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_LBRACE] = ACTIONS(5489), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5489), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5489), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), - [anon_sym_BSLASHtext] = ACTIONS(5491), - [anon_sym_BSLASHintertext] = ACTIONS(5491), - [anon_sym_shortintertext] = ACTIONS(5491), + [1393] = { + [sym_command_name] = ACTIONS(5403), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(6319), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5401), + [anon_sym_RBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(6321), }, - [1509] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - [anon_sym_BSLASHtext] = ACTIONS(5129), - [anon_sym_BSLASHintertext] = ACTIONS(5129), - [anon_sym_shortintertext] = ACTIONS(5129), + [1394] = { + [sym_brack_group_text] = STATE(1449), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(6323), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHbegin] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1510] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_RPAREN] = ACTIONS(5481), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_RBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(5483), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5481), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5481), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), - [anon_sym_BSLASHtext] = ACTIONS(5483), - [anon_sym_BSLASHintertext] = ACTIONS(5483), - [anon_sym_shortintertext] = ACTIONS(5483), + [1395] = { + [sym_curly_group] = STATE(1441), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHbegin] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), }, - [1511] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_LPAREN] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(5453), - [anon_sym_RBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5453), - [anon_sym_DOLLAR] = ACTIONS(5455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5453), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), - [anon_sym_BSLASHtext] = ACTIONS(5455), - [anon_sym_BSLASHintertext] = ACTIONS(5455), - [anon_sym_shortintertext] = ACTIONS(5455), + [1396] = { + [sym_brack_group_text] = STATE(1436), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(6323), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHbegin] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, - [1512] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5073), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), - [anon_sym_BSLASHtext] = ACTIONS(5075), - [anon_sym_BSLASHintertext] = ACTIONS(5075), - [anon_sym_shortintertext] = ACTIONS(5075), + [1397] = { + [sym_curly_group] = STATE(1405), + [sym_brack_group_text] = STATE(2555), + [sym_command_name] = ACTIONS(5353), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_RPAREN] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5351), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), }, - [1513] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), - [anon_sym_BSLASHtext] = ACTIONS(5415), - [anon_sym_BSLASHintertext] = ACTIONS(5415), - [anon_sym_shortintertext] = ACTIONS(5415), + [1398] = { + [sym_curly_group] = STATE(1422), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(3515), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHbegin] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), }, - [1514] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - [anon_sym_BSLASHtext] = ACTIONS(5113), - [anon_sym_BSLASHintertext] = ACTIONS(5113), - [anon_sym_shortintertext] = ACTIONS(5113), + [1399] = { + [sym_command_name] = ACTIONS(6039), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6037), + [anon_sym_RPAREN] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(6037), + [anon_sym_RBRACK] = ACTIONS(6037), + [anon_sym_COMMA] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6037), + [sym_word] = ACTIONS(6039), + [sym_placeholder] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_STAR] = ACTIONS(6039), + [anon_sym_SLASH] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym__] = ACTIONS(6039), + [anon_sym_LT] = ACTIONS(6039), + [anon_sym_GT] = ACTIONS(6039), + [anon_sym_BANG] = ACTIONS(6039), + [anon_sym_PIPE] = ACTIONS(6039), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6037), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6037), + [anon_sym_BSLASHbegin] = ACTIONS(6039), + [anon_sym_BSLASHtitle] = ACTIONS(6039), + [anon_sym_BSLASHauthor] = ACTIONS(6039), + [anon_sym_BSLASHusepackage] = ACTIONS(6039), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6039), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6039), + [anon_sym_BSLASHinclude] = ACTIONS(6039), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6039), + [anon_sym_BSLASHinput] = ACTIONS(6039), + [anon_sym_BSLASHsubfile] = ACTIONS(6039), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6039), + [anon_sym_BSLASHbibliography] = ACTIONS(6039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6039), + [anon_sym_BSLASHincludesvg] = ACTIONS(6039), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6039), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6039), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6039), + [anon_sym_BSLASHimport] = ACTIONS(6039), + [anon_sym_BSLASHsubimport] = ACTIONS(6039), + [anon_sym_BSLASHinputfrom] = ACTIONS(6039), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6039), + [anon_sym_BSLASHincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6039), + [anon_sym_BSLASHcaption] = ACTIONS(6039), + [anon_sym_BSLASHcite] = ACTIONS(6039), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCite] = ACTIONS(6039), + [anon_sym_BSLASHnocite] = ACTIONS(6039), + [anon_sym_BSLASHcitet] = ACTIONS(6039), + [anon_sym_BSLASHcitep] = ACTIONS(6039), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteauthor] = ACTIONS(6039), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6039), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitetitle] = ACTIONS(6039), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteyear] = ACTIONS(6039), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6037), + [anon_sym_BSLASHcitedate] = ACTIONS(6039), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6037), + [anon_sym_BSLASHciteurl] = ACTIONS(6039), + [anon_sym_BSLASHfullcite] = ACTIONS(6039), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6039), + [anon_sym_BSLASHcitealt] = ACTIONS(6039), + [anon_sym_BSLASHcitealp] = ACTIONS(6039), + [anon_sym_BSLASHcitetext] = ACTIONS(6039), + [anon_sym_BSLASHparencite] = ACTIONS(6039), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHParencite] = ACTIONS(6039), + [anon_sym_BSLASHfootcite] = ACTIONS(6039), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6039), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6039), + [anon_sym_BSLASHtextcite] = ACTIONS(6039), + [anon_sym_BSLASHTextcite] = ACTIONS(6039), + [anon_sym_BSLASHsmartcite] = ACTIONS(6039), + [anon_sym_BSLASHSmartcite] = ACTIONS(6039), + [anon_sym_BSLASHsupercite] = ACTIONS(6039), + [anon_sym_BSLASHautocite] = ACTIONS(6039), + [anon_sym_BSLASHAutocite] = ACTIONS(6039), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6037), + [anon_sym_BSLASHvolcite] = ACTIONS(6039), + [anon_sym_BSLASHVolcite] = ACTIONS(6039), + [anon_sym_BSLASHpvolcite] = ACTIONS(6039), + [anon_sym_BSLASHPvolcite] = ACTIONS(6039), + [anon_sym_BSLASHfvolcite] = ACTIONS(6039), + [anon_sym_BSLASHftvolcite] = ACTIONS(6039), + [anon_sym_BSLASHsvolcite] = ACTIONS(6039), + [anon_sym_BSLASHSvolcite] = ACTIONS(6039), + [anon_sym_BSLASHtvolcite] = ACTIONS(6039), + [anon_sym_BSLASHTvolcite] = ACTIONS(6039), + [anon_sym_BSLASHavolcite] = ACTIONS(6039), + [anon_sym_BSLASHAvolcite] = ACTIONS(6039), + [anon_sym_BSLASHnotecite] = ACTIONS(6039), + [anon_sym_BSLASHNotecite] = ACTIONS(6039), + [anon_sym_BSLASHpnotecite] = ACTIONS(6039), + [anon_sym_BSLASHPnotecite] = ACTIONS(6039), + [anon_sym_BSLASHfnotecite] = ACTIONS(6039), + [anon_sym_BSLASHlabel] = ACTIONS(6039), + [anon_sym_BSLASHref] = ACTIONS(6039), + [anon_sym_BSLASHeqref] = ACTIONS(6039), + [anon_sym_BSLASHvref] = ACTIONS(6039), + [anon_sym_BSLASHVref] = ACTIONS(6039), + [anon_sym_BSLASHautoref] = ACTIONS(6039), + [anon_sym_BSLASHpageref] = ACTIONS(6039), + [anon_sym_BSLASHcref] = ACTIONS(6039), + [anon_sym_BSLASHCref] = ACTIONS(6039), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnameCref] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6039), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6039), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6039), + [anon_sym_BSLASHlabelcref] = ACTIONS(6039), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange] = ACTIONS(6039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHCrefrange] = ACTIONS(6039), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6037), + [anon_sym_BSLASHnewlabel] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand] = ACTIONS(6039), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6039), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6039), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6037), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6039), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdef] = ACTIONS(6039), + [anon_sym_BSLASHlet] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6039), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6039), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6039), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6039), + [anon_sym_BSLASHgls] = ACTIONS(6039), + [anon_sym_BSLASHGls] = ACTIONS(6039), + [anon_sym_BSLASHGLS] = ACTIONS(6039), + [anon_sym_BSLASHglspl] = ACTIONS(6039), + [anon_sym_BSLASHGlspl] = ACTIONS(6039), + [anon_sym_BSLASHGLSpl] = ACTIONS(6039), + [anon_sym_BSLASHglsdisp] = ACTIONS(6039), + [anon_sym_BSLASHglslink] = ACTIONS(6039), + [anon_sym_BSLASHglstext] = ACTIONS(6039), + [anon_sym_BSLASHGlstext] = ACTIONS(6039), + [anon_sym_BSLASHGLStext] = ACTIONS(6039), + [anon_sym_BSLASHglsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6039), + [anon_sym_BSLASHglsplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSplural] = ACTIONS(6039), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6039), + [anon_sym_BSLASHglsname] = ACTIONS(6039), + [anon_sym_BSLASHGlsname] = ACTIONS(6039), + [anon_sym_BSLASHGLSname] = ACTIONS(6039), + [anon_sym_BSLASHglssymbol] = ACTIONS(6039), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6039), + [anon_sym_BSLASHglsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6039), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6039), + [anon_sym_BSLASHglsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6039), + [anon_sym_BSLASHglsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6039), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6039), + [anon_sym_BSLASHglsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6039), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6039), + [anon_sym_BSLASHglsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6039), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6039), + [anon_sym_BSLASHnewacronym] = ACTIONS(6039), + [anon_sym_BSLASHacrshort] = ACTIONS(6039), + [anon_sym_BSLASHAcrshort] = ACTIONS(6039), + [anon_sym_BSLASHACRshort] = ACTIONS(6039), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6039), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6039), + [anon_sym_BSLASHacrlong] = ACTIONS(6039), + [anon_sym_BSLASHAcrlong] = ACTIONS(6039), + [anon_sym_BSLASHACRlong] = ACTIONS(6039), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6039), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6039), + [anon_sym_BSLASHacrfull] = ACTIONS(6039), + [anon_sym_BSLASHAcrfull] = ACTIONS(6039), + [anon_sym_BSLASHACRfull] = ACTIONS(6039), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6039), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6039), + [anon_sym_BSLASHacs] = ACTIONS(6039), + [anon_sym_BSLASHAcs] = ACTIONS(6039), + [anon_sym_BSLASHacsp] = ACTIONS(6039), + [anon_sym_BSLASHAcsp] = ACTIONS(6039), + [anon_sym_BSLASHacl] = ACTIONS(6039), + [anon_sym_BSLASHAcl] = ACTIONS(6039), + [anon_sym_BSLASHaclp] = ACTIONS(6039), + [anon_sym_BSLASHAclp] = ACTIONS(6039), + [anon_sym_BSLASHacf] = ACTIONS(6039), + [anon_sym_BSLASHAcf] = ACTIONS(6039), + [anon_sym_BSLASHacfp] = ACTIONS(6039), + [anon_sym_BSLASHAcfp] = ACTIONS(6039), + [anon_sym_BSLASHac] = ACTIONS(6039), + [anon_sym_BSLASHAc] = ACTIONS(6039), + [anon_sym_BSLASHacp] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6039), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6039), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6039), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6039), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6039), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6039), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6039), + [anon_sym_BSLASHcolor] = ACTIONS(6039), + [anon_sym_BSLASHcolorbox] = ACTIONS(6039), + [anon_sym_BSLASHtextcolor] = ACTIONS(6039), + [anon_sym_BSLASHpagecolor] = ACTIONS(6039), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6039), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6039), + [anon_sym_BSLASHtext] = ACTIONS(6039), + [anon_sym_BSLASHintertext] = ACTIONS(6039), + [anon_sym_shortintertext] = ACTIONS(6039), }, - [1515] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(5397), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5397), - [anon_sym_RBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5397), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), - [anon_sym_BSLASHtext] = ACTIONS(5399), - [anon_sym_BSLASHintertext] = ACTIONS(5399), - [anon_sym_shortintertext] = ACTIONS(5399), + [1400] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHbegin] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), }, - [1516] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5377), - [anon_sym_RBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5377), - [anon_sym_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5377), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), - [anon_sym_BSLASHtext] = ACTIONS(5379), - [anon_sym_BSLASHintertext] = ACTIONS(5379), - [anon_sym_shortintertext] = ACTIONS(5379), + [1401] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_EQ] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHbegin] = ACTIONS(5849), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), }, - [1517] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - [anon_sym_BSLASHtext] = ACTIONS(5371), - [anon_sym_BSLASHintertext] = ACTIONS(5371), - [anon_sym_shortintertext] = ACTIONS(5371), + [1402] = { + [sym_command_name] = ACTIONS(6289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6289), + [anon_sym_LPAREN] = ACTIONS(6291), + [anon_sym_RPAREN] = ACTIONS(6291), + [anon_sym_LBRACK] = ACTIONS(6291), + [anon_sym_RBRACK] = ACTIONS(6291), + [anon_sym_COMMA] = ACTIONS(6291), + [anon_sym_EQ] = ACTIONS(6291), + [anon_sym_LBRACE] = ACTIONS(6291), + [sym_word] = ACTIONS(6289), + [sym_placeholder] = ACTIONS(6291), + [anon_sym_PLUS] = ACTIONS(6289), + [anon_sym_DASH] = ACTIONS(6289), + [anon_sym_STAR] = ACTIONS(6289), + [anon_sym_SLASH] = ACTIONS(6289), + [anon_sym_CARET] = ACTIONS(6289), + [anon_sym__] = ACTIONS(6289), + [anon_sym_LT] = ACTIONS(6289), + [anon_sym_GT] = ACTIONS(6289), + [anon_sym_BANG] = ACTIONS(6289), + [anon_sym_PIPE] = ACTIONS(6289), + [anon_sym_COLON] = ACTIONS(6289), + [anon_sym_SQUOTE] = ACTIONS(6289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), + [anon_sym_DOLLAR] = ACTIONS(6289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6291), + [anon_sym_BSLASHbegin] = ACTIONS(6289), + [anon_sym_BSLASHtitle] = ACTIONS(6289), + [anon_sym_BSLASHauthor] = ACTIONS(6289), + [anon_sym_BSLASHusepackage] = ACTIONS(6289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), + [anon_sym_BSLASHinclude] = ACTIONS(6289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), + [anon_sym_BSLASHinput] = ACTIONS(6289), + [anon_sym_BSLASHsubfile] = ACTIONS(6289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), + [anon_sym_BSLASHbibliography] = ACTIONS(6289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), + [anon_sym_BSLASHincludesvg] = ACTIONS(6289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), + [anon_sym_BSLASHimport] = ACTIONS(6289), + [anon_sym_BSLASHsubimport] = ACTIONS(6289), + [anon_sym_BSLASHinputfrom] = ACTIONS(6289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), + [anon_sym_BSLASHincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHcaption] = ACTIONS(6289), + [anon_sym_BSLASHcite] = ACTIONS(6289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCite] = ACTIONS(6289), + [anon_sym_BSLASHnocite] = ACTIONS(6289), + [anon_sym_BSLASHcitet] = ACTIONS(6289), + [anon_sym_BSLASHcitep] = ACTIONS(6289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteauthor] = ACTIONS(6289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitetitle] = ACTIONS(6289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteyear] = ACTIONS(6289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitedate] = ACTIONS(6289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteurl] = ACTIONS(6289), + [anon_sym_BSLASHfullcite] = ACTIONS(6289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), + [anon_sym_BSLASHcitealt] = ACTIONS(6289), + [anon_sym_BSLASHcitealp] = ACTIONS(6289), + [anon_sym_BSLASHcitetext] = ACTIONS(6289), + [anon_sym_BSLASHparencite] = ACTIONS(6289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHParencite] = ACTIONS(6289), + [anon_sym_BSLASHfootcite] = ACTIONS(6289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), + [anon_sym_BSLASHtextcite] = ACTIONS(6289), + [anon_sym_BSLASHTextcite] = ACTIONS(6289), + [anon_sym_BSLASHsmartcite] = ACTIONS(6289), + [anon_sym_BSLASHSmartcite] = ACTIONS(6289), + [anon_sym_BSLASHsupercite] = ACTIONS(6289), + [anon_sym_BSLASHautocite] = ACTIONS(6289), + [anon_sym_BSLASHAutocite] = ACTIONS(6289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHvolcite] = ACTIONS(6289), + [anon_sym_BSLASHVolcite] = ACTIONS(6289), + [anon_sym_BSLASHpvolcite] = ACTIONS(6289), + [anon_sym_BSLASHPvolcite] = ACTIONS(6289), + [anon_sym_BSLASHfvolcite] = ACTIONS(6289), + [anon_sym_BSLASHftvolcite] = ACTIONS(6289), + [anon_sym_BSLASHsvolcite] = ACTIONS(6289), + [anon_sym_BSLASHSvolcite] = ACTIONS(6289), + [anon_sym_BSLASHtvolcite] = ACTIONS(6289), + [anon_sym_BSLASHTvolcite] = ACTIONS(6289), + [anon_sym_BSLASHavolcite] = ACTIONS(6289), + [anon_sym_BSLASHAvolcite] = ACTIONS(6289), + [anon_sym_BSLASHnotecite] = ACTIONS(6289), + [anon_sym_BSLASHNotecite] = ACTIONS(6289), + [anon_sym_BSLASHpnotecite] = ACTIONS(6289), + [anon_sym_BSLASHPnotecite] = ACTIONS(6289), + [anon_sym_BSLASHfnotecite] = ACTIONS(6289), + [anon_sym_BSLASHlabel] = ACTIONS(6289), + [anon_sym_BSLASHref] = ACTIONS(6289), + [anon_sym_BSLASHeqref] = ACTIONS(6289), + [anon_sym_BSLASHvref] = ACTIONS(6289), + [anon_sym_BSLASHVref] = ACTIONS(6289), + [anon_sym_BSLASHautoref] = ACTIONS(6289), + [anon_sym_BSLASHpageref] = ACTIONS(6289), + [anon_sym_BSLASHcref] = ACTIONS(6289), + [anon_sym_BSLASHCref] = ACTIONS(6289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnameCref] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHlabelcref] = ACTIONS(6289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCrefrange] = ACTIONS(6289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnewlabel] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdef] = ACTIONS(6289), + [anon_sym_BSLASHlet] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), + [anon_sym_BSLASHgls] = ACTIONS(6289), + [anon_sym_BSLASHGls] = ACTIONS(6289), + [anon_sym_BSLASHGLS] = ACTIONS(6289), + [anon_sym_BSLASHglspl] = ACTIONS(6289), + [anon_sym_BSLASHGlspl] = ACTIONS(6289), + [anon_sym_BSLASHGLSpl] = ACTIONS(6289), + [anon_sym_BSLASHglsdisp] = ACTIONS(6289), + [anon_sym_BSLASHglslink] = ACTIONS(6289), + [anon_sym_BSLASHglstext] = ACTIONS(6289), + [anon_sym_BSLASHGlstext] = ACTIONS(6289), + [anon_sym_BSLASHGLStext] = ACTIONS(6289), + [anon_sym_BSLASHglsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), + [anon_sym_BSLASHglsplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSplural] = ACTIONS(6289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHglsname] = ACTIONS(6289), + [anon_sym_BSLASHGlsname] = ACTIONS(6289), + [anon_sym_BSLASHGLSname] = ACTIONS(6289), + [anon_sym_BSLASHglssymbol] = ACTIONS(6289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), + [anon_sym_BSLASHglsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), + [anon_sym_BSLASHglsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), + [anon_sym_BSLASHglsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), + [anon_sym_BSLASHglsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), + [anon_sym_BSLASHglsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), + [anon_sym_BSLASHnewacronym] = ACTIONS(6289), + [anon_sym_BSLASHacrshort] = ACTIONS(6289), + [anon_sym_BSLASHAcrshort] = ACTIONS(6289), + [anon_sym_BSLASHACRshort] = ACTIONS(6289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), + [anon_sym_BSLASHacrlong] = ACTIONS(6289), + [anon_sym_BSLASHAcrlong] = ACTIONS(6289), + [anon_sym_BSLASHACRlong] = ACTIONS(6289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), + [anon_sym_BSLASHacrfull] = ACTIONS(6289), + [anon_sym_BSLASHAcrfull] = ACTIONS(6289), + [anon_sym_BSLASHACRfull] = ACTIONS(6289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), + [anon_sym_BSLASHacs] = ACTIONS(6289), + [anon_sym_BSLASHAcs] = ACTIONS(6289), + [anon_sym_BSLASHacsp] = ACTIONS(6289), + [anon_sym_BSLASHAcsp] = ACTIONS(6289), + [anon_sym_BSLASHacl] = ACTIONS(6289), + [anon_sym_BSLASHAcl] = ACTIONS(6289), + [anon_sym_BSLASHaclp] = ACTIONS(6289), + [anon_sym_BSLASHAclp] = ACTIONS(6289), + [anon_sym_BSLASHacf] = ACTIONS(6289), + [anon_sym_BSLASHAcf] = ACTIONS(6289), + [anon_sym_BSLASHacfp] = ACTIONS(6289), + [anon_sym_BSLASHAcfp] = ACTIONS(6289), + [anon_sym_BSLASHac] = ACTIONS(6289), + [anon_sym_BSLASHAc] = ACTIONS(6289), + [anon_sym_BSLASHacp] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), + [anon_sym_BSLASHcolor] = ACTIONS(6289), + [anon_sym_BSLASHcolorbox] = ACTIONS(6289), + [anon_sym_BSLASHtextcolor] = ACTIONS(6289), + [anon_sym_BSLASHpagecolor] = ACTIONS(6289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), + [anon_sym_BSLASHtext] = ACTIONS(6289), + [anon_sym_BSLASHintertext] = ACTIONS(6289), + [anon_sym_shortintertext] = ACTIONS(6289), }, - [1518] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - [anon_sym_BSLASHtext] = ACTIONS(5065), - [anon_sym_BSLASHintertext] = ACTIONS(5065), - [anon_sym_shortintertext] = ACTIONS(5065), + [1403] = { + [sym_command_name] = ACTIONS(6271), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6271), + [anon_sym_LPAREN] = ACTIONS(6273), + [anon_sym_RPAREN] = ACTIONS(6273), + [anon_sym_LBRACK] = ACTIONS(6273), + [anon_sym_RBRACK] = ACTIONS(6273), + [anon_sym_COMMA] = ACTIONS(6273), + [anon_sym_EQ] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6273), + [sym_word] = ACTIONS(6271), + [sym_placeholder] = ACTIONS(6273), + [anon_sym_PLUS] = ACTIONS(6271), + [anon_sym_DASH] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6271), + [anon_sym_SLASH] = ACTIONS(6271), + [anon_sym_CARET] = ACTIONS(6271), + [anon_sym__] = ACTIONS(6271), + [anon_sym_LT] = ACTIONS(6271), + [anon_sym_GT] = ACTIONS(6271), + [anon_sym_BANG] = ACTIONS(6271), + [anon_sym_PIPE] = ACTIONS(6271), + [anon_sym_COLON] = ACTIONS(6271), + [anon_sym_SQUOTE] = ACTIONS(6271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6273), + [anon_sym_DOLLAR] = ACTIONS(6271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6273), + [anon_sym_BSLASHbegin] = ACTIONS(6271), + [anon_sym_BSLASHtitle] = ACTIONS(6271), + [anon_sym_BSLASHauthor] = ACTIONS(6271), + [anon_sym_BSLASHusepackage] = ACTIONS(6271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6271), + [anon_sym_BSLASHinclude] = ACTIONS(6271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6271), + [anon_sym_BSLASHinput] = ACTIONS(6271), + [anon_sym_BSLASHsubfile] = ACTIONS(6271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6271), + [anon_sym_BSLASHbibliography] = ACTIONS(6271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6271), + [anon_sym_BSLASHincludesvg] = ACTIONS(6271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6271), + [anon_sym_BSLASHimport] = ACTIONS(6271), + [anon_sym_BSLASHsubimport] = ACTIONS(6271), + [anon_sym_BSLASHinputfrom] = ACTIONS(6271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6271), + [anon_sym_BSLASHincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHcaption] = ACTIONS(6271), + [anon_sym_BSLASHcite] = ACTIONS(6271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCite] = ACTIONS(6271), + [anon_sym_BSLASHnocite] = ACTIONS(6271), + [anon_sym_BSLASHcitet] = ACTIONS(6271), + [anon_sym_BSLASHcitep] = ACTIONS(6271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteauthor] = ACTIONS(6271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitetitle] = ACTIONS(6271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteyear] = ACTIONS(6271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitedate] = ACTIONS(6271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteurl] = ACTIONS(6271), + [anon_sym_BSLASHfullcite] = ACTIONS(6271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6271), + [anon_sym_BSLASHcitealt] = ACTIONS(6271), + [anon_sym_BSLASHcitealp] = ACTIONS(6271), + [anon_sym_BSLASHcitetext] = ACTIONS(6271), + [anon_sym_BSLASHparencite] = ACTIONS(6271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHParencite] = ACTIONS(6271), + [anon_sym_BSLASHfootcite] = ACTIONS(6271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6271), + [anon_sym_BSLASHtextcite] = ACTIONS(6271), + [anon_sym_BSLASHTextcite] = ACTIONS(6271), + [anon_sym_BSLASHsmartcite] = ACTIONS(6271), + [anon_sym_BSLASHSmartcite] = ACTIONS(6271), + [anon_sym_BSLASHsupercite] = ACTIONS(6271), + [anon_sym_BSLASHautocite] = ACTIONS(6271), + [anon_sym_BSLASHAutocite] = ACTIONS(6271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHvolcite] = ACTIONS(6271), + [anon_sym_BSLASHVolcite] = ACTIONS(6271), + [anon_sym_BSLASHpvolcite] = ACTIONS(6271), + [anon_sym_BSLASHPvolcite] = ACTIONS(6271), + [anon_sym_BSLASHfvolcite] = ACTIONS(6271), + [anon_sym_BSLASHftvolcite] = ACTIONS(6271), + [anon_sym_BSLASHsvolcite] = ACTIONS(6271), + [anon_sym_BSLASHSvolcite] = ACTIONS(6271), + [anon_sym_BSLASHtvolcite] = ACTIONS(6271), + [anon_sym_BSLASHTvolcite] = ACTIONS(6271), + [anon_sym_BSLASHavolcite] = ACTIONS(6271), + [anon_sym_BSLASHAvolcite] = ACTIONS(6271), + [anon_sym_BSLASHnotecite] = ACTIONS(6271), + [anon_sym_BSLASHNotecite] = ACTIONS(6271), + [anon_sym_BSLASHpnotecite] = ACTIONS(6271), + [anon_sym_BSLASHPnotecite] = ACTIONS(6271), + [anon_sym_BSLASHfnotecite] = ACTIONS(6271), + [anon_sym_BSLASHlabel] = ACTIONS(6271), + [anon_sym_BSLASHref] = ACTIONS(6271), + [anon_sym_BSLASHeqref] = ACTIONS(6271), + [anon_sym_BSLASHvref] = ACTIONS(6271), + [anon_sym_BSLASHVref] = ACTIONS(6271), + [anon_sym_BSLASHautoref] = ACTIONS(6271), + [anon_sym_BSLASHpageref] = ACTIONS(6271), + [anon_sym_BSLASHcref] = ACTIONS(6271), + [anon_sym_BSLASHCref] = ACTIONS(6271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnameCref] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHlabelcref] = ACTIONS(6271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCrefrange] = ACTIONS(6271), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnewlabel] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6271), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6271), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdef] = ACTIONS(6271), + [anon_sym_BSLASHlet] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6271), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6271), + [anon_sym_BSLASHgls] = ACTIONS(6271), + [anon_sym_BSLASHGls] = ACTIONS(6271), + [anon_sym_BSLASHGLS] = ACTIONS(6271), + [anon_sym_BSLASHglspl] = ACTIONS(6271), + [anon_sym_BSLASHGlspl] = ACTIONS(6271), + [anon_sym_BSLASHGLSpl] = ACTIONS(6271), + [anon_sym_BSLASHglsdisp] = ACTIONS(6271), + [anon_sym_BSLASHglslink] = ACTIONS(6271), + [anon_sym_BSLASHglstext] = ACTIONS(6271), + [anon_sym_BSLASHGlstext] = ACTIONS(6271), + [anon_sym_BSLASHGLStext] = ACTIONS(6271), + [anon_sym_BSLASHglsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6271), + [anon_sym_BSLASHglsplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSplural] = ACTIONS(6271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHglsname] = ACTIONS(6271), + [anon_sym_BSLASHGlsname] = ACTIONS(6271), + [anon_sym_BSLASHGLSname] = ACTIONS(6271), + [anon_sym_BSLASHglssymbol] = ACTIONS(6271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6271), + [anon_sym_BSLASHglsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6271), + [anon_sym_BSLASHglsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6271), + [anon_sym_BSLASHglsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6271), + [anon_sym_BSLASHglsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6271), + [anon_sym_BSLASHglsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6271), + [anon_sym_BSLASHnewacronym] = ACTIONS(6271), + [anon_sym_BSLASHacrshort] = ACTIONS(6271), + [anon_sym_BSLASHAcrshort] = ACTIONS(6271), + [anon_sym_BSLASHACRshort] = ACTIONS(6271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6271), + [anon_sym_BSLASHacrlong] = ACTIONS(6271), + [anon_sym_BSLASHAcrlong] = ACTIONS(6271), + [anon_sym_BSLASHACRlong] = ACTIONS(6271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6271), + [anon_sym_BSLASHacrfull] = ACTIONS(6271), + [anon_sym_BSLASHAcrfull] = ACTIONS(6271), + [anon_sym_BSLASHACRfull] = ACTIONS(6271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6271), + [anon_sym_BSLASHacs] = ACTIONS(6271), + [anon_sym_BSLASHAcs] = ACTIONS(6271), + [anon_sym_BSLASHacsp] = ACTIONS(6271), + [anon_sym_BSLASHAcsp] = ACTIONS(6271), + [anon_sym_BSLASHacl] = ACTIONS(6271), + [anon_sym_BSLASHAcl] = ACTIONS(6271), + [anon_sym_BSLASHaclp] = ACTIONS(6271), + [anon_sym_BSLASHAclp] = ACTIONS(6271), + [anon_sym_BSLASHacf] = ACTIONS(6271), + [anon_sym_BSLASHAcf] = ACTIONS(6271), + [anon_sym_BSLASHacfp] = ACTIONS(6271), + [anon_sym_BSLASHAcfp] = ACTIONS(6271), + [anon_sym_BSLASHac] = ACTIONS(6271), + [anon_sym_BSLASHAc] = ACTIONS(6271), + [anon_sym_BSLASHacp] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6271), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6271), + [anon_sym_BSLASHcolor] = ACTIONS(6271), + [anon_sym_BSLASHcolorbox] = ACTIONS(6271), + [anon_sym_BSLASHtextcolor] = ACTIONS(6271), + [anon_sym_BSLASHpagecolor] = ACTIONS(6271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6271), + [anon_sym_BSLASHtext] = ACTIONS(6271), + [anon_sym_BSLASHintertext] = ACTIONS(6271), + [anon_sym_shortintertext] = ACTIONS(6271), }, - [1519] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - [anon_sym_BSLASHtext] = ACTIONS(5089), - [anon_sym_BSLASHintertext] = ACTIONS(5089), - [anon_sym_shortintertext] = ACTIONS(5089), + [1404] = { + [sym_curly_group] = STATE(1523), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5753), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), }, - [1520] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - [anon_sym_BSLASHtext] = ACTIONS(5093), - [anon_sym_BSLASHintertext] = ACTIONS(5093), - [anon_sym_shortintertext] = ACTIONS(5093), + [1405] = { + [sym_brack_group_text] = STATE(1527), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_RPAREN] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(6325), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_RBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, - [1521] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - [anon_sym_BSLASHtext] = ACTIONS(5097), - [anon_sym_BSLASHintertext] = ACTIONS(5097), - [anon_sym_shortintertext] = ACTIONS(5097), + [1406] = { + [sym_curly_group] = STATE(1531), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_RBRACE] = ACTIONS(5607), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), }, - [1522] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - [anon_sym_BSLASHtext] = ACTIONS(5101), - [anon_sym_BSLASHintertext] = ACTIONS(5101), - [anon_sym_shortintertext] = ACTIONS(5101), + [1407] = { + [sym_brack_group_text] = STATE(1539), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(6325), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_LBRACE] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), }, - [1523] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - [anon_sym_BSLASHtext] = ACTIONS(5109), - [anon_sym_BSLASHintertext] = ACTIONS(5109), - [anon_sym_shortintertext] = ACTIONS(5109), + [1408] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHbegin] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), }, - [1524] = { - [sym_curly_group] = STATE(1530), - [sym_mixed_group] = STATE(1530), - [aux_sym_generic_command_repeat1] = STATE(1524), - [sym_command_name] = ACTIONS(4619), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(5689), - [anon_sym_LBRACK] = ACTIONS(5689), - [anon_sym_RBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(5692), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym_word] = ACTIONS(4619), - [sym_placeholder] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4619), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_CARET] = ACTIONS(4619), - [anon_sym__] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4619), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_BSLASHusepackage] = ACTIONS(4619), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4619), - [anon_sym_BSLASHinclude] = ACTIONS(4619), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4619), - [anon_sym_BSLASHinput] = ACTIONS(4619), - [anon_sym_BSLASHsubfile] = ACTIONS(4619), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4619), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4619), - [anon_sym_BSLASHincludesvg] = ACTIONS(4619), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4619), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4619), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4619), - [anon_sym_BSLASHimport] = ACTIONS(4619), - [anon_sym_BSLASHsubimport] = ACTIONS(4619), - [anon_sym_BSLASHinputfrom] = ACTIONS(4619), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4619), - [anon_sym_BSLASHincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4619), - [anon_sym_BSLASHcaption] = ACTIONS(4619), - [anon_sym_BSLASHcite] = ACTIONS(4619), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCite] = ACTIONS(4619), - [anon_sym_BSLASHnocite] = ACTIONS(4619), - [anon_sym_BSLASHcitet] = ACTIONS(4619), - [anon_sym_BSLASHcitep] = ACTIONS(4619), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteauthor] = ACTIONS(4619), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4619), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitetitle] = ACTIONS(4619), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteyear] = ACTIONS(4619), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4617), - [anon_sym_BSLASHcitedate] = ACTIONS(4619), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4617), - [anon_sym_BSLASHciteurl] = ACTIONS(4619), - [anon_sym_BSLASHfullcite] = ACTIONS(4619), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4619), - [anon_sym_BSLASHcitealt] = ACTIONS(4619), - [anon_sym_BSLASHcitealp] = ACTIONS(4619), - [anon_sym_BSLASHcitetext] = ACTIONS(4619), - [anon_sym_BSLASHparencite] = ACTIONS(4619), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHParencite] = ACTIONS(4619), - [anon_sym_BSLASHfootcite] = ACTIONS(4619), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4619), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4619), - [anon_sym_BSLASHtextcite] = ACTIONS(4619), - [anon_sym_BSLASHTextcite] = ACTIONS(4619), - [anon_sym_BSLASHsmartcite] = ACTIONS(4619), - [anon_sym_BSLASHSmartcite] = ACTIONS(4619), - [anon_sym_BSLASHsupercite] = ACTIONS(4619), - [anon_sym_BSLASHautocite] = ACTIONS(4619), - [anon_sym_BSLASHAutocite] = ACTIONS(4619), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4617), - [anon_sym_BSLASHvolcite] = ACTIONS(4619), - [anon_sym_BSLASHVolcite] = ACTIONS(4619), - [anon_sym_BSLASHpvolcite] = ACTIONS(4619), - [anon_sym_BSLASHPvolcite] = ACTIONS(4619), - [anon_sym_BSLASHfvolcite] = ACTIONS(4619), - [anon_sym_BSLASHftvolcite] = ACTIONS(4619), - [anon_sym_BSLASHsvolcite] = ACTIONS(4619), - [anon_sym_BSLASHSvolcite] = ACTIONS(4619), - [anon_sym_BSLASHtvolcite] = ACTIONS(4619), - [anon_sym_BSLASHTvolcite] = ACTIONS(4619), - [anon_sym_BSLASHavolcite] = ACTIONS(4619), - [anon_sym_BSLASHAvolcite] = ACTIONS(4619), - [anon_sym_BSLASHnotecite] = ACTIONS(4619), - [anon_sym_BSLASHNotecite] = ACTIONS(4619), - [anon_sym_BSLASHpnotecite] = ACTIONS(4619), - [anon_sym_BSLASHPnotecite] = ACTIONS(4619), - [anon_sym_BSLASHfnotecite] = ACTIONS(4619), - [anon_sym_BSLASHlabel] = ACTIONS(4619), - [anon_sym_BSLASHref] = ACTIONS(4619), - [anon_sym_BSLASHeqref] = ACTIONS(4619), - [anon_sym_BSLASHvref] = ACTIONS(4619), - [anon_sym_BSLASHVref] = ACTIONS(4619), - [anon_sym_BSLASHautoref] = ACTIONS(4619), - [anon_sym_BSLASHpageref] = ACTIONS(4619), - [anon_sym_BSLASHcref] = ACTIONS(4619), - [anon_sym_BSLASHCref] = ACTIONS(4619), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnameCref] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4619), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4619), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4619), - [anon_sym_BSLASHlabelcref] = ACTIONS(4619), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange] = ACTIONS(4619), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHCrefrange] = ACTIONS(4619), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4617), - [anon_sym_BSLASHnewlabel] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand] = ACTIONS(4619), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4619), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4619), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4617), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4619), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdef] = ACTIONS(4619), - [anon_sym_BSLASHlet] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4619), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4619), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4619), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4619), - [anon_sym_BSLASHgls] = ACTIONS(4619), - [anon_sym_BSLASHGls] = ACTIONS(4619), - [anon_sym_BSLASHGLS] = ACTIONS(4619), - [anon_sym_BSLASHglspl] = ACTIONS(4619), - [anon_sym_BSLASHGlspl] = ACTIONS(4619), - [anon_sym_BSLASHGLSpl] = ACTIONS(4619), - [anon_sym_BSLASHglsdisp] = ACTIONS(4619), - [anon_sym_BSLASHglslink] = ACTIONS(4619), - [anon_sym_BSLASHglstext] = ACTIONS(4619), - [anon_sym_BSLASHGlstext] = ACTIONS(4619), - [anon_sym_BSLASHGLStext] = ACTIONS(4619), - [anon_sym_BSLASHglsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4619), - [anon_sym_BSLASHglsplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSplural] = ACTIONS(4619), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4619), - [anon_sym_BSLASHglsname] = ACTIONS(4619), - [anon_sym_BSLASHGlsname] = ACTIONS(4619), - [anon_sym_BSLASHGLSname] = ACTIONS(4619), - [anon_sym_BSLASHglssymbol] = ACTIONS(4619), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4619), - [anon_sym_BSLASHglsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4619), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4619), - [anon_sym_BSLASHglsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4619), - [anon_sym_BSLASHglsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4619), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4619), - [anon_sym_BSLASHglsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4619), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4619), - [anon_sym_BSLASHglsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4619), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4619), - [anon_sym_BSLASHnewacronym] = ACTIONS(4619), - [anon_sym_BSLASHacrshort] = ACTIONS(4619), - [anon_sym_BSLASHAcrshort] = ACTIONS(4619), - [anon_sym_BSLASHACRshort] = ACTIONS(4619), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4619), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4619), - [anon_sym_BSLASHacrlong] = ACTIONS(4619), - [anon_sym_BSLASHAcrlong] = ACTIONS(4619), - [anon_sym_BSLASHACRlong] = ACTIONS(4619), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4619), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4619), - [anon_sym_BSLASHacrfull] = ACTIONS(4619), - [anon_sym_BSLASHAcrfull] = ACTIONS(4619), - [anon_sym_BSLASHACRfull] = ACTIONS(4619), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4619), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4619), - [anon_sym_BSLASHacs] = ACTIONS(4619), - [anon_sym_BSLASHAcs] = ACTIONS(4619), - [anon_sym_BSLASHacsp] = ACTIONS(4619), - [anon_sym_BSLASHAcsp] = ACTIONS(4619), - [anon_sym_BSLASHacl] = ACTIONS(4619), - [anon_sym_BSLASHAcl] = ACTIONS(4619), - [anon_sym_BSLASHaclp] = ACTIONS(4619), - [anon_sym_BSLASHAclp] = ACTIONS(4619), - [anon_sym_BSLASHacf] = ACTIONS(4619), - [anon_sym_BSLASHAcf] = ACTIONS(4619), - [anon_sym_BSLASHacfp] = ACTIONS(4619), - [anon_sym_BSLASHAcfp] = ACTIONS(4619), - [anon_sym_BSLASHac] = ACTIONS(4619), - [anon_sym_BSLASHAc] = ACTIONS(4619), - [anon_sym_BSLASHacp] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4619), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4619), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4619), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4619), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4619), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4617), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4619), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4619), - [anon_sym_BSLASHcolor] = ACTIONS(4619), - [anon_sym_BSLASHcolorbox] = ACTIONS(4619), - [anon_sym_BSLASHtextcolor] = ACTIONS(4619), - [anon_sym_BSLASHpagecolor] = ACTIONS(4619), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4619), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4619), + [1409] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6327), + [anon_sym_LPAREN] = ACTIONS(5777), + [anon_sym_RPAREN] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_LBRACE] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), }, - [1525] = { - [sym_curly_group] = STATE(1530), - [sym_mixed_group] = STATE(1530), - [aux_sym_generic_command_repeat1] = STATE(1526), - [sym_command_name] = ACTIONS(4629), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(5695), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(4627), - [sym_word] = ACTIONS(4629), - [sym_placeholder] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym__] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4629), - [anon_sym_BSLASHusepackage] = ACTIONS(4629), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4629), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4629), - [anon_sym_BSLASHinclude] = ACTIONS(4629), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4629), - [anon_sym_BSLASHinput] = ACTIONS(4629), - [anon_sym_BSLASHsubfile] = ACTIONS(4629), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4629), - [anon_sym_BSLASHbibliography] = ACTIONS(4629), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4629), - [anon_sym_BSLASHincludesvg] = ACTIONS(4629), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4629), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4629), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4629), - [anon_sym_BSLASHimport] = ACTIONS(4629), - [anon_sym_BSLASHsubimport] = ACTIONS(4629), - [anon_sym_BSLASHinputfrom] = ACTIONS(4629), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4629), - [anon_sym_BSLASHincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4629), - [anon_sym_BSLASHcaption] = ACTIONS(4629), - [anon_sym_BSLASHcite] = ACTIONS(4629), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCite] = ACTIONS(4629), - [anon_sym_BSLASHnocite] = ACTIONS(4629), - [anon_sym_BSLASHcitet] = ACTIONS(4629), - [anon_sym_BSLASHcitep] = ACTIONS(4629), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteauthor] = ACTIONS(4629), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4629), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitetitle] = ACTIONS(4629), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteyear] = ACTIONS(4629), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4627), - [anon_sym_BSLASHcitedate] = ACTIONS(4629), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4627), - [anon_sym_BSLASHciteurl] = ACTIONS(4629), - [anon_sym_BSLASHfullcite] = ACTIONS(4629), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4629), - [anon_sym_BSLASHcitealt] = ACTIONS(4629), - [anon_sym_BSLASHcitealp] = ACTIONS(4629), - [anon_sym_BSLASHcitetext] = ACTIONS(4629), - [anon_sym_BSLASHparencite] = ACTIONS(4629), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHParencite] = ACTIONS(4629), - [anon_sym_BSLASHfootcite] = ACTIONS(4629), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4629), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4629), - [anon_sym_BSLASHtextcite] = ACTIONS(4629), - [anon_sym_BSLASHTextcite] = ACTIONS(4629), - [anon_sym_BSLASHsmartcite] = ACTIONS(4629), - [anon_sym_BSLASHSmartcite] = ACTIONS(4629), - [anon_sym_BSLASHsupercite] = ACTIONS(4629), - [anon_sym_BSLASHautocite] = ACTIONS(4629), - [anon_sym_BSLASHAutocite] = ACTIONS(4629), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4627), - [anon_sym_BSLASHvolcite] = ACTIONS(4629), - [anon_sym_BSLASHVolcite] = ACTIONS(4629), - [anon_sym_BSLASHpvolcite] = ACTIONS(4629), - [anon_sym_BSLASHPvolcite] = ACTIONS(4629), - [anon_sym_BSLASHfvolcite] = ACTIONS(4629), - [anon_sym_BSLASHftvolcite] = ACTIONS(4629), - [anon_sym_BSLASHsvolcite] = ACTIONS(4629), - [anon_sym_BSLASHSvolcite] = ACTIONS(4629), - [anon_sym_BSLASHtvolcite] = ACTIONS(4629), - [anon_sym_BSLASHTvolcite] = ACTIONS(4629), - [anon_sym_BSLASHavolcite] = ACTIONS(4629), - [anon_sym_BSLASHAvolcite] = ACTIONS(4629), - [anon_sym_BSLASHnotecite] = ACTIONS(4629), - [anon_sym_BSLASHNotecite] = ACTIONS(4629), - [anon_sym_BSLASHpnotecite] = ACTIONS(4629), - [anon_sym_BSLASHPnotecite] = ACTIONS(4629), - [anon_sym_BSLASHfnotecite] = ACTIONS(4629), - [anon_sym_BSLASHlabel] = ACTIONS(4629), - [anon_sym_BSLASHref] = ACTIONS(4629), - [anon_sym_BSLASHeqref] = ACTIONS(4629), - [anon_sym_BSLASHvref] = ACTIONS(4629), - [anon_sym_BSLASHVref] = ACTIONS(4629), - [anon_sym_BSLASHautoref] = ACTIONS(4629), - [anon_sym_BSLASHpageref] = ACTIONS(4629), - [anon_sym_BSLASHcref] = ACTIONS(4629), - [anon_sym_BSLASHCref] = ACTIONS(4629), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnameCref] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4629), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4629), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4629), - [anon_sym_BSLASHlabelcref] = ACTIONS(4629), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange] = ACTIONS(4629), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHCrefrange] = ACTIONS(4629), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4627), - [anon_sym_BSLASHnewlabel] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand] = ACTIONS(4629), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4629), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4629), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4627), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4629), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdef] = ACTIONS(4629), - [anon_sym_BSLASHlet] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4629), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4629), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4629), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4629), - [anon_sym_BSLASHgls] = ACTIONS(4629), - [anon_sym_BSLASHGls] = ACTIONS(4629), - [anon_sym_BSLASHGLS] = ACTIONS(4629), - [anon_sym_BSLASHglspl] = ACTIONS(4629), - [anon_sym_BSLASHGlspl] = ACTIONS(4629), - [anon_sym_BSLASHGLSpl] = ACTIONS(4629), - [anon_sym_BSLASHglsdisp] = ACTIONS(4629), - [anon_sym_BSLASHglslink] = ACTIONS(4629), - [anon_sym_BSLASHglstext] = ACTIONS(4629), - [anon_sym_BSLASHGlstext] = ACTIONS(4629), - [anon_sym_BSLASHGLStext] = ACTIONS(4629), - [anon_sym_BSLASHglsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4629), - [anon_sym_BSLASHglsplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSplural] = ACTIONS(4629), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4629), - [anon_sym_BSLASHglsname] = ACTIONS(4629), - [anon_sym_BSLASHGlsname] = ACTIONS(4629), - [anon_sym_BSLASHGLSname] = ACTIONS(4629), - [anon_sym_BSLASHglssymbol] = ACTIONS(4629), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4629), - [anon_sym_BSLASHglsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4629), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4629), - [anon_sym_BSLASHglsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4629), - [anon_sym_BSLASHglsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4629), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4629), - [anon_sym_BSLASHglsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4629), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4629), - [anon_sym_BSLASHglsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4629), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4629), - [anon_sym_BSLASHnewacronym] = ACTIONS(4629), - [anon_sym_BSLASHacrshort] = ACTIONS(4629), - [anon_sym_BSLASHAcrshort] = ACTIONS(4629), - [anon_sym_BSLASHACRshort] = ACTIONS(4629), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4629), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4629), - [anon_sym_BSLASHacrlong] = ACTIONS(4629), - [anon_sym_BSLASHAcrlong] = ACTIONS(4629), - [anon_sym_BSLASHACRlong] = ACTIONS(4629), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4629), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4629), - [anon_sym_BSLASHacrfull] = ACTIONS(4629), - [anon_sym_BSLASHAcrfull] = ACTIONS(4629), - [anon_sym_BSLASHACRfull] = ACTIONS(4629), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4629), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4629), - [anon_sym_BSLASHacs] = ACTIONS(4629), - [anon_sym_BSLASHAcs] = ACTIONS(4629), - [anon_sym_BSLASHacsp] = ACTIONS(4629), - [anon_sym_BSLASHAcsp] = ACTIONS(4629), - [anon_sym_BSLASHacl] = ACTIONS(4629), - [anon_sym_BSLASHAcl] = ACTIONS(4629), - [anon_sym_BSLASHaclp] = ACTIONS(4629), - [anon_sym_BSLASHAclp] = ACTIONS(4629), - [anon_sym_BSLASHacf] = ACTIONS(4629), - [anon_sym_BSLASHAcf] = ACTIONS(4629), - [anon_sym_BSLASHacfp] = ACTIONS(4629), - [anon_sym_BSLASHAcfp] = ACTIONS(4629), - [anon_sym_BSLASHac] = ACTIONS(4629), - [anon_sym_BSLASHAc] = ACTIONS(4629), - [anon_sym_BSLASHacp] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4629), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4629), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4629), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4629), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4629), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4627), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4629), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4629), - [anon_sym_BSLASHcolor] = ACTIONS(4629), - [anon_sym_BSLASHcolorbox] = ACTIONS(4629), - [anon_sym_BSLASHtextcolor] = ACTIONS(4629), - [anon_sym_BSLASHpagecolor] = ACTIONS(4629), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4629), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4629), + [1410] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHbegin] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), }, - [1526] = { - [sym_curly_group] = STATE(1530), - [sym_mixed_group] = STATE(1530), - [aux_sym_generic_command_repeat1] = STATE(1524), - [sym_command_name] = ACTIONS(4613), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(5695), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(4611), - [sym_word] = ACTIONS(4613), - [sym_placeholder] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym__] = ACTIONS(4613), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_PIPE] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_BSLASHusepackage] = ACTIONS(4613), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4613), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4613), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4613), - [anon_sym_BSLASHbibliography] = ACTIONS(4613), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4613), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4613), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4613), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4613), - [anon_sym_BSLASHimport] = ACTIONS(4613), - [anon_sym_BSLASHsubimport] = ACTIONS(4613), - [anon_sym_BSLASHinputfrom] = ACTIONS(4613), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4613), - [anon_sym_BSLASHincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4613), - [anon_sym_BSLASHcaption] = ACTIONS(4613), - [anon_sym_BSLASHcite] = ACTIONS(4613), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCite] = ACTIONS(4613), - [anon_sym_BSLASHnocite] = ACTIONS(4613), - [anon_sym_BSLASHcitet] = ACTIONS(4613), - [anon_sym_BSLASHcitep] = ACTIONS(4613), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteauthor] = ACTIONS(4613), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4613), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitetitle] = ACTIONS(4613), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteyear] = ACTIONS(4613), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4611), - [anon_sym_BSLASHcitedate] = ACTIONS(4613), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4611), - [anon_sym_BSLASHciteurl] = ACTIONS(4613), - [anon_sym_BSLASHfullcite] = ACTIONS(4613), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4613), - [anon_sym_BSLASHcitealt] = ACTIONS(4613), - [anon_sym_BSLASHcitealp] = ACTIONS(4613), - [anon_sym_BSLASHcitetext] = ACTIONS(4613), - [anon_sym_BSLASHparencite] = ACTIONS(4613), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHParencite] = ACTIONS(4613), - [anon_sym_BSLASHfootcite] = ACTIONS(4613), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4613), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4613), - [anon_sym_BSLASHtextcite] = ACTIONS(4613), - [anon_sym_BSLASHTextcite] = ACTIONS(4613), - [anon_sym_BSLASHsmartcite] = ACTIONS(4613), - [anon_sym_BSLASHSmartcite] = ACTIONS(4613), - [anon_sym_BSLASHsupercite] = ACTIONS(4613), - [anon_sym_BSLASHautocite] = ACTIONS(4613), - [anon_sym_BSLASHAutocite] = ACTIONS(4613), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4611), - [anon_sym_BSLASHvolcite] = ACTIONS(4613), - [anon_sym_BSLASHVolcite] = ACTIONS(4613), - [anon_sym_BSLASHpvolcite] = ACTIONS(4613), - [anon_sym_BSLASHPvolcite] = ACTIONS(4613), - [anon_sym_BSLASHfvolcite] = ACTIONS(4613), - [anon_sym_BSLASHftvolcite] = ACTIONS(4613), - [anon_sym_BSLASHsvolcite] = ACTIONS(4613), - [anon_sym_BSLASHSvolcite] = ACTIONS(4613), - [anon_sym_BSLASHtvolcite] = ACTIONS(4613), - [anon_sym_BSLASHTvolcite] = ACTIONS(4613), - [anon_sym_BSLASHavolcite] = ACTIONS(4613), - [anon_sym_BSLASHAvolcite] = ACTIONS(4613), - [anon_sym_BSLASHnotecite] = ACTIONS(4613), - [anon_sym_BSLASHNotecite] = ACTIONS(4613), - [anon_sym_BSLASHpnotecite] = ACTIONS(4613), - [anon_sym_BSLASHPnotecite] = ACTIONS(4613), - [anon_sym_BSLASHfnotecite] = ACTIONS(4613), - [anon_sym_BSLASHlabel] = ACTIONS(4613), - [anon_sym_BSLASHref] = ACTIONS(4613), - [anon_sym_BSLASHeqref] = ACTIONS(4613), - [anon_sym_BSLASHvref] = ACTIONS(4613), - [anon_sym_BSLASHVref] = ACTIONS(4613), - [anon_sym_BSLASHautoref] = ACTIONS(4613), - [anon_sym_BSLASHpageref] = ACTIONS(4613), - [anon_sym_BSLASHcref] = ACTIONS(4613), - [anon_sym_BSLASHCref] = ACTIONS(4613), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnameCref] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4613), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4613), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4613), - [anon_sym_BSLASHlabelcref] = ACTIONS(4613), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange] = ACTIONS(4613), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHCrefrange] = ACTIONS(4613), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4611), - [anon_sym_BSLASHnewlabel] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand] = ACTIONS(4613), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4613), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4613), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4611), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4613), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdef] = ACTIONS(4613), - [anon_sym_BSLASHlet] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4613), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4613), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4613), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4613), - [anon_sym_BSLASHgls] = ACTIONS(4613), - [anon_sym_BSLASHGls] = ACTIONS(4613), - [anon_sym_BSLASHGLS] = ACTIONS(4613), - [anon_sym_BSLASHglspl] = ACTIONS(4613), - [anon_sym_BSLASHGlspl] = ACTIONS(4613), - [anon_sym_BSLASHGLSpl] = ACTIONS(4613), - [anon_sym_BSLASHglsdisp] = ACTIONS(4613), - [anon_sym_BSLASHglslink] = ACTIONS(4613), - [anon_sym_BSLASHglstext] = ACTIONS(4613), - [anon_sym_BSLASHGlstext] = ACTIONS(4613), - [anon_sym_BSLASHGLStext] = ACTIONS(4613), - [anon_sym_BSLASHglsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4613), - [anon_sym_BSLASHglsplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSplural] = ACTIONS(4613), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4613), - [anon_sym_BSLASHglsname] = ACTIONS(4613), - [anon_sym_BSLASHGlsname] = ACTIONS(4613), - [anon_sym_BSLASHGLSname] = ACTIONS(4613), - [anon_sym_BSLASHglssymbol] = ACTIONS(4613), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4613), - [anon_sym_BSLASHglsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4613), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4613), - [anon_sym_BSLASHglsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4613), - [anon_sym_BSLASHglsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4613), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4613), - [anon_sym_BSLASHglsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4613), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4613), - [anon_sym_BSLASHglsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4613), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4613), - [anon_sym_BSLASHnewacronym] = ACTIONS(4613), - [anon_sym_BSLASHacrshort] = ACTIONS(4613), - [anon_sym_BSLASHAcrshort] = ACTIONS(4613), - [anon_sym_BSLASHACRshort] = ACTIONS(4613), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4613), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4613), - [anon_sym_BSLASHacrlong] = ACTIONS(4613), - [anon_sym_BSLASHAcrlong] = ACTIONS(4613), - [anon_sym_BSLASHACRlong] = ACTIONS(4613), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4613), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4613), - [anon_sym_BSLASHacrfull] = ACTIONS(4613), - [anon_sym_BSLASHAcrfull] = ACTIONS(4613), - [anon_sym_BSLASHACRfull] = ACTIONS(4613), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4613), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4613), - [anon_sym_BSLASHacs] = ACTIONS(4613), - [anon_sym_BSLASHAcs] = ACTIONS(4613), - [anon_sym_BSLASHacsp] = ACTIONS(4613), - [anon_sym_BSLASHAcsp] = ACTIONS(4613), - [anon_sym_BSLASHacl] = ACTIONS(4613), - [anon_sym_BSLASHAcl] = ACTIONS(4613), - [anon_sym_BSLASHaclp] = ACTIONS(4613), - [anon_sym_BSLASHAclp] = ACTIONS(4613), - [anon_sym_BSLASHacf] = ACTIONS(4613), - [anon_sym_BSLASHAcf] = ACTIONS(4613), - [anon_sym_BSLASHacfp] = ACTIONS(4613), - [anon_sym_BSLASHAcfp] = ACTIONS(4613), - [anon_sym_BSLASHac] = ACTIONS(4613), - [anon_sym_BSLASHAc] = ACTIONS(4613), - [anon_sym_BSLASHacp] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4613), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4613), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4613), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4613), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4613), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4611), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4613), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4613), - [anon_sym_BSLASHcolor] = ACTIONS(4613), - [anon_sym_BSLASHcolorbox] = ACTIONS(4613), - [anon_sym_BSLASHtextcolor] = ACTIONS(4613), - [anon_sym_BSLASHpagecolor] = ACTIONS(4613), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4613), + [1411] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_EQ] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHbegin] = ACTIONS(181), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, - [1527] = { - [sym_curly_group] = STATE(1534), - [sym_brack_group_text] = STATE(2108), - [sym_command_name] = ACTIONS(4973), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(4971), - [sym_word] = ACTIONS(4973), - [sym_placeholder] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4973), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_STAR] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym__] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_COLON] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4973), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), - [anon_sym_BSLASHinclude] = ACTIONS(4973), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), - [anon_sym_BSLASHinput] = ACTIONS(4973), - [anon_sym_BSLASHsubfile] = ACTIONS(4973), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), - [anon_sym_BSLASHbibliography] = ACTIONS(4973), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), - [anon_sym_BSLASHincludesvg] = ACTIONS(4973), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), - [anon_sym_BSLASHimport] = ACTIONS(4973), - [anon_sym_BSLASHsubimport] = ACTIONS(4973), - [anon_sym_BSLASHinputfrom] = ACTIONS(4973), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), - [anon_sym_BSLASHincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), - [anon_sym_BSLASHcaption] = ACTIONS(4973), - [anon_sym_BSLASHcite] = ACTIONS(4973), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCite] = ACTIONS(4973), - [anon_sym_BSLASHnocite] = ACTIONS(4973), - [anon_sym_BSLASHcitet] = ACTIONS(4973), - [anon_sym_BSLASHcitep] = ACTIONS(4973), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteyear] = ACTIONS(4973), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), - [anon_sym_BSLASHcitedate] = ACTIONS(4973), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), - [anon_sym_BSLASHciteurl] = ACTIONS(4973), - [anon_sym_BSLASHfullcite] = ACTIONS(4973), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), - [anon_sym_BSLASHcitealt] = ACTIONS(4973), - [anon_sym_BSLASHcitealp] = ACTIONS(4973), - [anon_sym_BSLASHcitetext] = ACTIONS(4973), - [anon_sym_BSLASHparencite] = ACTIONS(4973), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHParencite] = ACTIONS(4973), - [anon_sym_BSLASHfootcite] = ACTIONS(4973), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), - [anon_sym_BSLASHtextcite] = ACTIONS(4973), - [anon_sym_BSLASHTextcite] = ACTIONS(4973), - [anon_sym_BSLASHsmartcite] = ACTIONS(4973), - [anon_sym_BSLASHSmartcite] = ACTIONS(4973), - [anon_sym_BSLASHsupercite] = ACTIONS(4973), - [anon_sym_BSLASHautocite] = ACTIONS(4973), - [anon_sym_BSLASHAutocite] = ACTIONS(4973), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), - [anon_sym_BSLASHvolcite] = ACTIONS(4973), - [anon_sym_BSLASHVolcite] = ACTIONS(4973), - [anon_sym_BSLASHpvolcite] = ACTIONS(4973), - [anon_sym_BSLASHPvolcite] = ACTIONS(4973), - [anon_sym_BSLASHfvolcite] = ACTIONS(4973), - [anon_sym_BSLASHftvolcite] = ACTIONS(4973), - [anon_sym_BSLASHsvolcite] = ACTIONS(4973), - [anon_sym_BSLASHSvolcite] = ACTIONS(4973), - [anon_sym_BSLASHtvolcite] = ACTIONS(4973), - [anon_sym_BSLASHTvolcite] = ACTIONS(4973), - [anon_sym_BSLASHavolcite] = ACTIONS(4973), - [anon_sym_BSLASHAvolcite] = ACTIONS(4973), - [anon_sym_BSLASHnotecite] = ACTIONS(4973), - [anon_sym_BSLASHNotecite] = ACTIONS(4973), - [anon_sym_BSLASHpnotecite] = ACTIONS(4973), - [anon_sym_BSLASHPnotecite] = ACTIONS(4973), - [anon_sym_BSLASHfnotecite] = ACTIONS(4973), - [anon_sym_BSLASHlabel] = ACTIONS(4973), - [anon_sym_BSLASHref] = ACTIONS(4973), - [anon_sym_BSLASHeqref] = ACTIONS(4973), - [anon_sym_BSLASHvref] = ACTIONS(4973), - [anon_sym_BSLASHVref] = ACTIONS(4973), - [anon_sym_BSLASHautoref] = ACTIONS(4973), - [anon_sym_BSLASHpageref] = ACTIONS(4973), - [anon_sym_BSLASHcref] = ACTIONS(4973), - [anon_sym_BSLASHCref] = ACTIONS(4973), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnameCref] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), - [anon_sym_BSLASHlabelcref] = ACTIONS(4973), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange] = ACTIONS(4973), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), - [anon_sym_BSLASHnewlabel] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand] = ACTIONS(4973), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdef] = ACTIONS(4973), - [anon_sym_BSLASHlet] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4973), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4973), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), - [anon_sym_BSLASHgls] = ACTIONS(4973), - [anon_sym_BSLASHGls] = ACTIONS(4973), - [anon_sym_BSLASHGLS] = ACTIONS(4973), - [anon_sym_BSLASHglspl] = ACTIONS(4973), - [anon_sym_BSLASHGlspl] = ACTIONS(4973), - [anon_sym_BSLASHGLSpl] = ACTIONS(4973), - [anon_sym_BSLASHglsdisp] = ACTIONS(4973), - [anon_sym_BSLASHglslink] = ACTIONS(4973), - [anon_sym_BSLASHglstext] = ACTIONS(4973), - [anon_sym_BSLASHGlstext] = ACTIONS(4973), - [anon_sym_BSLASHGLStext] = ACTIONS(4973), - [anon_sym_BSLASHglsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), - [anon_sym_BSLASHglsplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSplural] = ACTIONS(4973), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), - [anon_sym_BSLASHglsname] = ACTIONS(4973), - [anon_sym_BSLASHGlsname] = ACTIONS(4973), - [anon_sym_BSLASHGLSname] = ACTIONS(4973), - [anon_sym_BSLASHglssymbol] = ACTIONS(4973), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), - [anon_sym_BSLASHglsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), - [anon_sym_BSLASHglsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), - [anon_sym_BSLASHglsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), - [anon_sym_BSLASHglsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), - [anon_sym_BSLASHglsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), - [anon_sym_BSLASHnewacronym] = ACTIONS(4973), - [anon_sym_BSLASHacrshort] = ACTIONS(4973), - [anon_sym_BSLASHAcrshort] = ACTIONS(4973), - [anon_sym_BSLASHACRshort] = ACTIONS(4973), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), - [anon_sym_BSLASHacrlong] = ACTIONS(4973), - [anon_sym_BSLASHAcrlong] = ACTIONS(4973), - [anon_sym_BSLASHACRlong] = ACTIONS(4973), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), - [anon_sym_BSLASHacrfull] = ACTIONS(4973), - [anon_sym_BSLASHAcrfull] = ACTIONS(4973), - [anon_sym_BSLASHACRfull] = ACTIONS(4973), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), - [anon_sym_BSLASHacs] = ACTIONS(4973), - [anon_sym_BSLASHAcs] = ACTIONS(4973), - [anon_sym_BSLASHacsp] = ACTIONS(4973), - [anon_sym_BSLASHAcsp] = ACTIONS(4973), - [anon_sym_BSLASHacl] = ACTIONS(4973), - [anon_sym_BSLASHAcl] = ACTIONS(4973), - [anon_sym_BSLASHaclp] = ACTIONS(4973), - [anon_sym_BSLASHAclp] = ACTIONS(4973), - [anon_sym_BSLASHacf] = ACTIONS(4973), - [anon_sym_BSLASHAcf] = ACTIONS(4973), - [anon_sym_BSLASHacfp] = ACTIONS(4973), - [anon_sym_BSLASHAcfp] = ACTIONS(4973), - [anon_sym_BSLASHac] = ACTIONS(4973), - [anon_sym_BSLASHAc] = ACTIONS(4973), - [anon_sym_BSLASHacp] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), - [anon_sym_BSLASHcolor] = ACTIONS(4973), - [anon_sym_BSLASHcolorbox] = ACTIONS(4973), - [anon_sym_BSLASHtextcolor] = ACTIONS(4973), - [anon_sym_BSLASHpagecolor] = ACTIONS(4973), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [1412] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHbegin] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), }, - [1528] = { - [sym_curly_group] = STATE(1536), - [sym_brack_group_text] = STATE(2123), - [sym_command_name] = ACTIONS(4853), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_RBRACK] = ACTIONS(4851), - [anon_sym_COMMA] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(4851), - [sym_word] = ACTIONS(4853), - [sym_placeholder] = ACTIONS(4851), - [anon_sym_PLUS] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_CARET] = ACTIONS(4853), - [anon_sym__] = ACTIONS(4853), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_SQUOTE] = ACTIONS(4853), - [anon_sym_BSLASHusepackage] = ACTIONS(4853), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), - [anon_sym_BSLASHinclude] = ACTIONS(4853), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), - [anon_sym_BSLASHinput] = ACTIONS(4853), - [anon_sym_BSLASHsubfile] = ACTIONS(4853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), - [anon_sym_BSLASHbibliography] = ACTIONS(4853), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), - [anon_sym_BSLASHincludesvg] = ACTIONS(4853), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), - [anon_sym_BSLASHimport] = ACTIONS(4853), - [anon_sym_BSLASHsubimport] = ACTIONS(4853), - [anon_sym_BSLASHinputfrom] = ACTIONS(4853), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), - [anon_sym_BSLASHincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), - [anon_sym_BSLASHcaption] = ACTIONS(4853), - [anon_sym_BSLASHcite] = ACTIONS(4853), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCite] = ACTIONS(4853), - [anon_sym_BSLASHnocite] = ACTIONS(4853), - [anon_sym_BSLASHcitet] = ACTIONS(4853), - [anon_sym_BSLASHcitep] = ACTIONS(4853), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteauthor] = ACTIONS(4853), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitetitle] = ACTIONS(4853), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteyear] = ACTIONS(4853), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), - [anon_sym_BSLASHcitedate] = ACTIONS(4853), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), - [anon_sym_BSLASHciteurl] = ACTIONS(4853), - [anon_sym_BSLASHfullcite] = ACTIONS(4853), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), - [anon_sym_BSLASHcitealt] = ACTIONS(4853), - [anon_sym_BSLASHcitealp] = ACTIONS(4853), - [anon_sym_BSLASHcitetext] = ACTIONS(4853), - [anon_sym_BSLASHparencite] = ACTIONS(4853), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHParencite] = ACTIONS(4853), - [anon_sym_BSLASHfootcite] = ACTIONS(4853), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), - [anon_sym_BSLASHtextcite] = ACTIONS(4853), - [anon_sym_BSLASHTextcite] = ACTIONS(4853), - [anon_sym_BSLASHsmartcite] = ACTIONS(4853), - [anon_sym_BSLASHSmartcite] = ACTIONS(4853), - [anon_sym_BSLASHsupercite] = ACTIONS(4853), - [anon_sym_BSLASHautocite] = ACTIONS(4853), - [anon_sym_BSLASHAutocite] = ACTIONS(4853), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), - [anon_sym_BSLASHvolcite] = ACTIONS(4853), - [anon_sym_BSLASHVolcite] = ACTIONS(4853), - [anon_sym_BSLASHpvolcite] = ACTIONS(4853), - [anon_sym_BSLASHPvolcite] = ACTIONS(4853), - [anon_sym_BSLASHfvolcite] = ACTIONS(4853), - [anon_sym_BSLASHftvolcite] = ACTIONS(4853), - [anon_sym_BSLASHsvolcite] = ACTIONS(4853), - [anon_sym_BSLASHSvolcite] = ACTIONS(4853), - [anon_sym_BSLASHtvolcite] = ACTIONS(4853), - [anon_sym_BSLASHTvolcite] = ACTIONS(4853), - [anon_sym_BSLASHavolcite] = ACTIONS(4853), - [anon_sym_BSLASHAvolcite] = ACTIONS(4853), - [anon_sym_BSLASHnotecite] = ACTIONS(4853), - [anon_sym_BSLASHNotecite] = ACTIONS(4853), - [anon_sym_BSLASHpnotecite] = ACTIONS(4853), - [anon_sym_BSLASHPnotecite] = ACTIONS(4853), - [anon_sym_BSLASHfnotecite] = ACTIONS(4853), - [anon_sym_BSLASHlabel] = ACTIONS(4853), - [anon_sym_BSLASHref] = ACTIONS(4853), - [anon_sym_BSLASHeqref] = ACTIONS(4853), - [anon_sym_BSLASHvref] = ACTIONS(4853), - [anon_sym_BSLASHVref] = ACTIONS(4853), - [anon_sym_BSLASHautoref] = ACTIONS(4853), - [anon_sym_BSLASHpageref] = ACTIONS(4853), - [anon_sym_BSLASHcref] = ACTIONS(4853), - [anon_sym_BSLASHCref] = ACTIONS(4853), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnameCref] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), - [anon_sym_BSLASHlabelcref] = ACTIONS(4853), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange] = ACTIONS(4853), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHCrefrange] = ACTIONS(4853), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), - [anon_sym_BSLASHnewlabel] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand] = ACTIONS(4853), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdef] = ACTIONS(4853), - [anon_sym_BSLASHlet] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4853), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4853), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), - [anon_sym_BSLASHgls] = ACTIONS(4853), - [anon_sym_BSLASHGls] = ACTIONS(4853), - [anon_sym_BSLASHGLS] = ACTIONS(4853), - [anon_sym_BSLASHglspl] = ACTIONS(4853), - [anon_sym_BSLASHGlspl] = ACTIONS(4853), - [anon_sym_BSLASHGLSpl] = ACTIONS(4853), - [anon_sym_BSLASHglsdisp] = ACTIONS(4853), - [anon_sym_BSLASHglslink] = ACTIONS(4853), - [anon_sym_BSLASHglstext] = ACTIONS(4853), - [anon_sym_BSLASHGlstext] = ACTIONS(4853), - [anon_sym_BSLASHGLStext] = ACTIONS(4853), - [anon_sym_BSLASHglsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), - [anon_sym_BSLASHglsplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSplural] = ACTIONS(4853), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), - [anon_sym_BSLASHglsname] = ACTIONS(4853), - [anon_sym_BSLASHGlsname] = ACTIONS(4853), - [anon_sym_BSLASHGLSname] = ACTIONS(4853), - [anon_sym_BSLASHglssymbol] = ACTIONS(4853), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), - [anon_sym_BSLASHglsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), - [anon_sym_BSLASHglsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), - [anon_sym_BSLASHglsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), - [anon_sym_BSLASHglsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), - [anon_sym_BSLASHglsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), - [anon_sym_BSLASHnewacronym] = ACTIONS(4853), - [anon_sym_BSLASHacrshort] = ACTIONS(4853), - [anon_sym_BSLASHAcrshort] = ACTIONS(4853), - [anon_sym_BSLASHACRshort] = ACTIONS(4853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), - [anon_sym_BSLASHacrlong] = ACTIONS(4853), - [anon_sym_BSLASHAcrlong] = ACTIONS(4853), - [anon_sym_BSLASHACRlong] = ACTIONS(4853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), - [anon_sym_BSLASHacrfull] = ACTIONS(4853), - [anon_sym_BSLASHAcrfull] = ACTIONS(4853), - [anon_sym_BSLASHACRfull] = ACTIONS(4853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), - [anon_sym_BSLASHacs] = ACTIONS(4853), - [anon_sym_BSLASHAcs] = ACTIONS(4853), - [anon_sym_BSLASHacsp] = ACTIONS(4853), - [anon_sym_BSLASHAcsp] = ACTIONS(4853), - [anon_sym_BSLASHacl] = ACTIONS(4853), - [anon_sym_BSLASHAcl] = ACTIONS(4853), - [anon_sym_BSLASHaclp] = ACTIONS(4853), - [anon_sym_BSLASHAclp] = ACTIONS(4853), - [anon_sym_BSLASHacf] = ACTIONS(4853), - [anon_sym_BSLASHAcf] = ACTIONS(4853), - [anon_sym_BSLASHacfp] = ACTIONS(4853), - [anon_sym_BSLASHAcfp] = ACTIONS(4853), - [anon_sym_BSLASHac] = ACTIONS(4853), - [anon_sym_BSLASHAc] = ACTIONS(4853), - [anon_sym_BSLASHacp] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4851), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), - [anon_sym_BSLASHcolor] = ACTIONS(4853), - [anon_sym_BSLASHcolorbox] = ACTIONS(4853), - [anon_sym_BSLASHtextcolor] = ACTIONS(4853), - [anon_sym_BSLASHpagecolor] = ACTIONS(4853), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [1413] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHbegin] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), }, - [1529] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5299), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), + [1414] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHbegin] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), }, - [1530] = { - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5139), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [1415] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHbegin] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), }, - [1531] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_RBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5159), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), + [1416] = { + [sym_curly_group] = STATE(1607), + [sym_mixed_group] = STATE(1607), + [aux_sym_generic_command_repeat1] = STATE(1416), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(6329), + [anon_sym_LBRACK] = ACTIONS(6329), + [anon_sym_LBRACE] = ACTIONS(6332), + [anon_sym_RBRACE] = ACTIONS(5237), + [anon_sym_BSLASHand] = ACTIONS(5239), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), + [anon_sym_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [anon_sym_BSLASHtext] = ACTIONS(5239), + [anon_sym_BSLASHintertext] = ACTIONS(5239), + [anon_sym_shortintertext] = ACTIONS(5239), }, - [1532] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5143), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), + [1417] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHbegin] = ACTIONS(5803), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), }, - [1533] = { - [sym_command_name] = ACTIONS(5237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [sym_word] = ACTIONS(5237), - [sym_placeholder] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_STAR] = ACTIONS(5237), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym__] = ACTIONS(5237), - [anon_sym_LT] = ACTIONS(5237), - [anon_sym_GT] = ACTIONS(5237), - [anon_sym_BANG] = ACTIONS(5237), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(5237), - [anon_sym_SQUOTE] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), - [anon_sym_BSLASHinclude] = ACTIONS(5237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), - [anon_sym_BSLASHinput] = ACTIONS(5237), - [anon_sym_BSLASHsubfile] = ACTIONS(5237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), - [anon_sym_BSLASHbibliography] = ACTIONS(5237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), - [anon_sym_BSLASHincludesvg] = ACTIONS(5237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), - [anon_sym_BSLASHimport] = ACTIONS(5237), - [anon_sym_BSLASHsubimport] = ACTIONS(5237), - [anon_sym_BSLASHinputfrom] = ACTIONS(5237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), - [anon_sym_BSLASHincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), - [anon_sym_BSLASHcaption] = ACTIONS(5237), - [anon_sym_BSLASHcite] = ACTIONS(5237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCite] = ACTIONS(5237), - [anon_sym_BSLASHnocite] = ACTIONS(5237), - [anon_sym_BSLASHcitet] = ACTIONS(5237), - [anon_sym_BSLASHcitep] = ACTIONS(5237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteyear] = ACTIONS(5237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), - [anon_sym_BSLASHcitedate] = ACTIONS(5237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), - [anon_sym_BSLASHciteurl] = ACTIONS(5237), - [anon_sym_BSLASHfullcite] = ACTIONS(5237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), - [anon_sym_BSLASHcitealt] = ACTIONS(5237), - [anon_sym_BSLASHcitealp] = ACTIONS(5237), - [anon_sym_BSLASHcitetext] = ACTIONS(5237), - [anon_sym_BSLASHparencite] = ACTIONS(5237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHParencite] = ACTIONS(5237), - [anon_sym_BSLASHfootcite] = ACTIONS(5237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), - [anon_sym_BSLASHtextcite] = ACTIONS(5237), - [anon_sym_BSLASHTextcite] = ACTIONS(5237), - [anon_sym_BSLASHsmartcite] = ACTIONS(5237), - [anon_sym_BSLASHSmartcite] = ACTIONS(5237), - [anon_sym_BSLASHsupercite] = ACTIONS(5237), - [anon_sym_BSLASHautocite] = ACTIONS(5237), - [anon_sym_BSLASHAutocite] = ACTIONS(5237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), - [anon_sym_BSLASHvolcite] = ACTIONS(5237), - [anon_sym_BSLASHVolcite] = ACTIONS(5237), - [anon_sym_BSLASHpvolcite] = ACTIONS(5237), - [anon_sym_BSLASHPvolcite] = ACTIONS(5237), - [anon_sym_BSLASHfvolcite] = ACTIONS(5237), - [anon_sym_BSLASHftvolcite] = ACTIONS(5237), - [anon_sym_BSLASHsvolcite] = ACTIONS(5237), - [anon_sym_BSLASHSvolcite] = ACTIONS(5237), - [anon_sym_BSLASHtvolcite] = ACTIONS(5237), - [anon_sym_BSLASHTvolcite] = ACTIONS(5237), - [anon_sym_BSLASHavolcite] = ACTIONS(5237), - [anon_sym_BSLASHAvolcite] = ACTIONS(5237), - [anon_sym_BSLASHnotecite] = ACTIONS(5237), - [anon_sym_BSLASHNotecite] = ACTIONS(5237), - [anon_sym_BSLASHpnotecite] = ACTIONS(5237), - [anon_sym_BSLASHPnotecite] = ACTIONS(5237), - [anon_sym_BSLASHfnotecite] = ACTIONS(5237), - [anon_sym_BSLASHlabel] = ACTIONS(5237), - [anon_sym_BSLASHref] = ACTIONS(5237), - [anon_sym_BSLASHeqref] = ACTIONS(5237), - [anon_sym_BSLASHvref] = ACTIONS(5237), - [anon_sym_BSLASHVref] = ACTIONS(5237), - [anon_sym_BSLASHautoref] = ACTIONS(5237), - [anon_sym_BSLASHpageref] = ACTIONS(5237), - [anon_sym_BSLASHcref] = ACTIONS(5237), - [anon_sym_BSLASHCref] = ACTIONS(5237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnameCref] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), - [anon_sym_BSLASHlabelcref] = ACTIONS(5237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange] = ACTIONS(5237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), - [anon_sym_BSLASHnewlabel] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand] = ACTIONS(5237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdef] = ACTIONS(5237), - [anon_sym_BSLASHlet] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), - [anon_sym_BSLASHgls] = ACTIONS(5237), - [anon_sym_BSLASHGls] = ACTIONS(5237), - [anon_sym_BSLASHGLS] = ACTIONS(5237), - [anon_sym_BSLASHglspl] = ACTIONS(5237), - [anon_sym_BSLASHGlspl] = ACTIONS(5237), - [anon_sym_BSLASHGLSpl] = ACTIONS(5237), - [anon_sym_BSLASHglsdisp] = ACTIONS(5237), - [anon_sym_BSLASHglslink] = ACTIONS(5237), - [anon_sym_BSLASHglstext] = ACTIONS(5237), - [anon_sym_BSLASHGlstext] = ACTIONS(5237), - [anon_sym_BSLASHGLStext] = ACTIONS(5237), - [anon_sym_BSLASHglsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), - [anon_sym_BSLASHglsplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSplural] = ACTIONS(5237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), - [anon_sym_BSLASHglsname] = ACTIONS(5237), - [anon_sym_BSLASHGlsname] = ACTIONS(5237), - [anon_sym_BSLASHGLSname] = ACTIONS(5237), - [anon_sym_BSLASHglssymbol] = ACTIONS(5237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), - [anon_sym_BSLASHglsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), - [anon_sym_BSLASHglsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), - [anon_sym_BSLASHglsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), - [anon_sym_BSLASHglsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), - [anon_sym_BSLASHglsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), - [anon_sym_BSLASHnewacronym] = ACTIONS(5237), - [anon_sym_BSLASHacrshort] = ACTIONS(5237), - [anon_sym_BSLASHAcrshort] = ACTIONS(5237), - [anon_sym_BSLASHACRshort] = ACTIONS(5237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), - [anon_sym_BSLASHacrlong] = ACTIONS(5237), - [anon_sym_BSLASHAcrlong] = ACTIONS(5237), - [anon_sym_BSLASHACRlong] = ACTIONS(5237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), - [anon_sym_BSLASHacrfull] = ACTIONS(5237), - [anon_sym_BSLASHAcrfull] = ACTIONS(5237), - [anon_sym_BSLASHACRfull] = ACTIONS(5237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), - [anon_sym_BSLASHacs] = ACTIONS(5237), - [anon_sym_BSLASHAcs] = ACTIONS(5237), - [anon_sym_BSLASHacsp] = ACTIONS(5237), - [anon_sym_BSLASHAcsp] = ACTIONS(5237), - [anon_sym_BSLASHacl] = ACTIONS(5237), - [anon_sym_BSLASHAcl] = ACTIONS(5237), - [anon_sym_BSLASHaclp] = ACTIONS(5237), - [anon_sym_BSLASHAclp] = ACTIONS(5237), - [anon_sym_BSLASHacf] = ACTIONS(5237), - [anon_sym_BSLASHAcf] = ACTIONS(5237), - [anon_sym_BSLASHacfp] = ACTIONS(5237), - [anon_sym_BSLASHAcfp] = ACTIONS(5237), - [anon_sym_BSLASHac] = ACTIONS(5237), - [anon_sym_BSLASHAc] = ACTIONS(5237), - [anon_sym_BSLASHacp] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), - [anon_sym_BSLASHcolor] = ACTIONS(5237), - [anon_sym_BSLASHcolorbox] = ACTIONS(5237), - [anon_sym_BSLASHtextcolor] = ACTIONS(5237), - [anon_sym_BSLASHpagecolor] = ACTIONS(5237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [1418] = { + [sym_curly_group] = STATE(1607), + [sym_mixed_group] = STATE(1607), + [aux_sym_generic_command_repeat1] = STATE(1416), + [sym_command_name] = ACTIONS(5337), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(6335), + [anon_sym_LBRACK] = ACTIONS(6335), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(5335), + [anon_sym_BSLASHand] = ACTIONS(5337), + [sym_word] = ACTIONS(5337), + [sym_placeholder] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_STAR] = ACTIONS(5337), + [anon_sym_SLASH] = ACTIONS(5337), + [anon_sym_CARET] = ACTIONS(5337), + [anon_sym__] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(5337), + [anon_sym_GT] = ACTIONS(5337), + [anon_sym_BANG] = ACTIONS(5337), + [anon_sym_PIPE] = ACTIONS(5337), + [anon_sym_COLON] = ACTIONS(5337), + [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), + [anon_sym_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), + [anon_sym_BSLASHusepackage] = ACTIONS(5337), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), + [anon_sym_BSLASHinclude] = ACTIONS(5337), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), + [anon_sym_BSLASHinput] = ACTIONS(5337), + [anon_sym_BSLASHsubfile] = ACTIONS(5337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), + [anon_sym_BSLASHbibliography] = ACTIONS(5337), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), + [anon_sym_BSLASHincludesvg] = ACTIONS(5337), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), + [anon_sym_BSLASHimport] = ACTIONS(5337), + [anon_sym_BSLASHsubimport] = ACTIONS(5337), + [anon_sym_BSLASHinputfrom] = ACTIONS(5337), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), + [anon_sym_BSLASHincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), + [anon_sym_BSLASHcaption] = ACTIONS(5337), + [anon_sym_BSLASHcite] = ACTIONS(5337), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCite] = ACTIONS(5337), + [anon_sym_BSLASHnocite] = ACTIONS(5337), + [anon_sym_BSLASHcitet] = ACTIONS(5337), + [anon_sym_BSLASHcitep] = ACTIONS(5337), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteauthor] = ACTIONS(5337), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitetitle] = ACTIONS(5337), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteyear] = ACTIONS(5337), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), + [anon_sym_BSLASHcitedate] = ACTIONS(5337), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), + [anon_sym_BSLASHciteurl] = ACTIONS(5337), + [anon_sym_BSLASHfullcite] = ACTIONS(5337), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), + [anon_sym_BSLASHcitealt] = ACTIONS(5337), + [anon_sym_BSLASHcitealp] = ACTIONS(5337), + [anon_sym_BSLASHcitetext] = ACTIONS(5337), + [anon_sym_BSLASHparencite] = ACTIONS(5337), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHParencite] = ACTIONS(5337), + [anon_sym_BSLASHfootcite] = ACTIONS(5337), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), + [anon_sym_BSLASHtextcite] = ACTIONS(5337), + [anon_sym_BSLASHTextcite] = ACTIONS(5337), + [anon_sym_BSLASHsmartcite] = ACTIONS(5337), + [anon_sym_BSLASHSmartcite] = ACTIONS(5337), + [anon_sym_BSLASHsupercite] = ACTIONS(5337), + [anon_sym_BSLASHautocite] = ACTIONS(5337), + [anon_sym_BSLASHAutocite] = ACTIONS(5337), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), + [anon_sym_BSLASHvolcite] = ACTIONS(5337), + [anon_sym_BSLASHVolcite] = ACTIONS(5337), + [anon_sym_BSLASHpvolcite] = ACTIONS(5337), + [anon_sym_BSLASHPvolcite] = ACTIONS(5337), + [anon_sym_BSLASHfvolcite] = ACTIONS(5337), + [anon_sym_BSLASHftvolcite] = ACTIONS(5337), + [anon_sym_BSLASHsvolcite] = ACTIONS(5337), + [anon_sym_BSLASHSvolcite] = ACTIONS(5337), + [anon_sym_BSLASHtvolcite] = ACTIONS(5337), + [anon_sym_BSLASHTvolcite] = ACTIONS(5337), + [anon_sym_BSLASHavolcite] = ACTIONS(5337), + [anon_sym_BSLASHAvolcite] = ACTIONS(5337), + [anon_sym_BSLASHnotecite] = ACTIONS(5337), + [anon_sym_BSLASHNotecite] = ACTIONS(5337), + [anon_sym_BSLASHpnotecite] = ACTIONS(5337), + [anon_sym_BSLASHPnotecite] = ACTIONS(5337), + [anon_sym_BSLASHfnotecite] = ACTIONS(5337), + [anon_sym_BSLASHlabel] = ACTIONS(5337), + [anon_sym_BSLASHref] = ACTIONS(5337), + [anon_sym_BSLASHeqref] = ACTIONS(5337), + [anon_sym_BSLASHvref] = ACTIONS(5337), + [anon_sym_BSLASHVref] = ACTIONS(5337), + [anon_sym_BSLASHautoref] = ACTIONS(5337), + [anon_sym_BSLASHpageref] = ACTIONS(5337), + [anon_sym_BSLASHcref] = ACTIONS(5337), + [anon_sym_BSLASHCref] = ACTIONS(5337), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnameCref] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), + [anon_sym_BSLASHlabelcref] = ACTIONS(5337), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange] = ACTIONS(5337), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHCrefrange] = ACTIONS(5337), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), + [anon_sym_BSLASHnewlabel] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand] = ACTIONS(5337), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdef] = ACTIONS(5337), + [anon_sym_BSLASHlet] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5337), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5337), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), + [anon_sym_BSLASHgls] = ACTIONS(5337), + [anon_sym_BSLASHGls] = ACTIONS(5337), + [anon_sym_BSLASHGLS] = ACTIONS(5337), + [anon_sym_BSLASHglspl] = ACTIONS(5337), + [anon_sym_BSLASHGlspl] = ACTIONS(5337), + [anon_sym_BSLASHGLSpl] = ACTIONS(5337), + [anon_sym_BSLASHglsdisp] = ACTIONS(5337), + [anon_sym_BSLASHglslink] = ACTIONS(5337), + [anon_sym_BSLASHglstext] = ACTIONS(5337), + [anon_sym_BSLASHGlstext] = ACTIONS(5337), + [anon_sym_BSLASHGLStext] = ACTIONS(5337), + [anon_sym_BSLASHglsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), + [anon_sym_BSLASHglsplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSplural] = ACTIONS(5337), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), + [anon_sym_BSLASHglsname] = ACTIONS(5337), + [anon_sym_BSLASHGlsname] = ACTIONS(5337), + [anon_sym_BSLASHGLSname] = ACTIONS(5337), + [anon_sym_BSLASHglssymbol] = ACTIONS(5337), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), + [anon_sym_BSLASHglsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), + [anon_sym_BSLASHglsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), + [anon_sym_BSLASHglsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), + [anon_sym_BSLASHglsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), + [anon_sym_BSLASHglsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), + [anon_sym_BSLASHnewacronym] = ACTIONS(5337), + [anon_sym_BSLASHacrshort] = ACTIONS(5337), + [anon_sym_BSLASHAcrshort] = ACTIONS(5337), + [anon_sym_BSLASHACRshort] = ACTIONS(5337), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), + [anon_sym_BSLASHacrlong] = ACTIONS(5337), + [anon_sym_BSLASHAcrlong] = ACTIONS(5337), + [anon_sym_BSLASHACRlong] = ACTIONS(5337), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), + [anon_sym_BSLASHacrfull] = ACTIONS(5337), + [anon_sym_BSLASHAcrfull] = ACTIONS(5337), + [anon_sym_BSLASHACRfull] = ACTIONS(5337), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), + [anon_sym_BSLASHacs] = ACTIONS(5337), + [anon_sym_BSLASHAcs] = ACTIONS(5337), + [anon_sym_BSLASHacsp] = ACTIONS(5337), + [anon_sym_BSLASHAcsp] = ACTIONS(5337), + [anon_sym_BSLASHacl] = ACTIONS(5337), + [anon_sym_BSLASHAcl] = ACTIONS(5337), + [anon_sym_BSLASHaclp] = ACTIONS(5337), + [anon_sym_BSLASHAclp] = ACTIONS(5337), + [anon_sym_BSLASHacf] = ACTIONS(5337), + [anon_sym_BSLASHAcf] = ACTIONS(5337), + [anon_sym_BSLASHacfp] = ACTIONS(5337), + [anon_sym_BSLASHAcfp] = ACTIONS(5337), + [anon_sym_BSLASHac] = ACTIONS(5337), + [anon_sym_BSLASHAc] = ACTIONS(5337), + [anon_sym_BSLASHacp] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), + [anon_sym_BSLASHcolor] = ACTIONS(5337), + [anon_sym_BSLASHcolorbox] = ACTIONS(5337), + [anon_sym_BSLASHtextcolor] = ACTIONS(5337), + [anon_sym_BSLASHpagecolor] = ACTIONS(5337), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [anon_sym_BSLASHtext] = ACTIONS(5337), + [anon_sym_BSLASHintertext] = ACTIONS(5337), + [anon_sym_shortintertext] = ACTIONS(5337), }, - [1534] = { - [sym_brack_group_text] = STATE(1552), - [sym_command_name] = ACTIONS(5045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(5699), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5043), - [sym_word] = ACTIONS(5045), - [sym_placeholder] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_STAR] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym__] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5045), - [anon_sym_PIPE] = ACTIONS(5045), - [anon_sym_COLON] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5045), - [anon_sym_BSLASHusepackage] = ACTIONS(5045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), - [anon_sym_BSLASHinclude] = ACTIONS(5045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), - [anon_sym_BSLASHinput] = ACTIONS(5045), - [anon_sym_BSLASHsubfile] = ACTIONS(5045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), - [anon_sym_BSLASHbibliography] = ACTIONS(5045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), - [anon_sym_BSLASHincludesvg] = ACTIONS(5045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), - [anon_sym_BSLASHimport] = ACTIONS(5045), - [anon_sym_BSLASHsubimport] = ACTIONS(5045), - [anon_sym_BSLASHinputfrom] = ACTIONS(5045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), - [anon_sym_BSLASHincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), - [anon_sym_BSLASHcaption] = ACTIONS(5045), - [anon_sym_BSLASHcite] = ACTIONS(5045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCite] = ACTIONS(5045), - [anon_sym_BSLASHnocite] = ACTIONS(5045), - [anon_sym_BSLASHcitet] = ACTIONS(5045), - [anon_sym_BSLASHcitep] = ACTIONS(5045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteauthor] = ACTIONS(5045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitetitle] = ACTIONS(5045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteyear] = ACTIONS(5045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), - [anon_sym_BSLASHcitedate] = ACTIONS(5045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), - [anon_sym_BSLASHciteurl] = ACTIONS(5045), - [anon_sym_BSLASHfullcite] = ACTIONS(5045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), - [anon_sym_BSLASHcitealt] = ACTIONS(5045), - [anon_sym_BSLASHcitealp] = ACTIONS(5045), - [anon_sym_BSLASHcitetext] = ACTIONS(5045), - [anon_sym_BSLASHparencite] = ACTIONS(5045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHParencite] = ACTIONS(5045), - [anon_sym_BSLASHfootcite] = ACTIONS(5045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), - [anon_sym_BSLASHtextcite] = ACTIONS(5045), - [anon_sym_BSLASHTextcite] = ACTIONS(5045), - [anon_sym_BSLASHsmartcite] = ACTIONS(5045), - [anon_sym_BSLASHSmartcite] = ACTIONS(5045), - [anon_sym_BSLASHsupercite] = ACTIONS(5045), - [anon_sym_BSLASHautocite] = ACTIONS(5045), - [anon_sym_BSLASHAutocite] = ACTIONS(5045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), - [anon_sym_BSLASHvolcite] = ACTIONS(5045), - [anon_sym_BSLASHVolcite] = ACTIONS(5045), - [anon_sym_BSLASHpvolcite] = ACTIONS(5045), - [anon_sym_BSLASHPvolcite] = ACTIONS(5045), - [anon_sym_BSLASHfvolcite] = ACTIONS(5045), - [anon_sym_BSLASHftvolcite] = ACTIONS(5045), - [anon_sym_BSLASHsvolcite] = ACTIONS(5045), - [anon_sym_BSLASHSvolcite] = ACTIONS(5045), - [anon_sym_BSLASHtvolcite] = ACTIONS(5045), - [anon_sym_BSLASHTvolcite] = ACTIONS(5045), - [anon_sym_BSLASHavolcite] = ACTIONS(5045), - [anon_sym_BSLASHAvolcite] = ACTIONS(5045), - [anon_sym_BSLASHnotecite] = ACTIONS(5045), - [anon_sym_BSLASHNotecite] = ACTIONS(5045), - [anon_sym_BSLASHpnotecite] = ACTIONS(5045), - [anon_sym_BSLASHPnotecite] = ACTIONS(5045), - [anon_sym_BSLASHfnotecite] = ACTIONS(5045), - [anon_sym_BSLASHlabel] = ACTIONS(5045), - [anon_sym_BSLASHref] = ACTIONS(5045), - [anon_sym_BSLASHeqref] = ACTIONS(5045), - [anon_sym_BSLASHvref] = ACTIONS(5045), - [anon_sym_BSLASHVref] = ACTIONS(5045), - [anon_sym_BSLASHautoref] = ACTIONS(5045), - [anon_sym_BSLASHpageref] = ACTIONS(5045), - [anon_sym_BSLASHcref] = ACTIONS(5045), - [anon_sym_BSLASHCref] = ACTIONS(5045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnameCref] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), - [anon_sym_BSLASHlabelcref] = ACTIONS(5045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange] = ACTIONS(5045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHCrefrange] = ACTIONS(5045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), - [anon_sym_BSLASHnewlabel] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand] = ACTIONS(5045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdef] = ACTIONS(5045), - [anon_sym_BSLASHlet] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), - [anon_sym_BSLASHgls] = ACTIONS(5045), - [anon_sym_BSLASHGls] = ACTIONS(5045), - [anon_sym_BSLASHGLS] = ACTIONS(5045), - [anon_sym_BSLASHglspl] = ACTIONS(5045), - [anon_sym_BSLASHGlspl] = ACTIONS(5045), - [anon_sym_BSLASHGLSpl] = ACTIONS(5045), - [anon_sym_BSLASHglsdisp] = ACTIONS(5045), - [anon_sym_BSLASHglslink] = ACTIONS(5045), - [anon_sym_BSLASHglstext] = ACTIONS(5045), - [anon_sym_BSLASHGlstext] = ACTIONS(5045), - [anon_sym_BSLASHGLStext] = ACTIONS(5045), - [anon_sym_BSLASHglsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), - [anon_sym_BSLASHglsplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSplural] = ACTIONS(5045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), - [anon_sym_BSLASHglsname] = ACTIONS(5045), - [anon_sym_BSLASHGlsname] = ACTIONS(5045), - [anon_sym_BSLASHGLSname] = ACTIONS(5045), - [anon_sym_BSLASHglssymbol] = ACTIONS(5045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), - [anon_sym_BSLASHglsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), - [anon_sym_BSLASHglsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), - [anon_sym_BSLASHglsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), - [anon_sym_BSLASHglsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), - [anon_sym_BSLASHglsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), - [anon_sym_BSLASHnewacronym] = ACTIONS(5045), - [anon_sym_BSLASHacrshort] = ACTIONS(5045), - [anon_sym_BSLASHAcrshort] = ACTIONS(5045), - [anon_sym_BSLASHACRshort] = ACTIONS(5045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), - [anon_sym_BSLASHacrlong] = ACTIONS(5045), - [anon_sym_BSLASHAcrlong] = ACTIONS(5045), - [anon_sym_BSLASHACRlong] = ACTIONS(5045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), - [anon_sym_BSLASHacrfull] = ACTIONS(5045), - [anon_sym_BSLASHAcrfull] = ACTIONS(5045), - [anon_sym_BSLASHACRfull] = ACTIONS(5045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), - [anon_sym_BSLASHacs] = ACTIONS(5045), - [anon_sym_BSLASHAcs] = ACTIONS(5045), - [anon_sym_BSLASHacsp] = ACTIONS(5045), - [anon_sym_BSLASHAcsp] = ACTIONS(5045), - [anon_sym_BSLASHacl] = ACTIONS(5045), - [anon_sym_BSLASHAcl] = ACTIONS(5045), - [anon_sym_BSLASHaclp] = ACTIONS(5045), - [anon_sym_BSLASHAclp] = ACTIONS(5045), - [anon_sym_BSLASHacf] = ACTIONS(5045), - [anon_sym_BSLASHAcf] = ACTIONS(5045), - [anon_sym_BSLASHacfp] = ACTIONS(5045), - [anon_sym_BSLASHAcfp] = ACTIONS(5045), - [anon_sym_BSLASHac] = ACTIONS(5045), - [anon_sym_BSLASHAc] = ACTIONS(5045), - [anon_sym_BSLASHacp] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), - [anon_sym_BSLASHcolor] = ACTIONS(5045), - [anon_sym_BSLASHcolorbox] = ACTIONS(5045), - [anon_sym_BSLASHtextcolor] = ACTIONS(5045), - [anon_sym_BSLASHpagecolor] = ACTIONS(5045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [1419] = { + [sym_curly_group] = STATE(1607), + [sym_mixed_group] = STATE(1607), + [aux_sym_generic_command_repeat1] = STATE(1418), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(6335), + [anon_sym_LBRACK] = ACTIONS(6335), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(5315), + [anon_sym_BSLASHand] = ACTIONS(5317), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), + [anon_sym_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHtext] = ACTIONS(5317), + [anon_sym_BSLASHintertext] = ACTIONS(5317), + [anon_sym_shortintertext] = ACTIONS(5317), }, - [1535] = { - [sym_command_name] = ACTIONS(4909), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4909), - [anon_sym_BSLASHfi] = ACTIONS(5701), - [anon_sym_RBRACK] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4907), - [anon_sym_RBRACE] = ACTIONS(4907), - [sym_word] = ACTIONS(4909), - [sym_placeholder] = ACTIONS(4907), - [anon_sym_PLUS] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4909), - [anon_sym_SLASH] = ACTIONS(4909), - [anon_sym_CARET] = ACTIONS(4909), - [anon_sym__] = ACTIONS(4909), - [anon_sym_LT] = ACTIONS(4909), - [anon_sym_GT] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4909), - [anon_sym_PIPE] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_SQUOTE] = ACTIONS(4909), - [anon_sym_BSLASHusepackage] = ACTIONS(4909), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), - [anon_sym_BSLASHinclude] = ACTIONS(4909), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), - [anon_sym_BSLASHinput] = ACTIONS(4909), - [anon_sym_BSLASHsubfile] = ACTIONS(4909), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), - [anon_sym_BSLASHbibliography] = ACTIONS(4909), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), - [anon_sym_BSLASHincludesvg] = ACTIONS(4909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), - [anon_sym_BSLASHimport] = ACTIONS(4909), - [anon_sym_BSLASHsubimport] = ACTIONS(4909), - [anon_sym_BSLASHinputfrom] = ACTIONS(4909), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), - [anon_sym_BSLASHincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), - [anon_sym_BSLASHcaption] = ACTIONS(4909), - [anon_sym_BSLASHcite] = ACTIONS(4909), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCite] = ACTIONS(4909), - [anon_sym_BSLASHnocite] = ACTIONS(4909), - [anon_sym_BSLASHcitet] = ACTIONS(4909), - [anon_sym_BSLASHcitep] = ACTIONS(4909), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteauthor] = ACTIONS(4909), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitetitle] = ACTIONS(4909), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteyear] = ACTIONS(4909), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), - [anon_sym_BSLASHcitedate] = ACTIONS(4909), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), - [anon_sym_BSLASHciteurl] = ACTIONS(4909), - [anon_sym_BSLASHfullcite] = ACTIONS(4909), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), - [anon_sym_BSLASHcitealt] = ACTIONS(4909), - [anon_sym_BSLASHcitealp] = ACTIONS(4909), - [anon_sym_BSLASHcitetext] = ACTIONS(4909), - [anon_sym_BSLASHparencite] = ACTIONS(4909), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHParencite] = ACTIONS(4909), - [anon_sym_BSLASHfootcite] = ACTIONS(4909), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), - [anon_sym_BSLASHtextcite] = ACTIONS(4909), - [anon_sym_BSLASHTextcite] = ACTIONS(4909), - [anon_sym_BSLASHsmartcite] = ACTIONS(4909), - [anon_sym_BSLASHSmartcite] = ACTIONS(4909), - [anon_sym_BSLASHsupercite] = ACTIONS(4909), - [anon_sym_BSLASHautocite] = ACTIONS(4909), - [anon_sym_BSLASHAutocite] = ACTIONS(4909), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), - [anon_sym_BSLASHvolcite] = ACTIONS(4909), - [anon_sym_BSLASHVolcite] = ACTIONS(4909), - [anon_sym_BSLASHpvolcite] = ACTIONS(4909), - [anon_sym_BSLASHPvolcite] = ACTIONS(4909), - [anon_sym_BSLASHfvolcite] = ACTIONS(4909), - [anon_sym_BSLASHftvolcite] = ACTIONS(4909), - [anon_sym_BSLASHsvolcite] = ACTIONS(4909), - [anon_sym_BSLASHSvolcite] = ACTIONS(4909), - [anon_sym_BSLASHtvolcite] = ACTIONS(4909), - [anon_sym_BSLASHTvolcite] = ACTIONS(4909), - [anon_sym_BSLASHavolcite] = ACTIONS(4909), - [anon_sym_BSLASHAvolcite] = ACTIONS(4909), - [anon_sym_BSLASHnotecite] = ACTIONS(4909), - [anon_sym_BSLASHNotecite] = ACTIONS(4909), - [anon_sym_BSLASHpnotecite] = ACTIONS(4909), - [anon_sym_BSLASHPnotecite] = ACTIONS(4909), - [anon_sym_BSLASHfnotecite] = ACTIONS(4909), - [anon_sym_BSLASHlabel] = ACTIONS(4909), - [anon_sym_BSLASHref] = ACTIONS(4909), - [anon_sym_BSLASHeqref] = ACTIONS(4909), - [anon_sym_BSLASHvref] = ACTIONS(4909), - [anon_sym_BSLASHVref] = ACTIONS(4909), - [anon_sym_BSLASHautoref] = ACTIONS(4909), - [anon_sym_BSLASHpageref] = ACTIONS(4909), - [anon_sym_BSLASHcref] = ACTIONS(4909), - [anon_sym_BSLASHCref] = ACTIONS(4909), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnameCref] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), - [anon_sym_BSLASHlabelcref] = ACTIONS(4909), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange] = ACTIONS(4909), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHCrefrange] = ACTIONS(4909), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), - [anon_sym_BSLASHnewlabel] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand] = ACTIONS(4909), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdef] = ACTIONS(4909), - [anon_sym_BSLASHlet] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4909), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4909), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), - [anon_sym_BSLASHgls] = ACTIONS(4909), - [anon_sym_BSLASHGls] = ACTIONS(4909), - [anon_sym_BSLASHGLS] = ACTIONS(4909), - [anon_sym_BSLASHglspl] = ACTIONS(4909), - [anon_sym_BSLASHGlspl] = ACTIONS(4909), - [anon_sym_BSLASHGLSpl] = ACTIONS(4909), - [anon_sym_BSLASHglsdisp] = ACTIONS(4909), - [anon_sym_BSLASHglslink] = ACTIONS(4909), - [anon_sym_BSLASHglstext] = ACTIONS(4909), - [anon_sym_BSLASHGlstext] = ACTIONS(4909), - [anon_sym_BSLASHGLStext] = ACTIONS(4909), - [anon_sym_BSLASHglsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), - [anon_sym_BSLASHglsplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSplural] = ACTIONS(4909), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), - [anon_sym_BSLASHglsname] = ACTIONS(4909), - [anon_sym_BSLASHGlsname] = ACTIONS(4909), - [anon_sym_BSLASHGLSname] = ACTIONS(4909), - [anon_sym_BSLASHglssymbol] = ACTIONS(4909), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), - [anon_sym_BSLASHglsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), - [anon_sym_BSLASHglsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), - [anon_sym_BSLASHglsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), - [anon_sym_BSLASHglsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), - [anon_sym_BSLASHglsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), - [anon_sym_BSLASHnewacronym] = ACTIONS(4909), - [anon_sym_BSLASHacrshort] = ACTIONS(4909), - [anon_sym_BSLASHAcrshort] = ACTIONS(4909), - [anon_sym_BSLASHACRshort] = ACTIONS(4909), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), - [anon_sym_BSLASHacrlong] = ACTIONS(4909), - [anon_sym_BSLASHAcrlong] = ACTIONS(4909), - [anon_sym_BSLASHACRlong] = ACTIONS(4909), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), - [anon_sym_BSLASHacrfull] = ACTIONS(4909), - [anon_sym_BSLASHAcrfull] = ACTIONS(4909), - [anon_sym_BSLASHACRfull] = ACTIONS(4909), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), - [anon_sym_BSLASHacs] = ACTIONS(4909), - [anon_sym_BSLASHAcs] = ACTIONS(4909), - [anon_sym_BSLASHacsp] = ACTIONS(4909), - [anon_sym_BSLASHAcsp] = ACTIONS(4909), - [anon_sym_BSLASHacl] = ACTIONS(4909), - [anon_sym_BSLASHAcl] = ACTIONS(4909), - [anon_sym_BSLASHaclp] = ACTIONS(4909), - [anon_sym_BSLASHAclp] = ACTIONS(4909), - [anon_sym_BSLASHacf] = ACTIONS(4909), - [anon_sym_BSLASHAcf] = ACTIONS(4909), - [anon_sym_BSLASHacfp] = ACTIONS(4909), - [anon_sym_BSLASHAcfp] = ACTIONS(4909), - [anon_sym_BSLASHac] = ACTIONS(4909), - [anon_sym_BSLASHAc] = ACTIONS(4909), - [anon_sym_BSLASHacp] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4907), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), - [anon_sym_BSLASHcolor] = ACTIONS(4909), - [anon_sym_BSLASHcolorbox] = ACTIONS(4909), - [anon_sym_BSLASHtextcolor] = ACTIONS(4909), - [anon_sym_BSLASHpagecolor] = ACTIONS(4909), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), - [sym__trivia_raw_fi] = ACTIONS(5703), + [1420] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHbegin] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), }, - [1536] = { - [sym_brack_group_text] = STATE(1599), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5699), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5015), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), + [1421] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHbegin] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), }, - [1537] = { - [sym_curly_group] = STATE(1589), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5011), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), + [1422] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHbegin] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), }, - [1538] = { - [sym_curly_group] = STATE(1608), - [sym_command_name] = ACTIONS(5023), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5021), - [sym_word] = ACTIONS(5023), - [sym_placeholder] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym__] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5023), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5023), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5023), - [anon_sym_BSLASHinclude] = ACTIONS(5023), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5023), - [anon_sym_BSLASHinput] = ACTIONS(5023), - [anon_sym_BSLASHsubfile] = ACTIONS(5023), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5023), - [anon_sym_BSLASHbibliography] = ACTIONS(5023), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5023), - [anon_sym_BSLASHincludesvg] = ACTIONS(5023), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5023), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5023), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5023), - [anon_sym_BSLASHimport] = ACTIONS(5023), - [anon_sym_BSLASHsubimport] = ACTIONS(5023), - [anon_sym_BSLASHinputfrom] = ACTIONS(5023), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5023), - [anon_sym_BSLASHincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5023), - [anon_sym_BSLASHcaption] = ACTIONS(5023), - [anon_sym_BSLASHcite] = ACTIONS(5023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCite] = ACTIONS(5023), - [anon_sym_BSLASHnocite] = ACTIONS(5023), - [anon_sym_BSLASHcitet] = ACTIONS(5023), - [anon_sym_BSLASHcitep] = ACTIONS(5023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteyear] = ACTIONS(5023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5021), - [anon_sym_BSLASHcitedate] = ACTIONS(5023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5021), - [anon_sym_BSLASHciteurl] = ACTIONS(5023), - [anon_sym_BSLASHfullcite] = ACTIONS(5023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5023), - [anon_sym_BSLASHcitealt] = ACTIONS(5023), - [anon_sym_BSLASHcitealp] = ACTIONS(5023), - [anon_sym_BSLASHcitetext] = ACTIONS(5023), - [anon_sym_BSLASHparencite] = ACTIONS(5023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHParencite] = ACTIONS(5023), - [anon_sym_BSLASHfootcite] = ACTIONS(5023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5023), - [anon_sym_BSLASHtextcite] = ACTIONS(5023), - [anon_sym_BSLASHTextcite] = ACTIONS(5023), - [anon_sym_BSLASHsmartcite] = ACTIONS(5023), - [anon_sym_BSLASHSmartcite] = ACTIONS(5023), - [anon_sym_BSLASHsupercite] = ACTIONS(5023), - [anon_sym_BSLASHautocite] = ACTIONS(5023), - [anon_sym_BSLASHAutocite] = ACTIONS(5023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5021), - [anon_sym_BSLASHvolcite] = ACTIONS(5023), - [anon_sym_BSLASHVolcite] = ACTIONS(5023), - [anon_sym_BSLASHpvolcite] = ACTIONS(5023), - [anon_sym_BSLASHPvolcite] = ACTIONS(5023), - [anon_sym_BSLASHfvolcite] = ACTIONS(5023), - [anon_sym_BSLASHftvolcite] = ACTIONS(5023), - [anon_sym_BSLASHsvolcite] = ACTIONS(5023), - [anon_sym_BSLASHSvolcite] = ACTIONS(5023), - [anon_sym_BSLASHtvolcite] = ACTIONS(5023), - [anon_sym_BSLASHTvolcite] = ACTIONS(5023), - [anon_sym_BSLASHavolcite] = ACTIONS(5023), - [anon_sym_BSLASHAvolcite] = ACTIONS(5023), - [anon_sym_BSLASHnotecite] = ACTIONS(5023), - [anon_sym_BSLASHNotecite] = ACTIONS(5023), - [anon_sym_BSLASHpnotecite] = ACTIONS(5023), - [anon_sym_BSLASHPnotecite] = ACTIONS(5023), - [anon_sym_BSLASHfnotecite] = ACTIONS(5023), - [anon_sym_BSLASHlabel] = ACTIONS(5023), - [anon_sym_BSLASHref] = ACTIONS(5023), - [anon_sym_BSLASHeqref] = ACTIONS(5023), - [anon_sym_BSLASHvref] = ACTIONS(5023), - [anon_sym_BSLASHVref] = ACTIONS(5023), - [anon_sym_BSLASHautoref] = ACTIONS(5023), - [anon_sym_BSLASHpageref] = ACTIONS(5023), - [anon_sym_BSLASHcref] = ACTIONS(5023), - [anon_sym_BSLASHCref] = ACTIONS(5023), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnameCref] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5023), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5023), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5023), - [anon_sym_BSLASHlabelcref] = ACTIONS(5023), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange] = ACTIONS(5023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5021), - [anon_sym_BSLASHnewlabel] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand] = ACTIONS(5023), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdef] = ACTIONS(5023), - [anon_sym_BSLASHlet] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5023), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5023), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5023), - [anon_sym_BSLASHgls] = ACTIONS(5023), - [anon_sym_BSLASHGls] = ACTIONS(5023), - [anon_sym_BSLASHGLS] = ACTIONS(5023), - [anon_sym_BSLASHglspl] = ACTIONS(5023), - [anon_sym_BSLASHGlspl] = ACTIONS(5023), - [anon_sym_BSLASHGLSpl] = ACTIONS(5023), - [anon_sym_BSLASHglsdisp] = ACTIONS(5023), - [anon_sym_BSLASHglslink] = ACTIONS(5023), - [anon_sym_BSLASHglstext] = ACTIONS(5023), - [anon_sym_BSLASHGlstext] = ACTIONS(5023), - [anon_sym_BSLASHGLStext] = ACTIONS(5023), - [anon_sym_BSLASHglsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5023), - [anon_sym_BSLASHglsplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSplural] = ACTIONS(5023), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5023), - [anon_sym_BSLASHglsname] = ACTIONS(5023), - [anon_sym_BSLASHGlsname] = ACTIONS(5023), - [anon_sym_BSLASHGLSname] = ACTIONS(5023), - [anon_sym_BSLASHglssymbol] = ACTIONS(5023), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5023), - [anon_sym_BSLASHglsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5023), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5023), - [anon_sym_BSLASHglsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5023), - [anon_sym_BSLASHglsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5023), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5023), - [anon_sym_BSLASHglsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5023), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5023), - [anon_sym_BSLASHglsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5023), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5023), - [anon_sym_BSLASHnewacronym] = ACTIONS(5023), - [anon_sym_BSLASHacrshort] = ACTIONS(5023), - [anon_sym_BSLASHAcrshort] = ACTIONS(5023), - [anon_sym_BSLASHACRshort] = ACTIONS(5023), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5023), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5023), - [anon_sym_BSLASHacrlong] = ACTIONS(5023), - [anon_sym_BSLASHAcrlong] = ACTIONS(5023), - [anon_sym_BSLASHACRlong] = ACTIONS(5023), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5023), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5023), - [anon_sym_BSLASHacrfull] = ACTIONS(5023), - [anon_sym_BSLASHAcrfull] = ACTIONS(5023), - [anon_sym_BSLASHACRfull] = ACTIONS(5023), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5023), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5023), - [anon_sym_BSLASHacs] = ACTIONS(5023), - [anon_sym_BSLASHAcs] = ACTIONS(5023), - [anon_sym_BSLASHacsp] = ACTIONS(5023), - [anon_sym_BSLASHAcsp] = ACTIONS(5023), - [anon_sym_BSLASHacl] = ACTIONS(5023), - [anon_sym_BSLASHAcl] = ACTIONS(5023), - [anon_sym_BSLASHaclp] = ACTIONS(5023), - [anon_sym_BSLASHAclp] = ACTIONS(5023), - [anon_sym_BSLASHacf] = ACTIONS(5023), - [anon_sym_BSLASHAcf] = ACTIONS(5023), - [anon_sym_BSLASHacfp] = ACTIONS(5023), - [anon_sym_BSLASHAcfp] = ACTIONS(5023), - [anon_sym_BSLASHac] = ACTIONS(5023), - [anon_sym_BSLASHAc] = ACTIONS(5023), - [anon_sym_BSLASHacp] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5023), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5023), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5023), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5023), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5023), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5023), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5023), - [anon_sym_BSLASHcolor] = ACTIONS(5023), - [anon_sym_BSLASHcolorbox] = ACTIONS(5023), - [anon_sym_BSLASHtextcolor] = ACTIONS(5023), - [anon_sym_BSLASHpagecolor] = ACTIONS(5023), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5023), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5023), + [1423] = { + [sym_command_name] = ACTIONS(5983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5981), + [anon_sym_LBRACE] = ACTIONS(5981), + [sym_word] = ACTIONS(5983), + [sym_placeholder] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym__] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_SQUOTE] = ACTIONS(5983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(5983), + [anon_sym_BSLASHtitle] = ACTIONS(5983), + [anon_sym_BSLASHauthor] = ACTIONS(5983), + [anon_sym_BSLASHusepackage] = ACTIONS(5983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), + [anon_sym_BSLASHinclude] = ACTIONS(5983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), + [anon_sym_BSLASHinput] = ACTIONS(5983), + [anon_sym_BSLASHsubfile] = ACTIONS(5983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), + [anon_sym_BSLASHbibliography] = ACTIONS(5983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), + [anon_sym_BSLASHincludesvg] = ACTIONS(5983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), + [anon_sym_BSLASHimport] = ACTIONS(5983), + [anon_sym_BSLASHsubimport] = ACTIONS(5983), + [anon_sym_BSLASHinputfrom] = ACTIONS(5983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), + [anon_sym_BSLASHincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), + [anon_sym_BSLASHcaption] = ACTIONS(5983), + [anon_sym_BSLASHcite] = ACTIONS(5983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCite] = ACTIONS(5983), + [anon_sym_BSLASHnocite] = ACTIONS(5983), + [anon_sym_BSLASHcitet] = ACTIONS(5983), + [anon_sym_BSLASHcitep] = ACTIONS(5983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteauthor] = ACTIONS(5983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitetitle] = ACTIONS(5983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteyear] = ACTIONS(5983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5981), + [anon_sym_BSLASHcitedate] = ACTIONS(5983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5981), + [anon_sym_BSLASHciteurl] = ACTIONS(5983), + [anon_sym_BSLASHfullcite] = ACTIONS(5983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), + [anon_sym_BSLASHcitealt] = ACTIONS(5983), + [anon_sym_BSLASHcitealp] = ACTIONS(5983), + [anon_sym_BSLASHcitetext] = ACTIONS(5983), + [anon_sym_BSLASHparencite] = ACTIONS(5983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHParencite] = ACTIONS(5983), + [anon_sym_BSLASHfootcite] = ACTIONS(5983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), + [anon_sym_BSLASHtextcite] = ACTIONS(5983), + [anon_sym_BSLASHTextcite] = ACTIONS(5983), + [anon_sym_BSLASHsmartcite] = ACTIONS(5983), + [anon_sym_BSLASHSmartcite] = ACTIONS(5983), + [anon_sym_BSLASHsupercite] = ACTIONS(5983), + [anon_sym_BSLASHautocite] = ACTIONS(5983), + [anon_sym_BSLASHAutocite] = ACTIONS(5983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5981), + [anon_sym_BSLASHvolcite] = ACTIONS(5983), + [anon_sym_BSLASHVolcite] = ACTIONS(5983), + [anon_sym_BSLASHpvolcite] = ACTIONS(5983), + [anon_sym_BSLASHPvolcite] = ACTIONS(5983), + [anon_sym_BSLASHfvolcite] = ACTIONS(5983), + [anon_sym_BSLASHftvolcite] = ACTIONS(5983), + [anon_sym_BSLASHsvolcite] = ACTIONS(5983), + [anon_sym_BSLASHSvolcite] = ACTIONS(5983), + [anon_sym_BSLASHtvolcite] = ACTIONS(5983), + [anon_sym_BSLASHTvolcite] = ACTIONS(5983), + [anon_sym_BSLASHavolcite] = ACTIONS(5983), + [anon_sym_BSLASHAvolcite] = ACTIONS(5983), + [anon_sym_BSLASHnotecite] = ACTIONS(5983), + [anon_sym_BSLASHNotecite] = ACTIONS(5983), + [anon_sym_BSLASHpnotecite] = ACTIONS(5983), + [anon_sym_BSLASHPnotecite] = ACTIONS(5983), + [anon_sym_BSLASHfnotecite] = ACTIONS(5983), + [anon_sym_BSLASHlabel] = ACTIONS(5983), + [anon_sym_BSLASHref] = ACTIONS(5983), + [anon_sym_BSLASHeqref] = ACTIONS(5983), + [anon_sym_BSLASHvref] = ACTIONS(5983), + [anon_sym_BSLASHVref] = ACTIONS(5983), + [anon_sym_BSLASHautoref] = ACTIONS(5983), + [anon_sym_BSLASHpageref] = ACTIONS(5983), + [anon_sym_BSLASHcref] = ACTIONS(5983), + [anon_sym_BSLASHCref] = ACTIONS(5983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnameCref] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), + [anon_sym_BSLASHlabelcref] = ACTIONS(5983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange] = ACTIONS(5983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHCrefrange] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5981), + [anon_sym_BSLASHnewlabel] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand] = ACTIONS(5983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdef] = ACTIONS(5983), + [anon_sym_BSLASHlet] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), + [anon_sym_BSLASHgls] = ACTIONS(5983), + [anon_sym_BSLASHGls] = ACTIONS(5983), + [anon_sym_BSLASHGLS] = ACTIONS(5983), + [anon_sym_BSLASHglspl] = ACTIONS(5983), + [anon_sym_BSLASHGlspl] = ACTIONS(5983), + [anon_sym_BSLASHGLSpl] = ACTIONS(5983), + [anon_sym_BSLASHglsdisp] = ACTIONS(5983), + [anon_sym_BSLASHglslink] = ACTIONS(5983), + [anon_sym_BSLASHglstext] = ACTIONS(5983), + [anon_sym_BSLASHGlstext] = ACTIONS(5983), + [anon_sym_BSLASHGLStext] = ACTIONS(5983), + [anon_sym_BSLASHglsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), + [anon_sym_BSLASHglsplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSplural] = ACTIONS(5983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), + [anon_sym_BSLASHglsname] = ACTIONS(5983), + [anon_sym_BSLASHGlsname] = ACTIONS(5983), + [anon_sym_BSLASHGLSname] = ACTIONS(5983), + [anon_sym_BSLASHglssymbol] = ACTIONS(5983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), + [anon_sym_BSLASHglsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), + [anon_sym_BSLASHglsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), + [anon_sym_BSLASHglsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), + [anon_sym_BSLASHglsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), + [anon_sym_BSLASHglsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), + [anon_sym_BSLASHnewacronym] = ACTIONS(5983), + [anon_sym_BSLASHacrshort] = ACTIONS(5983), + [anon_sym_BSLASHAcrshort] = ACTIONS(5983), + [anon_sym_BSLASHACRshort] = ACTIONS(5983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), + [anon_sym_BSLASHacrlong] = ACTIONS(5983), + [anon_sym_BSLASHAcrlong] = ACTIONS(5983), + [anon_sym_BSLASHACRlong] = ACTIONS(5983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), + [anon_sym_BSLASHacrfull] = ACTIONS(5983), + [anon_sym_BSLASHAcrfull] = ACTIONS(5983), + [anon_sym_BSLASHACRfull] = ACTIONS(5983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), + [anon_sym_BSLASHacs] = ACTIONS(5983), + [anon_sym_BSLASHAcs] = ACTIONS(5983), + [anon_sym_BSLASHacsp] = ACTIONS(5983), + [anon_sym_BSLASHAcsp] = ACTIONS(5983), + [anon_sym_BSLASHacl] = ACTIONS(5983), + [anon_sym_BSLASHAcl] = ACTIONS(5983), + [anon_sym_BSLASHaclp] = ACTIONS(5983), + [anon_sym_BSLASHAclp] = ACTIONS(5983), + [anon_sym_BSLASHacf] = ACTIONS(5983), + [anon_sym_BSLASHAcf] = ACTIONS(5983), + [anon_sym_BSLASHacfp] = ACTIONS(5983), + [anon_sym_BSLASHAcfp] = ACTIONS(5983), + [anon_sym_BSLASHac] = ACTIONS(5983), + [anon_sym_BSLASHAc] = ACTIONS(5983), + [anon_sym_BSLASHacp] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), + [anon_sym_BSLASHcolor] = ACTIONS(5983), + [anon_sym_BSLASHcolorbox] = ACTIONS(5983), + [anon_sym_BSLASHtextcolor] = ACTIONS(5983), + [anon_sym_BSLASHpagecolor] = ACTIONS(5983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), + [anon_sym_BSLASHtext] = ACTIONS(5983), + [anon_sym_BSLASHintertext] = ACTIONS(5983), + [anon_sym_shortintertext] = ACTIONS(5983), }, - [1539] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [1424] = { + [sym_command_name] = ACTIONS(6017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_EQ] = ACTIONS(6015), + [anon_sym_LBRACE] = ACTIONS(6015), + [sym_word] = ACTIONS(6017), + [sym_placeholder] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6017), + [anon_sym_SLASH] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym__] = ACTIONS(6017), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PIPE] = ACTIONS(6017), + [anon_sym_COLON] = ACTIONS(6017), + [anon_sym_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6015), + [anon_sym_BSLASHbegin] = ACTIONS(6017), + [anon_sym_BSLASHtitle] = ACTIONS(6017), + [anon_sym_BSLASHauthor] = ACTIONS(6017), + [anon_sym_BSLASHusepackage] = ACTIONS(6017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), + [anon_sym_BSLASHinclude] = ACTIONS(6017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), + [anon_sym_BSLASHinput] = ACTIONS(6017), + [anon_sym_BSLASHsubfile] = ACTIONS(6017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), + [anon_sym_BSLASHbibliography] = ACTIONS(6017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), + [anon_sym_BSLASHincludesvg] = ACTIONS(6017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), + [anon_sym_BSLASHimport] = ACTIONS(6017), + [anon_sym_BSLASHsubimport] = ACTIONS(6017), + [anon_sym_BSLASHinputfrom] = ACTIONS(6017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), + [anon_sym_BSLASHincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), + [anon_sym_BSLASHcaption] = ACTIONS(6017), + [anon_sym_BSLASHcite] = ACTIONS(6017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCite] = ACTIONS(6017), + [anon_sym_BSLASHnocite] = ACTIONS(6017), + [anon_sym_BSLASHcitet] = ACTIONS(6017), + [anon_sym_BSLASHcitep] = ACTIONS(6017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteauthor] = ACTIONS(6017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitetitle] = ACTIONS(6017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteyear] = ACTIONS(6017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), + [anon_sym_BSLASHcitedate] = ACTIONS(6017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), + [anon_sym_BSLASHciteurl] = ACTIONS(6017), + [anon_sym_BSLASHfullcite] = ACTIONS(6017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), + [anon_sym_BSLASHcitealt] = ACTIONS(6017), + [anon_sym_BSLASHcitealp] = ACTIONS(6017), + [anon_sym_BSLASHcitetext] = ACTIONS(6017), + [anon_sym_BSLASHparencite] = ACTIONS(6017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHParencite] = ACTIONS(6017), + [anon_sym_BSLASHfootcite] = ACTIONS(6017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), + [anon_sym_BSLASHtextcite] = ACTIONS(6017), + [anon_sym_BSLASHTextcite] = ACTIONS(6017), + [anon_sym_BSLASHsmartcite] = ACTIONS(6017), + [anon_sym_BSLASHSmartcite] = ACTIONS(6017), + [anon_sym_BSLASHsupercite] = ACTIONS(6017), + [anon_sym_BSLASHautocite] = ACTIONS(6017), + [anon_sym_BSLASHAutocite] = ACTIONS(6017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), + [anon_sym_BSLASHvolcite] = ACTIONS(6017), + [anon_sym_BSLASHVolcite] = ACTIONS(6017), + [anon_sym_BSLASHpvolcite] = ACTIONS(6017), + [anon_sym_BSLASHPvolcite] = ACTIONS(6017), + [anon_sym_BSLASHfvolcite] = ACTIONS(6017), + [anon_sym_BSLASHftvolcite] = ACTIONS(6017), + [anon_sym_BSLASHsvolcite] = ACTIONS(6017), + [anon_sym_BSLASHSvolcite] = ACTIONS(6017), + [anon_sym_BSLASHtvolcite] = ACTIONS(6017), + [anon_sym_BSLASHTvolcite] = ACTIONS(6017), + [anon_sym_BSLASHavolcite] = ACTIONS(6017), + [anon_sym_BSLASHAvolcite] = ACTIONS(6017), + [anon_sym_BSLASHnotecite] = ACTIONS(6017), + [anon_sym_BSLASHNotecite] = ACTIONS(6017), + [anon_sym_BSLASHpnotecite] = ACTIONS(6017), + [anon_sym_BSLASHPnotecite] = ACTIONS(6017), + [anon_sym_BSLASHfnotecite] = ACTIONS(6017), + [anon_sym_BSLASHlabel] = ACTIONS(6017), + [anon_sym_BSLASHref] = ACTIONS(6017), + [anon_sym_BSLASHeqref] = ACTIONS(6017), + [anon_sym_BSLASHvref] = ACTIONS(6017), + [anon_sym_BSLASHVref] = ACTIONS(6017), + [anon_sym_BSLASHautoref] = ACTIONS(6017), + [anon_sym_BSLASHpageref] = ACTIONS(6017), + [anon_sym_BSLASHcref] = ACTIONS(6017), + [anon_sym_BSLASHCref] = ACTIONS(6017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnameCref] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), + [anon_sym_BSLASHlabelcref] = ACTIONS(6017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange] = ACTIONS(6017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHCrefrange] = ACTIONS(6017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), + [anon_sym_BSLASHnewlabel] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand] = ACTIONS(6017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdef] = ACTIONS(6017), + [anon_sym_BSLASHlet] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), + [anon_sym_BSLASHgls] = ACTIONS(6017), + [anon_sym_BSLASHGls] = ACTIONS(6017), + [anon_sym_BSLASHGLS] = ACTIONS(6017), + [anon_sym_BSLASHglspl] = ACTIONS(6017), + [anon_sym_BSLASHGlspl] = ACTIONS(6017), + [anon_sym_BSLASHGLSpl] = ACTIONS(6017), + [anon_sym_BSLASHglsdisp] = ACTIONS(6017), + [anon_sym_BSLASHglslink] = ACTIONS(6017), + [anon_sym_BSLASHglstext] = ACTIONS(6017), + [anon_sym_BSLASHGlstext] = ACTIONS(6017), + [anon_sym_BSLASHGLStext] = ACTIONS(6017), + [anon_sym_BSLASHglsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), + [anon_sym_BSLASHglsplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSplural] = ACTIONS(6017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), + [anon_sym_BSLASHglsname] = ACTIONS(6017), + [anon_sym_BSLASHGlsname] = ACTIONS(6017), + [anon_sym_BSLASHGLSname] = ACTIONS(6017), + [anon_sym_BSLASHglssymbol] = ACTIONS(6017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), + [anon_sym_BSLASHglsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), + [anon_sym_BSLASHglsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), + [anon_sym_BSLASHglsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), + [anon_sym_BSLASHglsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), + [anon_sym_BSLASHglsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), + [anon_sym_BSLASHnewacronym] = ACTIONS(6017), + [anon_sym_BSLASHacrshort] = ACTIONS(6017), + [anon_sym_BSLASHAcrshort] = ACTIONS(6017), + [anon_sym_BSLASHACRshort] = ACTIONS(6017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), + [anon_sym_BSLASHacrlong] = ACTIONS(6017), + [anon_sym_BSLASHAcrlong] = ACTIONS(6017), + [anon_sym_BSLASHACRlong] = ACTIONS(6017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), + [anon_sym_BSLASHacrfull] = ACTIONS(6017), + [anon_sym_BSLASHAcrfull] = ACTIONS(6017), + [anon_sym_BSLASHACRfull] = ACTIONS(6017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), + [anon_sym_BSLASHacs] = ACTIONS(6017), + [anon_sym_BSLASHAcs] = ACTIONS(6017), + [anon_sym_BSLASHacsp] = ACTIONS(6017), + [anon_sym_BSLASHAcsp] = ACTIONS(6017), + [anon_sym_BSLASHacl] = ACTIONS(6017), + [anon_sym_BSLASHAcl] = ACTIONS(6017), + [anon_sym_BSLASHaclp] = ACTIONS(6017), + [anon_sym_BSLASHAclp] = ACTIONS(6017), + [anon_sym_BSLASHacf] = ACTIONS(6017), + [anon_sym_BSLASHAcf] = ACTIONS(6017), + [anon_sym_BSLASHacfp] = ACTIONS(6017), + [anon_sym_BSLASHAcfp] = ACTIONS(6017), + [anon_sym_BSLASHac] = ACTIONS(6017), + [anon_sym_BSLASHAc] = ACTIONS(6017), + [anon_sym_BSLASHacp] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), + [anon_sym_BSLASHcolor] = ACTIONS(6017), + [anon_sym_BSLASHcolorbox] = ACTIONS(6017), + [anon_sym_BSLASHtextcolor] = ACTIONS(6017), + [anon_sym_BSLASHpagecolor] = ACTIONS(6017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), + [anon_sym_BSLASHtext] = ACTIONS(6017), + [anon_sym_BSLASHintertext] = ACTIONS(6017), + [anon_sym_shortintertext] = ACTIONS(6017), }, - [1540] = { - [sym_command_name] = ACTIONS(5031), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5031), - [anon_sym_BSLASHfi] = ACTIONS(5705), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_COMMA] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5029), - [anon_sym_RBRACE] = ACTIONS(5029), - [sym_word] = ACTIONS(5031), - [sym_placeholder] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym__] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5031), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5031), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5031), - [anon_sym_BSLASHinclude] = ACTIONS(5031), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5031), - [anon_sym_BSLASHinput] = ACTIONS(5031), - [anon_sym_BSLASHsubfile] = ACTIONS(5031), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5031), - [anon_sym_BSLASHbibliography] = ACTIONS(5031), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5031), - [anon_sym_BSLASHincludesvg] = ACTIONS(5031), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5031), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5031), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5031), - [anon_sym_BSLASHimport] = ACTIONS(5031), - [anon_sym_BSLASHsubimport] = ACTIONS(5031), - [anon_sym_BSLASHinputfrom] = ACTIONS(5031), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5031), - [anon_sym_BSLASHincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5031), - [anon_sym_BSLASHcaption] = ACTIONS(5031), - [anon_sym_BSLASHcite] = ACTIONS(5031), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCite] = ACTIONS(5031), - [anon_sym_BSLASHnocite] = ACTIONS(5031), - [anon_sym_BSLASHcitet] = ACTIONS(5031), - [anon_sym_BSLASHcitep] = ACTIONS(5031), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteyear] = ACTIONS(5031), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5029), - [anon_sym_BSLASHcitedate] = ACTIONS(5031), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5029), - [anon_sym_BSLASHciteurl] = ACTIONS(5031), - [anon_sym_BSLASHfullcite] = ACTIONS(5031), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5031), - [anon_sym_BSLASHcitealt] = ACTIONS(5031), - [anon_sym_BSLASHcitealp] = ACTIONS(5031), - [anon_sym_BSLASHcitetext] = ACTIONS(5031), - [anon_sym_BSLASHparencite] = ACTIONS(5031), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHParencite] = ACTIONS(5031), - [anon_sym_BSLASHfootcite] = ACTIONS(5031), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5031), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5031), - [anon_sym_BSLASHtextcite] = ACTIONS(5031), - [anon_sym_BSLASHTextcite] = ACTIONS(5031), - [anon_sym_BSLASHsmartcite] = ACTIONS(5031), - [anon_sym_BSLASHSmartcite] = ACTIONS(5031), - [anon_sym_BSLASHsupercite] = ACTIONS(5031), - [anon_sym_BSLASHautocite] = ACTIONS(5031), - [anon_sym_BSLASHAutocite] = ACTIONS(5031), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5029), - [anon_sym_BSLASHvolcite] = ACTIONS(5031), - [anon_sym_BSLASHVolcite] = ACTIONS(5031), - [anon_sym_BSLASHpvolcite] = ACTIONS(5031), - [anon_sym_BSLASHPvolcite] = ACTIONS(5031), - [anon_sym_BSLASHfvolcite] = ACTIONS(5031), - [anon_sym_BSLASHftvolcite] = ACTIONS(5031), - [anon_sym_BSLASHsvolcite] = ACTIONS(5031), - [anon_sym_BSLASHSvolcite] = ACTIONS(5031), - [anon_sym_BSLASHtvolcite] = ACTIONS(5031), - [anon_sym_BSLASHTvolcite] = ACTIONS(5031), - [anon_sym_BSLASHavolcite] = ACTIONS(5031), - [anon_sym_BSLASHAvolcite] = ACTIONS(5031), - [anon_sym_BSLASHnotecite] = ACTIONS(5031), - [anon_sym_BSLASHNotecite] = ACTIONS(5031), - [anon_sym_BSLASHpnotecite] = ACTIONS(5031), - [anon_sym_BSLASHPnotecite] = ACTIONS(5031), - [anon_sym_BSLASHfnotecite] = ACTIONS(5031), - [anon_sym_BSLASHlabel] = ACTIONS(5031), - [anon_sym_BSLASHref] = ACTIONS(5031), - [anon_sym_BSLASHeqref] = ACTIONS(5031), - [anon_sym_BSLASHvref] = ACTIONS(5031), - [anon_sym_BSLASHVref] = ACTIONS(5031), - [anon_sym_BSLASHautoref] = ACTIONS(5031), - [anon_sym_BSLASHpageref] = ACTIONS(5031), - [anon_sym_BSLASHcref] = ACTIONS(5031), - [anon_sym_BSLASHCref] = ACTIONS(5031), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnameCref] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5031), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5031), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5031), - [anon_sym_BSLASHlabelcref] = ACTIONS(5031), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange] = ACTIONS(5031), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5029), - [anon_sym_BSLASHnewlabel] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand] = ACTIONS(5031), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdef] = ACTIONS(5031), - [anon_sym_BSLASHlet] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5031), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5031), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5031), - [anon_sym_BSLASHgls] = ACTIONS(5031), - [anon_sym_BSLASHGls] = ACTIONS(5031), - [anon_sym_BSLASHGLS] = ACTIONS(5031), - [anon_sym_BSLASHglspl] = ACTIONS(5031), - [anon_sym_BSLASHGlspl] = ACTIONS(5031), - [anon_sym_BSLASHGLSpl] = ACTIONS(5031), - [anon_sym_BSLASHglsdisp] = ACTIONS(5031), - [anon_sym_BSLASHglslink] = ACTIONS(5031), - [anon_sym_BSLASHglstext] = ACTIONS(5031), - [anon_sym_BSLASHGlstext] = ACTIONS(5031), - [anon_sym_BSLASHGLStext] = ACTIONS(5031), - [anon_sym_BSLASHglsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5031), - [anon_sym_BSLASHglsplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSplural] = ACTIONS(5031), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5031), - [anon_sym_BSLASHglsname] = ACTIONS(5031), - [anon_sym_BSLASHGlsname] = ACTIONS(5031), - [anon_sym_BSLASHGLSname] = ACTIONS(5031), - [anon_sym_BSLASHglssymbol] = ACTIONS(5031), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5031), - [anon_sym_BSLASHglsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5031), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5031), - [anon_sym_BSLASHglsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5031), - [anon_sym_BSLASHglsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5031), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5031), - [anon_sym_BSLASHglsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5031), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5031), - [anon_sym_BSLASHglsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5031), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5031), - [anon_sym_BSLASHnewacronym] = ACTIONS(5031), - [anon_sym_BSLASHacrshort] = ACTIONS(5031), - [anon_sym_BSLASHAcrshort] = ACTIONS(5031), - [anon_sym_BSLASHACRshort] = ACTIONS(5031), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5031), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5031), - [anon_sym_BSLASHacrlong] = ACTIONS(5031), - [anon_sym_BSLASHAcrlong] = ACTIONS(5031), - [anon_sym_BSLASHACRlong] = ACTIONS(5031), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5031), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5031), - [anon_sym_BSLASHacrfull] = ACTIONS(5031), - [anon_sym_BSLASHAcrfull] = ACTIONS(5031), - [anon_sym_BSLASHACRfull] = ACTIONS(5031), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5031), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5031), - [anon_sym_BSLASHacs] = ACTIONS(5031), - [anon_sym_BSLASHAcs] = ACTIONS(5031), - [anon_sym_BSLASHacsp] = ACTIONS(5031), - [anon_sym_BSLASHAcsp] = ACTIONS(5031), - [anon_sym_BSLASHacl] = ACTIONS(5031), - [anon_sym_BSLASHAcl] = ACTIONS(5031), - [anon_sym_BSLASHaclp] = ACTIONS(5031), - [anon_sym_BSLASHAclp] = ACTIONS(5031), - [anon_sym_BSLASHacf] = ACTIONS(5031), - [anon_sym_BSLASHAcf] = ACTIONS(5031), - [anon_sym_BSLASHacfp] = ACTIONS(5031), - [anon_sym_BSLASHAcfp] = ACTIONS(5031), - [anon_sym_BSLASHac] = ACTIONS(5031), - [anon_sym_BSLASHAc] = ACTIONS(5031), - [anon_sym_BSLASHacp] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5031), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5031), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5031), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5031), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5031), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5031), - [anon_sym_BSLASHcolor] = ACTIONS(5031), - [anon_sym_BSLASHcolorbox] = ACTIONS(5031), - [anon_sym_BSLASHtextcolor] = ACTIONS(5031), - [anon_sym_BSLASHpagecolor] = ACTIONS(5031), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5031), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5031), + [1425] = { + [sym_command_name] = ACTIONS(6025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6023), + [anon_sym_LBRACE] = ACTIONS(6023), + [sym_word] = ACTIONS(6025), + [sym_placeholder] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym__] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6025), + [anon_sym_COLON] = ACTIONS(6025), + [anon_sym_SQUOTE] = ACTIONS(6025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), + [anon_sym_DOLLAR] = ACTIONS(6025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6023), + [anon_sym_BSLASHbegin] = ACTIONS(6025), + [anon_sym_BSLASHtitle] = ACTIONS(6025), + [anon_sym_BSLASHauthor] = ACTIONS(6025), + [anon_sym_BSLASHusepackage] = ACTIONS(6025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), + [anon_sym_BSLASHinclude] = ACTIONS(6025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), + [anon_sym_BSLASHinput] = ACTIONS(6025), + [anon_sym_BSLASHsubfile] = ACTIONS(6025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), + [anon_sym_BSLASHbibliography] = ACTIONS(6025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), + [anon_sym_BSLASHincludesvg] = ACTIONS(6025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), + [anon_sym_BSLASHimport] = ACTIONS(6025), + [anon_sym_BSLASHsubimport] = ACTIONS(6025), + [anon_sym_BSLASHinputfrom] = ACTIONS(6025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), + [anon_sym_BSLASHincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), + [anon_sym_BSLASHcaption] = ACTIONS(6025), + [anon_sym_BSLASHcite] = ACTIONS(6025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCite] = ACTIONS(6025), + [anon_sym_BSLASHnocite] = ACTIONS(6025), + [anon_sym_BSLASHcitet] = ACTIONS(6025), + [anon_sym_BSLASHcitep] = ACTIONS(6025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteauthor] = ACTIONS(6025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitetitle] = ACTIONS(6025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteyear] = ACTIONS(6025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), + [anon_sym_BSLASHcitedate] = ACTIONS(6025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), + [anon_sym_BSLASHciteurl] = ACTIONS(6025), + [anon_sym_BSLASHfullcite] = ACTIONS(6025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), + [anon_sym_BSLASHcitealt] = ACTIONS(6025), + [anon_sym_BSLASHcitealp] = ACTIONS(6025), + [anon_sym_BSLASHcitetext] = ACTIONS(6025), + [anon_sym_BSLASHparencite] = ACTIONS(6025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHParencite] = ACTIONS(6025), + [anon_sym_BSLASHfootcite] = ACTIONS(6025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), + [anon_sym_BSLASHtextcite] = ACTIONS(6025), + [anon_sym_BSLASHTextcite] = ACTIONS(6025), + [anon_sym_BSLASHsmartcite] = ACTIONS(6025), + [anon_sym_BSLASHSmartcite] = ACTIONS(6025), + [anon_sym_BSLASHsupercite] = ACTIONS(6025), + [anon_sym_BSLASHautocite] = ACTIONS(6025), + [anon_sym_BSLASHAutocite] = ACTIONS(6025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), + [anon_sym_BSLASHvolcite] = ACTIONS(6025), + [anon_sym_BSLASHVolcite] = ACTIONS(6025), + [anon_sym_BSLASHpvolcite] = ACTIONS(6025), + [anon_sym_BSLASHPvolcite] = ACTIONS(6025), + [anon_sym_BSLASHfvolcite] = ACTIONS(6025), + [anon_sym_BSLASHftvolcite] = ACTIONS(6025), + [anon_sym_BSLASHsvolcite] = ACTIONS(6025), + [anon_sym_BSLASHSvolcite] = ACTIONS(6025), + [anon_sym_BSLASHtvolcite] = ACTIONS(6025), + [anon_sym_BSLASHTvolcite] = ACTIONS(6025), + [anon_sym_BSLASHavolcite] = ACTIONS(6025), + [anon_sym_BSLASHAvolcite] = ACTIONS(6025), + [anon_sym_BSLASHnotecite] = ACTIONS(6025), + [anon_sym_BSLASHNotecite] = ACTIONS(6025), + [anon_sym_BSLASHpnotecite] = ACTIONS(6025), + [anon_sym_BSLASHPnotecite] = ACTIONS(6025), + [anon_sym_BSLASHfnotecite] = ACTIONS(6025), + [anon_sym_BSLASHlabel] = ACTIONS(6025), + [anon_sym_BSLASHref] = ACTIONS(6025), + [anon_sym_BSLASHeqref] = ACTIONS(6025), + [anon_sym_BSLASHvref] = ACTIONS(6025), + [anon_sym_BSLASHVref] = ACTIONS(6025), + [anon_sym_BSLASHautoref] = ACTIONS(6025), + [anon_sym_BSLASHpageref] = ACTIONS(6025), + [anon_sym_BSLASHcref] = ACTIONS(6025), + [anon_sym_BSLASHCref] = ACTIONS(6025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnameCref] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), + [anon_sym_BSLASHlabelcref] = ACTIONS(6025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange] = ACTIONS(6025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHCrefrange] = ACTIONS(6025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), + [anon_sym_BSLASHnewlabel] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand] = ACTIONS(6025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdef] = ACTIONS(6025), + [anon_sym_BSLASHlet] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), + [anon_sym_BSLASHgls] = ACTIONS(6025), + [anon_sym_BSLASHGls] = ACTIONS(6025), + [anon_sym_BSLASHGLS] = ACTIONS(6025), + [anon_sym_BSLASHglspl] = ACTIONS(6025), + [anon_sym_BSLASHGlspl] = ACTIONS(6025), + [anon_sym_BSLASHGLSpl] = ACTIONS(6025), + [anon_sym_BSLASHglsdisp] = ACTIONS(6025), + [anon_sym_BSLASHglslink] = ACTIONS(6025), + [anon_sym_BSLASHglstext] = ACTIONS(6025), + [anon_sym_BSLASHGlstext] = ACTIONS(6025), + [anon_sym_BSLASHGLStext] = ACTIONS(6025), + [anon_sym_BSLASHglsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), + [anon_sym_BSLASHglsplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSplural] = ACTIONS(6025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), + [anon_sym_BSLASHglsname] = ACTIONS(6025), + [anon_sym_BSLASHGlsname] = ACTIONS(6025), + [anon_sym_BSLASHGLSname] = ACTIONS(6025), + [anon_sym_BSLASHglssymbol] = ACTIONS(6025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), + [anon_sym_BSLASHglsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), + [anon_sym_BSLASHglsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), + [anon_sym_BSLASHglsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), + [anon_sym_BSLASHglsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), + [anon_sym_BSLASHglsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), + [anon_sym_BSLASHnewacronym] = ACTIONS(6025), + [anon_sym_BSLASHacrshort] = ACTIONS(6025), + [anon_sym_BSLASHAcrshort] = ACTIONS(6025), + [anon_sym_BSLASHACRshort] = ACTIONS(6025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), + [anon_sym_BSLASHacrlong] = ACTIONS(6025), + [anon_sym_BSLASHAcrlong] = ACTIONS(6025), + [anon_sym_BSLASHACRlong] = ACTIONS(6025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), + [anon_sym_BSLASHacrfull] = ACTIONS(6025), + [anon_sym_BSLASHAcrfull] = ACTIONS(6025), + [anon_sym_BSLASHACRfull] = ACTIONS(6025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), + [anon_sym_BSLASHacs] = ACTIONS(6025), + [anon_sym_BSLASHAcs] = ACTIONS(6025), + [anon_sym_BSLASHacsp] = ACTIONS(6025), + [anon_sym_BSLASHAcsp] = ACTIONS(6025), + [anon_sym_BSLASHacl] = ACTIONS(6025), + [anon_sym_BSLASHAcl] = ACTIONS(6025), + [anon_sym_BSLASHaclp] = ACTIONS(6025), + [anon_sym_BSLASHAclp] = ACTIONS(6025), + [anon_sym_BSLASHacf] = ACTIONS(6025), + [anon_sym_BSLASHAcf] = ACTIONS(6025), + [anon_sym_BSLASHacfp] = ACTIONS(6025), + [anon_sym_BSLASHAcfp] = ACTIONS(6025), + [anon_sym_BSLASHac] = ACTIONS(6025), + [anon_sym_BSLASHAc] = ACTIONS(6025), + [anon_sym_BSLASHacp] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), + [anon_sym_BSLASHcolor] = ACTIONS(6025), + [anon_sym_BSLASHcolorbox] = ACTIONS(6025), + [anon_sym_BSLASHtextcolor] = ACTIONS(6025), + [anon_sym_BSLASHpagecolor] = ACTIONS(6025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + [anon_sym_BSLASHtext] = ACTIONS(6025), + [anon_sym_BSLASHintertext] = ACTIONS(6025), + [anon_sym_shortintertext] = ACTIONS(6025), }, - [1541] = { - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5081), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [1426] = { + [sym_command_name] = ACTIONS(6029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_EQ] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [sym_word] = ACTIONS(6029), + [sym_placeholder] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6029), + [anon_sym_SLASH] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6029), + [anon_sym__] = ACTIONS(6029), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6029), + [anon_sym_COLON] = ACTIONS(6029), + [anon_sym_SQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6027), + [anon_sym_BSLASHbegin] = ACTIONS(6029), + [anon_sym_BSLASHtitle] = ACTIONS(6029), + [anon_sym_BSLASHauthor] = ACTIONS(6029), + [anon_sym_BSLASHusepackage] = ACTIONS(6029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), + [anon_sym_BSLASHinclude] = ACTIONS(6029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), + [anon_sym_BSLASHinput] = ACTIONS(6029), + [anon_sym_BSLASHsubfile] = ACTIONS(6029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), + [anon_sym_BSLASHbibliography] = ACTIONS(6029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), + [anon_sym_BSLASHincludesvg] = ACTIONS(6029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), + [anon_sym_BSLASHimport] = ACTIONS(6029), + [anon_sym_BSLASHsubimport] = ACTIONS(6029), + [anon_sym_BSLASHinputfrom] = ACTIONS(6029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), + [anon_sym_BSLASHincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), + [anon_sym_BSLASHcaption] = ACTIONS(6029), + [anon_sym_BSLASHcite] = ACTIONS(6029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCite] = ACTIONS(6029), + [anon_sym_BSLASHnocite] = ACTIONS(6029), + [anon_sym_BSLASHcitet] = ACTIONS(6029), + [anon_sym_BSLASHcitep] = ACTIONS(6029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteauthor] = ACTIONS(6029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitetitle] = ACTIONS(6029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteyear] = ACTIONS(6029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), + [anon_sym_BSLASHcitedate] = ACTIONS(6029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), + [anon_sym_BSLASHciteurl] = ACTIONS(6029), + [anon_sym_BSLASHfullcite] = ACTIONS(6029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), + [anon_sym_BSLASHcitealt] = ACTIONS(6029), + [anon_sym_BSLASHcitealp] = ACTIONS(6029), + [anon_sym_BSLASHcitetext] = ACTIONS(6029), + [anon_sym_BSLASHparencite] = ACTIONS(6029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHParencite] = ACTIONS(6029), + [anon_sym_BSLASHfootcite] = ACTIONS(6029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), + [anon_sym_BSLASHtextcite] = ACTIONS(6029), + [anon_sym_BSLASHTextcite] = ACTIONS(6029), + [anon_sym_BSLASHsmartcite] = ACTIONS(6029), + [anon_sym_BSLASHSmartcite] = ACTIONS(6029), + [anon_sym_BSLASHsupercite] = ACTIONS(6029), + [anon_sym_BSLASHautocite] = ACTIONS(6029), + [anon_sym_BSLASHAutocite] = ACTIONS(6029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), + [anon_sym_BSLASHvolcite] = ACTIONS(6029), + [anon_sym_BSLASHVolcite] = ACTIONS(6029), + [anon_sym_BSLASHpvolcite] = ACTIONS(6029), + [anon_sym_BSLASHPvolcite] = ACTIONS(6029), + [anon_sym_BSLASHfvolcite] = ACTIONS(6029), + [anon_sym_BSLASHftvolcite] = ACTIONS(6029), + [anon_sym_BSLASHsvolcite] = ACTIONS(6029), + [anon_sym_BSLASHSvolcite] = ACTIONS(6029), + [anon_sym_BSLASHtvolcite] = ACTIONS(6029), + [anon_sym_BSLASHTvolcite] = ACTIONS(6029), + [anon_sym_BSLASHavolcite] = ACTIONS(6029), + [anon_sym_BSLASHAvolcite] = ACTIONS(6029), + [anon_sym_BSLASHnotecite] = ACTIONS(6029), + [anon_sym_BSLASHNotecite] = ACTIONS(6029), + [anon_sym_BSLASHpnotecite] = ACTIONS(6029), + [anon_sym_BSLASHPnotecite] = ACTIONS(6029), + [anon_sym_BSLASHfnotecite] = ACTIONS(6029), + [anon_sym_BSLASHlabel] = ACTIONS(6029), + [anon_sym_BSLASHref] = ACTIONS(6029), + [anon_sym_BSLASHeqref] = ACTIONS(6029), + [anon_sym_BSLASHvref] = ACTIONS(6029), + [anon_sym_BSLASHVref] = ACTIONS(6029), + [anon_sym_BSLASHautoref] = ACTIONS(6029), + [anon_sym_BSLASHpageref] = ACTIONS(6029), + [anon_sym_BSLASHcref] = ACTIONS(6029), + [anon_sym_BSLASHCref] = ACTIONS(6029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnameCref] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), + [anon_sym_BSLASHlabelcref] = ACTIONS(6029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange] = ACTIONS(6029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHCrefrange] = ACTIONS(6029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), + [anon_sym_BSLASHnewlabel] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand] = ACTIONS(6029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdef] = ACTIONS(6029), + [anon_sym_BSLASHlet] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), + [anon_sym_BSLASHgls] = ACTIONS(6029), + [anon_sym_BSLASHGls] = ACTIONS(6029), + [anon_sym_BSLASHGLS] = ACTIONS(6029), + [anon_sym_BSLASHglspl] = ACTIONS(6029), + [anon_sym_BSLASHGlspl] = ACTIONS(6029), + [anon_sym_BSLASHGLSpl] = ACTIONS(6029), + [anon_sym_BSLASHglsdisp] = ACTIONS(6029), + [anon_sym_BSLASHglslink] = ACTIONS(6029), + [anon_sym_BSLASHglstext] = ACTIONS(6029), + [anon_sym_BSLASHGlstext] = ACTIONS(6029), + [anon_sym_BSLASHGLStext] = ACTIONS(6029), + [anon_sym_BSLASHglsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), + [anon_sym_BSLASHglsplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSplural] = ACTIONS(6029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), + [anon_sym_BSLASHglsname] = ACTIONS(6029), + [anon_sym_BSLASHGlsname] = ACTIONS(6029), + [anon_sym_BSLASHGLSname] = ACTIONS(6029), + [anon_sym_BSLASHglssymbol] = ACTIONS(6029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), + [anon_sym_BSLASHglsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), + [anon_sym_BSLASHglsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), + [anon_sym_BSLASHglsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), + [anon_sym_BSLASHglsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), + [anon_sym_BSLASHglsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [anon_sym_BSLASHacrshort] = ACTIONS(6029), + [anon_sym_BSLASHAcrshort] = ACTIONS(6029), + [anon_sym_BSLASHACRshort] = ACTIONS(6029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), + [anon_sym_BSLASHacrlong] = ACTIONS(6029), + [anon_sym_BSLASHAcrlong] = ACTIONS(6029), + [anon_sym_BSLASHACRlong] = ACTIONS(6029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), + [anon_sym_BSLASHacrfull] = ACTIONS(6029), + [anon_sym_BSLASHAcrfull] = ACTIONS(6029), + [anon_sym_BSLASHACRfull] = ACTIONS(6029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), + [anon_sym_BSLASHacs] = ACTIONS(6029), + [anon_sym_BSLASHAcs] = ACTIONS(6029), + [anon_sym_BSLASHacsp] = ACTIONS(6029), + [anon_sym_BSLASHAcsp] = ACTIONS(6029), + [anon_sym_BSLASHacl] = ACTIONS(6029), + [anon_sym_BSLASHAcl] = ACTIONS(6029), + [anon_sym_BSLASHaclp] = ACTIONS(6029), + [anon_sym_BSLASHAclp] = ACTIONS(6029), + [anon_sym_BSLASHacf] = ACTIONS(6029), + [anon_sym_BSLASHAcf] = ACTIONS(6029), + [anon_sym_BSLASHacfp] = ACTIONS(6029), + [anon_sym_BSLASHAcfp] = ACTIONS(6029), + [anon_sym_BSLASHac] = ACTIONS(6029), + [anon_sym_BSLASHAc] = ACTIONS(6029), + [anon_sym_BSLASHacp] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), + [anon_sym_BSLASHcolor] = ACTIONS(6029), + [anon_sym_BSLASHcolorbox] = ACTIONS(6029), + [anon_sym_BSLASHtextcolor] = ACTIONS(6029), + [anon_sym_BSLASHpagecolor] = ACTIONS(6029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), + [anon_sym_BSLASHtext] = ACTIONS(6029), + [anon_sym_BSLASHintertext] = ACTIONS(6029), + [anon_sym_shortintertext] = ACTIONS(6029), }, - [1542] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5061), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [1427] = { + [sym_command_name] = ACTIONS(6033), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_RBRACK] = ACTIONS(6031), + [anon_sym_COMMA] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [sym_word] = ACTIONS(6033), + [sym_placeholder] = ACTIONS(6031), + [anon_sym_PLUS] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6033), + [anon_sym_SLASH] = ACTIONS(6033), + [anon_sym_CARET] = ACTIONS(6033), + [anon_sym__] = ACTIONS(6033), + [anon_sym_LT] = ACTIONS(6033), + [anon_sym_GT] = ACTIONS(6033), + [anon_sym_BANG] = ACTIONS(6033), + [anon_sym_PIPE] = ACTIONS(6033), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_SQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6031), + [anon_sym_BSLASHbegin] = ACTIONS(6033), + [anon_sym_BSLASHtitle] = ACTIONS(6033), + [anon_sym_BSLASHauthor] = ACTIONS(6033), + [anon_sym_BSLASHusepackage] = ACTIONS(6033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), + [anon_sym_BSLASHinclude] = ACTIONS(6033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), + [anon_sym_BSLASHinput] = ACTIONS(6033), + [anon_sym_BSLASHsubfile] = ACTIONS(6033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), + [anon_sym_BSLASHbibliography] = ACTIONS(6033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), + [anon_sym_BSLASHincludesvg] = ACTIONS(6033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), + [anon_sym_BSLASHimport] = ACTIONS(6033), + [anon_sym_BSLASHsubimport] = ACTIONS(6033), + [anon_sym_BSLASHinputfrom] = ACTIONS(6033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), + [anon_sym_BSLASHincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), + [anon_sym_BSLASHcaption] = ACTIONS(6033), + [anon_sym_BSLASHcite] = ACTIONS(6033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCite] = ACTIONS(6033), + [anon_sym_BSLASHnocite] = ACTIONS(6033), + [anon_sym_BSLASHcitet] = ACTIONS(6033), + [anon_sym_BSLASHcitep] = ACTIONS(6033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteauthor] = ACTIONS(6033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitetitle] = ACTIONS(6033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteyear] = ACTIONS(6033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), + [anon_sym_BSLASHcitedate] = ACTIONS(6033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), + [anon_sym_BSLASHciteurl] = ACTIONS(6033), + [anon_sym_BSLASHfullcite] = ACTIONS(6033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), + [anon_sym_BSLASHcitealt] = ACTIONS(6033), + [anon_sym_BSLASHcitealp] = ACTIONS(6033), + [anon_sym_BSLASHcitetext] = ACTIONS(6033), + [anon_sym_BSLASHparencite] = ACTIONS(6033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHParencite] = ACTIONS(6033), + [anon_sym_BSLASHfootcite] = ACTIONS(6033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), + [anon_sym_BSLASHtextcite] = ACTIONS(6033), + [anon_sym_BSLASHTextcite] = ACTIONS(6033), + [anon_sym_BSLASHsmartcite] = ACTIONS(6033), + [anon_sym_BSLASHSmartcite] = ACTIONS(6033), + [anon_sym_BSLASHsupercite] = ACTIONS(6033), + [anon_sym_BSLASHautocite] = ACTIONS(6033), + [anon_sym_BSLASHAutocite] = ACTIONS(6033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), + [anon_sym_BSLASHvolcite] = ACTIONS(6033), + [anon_sym_BSLASHVolcite] = ACTIONS(6033), + [anon_sym_BSLASHpvolcite] = ACTIONS(6033), + [anon_sym_BSLASHPvolcite] = ACTIONS(6033), + [anon_sym_BSLASHfvolcite] = ACTIONS(6033), + [anon_sym_BSLASHftvolcite] = ACTIONS(6033), + [anon_sym_BSLASHsvolcite] = ACTIONS(6033), + [anon_sym_BSLASHSvolcite] = ACTIONS(6033), + [anon_sym_BSLASHtvolcite] = ACTIONS(6033), + [anon_sym_BSLASHTvolcite] = ACTIONS(6033), + [anon_sym_BSLASHavolcite] = ACTIONS(6033), + [anon_sym_BSLASHAvolcite] = ACTIONS(6033), + [anon_sym_BSLASHnotecite] = ACTIONS(6033), + [anon_sym_BSLASHNotecite] = ACTIONS(6033), + [anon_sym_BSLASHpnotecite] = ACTIONS(6033), + [anon_sym_BSLASHPnotecite] = ACTIONS(6033), + [anon_sym_BSLASHfnotecite] = ACTIONS(6033), + [anon_sym_BSLASHlabel] = ACTIONS(6033), + [anon_sym_BSLASHref] = ACTIONS(6033), + [anon_sym_BSLASHeqref] = ACTIONS(6033), + [anon_sym_BSLASHvref] = ACTIONS(6033), + [anon_sym_BSLASHVref] = ACTIONS(6033), + [anon_sym_BSLASHautoref] = ACTIONS(6033), + [anon_sym_BSLASHpageref] = ACTIONS(6033), + [anon_sym_BSLASHcref] = ACTIONS(6033), + [anon_sym_BSLASHCref] = ACTIONS(6033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnameCref] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), + [anon_sym_BSLASHlabelcref] = ACTIONS(6033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange] = ACTIONS(6033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHCrefrange] = ACTIONS(6033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), + [anon_sym_BSLASHnewlabel] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand] = ACTIONS(6033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdef] = ACTIONS(6033), + [anon_sym_BSLASHlet] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), + [anon_sym_BSLASHgls] = ACTIONS(6033), + [anon_sym_BSLASHGls] = ACTIONS(6033), + [anon_sym_BSLASHGLS] = ACTIONS(6033), + [anon_sym_BSLASHglspl] = ACTIONS(6033), + [anon_sym_BSLASHGlspl] = ACTIONS(6033), + [anon_sym_BSLASHGLSpl] = ACTIONS(6033), + [anon_sym_BSLASHglsdisp] = ACTIONS(6033), + [anon_sym_BSLASHglslink] = ACTIONS(6033), + [anon_sym_BSLASHglstext] = ACTIONS(6033), + [anon_sym_BSLASHGlstext] = ACTIONS(6033), + [anon_sym_BSLASHGLStext] = ACTIONS(6033), + [anon_sym_BSLASHglsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), + [anon_sym_BSLASHglsplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSplural] = ACTIONS(6033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), + [anon_sym_BSLASHglsname] = ACTIONS(6033), + [anon_sym_BSLASHGlsname] = ACTIONS(6033), + [anon_sym_BSLASHGLSname] = ACTIONS(6033), + [anon_sym_BSLASHglssymbol] = ACTIONS(6033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), + [anon_sym_BSLASHglsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), + [anon_sym_BSLASHglsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), + [anon_sym_BSLASHglsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), + [anon_sym_BSLASHglsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), + [anon_sym_BSLASHglsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), + [anon_sym_BSLASHnewacronym] = ACTIONS(6033), + [anon_sym_BSLASHacrshort] = ACTIONS(6033), + [anon_sym_BSLASHAcrshort] = ACTIONS(6033), + [anon_sym_BSLASHACRshort] = ACTIONS(6033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), + [anon_sym_BSLASHacrlong] = ACTIONS(6033), + [anon_sym_BSLASHAcrlong] = ACTIONS(6033), + [anon_sym_BSLASHACRlong] = ACTIONS(6033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), + [anon_sym_BSLASHacrfull] = ACTIONS(6033), + [anon_sym_BSLASHAcrfull] = ACTIONS(6033), + [anon_sym_BSLASHACRfull] = ACTIONS(6033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), + [anon_sym_BSLASHacs] = ACTIONS(6033), + [anon_sym_BSLASHAcs] = ACTIONS(6033), + [anon_sym_BSLASHacsp] = ACTIONS(6033), + [anon_sym_BSLASHAcsp] = ACTIONS(6033), + [anon_sym_BSLASHacl] = ACTIONS(6033), + [anon_sym_BSLASHAcl] = ACTIONS(6033), + [anon_sym_BSLASHaclp] = ACTIONS(6033), + [anon_sym_BSLASHAclp] = ACTIONS(6033), + [anon_sym_BSLASHacf] = ACTIONS(6033), + [anon_sym_BSLASHAcf] = ACTIONS(6033), + [anon_sym_BSLASHacfp] = ACTIONS(6033), + [anon_sym_BSLASHAcfp] = ACTIONS(6033), + [anon_sym_BSLASHac] = ACTIONS(6033), + [anon_sym_BSLASHAc] = ACTIONS(6033), + [anon_sym_BSLASHacp] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), + [anon_sym_BSLASHcolor] = ACTIONS(6033), + [anon_sym_BSLASHcolorbox] = ACTIONS(6033), + [anon_sym_BSLASHtextcolor] = ACTIONS(6033), + [anon_sym_BSLASHpagecolor] = ACTIONS(6033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), + [anon_sym_BSLASHtext] = ACTIONS(6033), + [anon_sym_BSLASHintertext] = ACTIONS(6033), + [anon_sym_shortintertext] = ACTIONS(6033), }, - [1543] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [1428] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHbegin] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), }, - [1544] = { - [sym_command_name] = ACTIONS(5399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5399), - [anon_sym_RBRACK] = ACTIONS(5397), - [anon_sym_COMMA] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_RBRACE] = ACTIONS(5397), - [sym_word] = ACTIONS(5399), - [sym_placeholder] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_SLASH] = ACTIONS(5399), - [anon_sym_CARET] = ACTIONS(5399), - [anon_sym__] = ACTIONS(5399), - [anon_sym_LT] = ACTIONS(5399), - [anon_sym_GT] = ACTIONS(5399), - [anon_sym_BANG] = ACTIONS(5399), - [anon_sym_PIPE] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_SQUOTE] = ACTIONS(5399), - [anon_sym_BSLASHusepackage] = ACTIONS(5399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5399), - [anon_sym_BSLASHinclude] = ACTIONS(5399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5399), - [anon_sym_BSLASHinput] = ACTIONS(5399), - [anon_sym_BSLASHsubfile] = ACTIONS(5399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5399), - [anon_sym_BSLASHbibliography] = ACTIONS(5399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5399), - [anon_sym_BSLASHincludesvg] = ACTIONS(5399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5399), - [anon_sym_BSLASHimport] = ACTIONS(5399), - [anon_sym_BSLASHsubimport] = ACTIONS(5399), - [anon_sym_BSLASHinputfrom] = ACTIONS(5399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5399), - [anon_sym_BSLASHincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5399), - [anon_sym_BSLASHcaption] = ACTIONS(5399), - [anon_sym_BSLASHcite] = ACTIONS(5399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCite] = ACTIONS(5399), - [anon_sym_BSLASHnocite] = ACTIONS(5399), - [anon_sym_BSLASHcitet] = ACTIONS(5399), - [anon_sym_BSLASHcitep] = ACTIONS(5399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteyear] = ACTIONS(5399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5397), - [anon_sym_BSLASHcitedate] = ACTIONS(5399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5397), - [anon_sym_BSLASHciteurl] = ACTIONS(5399), - [anon_sym_BSLASHfullcite] = ACTIONS(5399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5399), - [anon_sym_BSLASHcitealt] = ACTIONS(5399), - [anon_sym_BSLASHcitealp] = ACTIONS(5399), - [anon_sym_BSLASHcitetext] = ACTIONS(5399), - [anon_sym_BSLASHparencite] = ACTIONS(5399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHParencite] = ACTIONS(5399), - [anon_sym_BSLASHfootcite] = ACTIONS(5399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5399), - [anon_sym_BSLASHtextcite] = ACTIONS(5399), - [anon_sym_BSLASHTextcite] = ACTIONS(5399), - [anon_sym_BSLASHsmartcite] = ACTIONS(5399), - [anon_sym_BSLASHSmartcite] = ACTIONS(5399), - [anon_sym_BSLASHsupercite] = ACTIONS(5399), - [anon_sym_BSLASHautocite] = ACTIONS(5399), - [anon_sym_BSLASHAutocite] = ACTIONS(5399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5397), - [anon_sym_BSLASHvolcite] = ACTIONS(5399), - [anon_sym_BSLASHVolcite] = ACTIONS(5399), - [anon_sym_BSLASHpvolcite] = ACTIONS(5399), - [anon_sym_BSLASHPvolcite] = ACTIONS(5399), - [anon_sym_BSLASHfvolcite] = ACTIONS(5399), - [anon_sym_BSLASHftvolcite] = ACTIONS(5399), - [anon_sym_BSLASHsvolcite] = ACTIONS(5399), - [anon_sym_BSLASHSvolcite] = ACTIONS(5399), - [anon_sym_BSLASHtvolcite] = ACTIONS(5399), - [anon_sym_BSLASHTvolcite] = ACTIONS(5399), - [anon_sym_BSLASHavolcite] = ACTIONS(5399), - [anon_sym_BSLASHAvolcite] = ACTIONS(5399), - [anon_sym_BSLASHnotecite] = ACTIONS(5399), - [anon_sym_BSLASHNotecite] = ACTIONS(5399), - [anon_sym_BSLASHpnotecite] = ACTIONS(5399), - [anon_sym_BSLASHPnotecite] = ACTIONS(5399), - [anon_sym_BSLASHfnotecite] = ACTIONS(5399), - [anon_sym_BSLASHlabel] = ACTIONS(5399), - [anon_sym_BSLASHref] = ACTIONS(5399), - [anon_sym_BSLASHeqref] = ACTIONS(5399), - [anon_sym_BSLASHvref] = ACTIONS(5399), - [anon_sym_BSLASHVref] = ACTIONS(5399), - [anon_sym_BSLASHautoref] = ACTIONS(5399), - [anon_sym_BSLASHpageref] = ACTIONS(5399), - [anon_sym_BSLASHcref] = ACTIONS(5399), - [anon_sym_BSLASHCref] = ACTIONS(5399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnameCref] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5399), - [anon_sym_BSLASHlabelcref] = ACTIONS(5399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange] = ACTIONS(5399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5397), - [anon_sym_BSLASHnewlabel] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand] = ACTIONS(5399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdef] = ACTIONS(5399), - [anon_sym_BSLASHlet] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5399), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5399), - [anon_sym_BSLASHgls] = ACTIONS(5399), - [anon_sym_BSLASHGls] = ACTIONS(5399), - [anon_sym_BSLASHGLS] = ACTIONS(5399), - [anon_sym_BSLASHglspl] = ACTIONS(5399), - [anon_sym_BSLASHGlspl] = ACTIONS(5399), - [anon_sym_BSLASHGLSpl] = ACTIONS(5399), - [anon_sym_BSLASHglsdisp] = ACTIONS(5399), - [anon_sym_BSLASHglslink] = ACTIONS(5399), - [anon_sym_BSLASHglstext] = ACTIONS(5399), - [anon_sym_BSLASHGlstext] = ACTIONS(5399), - [anon_sym_BSLASHGLStext] = ACTIONS(5399), - [anon_sym_BSLASHglsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5399), - [anon_sym_BSLASHglsplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSplural] = ACTIONS(5399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5399), - [anon_sym_BSLASHglsname] = ACTIONS(5399), - [anon_sym_BSLASHGlsname] = ACTIONS(5399), - [anon_sym_BSLASHGLSname] = ACTIONS(5399), - [anon_sym_BSLASHglssymbol] = ACTIONS(5399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5399), - [anon_sym_BSLASHglsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5399), - [anon_sym_BSLASHglsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5399), - [anon_sym_BSLASHglsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5399), - [anon_sym_BSLASHglsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5399), - [anon_sym_BSLASHglsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5399), - [anon_sym_BSLASHnewacronym] = ACTIONS(5399), - [anon_sym_BSLASHacrshort] = ACTIONS(5399), - [anon_sym_BSLASHAcrshort] = ACTIONS(5399), - [anon_sym_BSLASHACRshort] = ACTIONS(5399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5399), - [anon_sym_BSLASHacrlong] = ACTIONS(5399), - [anon_sym_BSLASHAcrlong] = ACTIONS(5399), - [anon_sym_BSLASHACRlong] = ACTIONS(5399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5399), - [anon_sym_BSLASHacrfull] = ACTIONS(5399), - [anon_sym_BSLASHAcrfull] = ACTIONS(5399), - [anon_sym_BSLASHACRfull] = ACTIONS(5399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5399), - [anon_sym_BSLASHacs] = ACTIONS(5399), - [anon_sym_BSLASHAcs] = ACTIONS(5399), - [anon_sym_BSLASHacsp] = ACTIONS(5399), - [anon_sym_BSLASHAcsp] = ACTIONS(5399), - [anon_sym_BSLASHacl] = ACTIONS(5399), - [anon_sym_BSLASHAcl] = ACTIONS(5399), - [anon_sym_BSLASHaclp] = ACTIONS(5399), - [anon_sym_BSLASHAclp] = ACTIONS(5399), - [anon_sym_BSLASHacf] = ACTIONS(5399), - [anon_sym_BSLASHAcf] = ACTIONS(5399), - [anon_sym_BSLASHacfp] = ACTIONS(5399), - [anon_sym_BSLASHAcfp] = ACTIONS(5399), - [anon_sym_BSLASHac] = ACTIONS(5399), - [anon_sym_BSLASHAc] = ACTIONS(5399), - [anon_sym_BSLASHacp] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5399), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5399), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5399), - [anon_sym_BSLASHcolor] = ACTIONS(5399), - [anon_sym_BSLASHcolorbox] = ACTIONS(5399), - [anon_sym_BSLASHtextcolor] = ACTIONS(5399), - [anon_sym_BSLASHpagecolor] = ACTIONS(5399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5399), + [1429] = { + [sym_command_name] = ACTIONS(6043), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [anon_sym_COMMA] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_LBRACE] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [sym_placeholder] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6043), + [anon_sym_STAR] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym__] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_BANG] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_SQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6043), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6041), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6041), + [anon_sym_BSLASHbegin] = ACTIONS(6043), + [anon_sym_BSLASHtitle] = ACTIONS(6043), + [anon_sym_BSLASHauthor] = ACTIONS(6043), + [anon_sym_BSLASHusepackage] = ACTIONS(6043), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6043), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6043), + [anon_sym_BSLASHinclude] = ACTIONS(6043), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6043), + [anon_sym_BSLASHinput] = ACTIONS(6043), + [anon_sym_BSLASHsubfile] = ACTIONS(6043), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6043), + [anon_sym_BSLASHbibliography] = ACTIONS(6043), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6043), + [anon_sym_BSLASHincludesvg] = ACTIONS(6043), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6043), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6043), + [anon_sym_BSLASHimport] = ACTIONS(6043), + [anon_sym_BSLASHsubimport] = ACTIONS(6043), + [anon_sym_BSLASHinputfrom] = ACTIONS(6043), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6043), + [anon_sym_BSLASHincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6043), + [anon_sym_BSLASHcaption] = ACTIONS(6043), + [anon_sym_BSLASHcite] = ACTIONS(6043), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCite] = ACTIONS(6043), + [anon_sym_BSLASHnocite] = ACTIONS(6043), + [anon_sym_BSLASHcitet] = ACTIONS(6043), + [anon_sym_BSLASHcitep] = ACTIONS(6043), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteauthor] = ACTIONS(6043), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6043), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitetitle] = ACTIONS(6043), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteyear] = ACTIONS(6043), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6041), + [anon_sym_BSLASHcitedate] = ACTIONS(6043), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6041), + [anon_sym_BSLASHciteurl] = ACTIONS(6043), + [anon_sym_BSLASHfullcite] = ACTIONS(6043), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6043), + [anon_sym_BSLASHcitealt] = ACTIONS(6043), + [anon_sym_BSLASHcitealp] = ACTIONS(6043), + [anon_sym_BSLASHcitetext] = ACTIONS(6043), + [anon_sym_BSLASHparencite] = ACTIONS(6043), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHParencite] = ACTIONS(6043), + [anon_sym_BSLASHfootcite] = ACTIONS(6043), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6043), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6043), + [anon_sym_BSLASHtextcite] = ACTIONS(6043), + [anon_sym_BSLASHTextcite] = ACTIONS(6043), + [anon_sym_BSLASHsmartcite] = ACTIONS(6043), + [anon_sym_BSLASHSmartcite] = ACTIONS(6043), + [anon_sym_BSLASHsupercite] = ACTIONS(6043), + [anon_sym_BSLASHautocite] = ACTIONS(6043), + [anon_sym_BSLASHAutocite] = ACTIONS(6043), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6041), + [anon_sym_BSLASHvolcite] = ACTIONS(6043), + [anon_sym_BSLASHVolcite] = ACTIONS(6043), + [anon_sym_BSLASHpvolcite] = ACTIONS(6043), + [anon_sym_BSLASHPvolcite] = ACTIONS(6043), + [anon_sym_BSLASHfvolcite] = ACTIONS(6043), + [anon_sym_BSLASHftvolcite] = ACTIONS(6043), + [anon_sym_BSLASHsvolcite] = ACTIONS(6043), + [anon_sym_BSLASHSvolcite] = ACTIONS(6043), + [anon_sym_BSLASHtvolcite] = ACTIONS(6043), + [anon_sym_BSLASHTvolcite] = ACTIONS(6043), + [anon_sym_BSLASHavolcite] = ACTIONS(6043), + [anon_sym_BSLASHAvolcite] = ACTIONS(6043), + [anon_sym_BSLASHnotecite] = ACTIONS(6043), + [anon_sym_BSLASHNotecite] = ACTIONS(6043), + [anon_sym_BSLASHpnotecite] = ACTIONS(6043), + [anon_sym_BSLASHPnotecite] = ACTIONS(6043), + [anon_sym_BSLASHfnotecite] = ACTIONS(6043), + [anon_sym_BSLASHlabel] = ACTIONS(6043), + [anon_sym_BSLASHref] = ACTIONS(6043), + [anon_sym_BSLASHeqref] = ACTIONS(6043), + [anon_sym_BSLASHvref] = ACTIONS(6043), + [anon_sym_BSLASHVref] = ACTIONS(6043), + [anon_sym_BSLASHautoref] = ACTIONS(6043), + [anon_sym_BSLASHpageref] = ACTIONS(6043), + [anon_sym_BSLASHcref] = ACTIONS(6043), + [anon_sym_BSLASHCref] = ACTIONS(6043), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnameCref] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6043), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6043), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6043), + [anon_sym_BSLASHlabelcref] = ACTIONS(6043), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange] = ACTIONS(6043), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHCrefrange] = ACTIONS(6043), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6041), + [anon_sym_BSLASHnewlabel] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand] = ACTIONS(6043), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6043), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6043), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6041), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6043), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdef] = ACTIONS(6043), + [anon_sym_BSLASHlet] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6043), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6043), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6043), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6043), + [anon_sym_BSLASHgls] = ACTIONS(6043), + [anon_sym_BSLASHGls] = ACTIONS(6043), + [anon_sym_BSLASHGLS] = ACTIONS(6043), + [anon_sym_BSLASHglspl] = ACTIONS(6043), + [anon_sym_BSLASHGlspl] = ACTIONS(6043), + [anon_sym_BSLASHGLSpl] = ACTIONS(6043), + [anon_sym_BSLASHglsdisp] = ACTIONS(6043), + [anon_sym_BSLASHglslink] = ACTIONS(6043), + [anon_sym_BSLASHglstext] = ACTIONS(6043), + [anon_sym_BSLASHGlstext] = ACTIONS(6043), + [anon_sym_BSLASHGLStext] = ACTIONS(6043), + [anon_sym_BSLASHglsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6043), + [anon_sym_BSLASHglsplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSplural] = ACTIONS(6043), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6043), + [anon_sym_BSLASHglsname] = ACTIONS(6043), + [anon_sym_BSLASHGlsname] = ACTIONS(6043), + [anon_sym_BSLASHGLSname] = ACTIONS(6043), + [anon_sym_BSLASHglssymbol] = ACTIONS(6043), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6043), + [anon_sym_BSLASHglsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6043), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6043), + [anon_sym_BSLASHglsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6043), + [anon_sym_BSLASHglsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6043), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6043), + [anon_sym_BSLASHglsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6043), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6043), + [anon_sym_BSLASHglsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6043), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6043), + [anon_sym_BSLASHnewacronym] = ACTIONS(6043), + [anon_sym_BSLASHacrshort] = ACTIONS(6043), + [anon_sym_BSLASHAcrshort] = ACTIONS(6043), + [anon_sym_BSLASHACRshort] = ACTIONS(6043), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6043), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6043), + [anon_sym_BSLASHacrlong] = ACTIONS(6043), + [anon_sym_BSLASHAcrlong] = ACTIONS(6043), + [anon_sym_BSLASHACRlong] = ACTIONS(6043), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6043), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6043), + [anon_sym_BSLASHacrfull] = ACTIONS(6043), + [anon_sym_BSLASHAcrfull] = ACTIONS(6043), + [anon_sym_BSLASHACRfull] = ACTIONS(6043), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6043), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6043), + [anon_sym_BSLASHacs] = ACTIONS(6043), + [anon_sym_BSLASHAcs] = ACTIONS(6043), + [anon_sym_BSLASHacsp] = ACTIONS(6043), + [anon_sym_BSLASHAcsp] = ACTIONS(6043), + [anon_sym_BSLASHacl] = ACTIONS(6043), + [anon_sym_BSLASHAcl] = ACTIONS(6043), + [anon_sym_BSLASHaclp] = ACTIONS(6043), + [anon_sym_BSLASHAclp] = ACTIONS(6043), + [anon_sym_BSLASHacf] = ACTIONS(6043), + [anon_sym_BSLASHAcf] = ACTIONS(6043), + [anon_sym_BSLASHacfp] = ACTIONS(6043), + [anon_sym_BSLASHAcfp] = ACTIONS(6043), + [anon_sym_BSLASHac] = ACTIONS(6043), + [anon_sym_BSLASHAc] = ACTIONS(6043), + [anon_sym_BSLASHacp] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6043), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6043), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6043), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6043), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6043), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6043), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6043), + [anon_sym_BSLASHcolor] = ACTIONS(6043), + [anon_sym_BSLASHcolorbox] = ACTIONS(6043), + [anon_sym_BSLASHtextcolor] = ACTIONS(6043), + [anon_sym_BSLASHpagecolor] = ACTIONS(6043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6043), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6043), + [anon_sym_BSLASHtext] = ACTIONS(6043), + [anon_sym_BSLASHintertext] = ACTIONS(6043), + [anon_sym_shortintertext] = ACTIONS(6043), }, - [1545] = { - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5135), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [1430] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHbegin] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), }, - [1546] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), + [1431] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHbegin] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), }, - [1547] = { - [sym_command_name] = ACTIONS(5451), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5451), - [anon_sym_RBRACK] = ACTIONS(5449), - [anon_sym_COMMA] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_word] = ACTIONS(5451), - [sym_placeholder] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5451), - [anon_sym_DASH] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5451), - [anon_sym_CARET] = ACTIONS(5451), - [anon_sym__] = ACTIONS(5451), - [anon_sym_LT] = ACTIONS(5451), - [anon_sym_GT] = ACTIONS(5451), - [anon_sym_BANG] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(5451), - [anon_sym_COLON] = ACTIONS(5451), - [anon_sym_SQUOTE] = ACTIONS(5451), - [anon_sym_BSLASHusepackage] = ACTIONS(5451), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5451), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5451), - [anon_sym_BSLASHinclude] = ACTIONS(5451), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5451), - [anon_sym_BSLASHinput] = ACTIONS(5451), - [anon_sym_BSLASHsubfile] = ACTIONS(5451), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5451), - [anon_sym_BSLASHbibliography] = ACTIONS(5451), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5451), - [anon_sym_BSLASHincludesvg] = ACTIONS(5451), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5451), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5451), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5451), - [anon_sym_BSLASHimport] = ACTIONS(5451), - [anon_sym_BSLASHsubimport] = ACTIONS(5451), - [anon_sym_BSLASHinputfrom] = ACTIONS(5451), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5451), - [anon_sym_BSLASHincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5451), - [anon_sym_BSLASHcaption] = ACTIONS(5451), - [anon_sym_BSLASHcite] = ACTIONS(5451), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCite] = ACTIONS(5451), - [anon_sym_BSLASHnocite] = ACTIONS(5451), - [anon_sym_BSLASHcitet] = ACTIONS(5451), - [anon_sym_BSLASHcitep] = ACTIONS(5451), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteauthor] = ACTIONS(5451), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5451), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitetitle] = ACTIONS(5451), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteyear] = ACTIONS(5451), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5449), - [anon_sym_BSLASHcitedate] = ACTIONS(5451), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5449), - [anon_sym_BSLASHciteurl] = ACTIONS(5451), - [anon_sym_BSLASHfullcite] = ACTIONS(5451), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5451), - [anon_sym_BSLASHcitealt] = ACTIONS(5451), - [anon_sym_BSLASHcitealp] = ACTIONS(5451), - [anon_sym_BSLASHcitetext] = ACTIONS(5451), - [anon_sym_BSLASHparencite] = ACTIONS(5451), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHParencite] = ACTIONS(5451), - [anon_sym_BSLASHfootcite] = ACTIONS(5451), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5451), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5451), - [anon_sym_BSLASHtextcite] = ACTIONS(5451), - [anon_sym_BSLASHTextcite] = ACTIONS(5451), - [anon_sym_BSLASHsmartcite] = ACTIONS(5451), - [anon_sym_BSLASHSmartcite] = ACTIONS(5451), - [anon_sym_BSLASHsupercite] = ACTIONS(5451), - [anon_sym_BSLASHautocite] = ACTIONS(5451), - [anon_sym_BSLASHAutocite] = ACTIONS(5451), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5449), - [anon_sym_BSLASHvolcite] = ACTIONS(5451), - [anon_sym_BSLASHVolcite] = ACTIONS(5451), - [anon_sym_BSLASHpvolcite] = ACTIONS(5451), - [anon_sym_BSLASHPvolcite] = ACTIONS(5451), - [anon_sym_BSLASHfvolcite] = ACTIONS(5451), - [anon_sym_BSLASHftvolcite] = ACTIONS(5451), - [anon_sym_BSLASHsvolcite] = ACTIONS(5451), - [anon_sym_BSLASHSvolcite] = ACTIONS(5451), - [anon_sym_BSLASHtvolcite] = ACTIONS(5451), - [anon_sym_BSLASHTvolcite] = ACTIONS(5451), - [anon_sym_BSLASHavolcite] = ACTIONS(5451), - [anon_sym_BSLASHAvolcite] = ACTIONS(5451), - [anon_sym_BSLASHnotecite] = ACTIONS(5451), - [anon_sym_BSLASHNotecite] = ACTIONS(5451), - [anon_sym_BSLASHpnotecite] = ACTIONS(5451), - [anon_sym_BSLASHPnotecite] = ACTIONS(5451), - [anon_sym_BSLASHfnotecite] = ACTIONS(5451), - [anon_sym_BSLASHlabel] = ACTIONS(5451), - [anon_sym_BSLASHref] = ACTIONS(5451), - [anon_sym_BSLASHeqref] = ACTIONS(5451), - [anon_sym_BSLASHvref] = ACTIONS(5451), - [anon_sym_BSLASHVref] = ACTIONS(5451), - [anon_sym_BSLASHautoref] = ACTIONS(5451), - [anon_sym_BSLASHpageref] = ACTIONS(5451), - [anon_sym_BSLASHcref] = ACTIONS(5451), - [anon_sym_BSLASHCref] = ACTIONS(5451), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnameCref] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5451), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5451), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5451), - [anon_sym_BSLASHlabelcref] = ACTIONS(5451), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange] = ACTIONS(5451), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHCrefrange] = ACTIONS(5451), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5449), - [anon_sym_BSLASHnewlabel] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand] = ACTIONS(5451), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5451), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5451), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5449), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5451), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdef] = ACTIONS(5451), - [anon_sym_BSLASHlet] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5451), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5451), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5451), - [anon_sym_BSLASHgls] = ACTIONS(5451), - [anon_sym_BSLASHGls] = ACTIONS(5451), - [anon_sym_BSLASHGLS] = ACTIONS(5451), - [anon_sym_BSLASHglspl] = ACTIONS(5451), - [anon_sym_BSLASHGlspl] = ACTIONS(5451), - [anon_sym_BSLASHGLSpl] = ACTIONS(5451), - [anon_sym_BSLASHglsdisp] = ACTIONS(5451), - [anon_sym_BSLASHglslink] = ACTIONS(5451), - [anon_sym_BSLASHglstext] = ACTIONS(5451), - [anon_sym_BSLASHGlstext] = ACTIONS(5451), - [anon_sym_BSLASHGLStext] = ACTIONS(5451), - [anon_sym_BSLASHglsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5451), - [anon_sym_BSLASHglsplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSplural] = ACTIONS(5451), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5451), - [anon_sym_BSLASHglsname] = ACTIONS(5451), - [anon_sym_BSLASHGlsname] = ACTIONS(5451), - [anon_sym_BSLASHGLSname] = ACTIONS(5451), - [anon_sym_BSLASHglssymbol] = ACTIONS(5451), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5451), - [anon_sym_BSLASHglsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5451), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5451), - [anon_sym_BSLASHglsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5451), - [anon_sym_BSLASHglsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5451), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5451), - [anon_sym_BSLASHglsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5451), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5451), - [anon_sym_BSLASHglsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5451), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5451), - [anon_sym_BSLASHnewacronym] = ACTIONS(5451), - [anon_sym_BSLASHacrshort] = ACTIONS(5451), - [anon_sym_BSLASHAcrshort] = ACTIONS(5451), - [anon_sym_BSLASHACRshort] = ACTIONS(5451), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5451), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5451), - [anon_sym_BSLASHacrlong] = ACTIONS(5451), - [anon_sym_BSLASHAcrlong] = ACTIONS(5451), - [anon_sym_BSLASHACRlong] = ACTIONS(5451), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5451), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5451), - [anon_sym_BSLASHacrfull] = ACTIONS(5451), - [anon_sym_BSLASHAcrfull] = ACTIONS(5451), - [anon_sym_BSLASHACRfull] = ACTIONS(5451), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5451), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5451), - [anon_sym_BSLASHacs] = ACTIONS(5451), - [anon_sym_BSLASHAcs] = ACTIONS(5451), - [anon_sym_BSLASHacsp] = ACTIONS(5451), - [anon_sym_BSLASHAcsp] = ACTIONS(5451), - [anon_sym_BSLASHacl] = ACTIONS(5451), - [anon_sym_BSLASHAcl] = ACTIONS(5451), - [anon_sym_BSLASHaclp] = ACTIONS(5451), - [anon_sym_BSLASHAclp] = ACTIONS(5451), - [anon_sym_BSLASHacf] = ACTIONS(5451), - [anon_sym_BSLASHAcf] = ACTIONS(5451), - [anon_sym_BSLASHacfp] = ACTIONS(5451), - [anon_sym_BSLASHAcfp] = ACTIONS(5451), - [anon_sym_BSLASHac] = ACTIONS(5451), - [anon_sym_BSLASHAc] = ACTIONS(5451), - [anon_sym_BSLASHacp] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5451), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5451), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5451), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5451), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5451), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5451), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5451), - [anon_sym_BSLASHcolor] = ACTIONS(5451), - [anon_sym_BSLASHcolorbox] = ACTIONS(5451), - [anon_sym_BSLASHtextcolor] = ACTIONS(5451), - [anon_sym_BSLASHpagecolor] = ACTIONS(5451), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5451), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5451), + [1432] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHbegin] = ACTIONS(191), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), }, - [1548] = { - [sym_command_name] = ACTIONS(5447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5447), - [anon_sym_RBRACK] = ACTIONS(5445), - [anon_sym_COMMA] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(5445), - [anon_sym_RBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(5447), - [sym_placeholder] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_SLASH] = ACTIONS(5447), - [anon_sym_CARET] = ACTIONS(5447), - [anon_sym__] = ACTIONS(5447), - [anon_sym_LT] = ACTIONS(5447), - [anon_sym_GT] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_PIPE] = ACTIONS(5447), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_BSLASHusepackage] = ACTIONS(5447), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5447), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5447), - [anon_sym_BSLASHinclude] = ACTIONS(5447), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5447), - [anon_sym_BSLASHinput] = ACTIONS(5447), - [anon_sym_BSLASHsubfile] = ACTIONS(5447), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5447), - [anon_sym_BSLASHbibliography] = ACTIONS(5447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5447), - [anon_sym_BSLASHincludesvg] = ACTIONS(5447), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5447), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5447), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5447), - [anon_sym_BSLASHimport] = ACTIONS(5447), - [anon_sym_BSLASHsubimport] = ACTIONS(5447), - [anon_sym_BSLASHinputfrom] = ACTIONS(5447), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5447), - [anon_sym_BSLASHincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5447), - [anon_sym_BSLASHcaption] = ACTIONS(5447), - [anon_sym_BSLASHcite] = ACTIONS(5447), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCite] = ACTIONS(5447), - [anon_sym_BSLASHnocite] = ACTIONS(5447), - [anon_sym_BSLASHcitet] = ACTIONS(5447), - [anon_sym_BSLASHcitep] = ACTIONS(5447), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteauthor] = ACTIONS(5447), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5447), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitetitle] = ACTIONS(5447), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteyear] = ACTIONS(5447), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5445), - [anon_sym_BSLASHcitedate] = ACTIONS(5447), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5445), - [anon_sym_BSLASHciteurl] = ACTIONS(5447), - [anon_sym_BSLASHfullcite] = ACTIONS(5447), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5447), - [anon_sym_BSLASHcitealt] = ACTIONS(5447), - [anon_sym_BSLASHcitealp] = ACTIONS(5447), - [anon_sym_BSLASHcitetext] = ACTIONS(5447), - [anon_sym_BSLASHparencite] = ACTIONS(5447), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHParencite] = ACTIONS(5447), - [anon_sym_BSLASHfootcite] = ACTIONS(5447), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5447), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5447), - [anon_sym_BSLASHtextcite] = ACTIONS(5447), - [anon_sym_BSLASHTextcite] = ACTIONS(5447), - [anon_sym_BSLASHsmartcite] = ACTIONS(5447), - [anon_sym_BSLASHSmartcite] = ACTIONS(5447), - [anon_sym_BSLASHsupercite] = ACTIONS(5447), - [anon_sym_BSLASHautocite] = ACTIONS(5447), - [anon_sym_BSLASHAutocite] = ACTIONS(5447), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5445), - [anon_sym_BSLASHvolcite] = ACTIONS(5447), - [anon_sym_BSLASHVolcite] = ACTIONS(5447), - [anon_sym_BSLASHpvolcite] = ACTIONS(5447), - [anon_sym_BSLASHPvolcite] = ACTIONS(5447), - [anon_sym_BSLASHfvolcite] = ACTIONS(5447), - [anon_sym_BSLASHftvolcite] = ACTIONS(5447), - [anon_sym_BSLASHsvolcite] = ACTIONS(5447), - [anon_sym_BSLASHSvolcite] = ACTIONS(5447), - [anon_sym_BSLASHtvolcite] = ACTIONS(5447), - [anon_sym_BSLASHTvolcite] = ACTIONS(5447), - [anon_sym_BSLASHavolcite] = ACTIONS(5447), - [anon_sym_BSLASHAvolcite] = ACTIONS(5447), - [anon_sym_BSLASHnotecite] = ACTIONS(5447), - [anon_sym_BSLASHNotecite] = ACTIONS(5447), - [anon_sym_BSLASHpnotecite] = ACTIONS(5447), - [anon_sym_BSLASHPnotecite] = ACTIONS(5447), - [anon_sym_BSLASHfnotecite] = ACTIONS(5447), - [anon_sym_BSLASHlabel] = ACTIONS(5447), - [anon_sym_BSLASHref] = ACTIONS(5447), - [anon_sym_BSLASHeqref] = ACTIONS(5447), - [anon_sym_BSLASHvref] = ACTIONS(5447), - [anon_sym_BSLASHVref] = ACTIONS(5447), - [anon_sym_BSLASHautoref] = ACTIONS(5447), - [anon_sym_BSLASHpageref] = ACTIONS(5447), - [anon_sym_BSLASHcref] = ACTIONS(5447), - [anon_sym_BSLASHCref] = ACTIONS(5447), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnameCref] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5447), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5447), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5447), - [anon_sym_BSLASHlabelcref] = ACTIONS(5447), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange] = ACTIONS(5447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHCrefrange] = ACTIONS(5447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5445), - [anon_sym_BSLASHnewlabel] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand] = ACTIONS(5447), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5447), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5447), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5445), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5447), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdef] = ACTIONS(5447), - [anon_sym_BSLASHlet] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5447), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5447), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5447), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5447), - [anon_sym_BSLASHgls] = ACTIONS(5447), - [anon_sym_BSLASHGls] = ACTIONS(5447), - [anon_sym_BSLASHGLS] = ACTIONS(5447), - [anon_sym_BSLASHglspl] = ACTIONS(5447), - [anon_sym_BSLASHGlspl] = ACTIONS(5447), - [anon_sym_BSLASHGLSpl] = ACTIONS(5447), - [anon_sym_BSLASHglsdisp] = ACTIONS(5447), - [anon_sym_BSLASHglslink] = ACTIONS(5447), - [anon_sym_BSLASHglstext] = ACTIONS(5447), - [anon_sym_BSLASHGlstext] = ACTIONS(5447), - [anon_sym_BSLASHGLStext] = ACTIONS(5447), - [anon_sym_BSLASHglsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5447), - [anon_sym_BSLASHglsplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSplural] = ACTIONS(5447), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5447), - [anon_sym_BSLASHglsname] = ACTIONS(5447), - [anon_sym_BSLASHGlsname] = ACTIONS(5447), - [anon_sym_BSLASHGLSname] = ACTIONS(5447), - [anon_sym_BSLASHglssymbol] = ACTIONS(5447), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5447), - [anon_sym_BSLASHglsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5447), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5447), - [anon_sym_BSLASHglsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5447), - [anon_sym_BSLASHglsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5447), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5447), - [anon_sym_BSLASHglsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5447), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5447), - [anon_sym_BSLASHglsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5447), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5447), - [anon_sym_BSLASHnewacronym] = ACTIONS(5447), - [anon_sym_BSLASHacrshort] = ACTIONS(5447), - [anon_sym_BSLASHAcrshort] = ACTIONS(5447), - [anon_sym_BSLASHACRshort] = ACTIONS(5447), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5447), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5447), - [anon_sym_BSLASHacrlong] = ACTIONS(5447), - [anon_sym_BSLASHAcrlong] = ACTIONS(5447), - [anon_sym_BSLASHACRlong] = ACTIONS(5447), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5447), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5447), - [anon_sym_BSLASHacrfull] = ACTIONS(5447), - [anon_sym_BSLASHAcrfull] = ACTIONS(5447), - [anon_sym_BSLASHACRfull] = ACTIONS(5447), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5447), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5447), - [anon_sym_BSLASHacs] = ACTIONS(5447), - [anon_sym_BSLASHAcs] = ACTIONS(5447), - [anon_sym_BSLASHacsp] = ACTIONS(5447), - [anon_sym_BSLASHAcsp] = ACTIONS(5447), - [anon_sym_BSLASHacl] = ACTIONS(5447), - [anon_sym_BSLASHAcl] = ACTIONS(5447), - [anon_sym_BSLASHaclp] = ACTIONS(5447), - [anon_sym_BSLASHAclp] = ACTIONS(5447), - [anon_sym_BSLASHacf] = ACTIONS(5447), - [anon_sym_BSLASHAcf] = ACTIONS(5447), - [anon_sym_BSLASHacfp] = ACTIONS(5447), - [anon_sym_BSLASHAcfp] = ACTIONS(5447), - [anon_sym_BSLASHac] = ACTIONS(5447), - [anon_sym_BSLASHAc] = ACTIONS(5447), - [anon_sym_BSLASHacp] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5447), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5447), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5447), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5447), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5447), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5447), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5447), - [anon_sym_BSLASHcolor] = ACTIONS(5447), - [anon_sym_BSLASHcolorbox] = ACTIONS(5447), - [anon_sym_BSLASHtextcolor] = ACTIONS(5447), - [anon_sym_BSLASHpagecolor] = ACTIONS(5447), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5447), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5447), + [1433] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_EQ] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [1549] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), + [1434] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHbegin] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), }, - [1550] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [1435] = { + [sym_command_name] = ACTIONS(6057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6057), + [anon_sym_LPAREN] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(6055), + [anon_sym_RBRACK] = ACTIONS(6055), + [anon_sym_COMMA] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_LBRACE] = ACTIONS(6055), + [sym_word] = ACTIONS(6057), + [sym_placeholder] = ACTIONS(6055), + [anon_sym_PLUS] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_STAR] = ACTIONS(6057), + [anon_sym_SLASH] = ACTIONS(6057), + [anon_sym_CARET] = ACTIONS(6057), + [anon_sym__] = ACTIONS(6057), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_GT] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(6057), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_SQUOTE] = ACTIONS(6057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6055), + [anon_sym_BSLASHbegin] = ACTIONS(6057), + [anon_sym_BSLASHtitle] = ACTIONS(6057), + [anon_sym_BSLASHauthor] = ACTIONS(6057), + [anon_sym_BSLASHusepackage] = ACTIONS(6057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), + [anon_sym_BSLASHinclude] = ACTIONS(6057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), + [anon_sym_BSLASHinput] = ACTIONS(6057), + [anon_sym_BSLASHsubfile] = ACTIONS(6057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), + [anon_sym_BSLASHbibliography] = ACTIONS(6057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), + [anon_sym_BSLASHincludesvg] = ACTIONS(6057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), + [anon_sym_BSLASHimport] = ACTIONS(6057), + [anon_sym_BSLASHsubimport] = ACTIONS(6057), + [anon_sym_BSLASHinputfrom] = ACTIONS(6057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), + [anon_sym_BSLASHincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), + [anon_sym_BSLASHcaption] = ACTIONS(6057), + [anon_sym_BSLASHcite] = ACTIONS(6057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCite] = ACTIONS(6057), + [anon_sym_BSLASHnocite] = ACTIONS(6057), + [anon_sym_BSLASHcitet] = ACTIONS(6057), + [anon_sym_BSLASHcitep] = ACTIONS(6057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteauthor] = ACTIONS(6057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitetitle] = ACTIONS(6057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteyear] = ACTIONS(6057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), + [anon_sym_BSLASHcitedate] = ACTIONS(6057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), + [anon_sym_BSLASHciteurl] = ACTIONS(6057), + [anon_sym_BSLASHfullcite] = ACTIONS(6057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), + [anon_sym_BSLASHcitealt] = ACTIONS(6057), + [anon_sym_BSLASHcitealp] = ACTIONS(6057), + [anon_sym_BSLASHcitetext] = ACTIONS(6057), + [anon_sym_BSLASHparencite] = ACTIONS(6057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHParencite] = ACTIONS(6057), + [anon_sym_BSLASHfootcite] = ACTIONS(6057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), + [anon_sym_BSLASHtextcite] = ACTIONS(6057), + [anon_sym_BSLASHTextcite] = ACTIONS(6057), + [anon_sym_BSLASHsmartcite] = ACTIONS(6057), + [anon_sym_BSLASHSmartcite] = ACTIONS(6057), + [anon_sym_BSLASHsupercite] = ACTIONS(6057), + [anon_sym_BSLASHautocite] = ACTIONS(6057), + [anon_sym_BSLASHAutocite] = ACTIONS(6057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), + [anon_sym_BSLASHvolcite] = ACTIONS(6057), + [anon_sym_BSLASHVolcite] = ACTIONS(6057), + [anon_sym_BSLASHpvolcite] = ACTIONS(6057), + [anon_sym_BSLASHPvolcite] = ACTIONS(6057), + [anon_sym_BSLASHfvolcite] = ACTIONS(6057), + [anon_sym_BSLASHftvolcite] = ACTIONS(6057), + [anon_sym_BSLASHsvolcite] = ACTIONS(6057), + [anon_sym_BSLASHSvolcite] = ACTIONS(6057), + [anon_sym_BSLASHtvolcite] = ACTIONS(6057), + [anon_sym_BSLASHTvolcite] = ACTIONS(6057), + [anon_sym_BSLASHavolcite] = ACTIONS(6057), + [anon_sym_BSLASHAvolcite] = ACTIONS(6057), + [anon_sym_BSLASHnotecite] = ACTIONS(6057), + [anon_sym_BSLASHNotecite] = ACTIONS(6057), + [anon_sym_BSLASHpnotecite] = ACTIONS(6057), + [anon_sym_BSLASHPnotecite] = ACTIONS(6057), + [anon_sym_BSLASHfnotecite] = ACTIONS(6057), + [anon_sym_BSLASHlabel] = ACTIONS(6057), + [anon_sym_BSLASHref] = ACTIONS(6057), + [anon_sym_BSLASHeqref] = ACTIONS(6057), + [anon_sym_BSLASHvref] = ACTIONS(6057), + [anon_sym_BSLASHVref] = ACTIONS(6057), + [anon_sym_BSLASHautoref] = ACTIONS(6057), + [anon_sym_BSLASHpageref] = ACTIONS(6057), + [anon_sym_BSLASHcref] = ACTIONS(6057), + [anon_sym_BSLASHCref] = ACTIONS(6057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnameCref] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), + [anon_sym_BSLASHlabelcref] = ACTIONS(6057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange] = ACTIONS(6057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHCrefrange] = ACTIONS(6057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), + [anon_sym_BSLASHnewlabel] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand] = ACTIONS(6057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdef] = ACTIONS(6057), + [anon_sym_BSLASHlet] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), + [anon_sym_BSLASHgls] = ACTIONS(6057), + [anon_sym_BSLASHGls] = ACTIONS(6057), + [anon_sym_BSLASHGLS] = ACTIONS(6057), + [anon_sym_BSLASHglspl] = ACTIONS(6057), + [anon_sym_BSLASHGlspl] = ACTIONS(6057), + [anon_sym_BSLASHGLSpl] = ACTIONS(6057), + [anon_sym_BSLASHglsdisp] = ACTIONS(6057), + [anon_sym_BSLASHglslink] = ACTIONS(6057), + [anon_sym_BSLASHglstext] = ACTIONS(6057), + [anon_sym_BSLASHGlstext] = ACTIONS(6057), + [anon_sym_BSLASHGLStext] = ACTIONS(6057), + [anon_sym_BSLASHglsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), + [anon_sym_BSLASHglsplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSplural] = ACTIONS(6057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), + [anon_sym_BSLASHglsname] = ACTIONS(6057), + [anon_sym_BSLASHGlsname] = ACTIONS(6057), + [anon_sym_BSLASHGLSname] = ACTIONS(6057), + [anon_sym_BSLASHglssymbol] = ACTIONS(6057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), + [anon_sym_BSLASHglsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), + [anon_sym_BSLASHglsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), + [anon_sym_BSLASHglsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), + [anon_sym_BSLASHglsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), + [anon_sym_BSLASHglsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), + [anon_sym_BSLASHnewacronym] = ACTIONS(6057), + [anon_sym_BSLASHacrshort] = ACTIONS(6057), + [anon_sym_BSLASHAcrshort] = ACTIONS(6057), + [anon_sym_BSLASHACRshort] = ACTIONS(6057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), + [anon_sym_BSLASHacrlong] = ACTIONS(6057), + [anon_sym_BSLASHAcrlong] = ACTIONS(6057), + [anon_sym_BSLASHACRlong] = ACTIONS(6057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), + [anon_sym_BSLASHacrfull] = ACTIONS(6057), + [anon_sym_BSLASHAcrfull] = ACTIONS(6057), + [anon_sym_BSLASHACRfull] = ACTIONS(6057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), + [anon_sym_BSLASHacs] = ACTIONS(6057), + [anon_sym_BSLASHAcs] = ACTIONS(6057), + [anon_sym_BSLASHacsp] = ACTIONS(6057), + [anon_sym_BSLASHAcsp] = ACTIONS(6057), + [anon_sym_BSLASHacl] = ACTIONS(6057), + [anon_sym_BSLASHAcl] = ACTIONS(6057), + [anon_sym_BSLASHaclp] = ACTIONS(6057), + [anon_sym_BSLASHAclp] = ACTIONS(6057), + [anon_sym_BSLASHacf] = ACTIONS(6057), + [anon_sym_BSLASHAcf] = ACTIONS(6057), + [anon_sym_BSLASHacfp] = ACTIONS(6057), + [anon_sym_BSLASHAcfp] = ACTIONS(6057), + [anon_sym_BSLASHac] = ACTIONS(6057), + [anon_sym_BSLASHAc] = ACTIONS(6057), + [anon_sym_BSLASHacp] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), + [anon_sym_BSLASHcolor] = ACTIONS(6057), + [anon_sym_BSLASHcolorbox] = ACTIONS(6057), + [anon_sym_BSLASHtextcolor] = ACTIONS(6057), + [anon_sym_BSLASHpagecolor] = ACTIONS(6057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), + [anon_sym_BSLASHtext] = ACTIONS(6057), + [anon_sym_BSLASHintertext] = ACTIONS(6057), + [anon_sym_shortintertext] = ACTIONS(6057), }, - [1551] = { - [sym_command_name] = ACTIONS(5443), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5443), - [anon_sym_RBRACK] = ACTIONS(5441), - [anon_sym_COMMA] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_RBRACE] = ACTIONS(5441), - [sym_word] = ACTIONS(5443), - [sym_placeholder] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_CARET] = ACTIONS(5443), - [anon_sym__] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5443), - [anon_sym_GT] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(5443), - [anon_sym_COLON] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_BSLASHusepackage] = ACTIONS(5443), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5443), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5443), - [anon_sym_BSLASHinclude] = ACTIONS(5443), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5443), - [anon_sym_BSLASHinput] = ACTIONS(5443), - [anon_sym_BSLASHsubfile] = ACTIONS(5443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5443), - [anon_sym_BSLASHbibliography] = ACTIONS(5443), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5443), - [anon_sym_BSLASHincludesvg] = ACTIONS(5443), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5443), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5443), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5443), - [anon_sym_BSLASHimport] = ACTIONS(5443), - [anon_sym_BSLASHsubimport] = ACTIONS(5443), - [anon_sym_BSLASHinputfrom] = ACTIONS(5443), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5443), - [anon_sym_BSLASHincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5443), - [anon_sym_BSLASHcaption] = ACTIONS(5443), - [anon_sym_BSLASHcite] = ACTIONS(5443), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCite] = ACTIONS(5443), - [anon_sym_BSLASHnocite] = ACTIONS(5443), - [anon_sym_BSLASHcitet] = ACTIONS(5443), - [anon_sym_BSLASHcitep] = ACTIONS(5443), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteauthor] = ACTIONS(5443), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5443), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitetitle] = ACTIONS(5443), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteyear] = ACTIONS(5443), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5441), - [anon_sym_BSLASHcitedate] = ACTIONS(5443), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5441), - [anon_sym_BSLASHciteurl] = ACTIONS(5443), - [anon_sym_BSLASHfullcite] = ACTIONS(5443), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5443), - [anon_sym_BSLASHcitealt] = ACTIONS(5443), - [anon_sym_BSLASHcitealp] = ACTIONS(5443), - [anon_sym_BSLASHcitetext] = ACTIONS(5443), - [anon_sym_BSLASHparencite] = ACTIONS(5443), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHParencite] = ACTIONS(5443), - [anon_sym_BSLASHfootcite] = ACTIONS(5443), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5443), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5443), - [anon_sym_BSLASHtextcite] = ACTIONS(5443), - [anon_sym_BSLASHTextcite] = ACTIONS(5443), - [anon_sym_BSLASHsmartcite] = ACTIONS(5443), - [anon_sym_BSLASHSmartcite] = ACTIONS(5443), - [anon_sym_BSLASHsupercite] = ACTIONS(5443), - [anon_sym_BSLASHautocite] = ACTIONS(5443), - [anon_sym_BSLASHAutocite] = ACTIONS(5443), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5441), - [anon_sym_BSLASHvolcite] = ACTIONS(5443), - [anon_sym_BSLASHVolcite] = ACTIONS(5443), - [anon_sym_BSLASHpvolcite] = ACTIONS(5443), - [anon_sym_BSLASHPvolcite] = ACTIONS(5443), - [anon_sym_BSLASHfvolcite] = ACTIONS(5443), - [anon_sym_BSLASHftvolcite] = ACTIONS(5443), - [anon_sym_BSLASHsvolcite] = ACTIONS(5443), - [anon_sym_BSLASHSvolcite] = ACTIONS(5443), - [anon_sym_BSLASHtvolcite] = ACTIONS(5443), - [anon_sym_BSLASHTvolcite] = ACTIONS(5443), - [anon_sym_BSLASHavolcite] = ACTIONS(5443), - [anon_sym_BSLASHAvolcite] = ACTIONS(5443), - [anon_sym_BSLASHnotecite] = ACTIONS(5443), - [anon_sym_BSLASHNotecite] = ACTIONS(5443), - [anon_sym_BSLASHpnotecite] = ACTIONS(5443), - [anon_sym_BSLASHPnotecite] = ACTIONS(5443), - [anon_sym_BSLASHfnotecite] = ACTIONS(5443), - [anon_sym_BSLASHlabel] = ACTIONS(5443), - [anon_sym_BSLASHref] = ACTIONS(5443), - [anon_sym_BSLASHeqref] = ACTIONS(5443), - [anon_sym_BSLASHvref] = ACTIONS(5443), - [anon_sym_BSLASHVref] = ACTIONS(5443), - [anon_sym_BSLASHautoref] = ACTIONS(5443), - [anon_sym_BSLASHpageref] = ACTIONS(5443), - [anon_sym_BSLASHcref] = ACTIONS(5443), - [anon_sym_BSLASHCref] = ACTIONS(5443), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnameCref] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5443), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5443), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5443), - [anon_sym_BSLASHlabelcref] = ACTIONS(5443), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange] = ACTIONS(5443), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHCrefrange] = ACTIONS(5443), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5441), - [anon_sym_BSLASHnewlabel] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand] = ACTIONS(5443), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5443), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5443), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5441), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5443), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdef] = ACTIONS(5443), - [anon_sym_BSLASHlet] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5443), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5443), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5443), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5443), - [anon_sym_BSLASHgls] = ACTIONS(5443), - [anon_sym_BSLASHGls] = ACTIONS(5443), - [anon_sym_BSLASHGLS] = ACTIONS(5443), - [anon_sym_BSLASHglspl] = ACTIONS(5443), - [anon_sym_BSLASHGlspl] = ACTIONS(5443), - [anon_sym_BSLASHGLSpl] = ACTIONS(5443), - [anon_sym_BSLASHglsdisp] = ACTIONS(5443), - [anon_sym_BSLASHglslink] = ACTIONS(5443), - [anon_sym_BSLASHglstext] = ACTIONS(5443), - [anon_sym_BSLASHGlstext] = ACTIONS(5443), - [anon_sym_BSLASHGLStext] = ACTIONS(5443), - [anon_sym_BSLASHglsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5443), - [anon_sym_BSLASHglsplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSplural] = ACTIONS(5443), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5443), - [anon_sym_BSLASHglsname] = ACTIONS(5443), - [anon_sym_BSLASHGlsname] = ACTIONS(5443), - [anon_sym_BSLASHGLSname] = ACTIONS(5443), - [anon_sym_BSLASHglssymbol] = ACTIONS(5443), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5443), - [anon_sym_BSLASHglsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5443), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5443), - [anon_sym_BSLASHglsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5443), - [anon_sym_BSLASHglsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5443), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5443), - [anon_sym_BSLASHglsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5443), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5443), - [anon_sym_BSLASHglsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5443), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5443), - [anon_sym_BSLASHacrshort] = ACTIONS(5443), - [anon_sym_BSLASHAcrshort] = ACTIONS(5443), - [anon_sym_BSLASHACRshort] = ACTIONS(5443), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5443), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5443), - [anon_sym_BSLASHacrlong] = ACTIONS(5443), - [anon_sym_BSLASHAcrlong] = ACTIONS(5443), - [anon_sym_BSLASHACRlong] = ACTIONS(5443), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5443), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5443), - [anon_sym_BSLASHacrfull] = ACTIONS(5443), - [anon_sym_BSLASHAcrfull] = ACTIONS(5443), - [anon_sym_BSLASHACRfull] = ACTIONS(5443), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5443), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5443), - [anon_sym_BSLASHacs] = ACTIONS(5443), - [anon_sym_BSLASHAcs] = ACTIONS(5443), - [anon_sym_BSLASHacsp] = ACTIONS(5443), - [anon_sym_BSLASHAcsp] = ACTIONS(5443), - [anon_sym_BSLASHacl] = ACTIONS(5443), - [anon_sym_BSLASHAcl] = ACTIONS(5443), - [anon_sym_BSLASHaclp] = ACTIONS(5443), - [anon_sym_BSLASHAclp] = ACTIONS(5443), - [anon_sym_BSLASHacf] = ACTIONS(5443), - [anon_sym_BSLASHAcf] = ACTIONS(5443), - [anon_sym_BSLASHacfp] = ACTIONS(5443), - [anon_sym_BSLASHAcfp] = ACTIONS(5443), - [anon_sym_BSLASHac] = ACTIONS(5443), - [anon_sym_BSLASHAc] = ACTIONS(5443), - [anon_sym_BSLASHacp] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5443), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5443), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5443), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5443), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5443), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5443), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5443), - [anon_sym_BSLASHcolor] = ACTIONS(5443), - [anon_sym_BSLASHcolorbox] = ACTIONS(5443), - [anon_sym_BSLASHtextcolor] = ACTIONS(5443), - [anon_sym_BSLASHpagecolor] = ACTIONS(5443), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5443), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5443), + [1436] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHbegin] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), }, - [1552] = { - [sym_command_name] = ACTIONS(5439), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5439), - [anon_sym_RBRACK] = ACTIONS(5437), - [anon_sym_COMMA] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(5437), - [anon_sym_RBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(5439), - [sym_placeholder] = ACTIONS(5437), - [anon_sym_PLUS] = ACTIONS(5439), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_STAR] = ACTIONS(5439), - [anon_sym_SLASH] = ACTIONS(5439), - [anon_sym_CARET] = ACTIONS(5439), - [anon_sym__] = ACTIONS(5439), - [anon_sym_LT] = ACTIONS(5439), - [anon_sym_GT] = ACTIONS(5439), - [anon_sym_BANG] = ACTIONS(5439), - [anon_sym_PIPE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(5439), - [anon_sym_SQUOTE] = ACTIONS(5439), - [anon_sym_BSLASHusepackage] = ACTIONS(5439), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5439), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5439), - [anon_sym_BSLASHinclude] = ACTIONS(5439), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5439), - [anon_sym_BSLASHinput] = ACTIONS(5439), - [anon_sym_BSLASHsubfile] = ACTIONS(5439), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5439), - [anon_sym_BSLASHbibliography] = ACTIONS(5439), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5439), - [anon_sym_BSLASHincludesvg] = ACTIONS(5439), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5439), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5439), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5439), - [anon_sym_BSLASHimport] = ACTIONS(5439), - [anon_sym_BSLASHsubimport] = ACTIONS(5439), - [anon_sym_BSLASHinputfrom] = ACTIONS(5439), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5439), - [anon_sym_BSLASHincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5439), - [anon_sym_BSLASHcaption] = ACTIONS(5439), - [anon_sym_BSLASHcite] = ACTIONS(5439), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCite] = ACTIONS(5439), - [anon_sym_BSLASHnocite] = ACTIONS(5439), - [anon_sym_BSLASHcitet] = ACTIONS(5439), - [anon_sym_BSLASHcitep] = ACTIONS(5439), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteauthor] = ACTIONS(5439), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5439), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitetitle] = ACTIONS(5439), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteyear] = ACTIONS(5439), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5437), - [anon_sym_BSLASHcitedate] = ACTIONS(5439), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5437), - [anon_sym_BSLASHciteurl] = ACTIONS(5439), - [anon_sym_BSLASHfullcite] = ACTIONS(5439), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5439), - [anon_sym_BSLASHcitealt] = ACTIONS(5439), - [anon_sym_BSLASHcitealp] = ACTIONS(5439), - [anon_sym_BSLASHcitetext] = ACTIONS(5439), - [anon_sym_BSLASHparencite] = ACTIONS(5439), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHParencite] = ACTIONS(5439), - [anon_sym_BSLASHfootcite] = ACTIONS(5439), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5439), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5439), - [anon_sym_BSLASHtextcite] = ACTIONS(5439), - [anon_sym_BSLASHTextcite] = ACTIONS(5439), - [anon_sym_BSLASHsmartcite] = ACTIONS(5439), - [anon_sym_BSLASHSmartcite] = ACTIONS(5439), - [anon_sym_BSLASHsupercite] = ACTIONS(5439), - [anon_sym_BSLASHautocite] = ACTIONS(5439), - [anon_sym_BSLASHAutocite] = ACTIONS(5439), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5437), - [anon_sym_BSLASHvolcite] = ACTIONS(5439), - [anon_sym_BSLASHVolcite] = ACTIONS(5439), - [anon_sym_BSLASHpvolcite] = ACTIONS(5439), - [anon_sym_BSLASHPvolcite] = ACTIONS(5439), - [anon_sym_BSLASHfvolcite] = ACTIONS(5439), - [anon_sym_BSLASHftvolcite] = ACTIONS(5439), - [anon_sym_BSLASHsvolcite] = ACTIONS(5439), - [anon_sym_BSLASHSvolcite] = ACTIONS(5439), - [anon_sym_BSLASHtvolcite] = ACTIONS(5439), - [anon_sym_BSLASHTvolcite] = ACTIONS(5439), - [anon_sym_BSLASHavolcite] = ACTIONS(5439), - [anon_sym_BSLASHAvolcite] = ACTIONS(5439), - [anon_sym_BSLASHnotecite] = ACTIONS(5439), - [anon_sym_BSLASHNotecite] = ACTIONS(5439), - [anon_sym_BSLASHpnotecite] = ACTIONS(5439), - [anon_sym_BSLASHPnotecite] = ACTIONS(5439), - [anon_sym_BSLASHfnotecite] = ACTIONS(5439), - [anon_sym_BSLASHlabel] = ACTIONS(5439), - [anon_sym_BSLASHref] = ACTIONS(5439), - [anon_sym_BSLASHeqref] = ACTIONS(5439), - [anon_sym_BSLASHvref] = ACTIONS(5439), - [anon_sym_BSLASHVref] = ACTIONS(5439), - [anon_sym_BSLASHautoref] = ACTIONS(5439), - [anon_sym_BSLASHpageref] = ACTIONS(5439), - [anon_sym_BSLASHcref] = ACTIONS(5439), - [anon_sym_BSLASHCref] = ACTIONS(5439), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnameCref] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5439), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5439), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5439), - [anon_sym_BSLASHlabelcref] = ACTIONS(5439), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange] = ACTIONS(5439), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHCrefrange] = ACTIONS(5439), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5437), - [anon_sym_BSLASHnewlabel] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand] = ACTIONS(5439), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5439), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5439), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5437), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5439), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdef] = ACTIONS(5439), - [anon_sym_BSLASHlet] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5439), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5439), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5439), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5439), - [anon_sym_BSLASHgls] = ACTIONS(5439), - [anon_sym_BSLASHGls] = ACTIONS(5439), - [anon_sym_BSLASHGLS] = ACTIONS(5439), - [anon_sym_BSLASHglspl] = ACTIONS(5439), - [anon_sym_BSLASHGlspl] = ACTIONS(5439), - [anon_sym_BSLASHGLSpl] = ACTIONS(5439), - [anon_sym_BSLASHglsdisp] = ACTIONS(5439), - [anon_sym_BSLASHglslink] = ACTIONS(5439), - [anon_sym_BSLASHglstext] = ACTIONS(5439), - [anon_sym_BSLASHGlstext] = ACTIONS(5439), - [anon_sym_BSLASHGLStext] = ACTIONS(5439), - [anon_sym_BSLASHglsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5439), - [anon_sym_BSLASHglsplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSplural] = ACTIONS(5439), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5439), - [anon_sym_BSLASHglsname] = ACTIONS(5439), - [anon_sym_BSLASHGlsname] = ACTIONS(5439), - [anon_sym_BSLASHGLSname] = ACTIONS(5439), - [anon_sym_BSLASHglssymbol] = ACTIONS(5439), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5439), - [anon_sym_BSLASHglsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5439), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5439), - [anon_sym_BSLASHglsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5439), - [anon_sym_BSLASHglsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5439), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5439), - [anon_sym_BSLASHglsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5439), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5439), - [anon_sym_BSLASHglsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5439), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5439), - [anon_sym_BSLASHnewacronym] = ACTIONS(5439), - [anon_sym_BSLASHacrshort] = ACTIONS(5439), - [anon_sym_BSLASHAcrshort] = ACTIONS(5439), - [anon_sym_BSLASHACRshort] = ACTIONS(5439), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5439), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5439), - [anon_sym_BSLASHacrlong] = ACTIONS(5439), - [anon_sym_BSLASHAcrlong] = ACTIONS(5439), - [anon_sym_BSLASHACRlong] = ACTIONS(5439), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5439), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5439), - [anon_sym_BSLASHacrfull] = ACTIONS(5439), - [anon_sym_BSLASHAcrfull] = ACTIONS(5439), - [anon_sym_BSLASHACRfull] = ACTIONS(5439), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5439), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5439), - [anon_sym_BSLASHacs] = ACTIONS(5439), - [anon_sym_BSLASHAcs] = ACTIONS(5439), - [anon_sym_BSLASHacsp] = ACTIONS(5439), - [anon_sym_BSLASHAcsp] = ACTIONS(5439), - [anon_sym_BSLASHacl] = ACTIONS(5439), - [anon_sym_BSLASHAcl] = ACTIONS(5439), - [anon_sym_BSLASHaclp] = ACTIONS(5439), - [anon_sym_BSLASHAclp] = ACTIONS(5439), - [anon_sym_BSLASHacf] = ACTIONS(5439), - [anon_sym_BSLASHAcf] = ACTIONS(5439), - [anon_sym_BSLASHacfp] = ACTIONS(5439), - [anon_sym_BSLASHAcfp] = ACTIONS(5439), - [anon_sym_BSLASHac] = ACTIONS(5439), - [anon_sym_BSLASHAc] = ACTIONS(5439), - [anon_sym_BSLASHacp] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5439), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5439), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5439), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5439), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5439), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), - [anon_sym_BSLASHcolor] = ACTIONS(5439), - [anon_sym_BSLASHcolorbox] = ACTIONS(5439), - [anon_sym_BSLASHtextcolor] = ACTIONS(5439), - [anon_sym_BSLASHpagecolor] = ACTIONS(5439), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5439), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5439), + [1437] = { + [sym_command_name] = ACTIONS(5927), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5925), + [anon_sym_RPAREN] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5925), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5925), + [sym_word] = ACTIONS(5927), + [sym_placeholder] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_SLASH] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym__] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5927), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5927), + [anon_sym_PIPE] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5925), + [anon_sym_BSLASHbegin] = ACTIONS(5927), + [anon_sym_BSLASHtitle] = ACTIONS(5927), + [anon_sym_BSLASHauthor] = ACTIONS(5927), + [anon_sym_BSLASHusepackage] = ACTIONS(5927), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5927), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5927), + [anon_sym_BSLASHinclude] = ACTIONS(5927), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5927), + [anon_sym_BSLASHinput] = ACTIONS(5927), + [anon_sym_BSLASHsubfile] = ACTIONS(5927), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5927), + [anon_sym_BSLASHbibliography] = ACTIONS(5927), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5927), + [anon_sym_BSLASHincludesvg] = ACTIONS(5927), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5927), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5927), + [anon_sym_BSLASHimport] = ACTIONS(5927), + [anon_sym_BSLASHsubimport] = ACTIONS(5927), + [anon_sym_BSLASHinputfrom] = ACTIONS(5927), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5927), + [anon_sym_BSLASHincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5927), + [anon_sym_BSLASHcaption] = ACTIONS(5927), + [anon_sym_BSLASHcite] = ACTIONS(5927), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCite] = ACTIONS(5927), + [anon_sym_BSLASHnocite] = ACTIONS(5927), + [anon_sym_BSLASHcitet] = ACTIONS(5927), + [anon_sym_BSLASHcitep] = ACTIONS(5927), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteauthor] = ACTIONS(5927), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5927), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitetitle] = ACTIONS(5927), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteyear] = ACTIONS(5927), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5925), + [anon_sym_BSLASHcitedate] = ACTIONS(5927), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5925), + [anon_sym_BSLASHciteurl] = ACTIONS(5927), + [anon_sym_BSLASHfullcite] = ACTIONS(5927), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5927), + [anon_sym_BSLASHcitealt] = ACTIONS(5927), + [anon_sym_BSLASHcitealp] = ACTIONS(5927), + [anon_sym_BSLASHcitetext] = ACTIONS(5927), + [anon_sym_BSLASHparencite] = ACTIONS(5927), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHParencite] = ACTIONS(5927), + [anon_sym_BSLASHfootcite] = ACTIONS(5927), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5927), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5927), + [anon_sym_BSLASHtextcite] = ACTIONS(5927), + [anon_sym_BSLASHTextcite] = ACTIONS(5927), + [anon_sym_BSLASHsmartcite] = ACTIONS(5927), + [anon_sym_BSLASHSmartcite] = ACTIONS(5927), + [anon_sym_BSLASHsupercite] = ACTIONS(5927), + [anon_sym_BSLASHautocite] = ACTIONS(5927), + [anon_sym_BSLASHAutocite] = ACTIONS(5927), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5925), + [anon_sym_BSLASHvolcite] = ACTIONS(5927), + [anon_sym_BSLASHVolcite] = ACTIONS(5927), + [anon_sym_BSLASHpvolcite] = ACTIONS(5927), + [anon_sym_BSLASHPvolcite] = ACTIONS(5927), + [anon_sym_BSLASHfvolcite] = ACTIONS(5927), + [anon_sym_BSLASHftvolcite] = ACTIONS(5927), + [anon_sym_BSLASHsvolcite] = ACTIONS(5927), + [anon_sym_BSLASHSvolcite] = ACTIONS(5927), + [anon_sym_BSLASHtvolcite] = ACTIONS(5927), + [anon_sym_BSLASHTvolcite] = ACTIONS(5927), + [anon_sym_BSLASHavolcite] = ACTIONS(5927), + [anon_sym_BSLASHAvolcite] = ACTIONS(5927), + [anon_sym_BSLASHnotecite] = ACTIONS(5927), + [anon_sym_BSLASHNotecite] = ACTIONS(5927), + [anon_sym_BSLASHpnotecite] = ACTIONS(5927), + [anon_sym_BSLASHPnotecite] = ACTIONS(5927), + [anon_sym_BSLASHfnotecite] = ACTIONS(5927), + [anon_sym_BSLASHlabel] = ACTIONS(5927), + [anon_sym_BSLASHref] = ACTIONS(5927), + [anon_sym_BSLASHeqref] = ACTIONS(5927), + [anon_sym_BSLASHvref] = ACTIONS(5927), + [anon_sym_BSLASHVref] = ACTIONS(5927), + [anon_sym_BSLASHautoref] = ACTIONS(5927), + [anon_sym_BSLASHpageref] = ACTIONS(5927), + [anon_sym_BSLASHcref] = ACTIONS(5927), + [anon_sym_BSLASHCref] = ACTIONS(5927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnameCref] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5927), + [anon_sym_BSLASHlabelcref] = ACTIONS(5927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange] = ACTIONS(5927), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHCrefrange] = ACTIONS(5927), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5925), + [anon_sym_BSLASHnewlabel] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand] = ACTIONS(5927), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5927), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5927), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5925), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdef] = ACTIONS(5927), + [anon_sym_BSLASHlet] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5927), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5927), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5927), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5927), + [anon_sym_BSLASHgls] = ACTIONS(5927), + [anon_sym_BSLASHGls] = ACTIONS(5927), + [anon_sym_BSLASHGLS] = ACTIONS(5927), + [anon_sym_BSLASHglspl] = ACTIONS(5927), + [anon_sym_BSLASHGlspl] = ACTIONS(5927), + [anon_sym_BSLASHGLSpl] = ACTIONS(5927), + [anon_sym_BSLASHglsdisp] = ACTIONS(5927), + [anon_sym_BSLASHglslink] = ACTIONS(5927), + [anon_sym_BSLASHglstext] = ACTIONS(5927), + [anon_sym_BSLASHGlstext] = ACTIONS(5927), + [anon_sym_BSLASHGLStext] = ACTIONS(5927), + [anon_sym_BSLASHglsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5927), + [anon_sym_BSLASHglsplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSplural] = ACTIONS(5927), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5927), + [anon_sym_BSLASHglsname] = ACTIONS(5927), + [anon_sym_BSLASHGlsname] = ACTIONS(5927), + [anon_sym_BSLASHGLSname] = ACTIONS(5927), + [anon_sym_BSLASHglssymbol] = ACTIONS(5927), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5927), + [anon_sym_BSLASHglsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5927), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5927), + [anon_sym_BSLASHglsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5927), + [anon_sym_BSLASHglsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5927), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5927), + [anon_sym_BSLASHglsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5927), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5927), + [anon_sym_BSLASHglsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5927), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5927), + [anon_sym_BSLASHnewacronym] = ACTIONS(5927), + [anon_sym_BSLASHacrshort] = ACTIONS(5927), + [anon_sym_BSLASHAcrshort] = ACTIONS(5927), + [anon_sym_BSLASHACRshort] = ACTIONS(5927), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5927), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5927), + [anon_sym_BSLASHacrlong] = ACTIONS(5927), + [anon_sym_BSLASHAcrlong] = ACTIONS(5927), + [anon_sym_BSLASHACRlong] = ACTIONS(5927), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5927), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5927), + [anon_sym_BSLASHacrfull] = ACTIONS(5927), + [anon_sym_BSLASHAcrfull] = ACTIONS(5927), + [anon_sym_BSLASHACRfull] = ACTIONS(5927), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5927), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5927), + [anon_sym_BSLASHacs] = ACTIONS(5927), + [anon_sym_BSLASHAcs] = ACTIONS(5927), + [anon_sym_BSLASHacsp] = ACTIONS(5927), + [anon_sym_BSLASHAcsp] = ACTIONS(5927), + [anon_sym_BSLASHacl] = ACTIONS(5927), + [anon_sym_BSLASHAcl] = ACTIONS(5927), + [anon_sym_BSLASHaclp] = ACTIONS(5927), + [anon_sym_BSLASHAclp] = ACTIONS(5927), + [anon_sym_BSLASHacf] = ACTIONS(5927), + [anon_sym_BSLASHAcf] = ACTIONS(5927), + [anon_sym_BSLASHacfp] = ACTIONS(5927), + [anon_sym_BSLASHAcfp] = ACTIONS(5927), + [anon_sym_BSLASHac] = ACTIONS(5927), + [anon_sym_BSLASHAc] = ACTIONS(5927), + [anon_sym_BSLASHacp] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5927), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5927), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5927), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5927), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5927), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5927), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5927), + [anon_sym_BSLASHcolor] = ACTIONS(5927), + [anon_sym_BSLASHcolorbox] = ACTIONS(5927), + [anon_sym_BSLASHtextcolor] = ACTIONS(5927), + [anon_sym_BSLASHpagecolor] = ACTIONS(5927), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5927), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5927), + [anon_sym_BSLASHtext] = ACTIONS(5927), + [anon_sym_BSLASHintertext] = ACTIONS(5927), + [anon_sym_shortintertext] = ACTIONS(5927), }, - [1553] = { - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5101), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [1438] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHbegin] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), }, - [1554] = { - [sym_command_name] = ACTIONS(5435), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5435), - [anon_sym_RBRACK] = ACTIONS(5433), - [anon_sym_COMMA] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_RBRACE] = ACTIONS(5433), - [sym_word] = ACTIONS(5435), - [sym_placeholder] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_CARET] = ACTIONS(5435), - [anon_sym__] = ACTIONS(5435), - [anon_sym_LT] = ACTIONS(5435), - [anon_sym_GT] = ACTIONS(5435), - [anon_sym_BANG] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(5435), - [anon_sym_COLON] = ACTIONS(5435), - [anon_sym_SQUOTE] = ACTIONS(5435), - [anon_sym_BSLASHusepackage] = ACTIONS(5435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5435), - [anon_sym_BSLASHinclude] = ACTIONS(5435), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5435), - [anon_sym_BSLASHinput] = ACTIONS(5435), - [anon_sym_BSLASHsubfile] = ACTIONS(5435), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5435), - [anon_sym_BSLASHbibliography] = ACTIONS(5435), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5435), - [anon_sym_BSLASHincludesvg] = ACTIONS(5435), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5435), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5435), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5435), - [anon_sym_BSLASHimport] = ACTIONS(5435), - [anon_sym_BSLASHsubimport] = ACTIONS(5435), - [anon_sym_BSLASHinputfrom] = ACTIONS(5435), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5435), - [anon_sym_BSLASHincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5435), - [anon_sym_BSLASHcaption] = ACTIONS(5435), - [anon_sym_BSLASHcite] = ACTIONS(5435), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCite] = ACTIONS(5435), - [anon_sym_BSLASHnocite] = ACTIONS(5435), - [anon_sym_BSLASHcitet] = ACTIONS(5435), - [anon_sym_BSLASHcitep] = ACTIONS(5435), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteauthor] = ACTIONS(5435), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5435), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitetitle] = ACTIONS(5435), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteyear] = ACTIONS(5435), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5433), - [anon_sym_BSLASHcitedate] = ACTIONS(5435), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5433), - [anon_sym_BSLASHciteurl] = ACTIONS(5435), - [anon_sym_BSLASHfullcite] = ACTIONS(5435), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5435), - [anon_sym_BSLASHcitealt] = ACTIONS(5435), - [anon_sym_BSLASHcitealp] = ACTIONS(5435), - [anon_sym_BSLASHcitetext] = ACTIONS(5435), - [anon_sym_BSLASHparencite] = ACTIONS(5435), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHParencite] = ACTIONS(5435), - [anon_sym_BSLASHfootcite] = ACTIONS(5435), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5435), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5435), - [anon_sym_BSLASHtextcite] = ACTIONS(5435), - [anon_sym_BSLASHTextcite] = ACTIONS(5435), - [anon_sym_BSLASHsmartcite] = ACTIONS(5435), - [anon_sym_BSLASHSmartcite] = ACTIONS(5435), - [anon_sym_BSLASHsupercite] = ACTIONS(5435), - [anon_sym_BSLASHautocite] = ACTIONS(5435), - [anon_sym_BSLASHAutocite] = ACTIONS(5435), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5433), - [anon_sym_BSLASHvolcite] = ACTIONS(5435), - [anon_sym_BSLASHVolcite] = ACTIONS(5435), - [anon_sym_BSLASHpvolcite] = ACTIONS(5435), - [anon_sym_BSLASHPvolcite] = ACTIONS(5435), - [anon_sym_BSLASHfvolcite] = ACTIONS(5435), - [anon_sym_BSLASHftvolcite] = ACTIONS(5435), - [anon_sym_BSLASHsvolcite] = ACTIONS(5435), - [anon_sym_BSLASHSvolcite] = ACTIONS(5435), - [anon_sym_BSLASHtvolcite] = ACTIONS(5435), - [anon_sym_BSLASHTvolcite] = ACTIONS(5435), - [anon_sym_BSLASHavolcite] = ACTIONS(5435), - [anon_sym_BSLASHAvolcite] = ACTIONS(5435), - [anon_sym_BSLASHnotecite] = ACTIONS(5435), - [anon_sym_BSLASHNotecite] = ACTIONS(5435), - [anon_sym_BSLASHpnotecite] = ACTIONS(5435), - [anon_sym_BSLASHPnotecite] = ACTIONS(5435), - [anon_sym_BSLASHfnotecite] = ACTIONS(5435), - [anon_sym_BSLASHlabel] = ACTIONS(5435), - [anon_sym_BSLASHref] = ACTIONS(5435), - [anon_sym_BSLASHeqref] = ACTIONS(5435), - [anon_sym_BSLASHvref] = ACTIONS(5435), - [anon_sym_BSLASHVref] = ACTIONS(5435), - [anon_sym_BSLASHautoref] = ACTIONS(5435), - [anon_sym_BSLASHpageref] = ACTIONS(5435), - [anon_sym_BSLASHcref] = ACTIONS(5435), - [anon_sym_BSLASHCref] = ACTIONS(5435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnameCref] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5435), - [anon_sym_BSLASHlabelcref] = ACTIONS(5435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange] = ACTIONS(5435), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHCrefrange] = ACTIONS(5435), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5433), - [anon_sym_BSLASHnewlabel] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand] = ACTIONS(5435), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5435), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5435), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5433), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5435), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdef] = ACTIONS(5435), - [anon_sym_BSLASHlet] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5435), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5435), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5435), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5435), - [anon_sym_BSLASHgls] = ACTIONS(5435), - [anon_sym_BSLASHGls] = ACTIONS(5435), - [anon_sym_BSLASHGLS] = ACTIONS(5435), - [anon_sym_BSLASHglspl] = ACTIONS(5435), - [anon_sym_BSLASHGlspl] = ACTIONS(5435), - [anon_sym_BSLASHGLSpl] = ACTIONS(5435), - [anon_sym_BSLASHglsdisp] = ACTIONS(5435), - [anon_sym_BSLASHglslink] = ACTIONS(5435), - [anon_sym_BSLASHglstext] = ACTIONS(5435), - [anon_sym_BSLASHGlstext] = ACTIONS(5435), - [anon_sym_BSLASHGLStext] = ACTIONS(5435), - [anon_sym_BSLASHglsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5435), - [anon_sym_BSLASHglsplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSplural] = ACTIONS(5435), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5435), - [anon_sym_BSLASHglsname] = ACTIONS(5435), - [anon_sym_BSLASHGlsname] = ACTIONS(5435), - [anon_sym_BSLASHGLSname] = ACTIONS(5435), - [anon_sym_BSLASHglssymbol] = ACTIONS(5435), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5435), - [anon_sym_BSLASHglsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5435), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5435), - [anon_sym_BSLASHglsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5435), - [anon_sym_BSLASHglsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5435), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5435), - [anon_sym_BSLASHglsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5435), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5435), - [anon_sym_BSLASHglsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5435), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5435), - [anon_sym_BSLASHnewacronym] = ACTIONS(5435), - [anon_sym_BSLASHacrshort] = ACTIONS(5435), - [anon_sym_BSLASHAcrshort] = ACTIONS(5435), - [anon_sym_BSLASHACRshort] = ACTIONS(5435), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5435), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5435), - [anon_sym_BSLASHacrlong] = ACTIONS(5435), - [anon_sym_BSLASHAcrlong] = ACTIONS(5435), - [anon_sym_BSLASHACRlong] = ACTIONS(5435), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5435), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5435), - [anon_sym_BSLASHacrfull] = ACTIONS(5435), - [anon_sym_BSLASHAcrfull] = ACTIONS(5435), - [anon_sym_BSLASHACRfull] = ACTIONS(5435), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5435), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5435), - [anon_sym_BSLASHacs] = ACTIONS(5435), - [anon_sym_BSLASHAcs] = ACTIONS(5435), - [anon_sym_BSLASHacsp] = ACTIONS(5435), - [anon_sym_BSLASHAcsp] = ACTIONS(5435), - [anon_sym_BSLASHacl] = ACTIONS(5435), - [anon_sym_BSLASHAcl] = ACTIONS(5435), - [anon_sym_BSLASHaclp] = ACTIONS(5435), - [anon_sym_BSLASHAclp] = ACTIONS(5435), - [anon_sym_BSLASHacf] = ACTIONS(5435), - [anon_sym_BSLASHAcf] = ACTIONS(5435), - [anon_sym_BSLASHacfp] = ACTIONS(5435), - [anon_sym_BSLASHAcfp] = ACTIONS(5435), - [anon_sym_BSLASHac] = ACTIONS(5435), - [anon_sym_BSLASHAc] = ACTIONS(5435), - [anon_sym_BSLASHacp] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5435), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5435), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5435), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5435), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5435), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5435), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5435), - [anon_sym_BSLASHcolor] = ACTIONS(5435), - [anon_sym_BSLASHcolorbox] = ACTIONS(5435), - [anon_sym_BSLASHtextcolor] = ACTIONS(5435), - [anon_sym_BSLASHpagecolor] = ACTIONS(5435), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5435), + [1439] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHbegin] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), }, - [1555] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5097), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [1440] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHbegin] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), }, - [1556] = { - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5093), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [1441] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHbegin] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), }, - [1557] = { - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5089), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [1442] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHbegin] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), }, - [1558] = { - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5065), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [1443] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHbegin] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), }, - [1559] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5371), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [1444] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHbegin] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), }, - [1560] = { - [sym_command_name] = ACTIONS(5379), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(5377), - [anon_sym_RBRACE] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [sym_placeholder] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5379), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_CARET] = ACTIONS(5379), - [anon_sym__] = ACTIONS(5379), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_SQUOTE] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5379), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5379), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5379), - [anon_sym_BSLASHinclude] = ACTIONS(5379), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5379), - [anon_sym_BSLASHinput] = ACTIONS(5379), - [anon_sym_BSLASHsubfile] = ACTIONS(5379), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5379), - [anon_sym_BSLASHbibliography] = ACTIONS(5379), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5379), - [anon_sym_BSLASHincludesvg] = ACTIONS(5379), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5379), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5379), - [anon_sym_BSLASHimport] = ACTIONS(5379), - [anon_sym_BSLASHsubimport] = ACTIONS(5379), - [anon_sym_BSLASHinputfrom] = ACTIONS(5379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5379), - [anon_sym_BSLASHincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5379), - [anon_sym_BSLASHcaption] = ACTIONS(5379), - [anon_sym_BSLASHcite] = ACTIONS(5379), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCite] = ACTIONS(5379), - [anon_sym_BSLASHnocite] = ACTIONS(5379), - [anon_sym_BSLASHcitet] = ACTIONS(5379), - [anon_sym_BSLASHcitep] = ACTIONS(5379), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteauthor] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitetitle] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteyear] = ACTIONS(5379), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5377), - [anon_sym_BSLASHcitedate] = ACTIONS(5379), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5377), - [anon_sym_BSLASHciteurl] = ACTIONS(5379), - [anon_sym_BSLASHfullcite] = ACTIONS(5379), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5379), - [anon_sym_BSLASHcitealt] = ACTIONS(5379), - [anon_sym_BSLASHcitealp] = ACTIONS(5379), - [anon_sym_BSLASHcitetext] = ACTIONS(5379), - [anon_sym_BSLASHparencite] = ACTIONS(5379), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHParencite] = ACTIONS(5379), - [anon_sym_BSLASHfootcite] = ACTIONS(5379), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5379), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5379), - [anon_sym_BSLASHtextcite] = ACTIONS(5379), - [anon_sym_BSLASHTextcite] = ACTIONS(5379), - [anon_sym_BSLASHsmartcite] = ACTIONS(5379), - [anon_sym_BSLASHSmartcite] = ACTIONS(5379), - [anon_sym_BSLASHsupercite] = ACTIONS(5379), - [anon_sym_BSLASHautocite] = ACTIONS(5379), - [anon_sym_BSLASHAutocite] = ACTIONS(5379), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5377), - [anon_sym_BSLASHvolcite] = ACTIONS(5379), - [anon_sym_BSLASHVolcite] = ACTIONS(5379), - [anon_sym_BSLASHpvolcite] = ACTIONS(5379), - [anon_sym_BSLASHPvolcite] = ACTIONS(5379), - [anon_sym_BSLASHfvolcite] = ACTIONS(5379), - [anon_sym_BSLASHftvolcite] = ACTIONS(5379), - [anon_sym_BSLASHsvolcite] = ACTIONS(5379), - [anon_sym_BSLASHSvolcite] = ACTIONS(5379), - [anon_sym_BSLASHtvolcite] = ACTIONS(5379), - [anon_sym_BSLASHTvolcite] = ACTIONS(5379), - [anon_sym_BSLASHavolcite] = ACTIONS(5379), - [anon_sym_BSLASHAvolcite] = ACTIONS(5379), - [anon_sym_BSLASHnotecite] = ACTIONS(5379), - [anon_sym_BSLASHNotecite] = ACTIONS(5379), - [anon_sym_BSLASHpnotecite] = ACTIONS(5379), - [anon_sym_BSLASHPnotecite] = ACTIONS(5379), - [anon_sym_BSLASHfnotecite] = ACTIONS(5379), - [anon_sym_BSLASHlabel] = ACTIONS(5379), - [anon_sym_BSLASHref] = ACTIONS(5379), - [anon_sym_BSLASHeqref] = ACTIONS(5379), - [anon_sym_BSLASHvref] = ACTIONS(5379), - [anon_sym_BSLASHVref] = ACTIONS(5379), - [anon_sym_BSLASHautoref] = ACTIONS(5379), - [anon_sym_BSLASHpageref] = ACTIONS(5379), - [anon_sym_BSLASHcref] = ACTIONS(5379), - [anon_sym_BSLASHCref] = ACTIONS(5379), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnameCref] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5379), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5379), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5379), - [anon_sym_BSLASHlabelcref] = ACTIONS(5379), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange] = ACTIONS(5379), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHCrefrange] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5377), - [anon_sym_BSLASHnewlabel] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand] = ACTIONS(5379), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5377), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdef] = ACTIONS(5379), - [anon_sym_BSLASHlet] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5379), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5379), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5379), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5379), - [anon_sym_BSLASHgls] = ACTIONS(5379), - [anon_sym_BSLASHGls] = ACTIONS(5379), - [anon_sym_BSLASHGLS] = ACTIONS(5379), - [anon_sym_BSLASHglspl] = ACTIONS(5379), - [anon_sym_BSLASHGlspl] = ACTIONS(5379), - [anon_sym_BSLASHGLSpl] = ACTIONS(5379), - [anon_sym_BSLASHglsdisp] = ACTIONS(5379), - [anon_sym_BSLASHglslink] = ACTIONS(5379), - [anon_sym_BSLASHglstext] = ACTIONS(5379), - [anon_sym_BSLASHGlstext] = ACTIONS(5379), - [anon_sym_BSLASHGLStext] = ACTIONS(5379), - [anon_sym_BSLASHglsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5379), - [anon_sym_BSLASHglsplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSplural] = ACTIONS(5379), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5379), - [anon_sym_BSLASHglsname] = ACTIONS(5379), - [anon_sym_BSLASHGlsname] = ACTIONS(5379), - [anon_sym_BSLASHGLSname] = ACTIONS(5379), - [anon_sym_BSLASHglssymbol] = ACTIONS(5379), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5379), - [anon_sym_BSLASHglsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5379), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5379), - [anon_sym_BSLASHglsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5379), - [anon_sym_BSLASHglsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5379), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5379), - [anon_sym_BSLASHglsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5379), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5379), - [anon_sym_BSLASHglsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5379), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5379), - [anon_sym_BSLASHnewacronym] = ACTIONS(5379), - [anon_sym_BSLASHacrshort] = ACTIONS(5379), - [anon_sym_BSLASHAcrshort] = ACTIONS(5379), - [anon_sym_BSLASHACRshort] = ACTIONS(5379), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5379), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5379), - [anon_sym_BSLASHacrlong] = ACTIONS(5379), - [anon_sym_BSLASHAcrlong] = ACTIONS(5379), - [anon_sym_BSLASHACRlong] = ACTIONS(5379), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5379), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5379), - [anon_sym_BSLASHacrfull] = ACTIONS(5379), - [anon_sym_BSLASHAcrfull] = ACTIONS(5379), - [anon_sym_BSLASHACRfull] = ACTIONS(5379), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5379), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5379), - [anon_sym_BSLASHacs] = ACTIONS(5379), - [anon_sym_BSLASHAcs] = ACTIONS(5379), - [anon_sym_BSLASHacsp] = ACTIONS(5379), - [anon_sym_BSLASHAcsp] = ACTIONS(5379), - [anon_sym_BSLASHacl] = ACTIONS(5379), - [anon_sym_BSLASHAcl] = ACTIONS(5379), - [anon_sym_BSLASHaclp] = ACTIONS(5379), - [anon_sym_BSLASHAclp] = ACTIONS(5379), - [anon_sym_BSLASHacf] = ACTIONS(5379), - [anon_sym_BSLASHAcf] = ACTIONS(5379), - [anon_sym_BSLASHacfp] = ACTIONS(5379), - [anon_sym_BSLASHAcfp] = ACTIONS(5379), - [anon_sym_BSLASHac] = ACTIONS(5379), - [anon_sym_BSLASHAc] = ACTIONS(5379), - [anon_sym_BSLASHacp] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5379), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5379), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5379), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5379), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5379), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5377), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5379), - [anon_sym_BSLASHcolor] = ACTIONS(5379), - [anon_sym_BSLASHcolorbox] = ACTIONS(5379), - [anon_sym_BSLASHtextcolor] = ACTIONS(5379), - [anon_sym_BSLASHpagecolor] = ACTIONS(5379), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5379), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5379), + [1445] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHbegin] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), }, - [1561] = { - [sym_command_name] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_RBRACE] = ACTIONS(5267), - [sym_word] = ACTIONS(5269), - [sym_placeholder] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_CARET] = ACTIONS(5269), - [anon_sym__] = ACTIONS(5269), - [anon_sym_LT] = ACTIONS(5269), - [anon_sym_GT] = ACTIONS(5269), - [anon_sym_BANG] = ACTIONS(5269), - [anon_sym_PIPE] = ACTIONS(5269), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_SQUOTE] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), - [anon_sym_BSLASHinclude] = ACTIONS(5269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), - [anon_sym_BSLASHinput] = ACTIONS(5269), - [anon_sym_BSLASHsubfile] = ACTIONS(5269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), - [anon_sym_BSLASHbibliography] = ACTIONS(5269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), - [anon_sym_BSLASHincludesvg] = ACTIONS(5269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), - [anon_sym_BSLASHimport] = ACTIONS(5269), - [anon_sym_BSLASHsubimport] = ACTIONS(5269), - [anon_sym_BSLASHinputfrom] = ACTIONS(5269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), - [anon_sym_BSLASHincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), - [anon_sym_BSLASHcaption] = ACTIONS(5269), - [anon_sym_BSLASHcite] = ACTIONS(5269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCite] = ACTIONS(5269), - [anon_sym_BSLASHnocite] = ACTIONS(5269), - [anon_sym_BSLASHcitet] = ACTIONS(5269), - [anon_sym_BSLASHcitep] = ACTIONS(5269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteyear] = ACTIONS(5269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), - [anon_sym_BSLASHcitedate] = ACTIONS(5269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), - [anon_sym_BSLASHciteurl] = ACTIONS(5269), - [anon_sym_BSLASHfullcite] = ACTIONS(5269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), - [anon_sym_BSLASHcitealt] = ACTIONS(5269), - [anon_sym_BSLASHcitealp] = ACTIONS(5269), - [anon_sym_BSLASHcitetext] = ACTIONS(5269), - [anon_sym_BSLASHparencite] = ACTIONS(5269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHParencite] = ACTIONS(5269), - [anon_sym_BSLASHfootcite] = ACTIONS(5269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), - [anon_sym_BSLASHtextcite] = ACTIONS(5269), - [anon_sym_BSLASHTextcite] = ACTIONS(5269), - [anon_sym_BSLASHsmartcite] = ACTIONS(5269), - [anon_sym_BSLASHSmartcite] = ACTIONS(5269), - [anon_sym_BSLASHsupercite] = ACTIONS(5269), - [anon_sym_BSLASHautocite] = ACTIONS(5269), - [anon_sym_BSLASHAutocite] = ACTIONS(5269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), - [anon_sym_BSLASHvolcite] = ACTIONS(5269), - [anon_sym_BSLASHVolcite] = ACTIONS(5269), - [anon_sym_BSLASHpvolcite] = ACTIONS(5269), - [anon_sym_BSLASHPvolcite] = ACTIONS(5269), - [anon_sym_BSLASHfvolcite] = ACTIONS(5269), - [anon_sym_BSLASHftvolcite] = ACTIONS(5269), - [anon_sym_BSLASHsvolcite] = ACTIONS(5269), - [anon_sym_BSLASHSvolcite] = ACTIONS(5269), - [anon_sym_BSLASHtvolcite] = ACTIONS(5269), - [anon_sym_BSLASHTvolcite] = ACTIONS(5269), - [anon_sym_BSLASHavolcite] = ACTIONS(5269), - [anon_sym_BSLASHAvolcite] = ACTIONS(5269), - [anon_sym_BSLASHnotecite] = ACTIONS(5269), - [anon_sym_BSLASHNotecite] = ACTIONS(5269), - [anon_sym_BSLASHpnotecite] = ACTIONS(5269), - [anon_sym_BSLASHPnotecite] = ACTIONS(5269), - [anon_sym_BSLASHfnotecite] = ACTIONS(5269), - [anon_sym_BSLASHlabel] = ACTIONS(5269), - [anon_sym_BSLASHref] = ACTIONS(5269), - [anon_sym_BSLASHeqref] = ACTIONS(5269), - [anon_sym_BSLASHvref] = ACTIONS(5269), - [anon_sym_BSLASHVref] = ACTIONS(5269), - [anon_sym_BSLASHautoref] = ACTIONS(5269), - [anon_sym_BSLASHpageref] = ACTIONS(5269), - [anon_sym_BSLASHcref] = ACTIONS(5269), - [anon_sym_BSLASHCref] = ACTIONS(5269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnameCref] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), - [anon_sym_BSLASHlabelcref] = ACTIONS(5269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange] = ACTIONS(5269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), - [anon_sym_BSLASHnewlabel] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand] = ACTIONS(5269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdef] = ACTIONS(5269), - [anon_sym_BSLASHlet] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), - [anon_sym_BSLASHgls] = ACTIONS(5269), - [anon_sym_BSLASHGls] = ACTIONS(5269), - [anon_sym_BSLASHGLS] = ACTIONS(5269), - [anon_sym_BSLASHglspl] = ACTIONS(5269), - [anon_sym_BSLASHGlspl] = ACTIONS(5269), - [anon_sym_BSLASHGLSpl] = ACTIONS(5269), - [anon_sym_BSLASHglsdisp] = ACTIONS(5269), - [anon_sym_BSLASHglslink] = ACTIONS(5269), - [anon_sym_BSLASHglstext] = ACTIONS(5269), - [anon_sym_BSLASHGlstext] = ACTIONS(5269), - [anon_sym_BSLASHGLStext] = ACTIONS(5269), - [anon_sym_BSLASHglsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), - [anon_sym_BSLASHglsplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSplural] = ACTIONS(5269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), - [anon_sym_BSLASHglsname] = ACTIONS(5269), - [anon_sym_BSLASHGlsname] = ACTIONS(5269), - [anon_sym_BSLASHGLSname] = ACTIONS(5269), - [anon_sym_BSLASHglssymbol] = ACTIONS(5269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), - [anon_sym_BSLASHglsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), - [anon_sym_BSLASHglsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), - [anon_sym_BSLASHglsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), - [anon_sym_BSLASHglsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), - [anon_sym_BSLASHglsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), - [anon_sym_BSLASHnewacronym] = ACTIONS(5269), - [anon_sym_BSLASHacrshort] = ACTIONS(5269), - [anon_sym_BSLASHAcrshort] = ACTIONS(5269), - [anon_sym_BSLASHACRshort] = ACTIONS(5269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), - [anon_sym_BSLASHacrlong] = ACTIONS(5269), - [anon_sym_BSLASHAcrlong] = ACTIONS(5269), - [anon_sym_BSLASHACRlong] = ACTIONS(5269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), - [anon_sym_BSLASHacrfull] = ACTIONS(5269), - [anon_sym_BSLASHAcrfull] = ACTIONS(5269), - [anon_sym_BSLASHACRfull] = ACTIONS(5269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), - [anon_sym_BSLASHacs] = ACTIONS(5269), - [anon_sym_BSLASHAcs] = ACTIONS(5269), - [anon_sym_BSLASHacsp] = ACTIONS(5269), - [anon_sym_BSLASHAcsp] = ACTIONS(5269), - [anon_sym_BSLASHacl] = ACTIONS(5269), - [anon_sym_BSLASHAcl] = ACTIONS(5269), - [anon_sym_BSLASHaclp] = ACTIONS(5269), - [anon_sym_BSLASHAclp] = ACTIONS(5269), - [anon_sym_BSLASHacf] = ACTIONS(5269), - [anon_sym_BSLASHAcf] = ACTIONS(5269), - [anon_sym_BSLASHacfp] = ACTIONS(5269), - [anon_sym_BSLASHAcfp] = ACTIONS(5269), - [anon_sym_BSLASHac] = ACTIONS(5269), - [anon_sym_BSLASHAc] = ACTIONS(5269), - [anon_sym_BSLASHacp] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), - [anon_sym_BSLASHcolor] = ACTIONS(5269), - [anon_sym_BSLASHcolorbox] = ACTIONS(5269), - [anon_sym_BSLASHtextcolor] = ACTIONS(5269), - [anon_sym_BSLASHpagecolor] = ACTIONS(5269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [1446] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHbegin] = ACTIONS(5937), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), }, - [1562] = { - [sym_command_name] = ACTIONS(5415), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5415), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5415), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5415), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym__] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5415), - [anon_sym_GT] = ACTIONS(5415), - [anon_sym_BANG] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_SQUOTE] = ACTIONS(5415), - [anon_sym_BSLASHusepackage] = ACTIONS(5415), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5415), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5415), - [anon_sym_BSLASHinclude] = ACTIONS(5415), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5415), - [anon_sym_BSLASHinput] = ACTIONS(5415), - [anon_sym_BSLASHsubfile] = ACTIONS(5415), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5415), - [anon_sym_BSLASHbibliography] = ACTIONS(5415), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5415), - [anon_sym_BSLASHincludesvg] = ACTIONS(5415), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5415), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5415), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5415), - [anon_sym_BSLASHimport] = ACTIONS(5415), - [anon_sym_BSLASHsubimport] = ACTIONS(5415), - [anon_sym_BSLASHinputfrom] = ACTIONS(5415), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5415), - [anon_sym_BSLASHincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5415), - [anon_sym_BSLASHcaption] = ACTIONS(5415), - [anon_sym_BSLASHcite] = ACTIONS(5415), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5415), - [anon_sym_BSLASHnocite] = ACTIONS(5415), - [anon_sym_BSLASHcitet] = ACTIONS(5415), - [anon_sym_BSLASHcitep] = ACTIONS(5415), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5415), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5415), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5415), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5415), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5415), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5415), - [anon_sym_BSLASHfullcite] = ACTIONS(5415), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5415), - [anon_sym_BSLASHcitealt] = ACTIONS(5415), - [anon_sym_BSLASHcitealp] = ACTIONS(5415), - [anon_sym_BSLASHcitetext] = ACTIONS(5415), - [anon_sym_BSLASHparencite] = ACTIONS(5415), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5415), - [anon_sym_BSLASHfootcite] = ACTIONS(5415), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5415), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5415), - [anon_sym_BSLASHtextcite] = ACTIONS(5415), - [anon_sym_BSLASHTextcite] = ACTIONS(5415), - [anon_sym_BSLASHsmartcite] = ACTIONS(5415), - [anon_sym_BSLASHSmartcite] = ACTIONS(5415), - [anon_sym_BSLASHsupercite] = ACTIONS(5415), - [anon_sym_BSLASHautocite] = ACTIONS(5415), - [anon_sym_BSLASHAutocite] = ACTIONS(5415), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5415), - [anon_sym_BSLASHVolcite] = ACTIONS(5415), - [anon_sym_BSLASHpvolcite] = ACTIONS(5415), - [anon_sym_BSLASHPvolcite] = ACTIONS(5415), - [anon_sym_BSLASHfvolcite] = ACTIONS(5415), - [anon_sym_BSLASHftvolcite] = ACTIONS(5415), - [anon_sym_BSLASHsvolcite] = ACTIONS(5415), - [anon_sym_BSLASHSvolcite] = ACTIONS(5415), - [anon_sym_BSLASHtvolcite] = ACTIONS(5415), - [anon_sym_BSLASHTvolcite] = ACTIONS(5415), - [anon_sym_BSLASHavolcite] = ACTIONS(5415), - [anon_sym_BSLASHAvolcite] = ACTIONS(5415), - [anon_sym_BSLASHnotecite] = ACTIONS(5415), - [anon_sym_BSLASHNotecite] = ACTIONS(5415), - [anon_sym_BSLASHpnotecite] = ACTIONS(5415), - [anon_sym_BSLASHPnotecite] = ACTIONS(5415), - [anon_sym_BSLASHfnotecite] = ACTIONS(5415), - [anon_sym_BSLASHlabel] = ACTIONS(5415), - [anon_sym_BSLASHref] = ACTIONS(5415), - [anon_sym_BSLASHeqref] = ACTIONS(5415), - [anon_sym_BSLASHvref] = ACTIONS(5415), - [anon_sym_BSLASHVref] = ACTIONS(5415), - [anon_sym_BSLASHautoref] = ACTIONS(5415), - [anon_sym_BSLASHpageref] = ACTIONS(5415), - [anon_sym_BSLASHcref] = ACTIONS(5415), - [anon_sym_BSLASHCref] = ACTIONS(5415), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnameCref] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5415), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5415), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5415), - [anon_sym_BSLASHlabelcref] = ACTIONS(5415), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange] = ACTIONS(5415), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5415), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand] = ACTIONS(5415), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5415), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5415), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5415), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5415), - [anon_sym_BSLASHlet] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5415), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5415), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5415), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5415), - [anon_sym_BSLASHgls] = ACTIONS(5415), - [anon_sym_BSLASHGls] = ACTIONS(5415), - [anon_sym_BSLASHGLS] = ACTIONS(5415), - [anon_sym_BSLASHglspl] = ACTIONS(5415), - [anon_sym_BSLASHGlspl] = ACTIONS(5415), - [anon_sym_BSLASHGLSpl] = ACTIONS(5415), - [anon_sym_BSLASHglsdisp] = ACTIONS(5415), - [anon_sym_BSLASHglslink] = ACTIONS(5415), - [anon_sym_BSLASHglstext] = ACTIONS(5415), - [anon_sym_BSLASHGlstext] = ACTIONS(5415), - [anon_sym_BSLASHGLStext] = ACTIONS(5415), - [anon_sym_BSLASHglsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5415), - [anon_sym_BSLASHglsplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSplural] = ACTIONS(5415), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5415), - [anon_sym_BSLASHglsname] = ACTIONS(5415), - [anon_sym_BSLASHGlsname] = ACTIONS(5415), - [anon_sym_BSLASHGLSname] = ACTIONS(5415), - [anon_sym_BSLASHglssymbol] = ACTIONS(5415), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5415), - [anon_sym_BSLASHglsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5415), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5415), - [anon_sym_BSLASHglsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5415), - [anon_sym_BSLASHglsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5415), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5415), - [anon_sym_BSLASHglsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5415), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5415), - [anon_sym_BSLASHglsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5415), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5415), - [anon_sym_BSLASHnewacronym] = ACTIONS(5415), - [anon_sym_BSLASHacrshort] = ACTIONS(5415), - [anon_sym_BSLASHAcrshort] = ACTIONS(5415), - [anon_sym_BSLASHACRshort] = ACTIONS(5415), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5415), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5415), - [anon_sym_BSLASHacrlong] = ACTIONS(5415), - [anon_sym_BSLASHAcrlong] = ACTIONS(5415), - [anon_sym_BSLASHACRlong] = ACTIONS(5415), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5415), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5415), - [anon_sym_BSLASHacrfull] = ACTIONS(5415), - [anon_sym_BSLASHAcrfull] = ACTIONS(5415), - [anon_sym_BSLASHACRfull] = ACTIONS(5415), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5415), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5415), - [anon_sym_BSLASHacs] = ACTIONS(5415), - [anon_sym_BSLASHAcs] = ACTIONS(5415), - [anon_sym_BSLASHacsp] = ACTIONS(5415), - [anon_sym_BSLASHAcsp] = ACTIONS(5415), - [anon_sym_BSLASHacl] = ACTIONS(5415), - [anon_sym_BSLASHAcl] = ACTIONS(5415), - [anon_sym_BSLASHaclp] = ACTIONS(5415), - [anon_sym_BSLASHAclp] = ACTIONS(5415), - [anon_sym_BSLASHacf] = ACTIONS(5415), - [anon_sym_BSLASHAcf] = ACTIONS(5415), - [anon_sym_BSLASHacfp] = ACTIONS(5415), - [anon_sym_BSLASHAcfp] = ACTIONS(5415), - [anon_sym_BSLASHac] = ACTIONS(5415), - [anon_sym_BSLASHAc] = ACTIONS(5415), - [anon_sym_BSLASHacp] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5415), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5415), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5415), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5415), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5415), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5415), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5415), - [anon_sym_BSLASHcolor] = ACTIONS(5415), - [anon_sym_BSLASHcolorbox] = ACTIONS(5415), - [anon_sym_BSLASHtextcolor] = ACTIONS(5415), - [anon_sym_BSLASHpagecolor] = ACTIONS(5415), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5415), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5415), + [1447] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHbegin] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), }, - [1563] = { - [sym_command_name] = ACTIONS(5075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [sym_word] = ACTIONS(5075), - [sym_placeholder] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym__] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5075), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5075), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5075), - [anon_sym_BSLASHinclude] = ACTIONS(5075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5075), - [anon_sym_BSLASHinput] = ACTIONS(5075), - [anon_sym_BSLASHsubfile] = ACTIONS(5075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5075), - [anon_sym_BSLASHbibliography] = ACTIONS(5075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5075), - [anon_sym_BSLASHincludesvg] = ACTIONS(5075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5075), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5075), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5075), - [anon_sym_BSLASHimport] = ACTIONS(5075), - [anon_sym_BSLASHsubimport] = ACTIONS(5075), - [anon_sym_BSLASHinputfrom] = ACTIONS(5075), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5075), - [anon_sym_BSLASHincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5075), - [anon_sym_BSLASHcaption] = ACTIONS(5075), - [anon_sym_BSLASHcite] = ACTIONS(5075), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCite] = ACTIONS(5075), - [anon_sym_BSLASHnocite] = ACTIONS(5075), - [anon_sym_BSLASHcitet] = ACTIONS(5075), - [anon_sym_BSLASHcitep] = ACTIONS(5075), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteyear] = ACTIONS(5075), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5073), - [anon_sym_BSLASHcitedate] = ACTIONS(5075), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5073), - [anon_sym_BSLASHciteurl] = ACTIONS(5075), - [anon_sym_BSLASHfullcite] = ACTIONS(5075), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5075), - [anon_sym_BSLASHcitealt] = ACTIONS(5075), - [anon_sym_BSLASHcitealp] = ACTIONS(5075), - [anon_sym_BSLASHcitetext] = ACTIONS(5075), - [anon_sym_BSLASHparencite] = ACTIONS(5075), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHParencite] = ACTIONS(5075), - [anon_sym_BSLASHfootcite] = ACTIONS(5075), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5075), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5075), - [anon_sym_BSLASHtextcite] = ACTIONS(5075), - [anon_sym_BSLASHTextcite] = ACTIONS(5075), - [anon_sym_BSLASHsmartcite] = ACTIONS(5075), - [anon_sym_BSLASHSmartcite] = ACTIONS(5075), - [anon_sym_BSLASHsupercite] = ACTIONS(5075), - [anon_sym_BSLASHautocite] = ACTIONS(5075), - [anon_sym_BSLASHAutocite] = ACTIONS(5075), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5073), - [anon_sym_BSLASHvolcite] = ACTIONS(5075), - [anon_sym_BSLASHVolcite] = ACTIONS(5075), - [anon_sym_BSLASHpvolcite] = ACTIONS(5075), - [anon_sym_BSLASHPvolcite] = ACTIONS(5075), - [anon_sym_BSLASHfvolcite] = ACTIONS(5075), - [anon_sym_BSLASHftvolcite] = ACTIONS(5075), - [anon_sym_BSLASHsvolcite] = ACTIONS(5075), - [anon_sym_BSLASHSvolcite] = ACTIONS(5075), - [anon_sym_BSLASHtvolcite] = ACTIONS(5075), - [anon_sym_BSLASHTvolcite] = ACTIONS(5075), - [anon_sym_BSLASHavolcite] = ACTIONS(5075), - [anon_sym_BSLASHAvolcite] = ACTIONS(5075), - [anon_sym_BSLASHnotecite] = ACTIONS(5075), - [anon_sym_BSLASHNotecite] = ACTIONS(5075), - [anon_sym_BSLASHpnotecite] = ACTIONS(5075), - [anon_sym_BSLASHPnotecite] = ACTIONS(5075), - [anon_sym_BSLASHfnotecite] = ACTIONS(5075), - [anon_sym_BSLASHlabel] = ACTIONS(5075), - [anon_sym_BSLASHref] = ACTIONS(5075), - [anon_sym_BSLASHeqref] = ACTIONS(5075), - [anon_sym_BSLASHvref] = ACTIONS(5075), - [anon_sym_BSLASHVref] = ACTIONS(5075), - [anon_sym_BSLASHautoref] = ACTIONS(5075), - [anon_sym_BSLASHpageref] = ACTIONS(5075), - [anon_sym_BSLASHcref] = ACTIONS(5075), - [anon_sym_BSLASHCref] = ACTIONS(5075), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnameCref] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5075), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5075), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5075), - [anon_sym_BSLASHlabelcref] = ACTIONS(5075), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange] = ACTIONS(5075), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5073), - [anon_sym_BSLASHnewlabel] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand] = ACTIONS(5075), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdef] = ACTIONS(5075), - [anon_sym_BSLASHlet] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5075), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5075), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5075), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5075), - [anon_sym_BSLASHgls] = ACTIONS(5075), - [anon_sym_BSLASHGls] = ACTIONS(5075), - [anon_sym_BSLASHGLS] = ACTIONS(5075), - [anon_sym_BSLASHglspl] = ACTIONS(5075), - [anon_sym_BSLASHGlspl] = ACTIONS(5075), - [anon_sym_BSLASHGLSpl] = ACTIONS(5075), - [anon_sym_BSLASHglsdisp] = ACTIONS(5075), - [anon_sym_BSLASHglslink] = ACTIONS(5075), - [anon_sym_BSLASHglstext] = ACTIONS(5075), - [anon_sym_BSLASHGlstext] = ACTIONS(5075), - [anon_sym_BSLASHGLStext] = ACTIONS(5075), - [anon_sym_BSLASHglsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5075), - [anon_sym_BSLASHglsplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSplural] = ACTIONS(5075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5075), - [anon_sym_BSLASHglsname] = ACTIONS(5075), - [anon_sym_BSLASHGlsname] = ACTIONS(5075), - [anon_sym_BSLASHGLSname] = ACTIONS(5075), - [anon_sym_BSLASHglssymbol] = ACTIONS(5075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5075), - [anon_sym_BSLASHglsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5075), - [anon_sym_BSLASHglsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5075), - [anon_sym_BSLASHglsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5075), - [anon_sym_BSLASHglsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5075), - [anon_sym_BSLASHglsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5075), - [anon_sym_BSLASHnewacronym] = ACTIONS(5075), - [anon_sym_BSLASHacrshort] = ACTIONS(5075), - [anon_sym_BSLASHAcrshort] = ACTIONS(5075), - [anon_sym_BSLASHACRshort] = ACTIONS(5075), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5075), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5075), - [anon_sym_BSLASHacrlong] = ACTIONS(5075), - [anon_sym_BSLASHAcrlong] = ACTIONS(5075), - [anon_sym_BSLASHACRlong] = ACTIONS(5075), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5075), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5075), - [anon_sym_BSLASHacrfull] = ACTIONS(5075), - [anon_sym_BSLASHAcrfull] = ACTIONS(5075), - [anon_sym_BSLASHACRfull] = ACTIONS(5075), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5075), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5075), - [anon_sym_BSLASHacs] = ACTIONS(5075), - [anon_sym_BSLASHAcs] = ACTIONS(5075), - [anon_sym_BSLASHacsp] = ACTIONS(5075), - [anon_sym_BSLASHAcsp] = ACTIONS(5075), - [anon_sym_BSLASHacl] = ACTIONS(5075), - [anon_sym_BSLASHAcl] = ACTIONS(5075), - [anon_sym_BSLASHaclp] = ACTIONS(5075), - [anon_sym_BSLASHAclp] = ACTIONS(5075), - [anon_sym_BSLASHacf] = ACTIONS(5075), - [anon_sym_BSLASHAcf] = ACTIONS(5075), - [anon_sym_BSLASHacfp] = ACTIONS(5075), - [anon_sym_BSLASHAcfp] = ACTIONS(5075), - [anon_sym_BSLASHac] = ACTIONS(5075), - [anon_sym_BSLASHAc] = ACTIONS(5075), - [anon_sym_BSLASHacp] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5075), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5075), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5075), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5075), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5075), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5075), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5075), - [anon_sym_BSLASHcolor] = ACTIONS(5075), - [anon_sym_BSLASHcolorbox] = ACTIONS(5075), - [anon_sym_BSLASHtextcolor] = ACTIONS(5075), - [anon_sym_BSLASHpagecolor] = ACTIONS(5075), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5075), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5075), + [1448] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHbegin] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), }, - [1564] = { - [sym_command_name] = ACTIONS(5455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5455), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_RBRACE] = ACTIONS(5453), - [sym_word] = ACTIONS(5455), - [sym_placeholder] = ACTIONS(5453), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym__] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_BANG] = ACTIONS(5455), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_SQUOTE] = ACTIONS(5455), - [anon_sym_BSLASHusepackage] = ACTIONS(5455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5455), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5455), - [anon_sym_BSLASHbibliography] = ACTIONS(5455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5455), - [anon_sym_BSLASHincludesvg] = ACTIONS(5455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5455), - [anon_sym_BSLASHimport] = ACTIONS(5455), - [anon_sym_BSLASHsubimport] = ACTIONS(5455), - [anon_sym_BSLASHinputfrom] = ACTIONS(5455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5455), - [anon_sym_BSLASHincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5455), - [anon_sym_BSLASHcaption] = ACTIONS(5455), - [anon_sym_BSLASHcite] = ACTIONS(5455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCite] = ACTIONS(5455), - [anon_sym_BSLASHnocite] = ACTIONS(5455), - [anon_sym_BSLASHcitet] = ACTIONS(5455), - [anon_sym_BSLASHcitep] = ACTIONS(5455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteauthor] = ACTIONS(5455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitetitle] = ACTIONS(5455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteyear] = ACTIONS(5455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5453), - [anon_sym_BSLASHcitedate] = ACTIONS(5455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5453), - [anon_sym_BSLASHciteurl] = ACTIONS(5455), - [anon_sym_BSLASHfullcite] = ACTIONS(5455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5455), - [anon_sym_BSLASHcitealt] = ACTIONS(5455), - [anon_sym_BSLASHcitealp] = ACTIONS(5455), - [anon_sym_BSLASHcitetext] = ACTIONS(5455), - [anon_sym_BSLASHparencite] = ACTIONS(5455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHParencite] = ACTIONS(5455), - [anon_sym_BSLASHfootcite] = ACTIONS(5455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5455), - [anon_sym_BSLASHtextcite] = ACTIONS(5455), - [anon_sym_BSLASHTextcite] = ACTIONS(5455), - [anon_sym_BSLASHsmartcite] = ACTIONS(5455), - [anon_sym_BSLASHSmartcite] = ACTIONS(5455), - [anon_sym_BSLASHsupercite] = ACTIONS(5455), - [anon_sym_BSLASHautocite] = ACTIONS(5455), - [anon_sym_BSLASHAutocite] = ACTIONS(5455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5453), - [anon_sym_BSLASHvolcite] = ACTIONS(5455), - [anon_sym_BSLASHVolcite] = ACTIONS(5455), - [anon_sym_BSLASHpvolcite] = ACTIONS(5455), - [anon_sym_BSLASHPvolcite] = ACTIONS(5455), - [anon_sym_BSLASHfvolcite] = ACTIONS(5455), - [anon_sym_BSLASHftvolcite] = ACTIONS(5455), - [anon_sym_BSLASHsvolcite] = ACTIONS(5455), - [anon_sym_BSLASHSvolcite] = ACTIONS(5455), - [anon_sym_BSLASHtvolcite] = ACTIONS(5455), - [anon_sym_BSLASHTvolcite] = ACTIONS(5455), - [anon_sym_BSLASHavolcite] = ACTIONS(5455), - [anon_sym_BSLASHAvolcite] = ACTIONS(5455), - [anon_sym_BSLASHnotecite] = ACTIONS(5455), - [anon_sym_BSLASHNotecite] = ACTIONS(5455), - [anon_sym_BSLASHpnotecite] = ACTIONS(5455), - [anon_sym_BSLASHPnotecite] = ACTIONS(5455), - [anon_sym_BSLASHfnotecite] = ACTIONS(5455), - [anon_sym_BSLASHlabel] = ACTIONS(5455), - [anon_sym_BSLASHref] = ACTIONS(5455), - [anon_sym_BSLASHeqref] = ACTIONS(5455), - [anon_sym_BSLASHvref] = ACTIONS(5455), - [anon_sym_BSLASHVref] = ACTIONS(5455), - [anon_sym_BSLASHautoref] = ACTIONS(5455), - [anon_sym_BSLASHpageref] = ACTIONS(5455), - [anon_sym_BSLASHcref] = ACTIONS(5455), - [anon_sym_BSLASHCref] = ACTIONS(5455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnameCref] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5455), - [anon_sym_BSLASHlabelcref] = ACTIONS(5455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange] = ACTIONS(5455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHCrefrange] = ACTIONS(5455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5453), - [anon_sym_BSLASHnewlabel] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand] = ACTIONS(5455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdef] = ACTIONS(5455), - [anon_sym_BSLASHlet] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5455), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5455), - [anon_sym_BSLASHgls] = ACTIONS(5455), - [anon_sym_BSLASHGls] = ACTIONS(5455), - [anon_sym_BSLASHGLS] = ACTIONS(5455), - [anon_sym_BSLASHglspl] = ACTIONS(5455), - [anon_sym_BSLASHGlspl] = ACTIONS(5455), - [anon_sym_BSLASHGLSpl] = ACTIONS(5455), - [anon_sym_BSLASHglsdisp] = ACTIONS(5455), - [anon_sym_BSLASHglslink] = ACTIONS(5455), - [anon_sym_BSLASHglstext] = ACTIONS(5455), - [anon_sym_BSLASHGlstext] = ACTIONS(5455), - [anon_sym_BSLASHGLStext] = ACTIONS(5455), - [anon_sym_BSLASHglsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5455), - [anon_sym_BSLASHglsplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSplural] = ACTIONS(5455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5455), - [anon_sym_BSLASHglsname] = ACTIONS(5455), - [anon_sym_BSLASHGlsname] = ACTIONS(5455), - [anon_sym_BSLASHGLSname] = ACTIONS(5455), - [anon_sym_BSLASHglssymbol] = ACTIONS(5455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5455), - [anon_sym_BSLASHglsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5455), - [anon_sym_BSLASHglsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5455), - [anon_sym_BSLASHglsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5455), - [anon_sym_BSLASHglsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5455), - [anon_sym_BSLASHglsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5455), - [anon_sym_BSLASHnewacronym] = ACTIONS(5455), - [anon_sym_BSLASHacrshort] = ACTIONS(5455), - [anon_sym_BSLASHAcrshort] = ACTIONS(5455), - [anon_sym_BSLASHACRshort] = ACTIONS(5455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5455), - [anon_sym_BSLASHacrlong] = ACTIONS(5455), - [anon_sym_BSLASHAcrlong] = ACTIONS(5455), - [anon_sym_BSLASHACRlong] = ACTIONS(5455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5455), - [anon_sym_BSLASHacrfull] = ACTIONS(5455), - [anon_sym_BSLASHAcrfull] = ACTIONS(5455), - [anon_sym_BSLASHACRfull] = ACTIONS(5455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5455), - [anon_sym_BSLASHacs] = ACTIONS(5455), - [anon_sym_BSLASHAcs] = ACTIONS(5455), - [anon_sym_BSLASHacsp] = ACTIONS(5455), - [anon_sym_BSLASHAcsp] = ACTIONS(5455), - [anon_sym_BSLASHacl] = ACTIONS(5455), - [anon_sym_BSLASHAcl] = ACTIONS(5455), - [anon_sym_BSLASHaclp] = ACTIONS(5455), - [anon_sym_BSLASHAclp] = ACTIONS(5455), - [anon_sym_BSLASHacf] = ACTIONS(5455), - [anon_sym_BSLASHAcf] = ACTIONS(5455), - [anon_sym_BSLASHacfp] = ACTIONS(5455), - [anon_sym_BSLASHAcfp] = ACTIONS(5455), - [anon_sym_BSLASHac] = ACTIONS(5455), - [anon_sym_BSLASHAc] = ACTIONS(5455), - [anon_sym_BSLASHacp] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5455), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5455), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5453), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5455), - [anon_sym_BSLASHcolor] = ACTIONS(5455), - [anon_sym_BSLASHcolorbox] = ACTIONS(5455), - [anon_sym_BSLASHtextcolor] = ACTIONS(5455), - [anon_sym_BSLASHpagecolor] = ACTIONS(5455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5455), + [1449] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHbegin] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), }, - [1565] = { - [sym_command_name] = ACTIONS(5483), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5483), - [anon_sym_RBRACK] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_RBRACE] = ACTIONS(5481), - [sym_word] = ACTIONS(5483), - [sym_placeholder] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5483), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), - [anon_sym_LT] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5483), - [anon_sym_BANG] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5483), - [anon_sym_SQUOTE] = ACTIONS(5483), - [anon_sym_BSLASHusepackage] = ACTIONS(5483), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5483), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5483), - [anon_sym_BSLASHinclude] = ACTIONS(5483), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5483), - [anon_sym_BSLASHinput] = ACTIONS(5483), - [anon_sym_BSLASHsubfile] = ACTIONS(5483), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5483), - [anon_sym_BSLASHbibliography] = ACTIONS(5483), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5483), - [anon_sym_BSLASHincludesvg] = ACTIONS(5483), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5483), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5483), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5483), - [anon_sym_BSLASHimport] = ACTIONS(5483), - [anon_sym_BSLASHsubimport] = ACTIONS(5483), - [anon_sym_BSLASHinputfrom] = ACTIONS(5483), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5483), - [anon_sym_BSLASHincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5483), - [anon_sym_BSLASHcaption] = ACTIONS(5483), - [anon_sym_BSLASHcite] = ACTIONS(5483), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCite] = ACTIONS(5483), - [anon_sym_BSLASHnocite] = ACTIONS(5483), - [anon_sym_BSLASHcitet] = ACTIONS(5483), - [anon_sym_BSLASHcitep] = ACTIONS(5483), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteauthor] = ACTIONS(5483), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5483), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitetitle] = ACTIONS(5483), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteyear] = ACTIONS(5483), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5481), - [anon_sym_BSLASHcitedate] = ACTIONS(5483), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5481), - [anon_sym_BSLASHciteurl] = ACTIONS(5483), - [anon_sym_BSLASHfullcite] = ACTIONS(5483), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5483), - [anon_sym_BSLASHcitealt] = ACTIONS(5483), - [anon_sym_BSLASHcitealp] = ACTIONS(5483), - [anon_sym_BSLASHcitetext] = ACTIONS(5483), - [anon_sym_BSLASHparencite] = ACTIONS(5483), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHParencite] = ACTIONS(5483), - [anon_sym_BSLASHfootcite] = ACTIONS(5483), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5483), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5483), - [anon_sym_BSLASHtextcite] = ACTIONS(5483), - [anon_sym_BSLASHTextcite] = ACTIONS(5483), - [anon_sym_BSLASHsmartcite] = ACTIONS(5483), - [anon_sym_BSLASHSmartcite] = ACTIONS(5483), - [anon_sym_BSLASHsupercite] = ACTIONS(5483), - [anon_sym_BSLASHautocite] = ACTIONS(5483), - [anon_sym_BSLASHAutocite] = ACTIONS(5483), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5481), - [anon_sym_BSLASHvolcite] = ACTIONS(5483), - [anon_sym_BSLASHVolcite] = ACTIONS(5483), - [anon_sym_BSLASHpvolcite] = ACTIONS(5483), - [anon_sym_BSLASHPvolcite] = ACTIONS(5483), - [anon_sym_BSLASHfvolcite] = ACTIONS(5483), - [anon_sym_BSLASHftvolcite] = ACTIONS(5483), - [anon_sym_BSLASHsvolcite] = ACTIONS(5483), - [anon_sym_BSLASHSvolcite] = ACTIONS(5483), - [anon_sym_BSLASHtvolcite] = ACTIONS(5483), - [anon_sym_BSLASHTvolcite] = ACTIONS(5483), - [anon_sym_BSLASHavolcite] = ACTIONS(5483), - [anon_sym_BSLASHAvolcite] = ACTIONS(5483), - [anon_sym_BSLASHnotecite] = ACTIONS(5483), - [anon_sym_BSLASHNotecite] = ACTIONS(5483), - [anon_sym_BSLASHpnotecite] = ACTIONS(5483), - [anon_sym_BSLASHPnotecite] = ACTIONS(5483), - [anon_sym_BSLASHfnotecite] = ACTIONS(5483), - [anon_sym_BSLASHlabel] = ACTIONS(5483), - [anon_sym_BSLASHref] = ACTIONS(5483), - [anon_sym_BSLASHeqref] = ACTIONS(5483), - [anon_sym_BSLASHvref] = ACTIONS(5483), - [anon_sym_BSLASHVref] = ACTIONS(5483), - [anon_sym_BSLASHautoref] = ACTIONS(5483), - [anon_sym_BSLASHpageref] = ACTIONS(5483), - [anon_sym_BSLASHcref] = ACTIONS(5483), - [anon_sym_BSLASHCref] = ACTIONS(5483), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnameCref] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5483), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5483), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5483), - [anon_sym_BSLASHlabelcref] = ACTIONS(5483), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange] = ACTIONS(5483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHCrefrange] = ACTIONS(5483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5481), - [anon_sym_BSLASHnewlabel] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand] = ACTIONS(5483), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5483), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5483), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5481), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5483), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdef] = ACTIONS(5483), - [anon_sym_BSLASHlet] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5483), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5483), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5483), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5483), - [anon_sym_BSLASHgls] = ACTIONS(5483), - [anon_sym_BSLASHGls] = ACTIONS(5483), - [anon_sym_BSLASHGLS] = ACTIONS(5483), - [anon_sym_BSLASHglspl] = ACTIONS(5483), - [anon_sym_BSLASHGlspl] = ACTIONS(5483), - [anon_sym_BSLASHGLSpl] = ACTIONS(5483), - [anon_sym_BSLASHglsdisp] = ACTIONS(5483), - [anon_sym_BSLASHglslink] = ACTIONS(5483), - [anon_sym_BSLASHglstext] = ACTIONS(5483), - [anon_sym_BSLASHGlstext] = ACTIONS(5483), - [anon_sym_BSLASHGLStext] = ACTIONS(5483), - [anon_sym_BSLASHglsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5483), - [anon_sym_BSLASHglsplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSplural] = ACTIONS(5483), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5483), - [anon_sym_BSLASHglsname] = ACTIONS(5483), - [anon_sym_BSLASHGlsname] = ACTIONS(5483), - [anon_sym_BSLASHGLSname] = ACTIONS(5483), - [anon_sym_BSLASHglssymbol] = ACTIONS(5483), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5483), - [anon_sym_BSLASHglsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5483), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5483), - [anon_sym_BSLASHglsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5483), - [anon_sym_BSLASHglsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5483), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5483), - [anon_sym_BSLASHglsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5483), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5483), - [anon_sym_BSLASHglsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5483), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5483), - [anon_sym_BSLASHnewacronym] = ACTIONS(5483), - [anon_sym_BSLASHacrshort] = ACTIONS(5483), - [anon_sym_BSLASHAcrshort] = ACTIONS(5483), - [anon_sym_BSLASHACRshort] = ACTIONS(5483), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5483), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5483), - [anon_sym_BSLASHacrlong] = ACTIONS(5483), - [anon_sym_BSLASHAcrlong] = ACTIONS(5483), - [anon_sym_BSLASHACRlong] = ACTIONS(5483), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5483), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5483), - [anon_sym_BSLASHacrfull] = ACTIONS(5483), - [anon_sym_BSLASHAcrfull] = ACTIONS(5483), - [anon_sym_BSLASHACRfull] = ACTIONS(5483), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5483), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5483), - [anon_sym_BSLASHacs] = ACTIONS(5483), - [anon_sym_BSLASHAcs] = ACTIONS(5483), - [anon_sym_BSLASHacsp] = ACTIONS(5483), - [anon_sym_BSLASHAcsp] = ACTIONS(5483), - [anon_sym_BSLASHacl] = ACTIONS(5483), - [anon_sym_BSLASHAcl] = ACTIONS(5483), - [anon_sym_BSLASHaclp] = ACTIONS(5483), - [anon_sym_BSLASHAclp] = ACTIONS(5483), - [anon_sym_BSLASHacf] = ACTIONS(5483), - [anon_sym_BSLASHAcf] = ACTIONS(5483), - [anon_sym_BSLASHacfp] = ACTIONS(5483), - [anon_sym_BSLASHAcfp] = ACTIONS(5483), - [anon_sym_BSLASHac] = ACTIONS(5483), - [anon_sym_BSLASHAc] = ACTIONS(5483), - [anon_sym_BSLASHacp] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5483), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5483), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5483), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5481), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5483), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5483), - [anon_sym_BSLASHcolor] = ACTIONS(5483), - [anon_sym_BSLASHcolorbox] = ACTIONS(5483), - [anon_sym_BSLASHtextcolor] = ACTIONS(5483), - [anon_sym_BSLASHpagecolor] = ACTIONS(5483), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5483), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5483), + [1450] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHbegin] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), }, - [1566] = { - [sym_command_name] = ACTIONS(5491), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5491), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(5489), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym_word] = ACTIONS(5491), - [sym_placeholder] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_STAR] = ACTIONS(5491), - [anon_sym_SLASH] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5491), - [anon_sym__] = ACTIONS(5491), - [anon_sym_LT] = ACTIONS(5491), - [anon_sym_GT] = ACTIONS(5491), - [anon_sym_BANG] = ACTIONS(5491), - [anon_sym_PIPE] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_SQUOTE] = ACTIONS(5491), - [anon_sym_BSLASHusepackage] = ACTIONS(5491), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5491), - [anon_sym_BSLASHinclude] = ACTIONS(5491), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5491), - [anon_sym_BSLASHinput] = ACTIONS(5491), - [anon_sym_BSLASHsubfile] = ACTIONS(5491), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5491), - [anon_sym_BSLASHbibliography] = ACTIONS(5491), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5491), - [anon_sym_BSLASHincludesvg] = ACTIONS(5491), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5491), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5491), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5491), - [anon_sym_BSLASHimport] = ACTIONS(5491), - [anon_sym_BSLASHsubimport] = ACTIONS(5491), - [anon_sym_BSLASHinputfrom] = ACTIONS(5491), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5491), - [anon_sym_BSLASHincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5491), - [anon_sym_BSLASHcaption] = ACTIONS(5491), - [anon_sym_BSLASHcite] = ACTIONS(5491), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCite] = ACTIONS(5491), - [anon_sym_BSLASHnocite] = ACTIONS(5491), - [anon_sym_BSLASHcitet] = ACTIONS(5491), - [anon_sym_BSLASHcitep] = ACTIONS(5491), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteauthor] = ACTIONS(5491), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5491), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitetitle] = ACTIONS(5491), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteyear] = ACTIONS(5491), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5489), - [anon_sym_BSLASHcitedate] = ACTIONS(5491), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5489), - [anon_sym_BSLASHciteurl] = ACTIONS(5491), - [anon_sym_BSLASHfullcite] = ACTIONS(5491), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5491), - [anon_sym_BSLASHcitealt] = ACTIONS(5491), - [anon_sym_BSLASHcitealp] = ACTIONS(5491), - [anon_sym_BSLASHcitetext] = ACTIONS(5491), - [anon_sym_BSLASHparencite] = ACTIONS(5491), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHParencite] = ACTIONS(5491), - [anon_sym_BSLASHfootcite] = ACTIONS(5491), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5491), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5491), - [anon_sym_BSLASHtextcite] = ACTIONS(5491), - [anon_sym_BSLASHTextcite] = ACTIONS(5491), - [anon_sym_BSLASHsmartcite] = ACTIONS(5491), - [anon_sym_BSLASHSmartcite] = ACTIONS(5491), - [anon_sym_BSLASHsupercite] = ACTIONS(5491), - [anon_sym_BSLASHautocite] = ACTIONS(5491), - [anon_sym_BSLASHAutocite] = ACTIONS(5491), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5489), - [anon_sym_BSLASHvolcite] = ACTIONS(5491), - [anon_sym_BSLASHVolcite] = ACTIONS(5491), - [anon_sym_BSLASHpvolcite] = ACTIONS(5491), - [anon_sym_BSLASHPvolcite] = ACTIONS(5491), - [anon_sym_BSLASHfvolcite] = ACTIONS(5491), - [anon_sym_BSLASHftvolcite] = ACTIONS(5491), - [anon_sym_BSLASHsvolcite] = ACTIONS(5491), - [anon_sym_BSLASHSvolcite] = ACTIONS(5491), - [anon_sym_BSLASHtvolcite] = ACTIONS(5491), - [anon_sym_BSLASHTvolcite] = ACTIONS(5491), - [anon_sym_BSLASHavolcite] = ACTIONS(5491), - [anon_sym_BSLASHAvolcite] = ACTIONS(5491), - [anon_sym_BSLASHnotecite] = ACTIONS(5491), - [anon_sym_BSLASHNotecite] = ACTIONS(5491), - [anon_sym_BSLASHpnotecite] = ACTIONS(5491), - [anon_sym_BSLASHPnotecite] = ACTIONS(5491), - [anon_sym_BSLASHfnotecite] = ACTIONS(5491), - [anon_sym_BSLASHlabel] = ACTIONS(5491), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHCrefrange] = ACTIONS(5491), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5489), - [anon_sym_BSLASHnewlabel] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand] = ACTIONS(5491), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5491), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5491), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5489), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5491), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdef] = ACTIONS(5491), - [anon_sym_BSLASHlet] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5491), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5491), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5491), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5491), - [anon_sym_BSLASHgls] = ACTIONS(5491), - [anon_sym_BSLASHGls] = ACTIONS(5491), - [anon_sym_BSLASHGLS] = ACTIONS(5491), - [anon_sym_BSLASHglspl] = ACTIONS(5491), - [anon_sym_BSLASHGlspl] = ACTIONS(5491), - [anon_sym_BSLASHGLSpl] = ACTIONS(5491), - [anon_sym_BSLASHglsdisp] = ACTIONS(5491), - [anon_sym_BSLASHglslink] = ACTIONS(5491), - [anon_sym_BSLASHglstext] = ACTIONS(5491), - [anon_sym_BSLASHGlstext] = ACTIONS(5491), - [anon_sym_BSLASHGLStext] = ACTIONS(5491), - [anon_sym_BSLASHglsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5491), - [anon_sym_BSLASHglsplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSplural] = ACTIONS(5491), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5491), - [anon_sym_BSLASHglsname] = ACTIONS(5491), - [anon_sym_BSLASHGlsname] = ACTIONS(5491), - [anon_sym_BSLASHGLSname] = ACTIONS(5491), - [anon_sym_BSLASHglssymbol] = ACTIONS(5491), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5491), - [anon_sym_BSLASHglsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5491), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5491), - [anon_sym_BSLASHglsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5491), - [anon_sym_BSLASHglsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5491), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5491), - [anon_sym_BSLASHglsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5491), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5491), - [anon_sym_BSLASHglsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5491), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5491), - [anon_sym_BSLASHnewacronym] = ACTIONS(5491), - [anon_sym_BSLASHacrshort] = ACTIONS(5491), - [anon_sym_BSLASHAcrshort] = ACTIONS(5491), - [anon_sym_BSLASHACRshort] = ACTIONS(5491), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5491), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5491), - [anon_sym_BSLASHacrlong] = ACTIONS(5491), - [anon_sym_BSLASHAcrlong] = ACTIONS(5491), - [anon_sym_BSLASHACRlong] = ACTIONS(5491), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5491), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5491), - [anon_sym_BSLASHacrfull] = ACTIONS(5491), - [anon_sym_BSLASHAcrfull] = ACTIONS(5491), - [anon_sym_BSLASHACRfull] = ACTIONS(5491), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5491), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5491), - [anon_sym_BSLASHacs] = ACTIONS(5491), - [anon_sym_BSLASHAcs] = ACTIONS(5491), - [anon_sym_BSLASHacsp] = ACTIONS(5491), - [anon_sym_BSLASHAcsp] = ACTIONS(5491), - [anon_sym_BSLASHacl] = ACTIONS(5491), - [anon_sym_BSLASHAcl] = ACTIONS(5491), - [anon_sym_BSLASHaclp] = ACTIONS(5491), - [anon_sym_BSLASHAclp] = ACTIONS(5491), - [anon_sym_BSLASHacf] = ACTIONS(5491), - [anon_sym_BSLASHAcf] = ACTIONS(5491), - [anon_sym_BSLASHacfp] = ACTIONS(5491), - [anon_sym_BSLASHAcfp] = ACTIONS(5491), - [anon_sym_BSLASHac] = ACTIONS(5491), - [anon_sym_BSLASHAc] = ACTIONS(5491), - [anon_sym_BSLASHacp] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5491), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5491), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5491), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5491), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5491), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5491), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5491), - [anon_sym_BSLASHcolor] = ACTIONS(5491), - [anon_sym_BSLASHcolorbox] = ACTIONS(5491), - [anon_sym_BSLASHtextcolor] = ACTIONS(5491), - [anon_sym_BSLASHpagecolor] = ACTIONS(5491), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5491), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5491), + [1451] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHbegin] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), }, - [1567] = { - [sym_command_name] = ACTIONS(5213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5213), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(5213), - [sym_placeholder] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_CARET] = ACTIONS(5213), - [anon_sym__] = ACTIONS(5213), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_PIPE] = ACTIONS(5213), - [anon_sym_COLON] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5213), - [anon_sym_BSLASHusepackage] = ACTIONS(5213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), - [anon_sym_BSLASHinclude] = ACTIONS(5213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), - [anon_sym_BSLASHinput] = ACTIONS(5213), - [anon_sym_BSLASHsubfile] = ACTIONS(5213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), - [anon_sym_BSLASHbibliography] = ACTIONS(5213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), - [anon_sym_BSLASHincludesvg] = ACTIONS(5213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), - [anon_sym_BSLASHimport] = ACTIONS(5213), - [anon_sym_BSLASHsubimport] = ACTIONS(5213), - [anon_sym_BSLASHinputfrom] = ACTIONS(5213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), - [anon_sym_BSLASHincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), - [anon_sym_BSLASHcaption] = ACTIONS(5213), - [anon_sym_BSLASHcite] = ACTIONS(5213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCite] = ACTIONS(5213), - [anon_sym_BSLASHnocite] = ACTIONS(5213), - [anon_sym_BSLASHcitet] = ACTIONS(5213), - [anon_sym_BSLASHcitep] = ACTIONS(5213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteauthor] = ACTIONS(5213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitetitle] = ACTIONS(5213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteyear] = ACTIONS(5213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), - [anon_sym_BSLASHcitedate] = ACTIONS(5213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), - [anon_sym_BSLASHciteurl] = ACTIONS(5213), - [anon_sym_BSLASHfullcite] = ACTIONS(5213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), - [anon_sym_BSLASHcitealt] = ACTIONS(5213), - [anon_sym_BSLASHcitealp] = ACTIONS(5213), - [anon_sym_BSLASHcitetext] = ACTIONS(5213), - [anon_sym_BSLASHparencite] = ACTIONS(5213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHParencite] = ACTIONS(5213), - [anon_sym_BSLASHfootcite] = ACTIONS(5213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), - [anon_sym_BSLASHtextcite] = ACTIONS(5213), - [anon_sym_BSLASHTextcite] = ACTIONS(5213), - [anon_sym_BSLASHsmartcite] = ACTIONS(5213), - [anon_sym_BSLASHSmartcite] = ACTIONS(5213), - [anon_sym_BSLASHsupercite] = ACTIONS(5213), - [anon_sym_BSLASHautocite] = ACTIONS(5213), - [anon_sym_BSLASHAutocite] = ACTIONS(5213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), - [anon_sym_BSLASHvolcite] = ACTIONS(5213), - [anon_sym_BSLASHVolcite] = ACTIONS(5213), - [anon_sym_BSLASHpvolcite] = ACTIONS(5213), - [anon_sym_BSLASHPvolcite] = ACTIONS(5213), - [anon_sym_BSLASHfvolcite] = ACTIONS(5213), - [anon_sym_BSLASHftvolcite] = ACTIONS(5213), - [anon_sym_BSLASHsvolcite] = ACTIONS(5213), - [anon_sym_BSLASHSvolcite] = ACTIONS(5213), - [anon_sym_BSLASHtvolcite] = ACTIONS(5213), - [anon_sym_BSLASHTvolcite] = ACTIONS(5213), - [anon_sym_BSLASHavolcite] = ACTIONS(5213), - [anon_sym_BSLASHAvolcite] = ACTIONS(5213), - [anon_sym_BSLASHnotecite] = ACTIONS(5213), - [anon_sym_BSLASHNotecite] = ACTIONS(5213), - [anon_sym_BSLASHpnotecite] = ACTIONS(5213), - [anon_sym_BSLASHPnotecite] = ACTIONS(5213), - [anon_sym_BSLASHfnotecite] = ACTIONS(5213), - [anon_sym_BSLASHlabel] = ACTIONS(5213), - [anon_sym_BSLASHref] = ACTIONS(5213), - [anon_sym_BSLASHeqref] = ACTIONS(5213), - [anon_sym_BSLASHvref] = ACTIONS(5213), - [anon_sym_BSLASHVref] = ACTIONS(5213), - [anon_sym_BSLASHautoref] = ACTIONS(5213), - [anon_sym_BSLASHpageref] = ACTIONS(5213), - [anon_sym_BSLASHcref] = ACTIONS(5213), - [anon_sym_BSLASHCref] = ACTIONS(5213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnameCref] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), - [anon_sym_BSLASHlabelcref] = ACTIONS(5213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange] = ACTIONS(5213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHCrefrange] = ACTIONS(5213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), - [anon_sym_BSLASHnewlabel] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand] = ACTIONS(5213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdef] = ACTIONS(5213), - [anon_sym_BSLASHlet] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), - [anon_sym_BSLASHgls] = ACTIONS(5213), - [anon_sym_BSLASHGls] = ACTIONS(5213), - [anon_sym_BSLASHGLS] = ACTIONS(5213), - [anon_sym_BSLASHglspl] = ACTIONS(5213), - [anon_sym_BSLASHGlspl] = ACTIONS(5213), - [anon_sym_BSLASHGLSpl] = ACTIONS(5213), - [anon_sym_BSLASHglsdisp] = ACTIONS(5213), - [anon_sym_BSLASHglslink] = ACTIONS(5213), - [anon_sym_BSLASHglstext] = ACTIONS(5213), - [anon_sym_BSLASHGlstext] = ACTIONS(5213), - [anon_sym_BSLASHGLStext] = ACTIONS(5213), - [anon_sym_BSLASHglsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), - [anon_sym_BSLASHglsplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSplural] = ACTIONS(5213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), - [anon_sym_BSLASHglsname] = ACTIONS(5213), - [anon_sym_BSLASHGlsname] = ACTIONS(5213), - [anon_sym_BSLASHGLSname] = ACTIONS(5213), - [anon_sym_BSLASHglssymbol] = ACTIONS(5213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), - [anon_sym_BSLASHglsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), - [anon_sym_BSLASHglsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), - [anon_sym_BSLASHglsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), - [anon_sym_BSLASHglsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), - [anon_sym_BSLASHglsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), - [anon_sym_BSLASHnewacronym] = ACTIONS(5213), - [anon_sym_BSLASHacrshort] = ACTIONS(5213), - [anon_sym_BSLASHAcrshort] = ACTIONS(5213), - [anon_sym_BSLASHACRshort] = ACTIONS(5213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), - [anon_sym_BSLASHacrlong] = ACTIONS(5213), - [anon_sym_BSLASHAcrlong] = ACTIONS(5213), - [anon_sym_BSLASHACRlong] = ACTIONS(5213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), - [anon_sym_BSLASHacrfull] = ACTIONS(5213), - [anon_sym_BSLASHAcrfull] = ACTIONS(5213), - [anon_sym_BSLASHACRfull] = ACTIONS(5213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), - [anon_sym_BSLASHacs] = ACTIONS(5213), - [anon_sym_BSLASHAcs] = ACTIONS(5213), - [anon_sym_BSLASHacsp] = ACTIONS(5213), - [anon_sym_BSLASHAcsp] = ACTIONS(5213), - [anon_sym_BSLASHacl] = ACTIONS(5213), - [anon_sym_BSLASHAcl] = ACTIONS(5213), - [anon_sym_BSLASHaclp] = ACTIONS(5213), - [anon_sym_BSLASHAclp] = ACTIONS(5213), - [anon_sym_BSLASHacf] = ACTIONS(5213), - [anon_sym_BSLASHAcf] = ACTIONS(5213), - [anon_sym_BSLASHacfp] = ACTIONS(5213), - [anon_sym_BSLASHAcfp] = ACTIONS(5213), - [anon_sym_BSLASHac] = ACTIONS(5213), - [anon_sym_BSLASHAc] = ACTIONS(5213), - [anon_sym_BSLASHacp] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), - [anon_sym_BSLASHcolor] = ACTIONS(5213), - [anon_sym_BSLASHcolorbox] = ACTIONS(5213), - [anon_sym_BSLASHtextcolor] = ACTIONS(5213), - [anon_sym_BSLASHpagecolor] = ACTIONS(5213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [1452] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHbegin] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), }, - [1568] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [1453] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHbegin] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), }, - [1569] = { - [sym_command_name] = ACTIONS(5327), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5325), - [anon_sym_COMMA] = ACTIONS(5325), - [anon_sym_EQ] = ACTIONS(5325), - [anon_sym_RBRACE] = ACTIONS(5325), - [sym_word] = ACTIONS(5327), - [sym_placeholder] = ACTIONS(5325), - [anon_sym_PLUS] = ACTIONS(5327), - [anon_sym_DASH] = ACTIONS(5327), - [anon_sym_STAR] = ACTIONS(5327), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_CARET] = ACTIONS(5327), - [anon_sym__] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(5327), - [anon_sym_GT] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(5327), - [anon_sym_COLON] = ACTIONS(5327), - [anon_sym_SQUOTE] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5327), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5327), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5327), - [anon_sym_BSLASHinclude] = ACTIONS(5327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5327), - [anon_sym_BSLASHinput] = ACTIONS(5327), - [anon_sym_BSLASHsubfile] = ACTIONS(5327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), - [anon_sym_BSLASHbibliography] = ACTIONS(5327), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5327), - [anon_sym_BSLASHincludesvg] = ACTIONS(5327), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5327), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5327), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5327), - [anon_sym_BSLASHimport] = ACTIONS(5327), - [anon_sym_BSLASHsubimport] = ACTIONS(5327), - [anon_sym_BSLASHinputfrom] = ACTIONS(5327), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5327), - [anon_sym_BSLASHincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5327), - [anon_sym_BSLASHcaption] = ACTIONS(5327), - [anon_sym_BSLASHcite] = ACTIONS(5327), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCite] = ACTIONS(5327), - [anon_sym_BSLASHnocite] = ACTIONS(5327), - [anon_sym_BSLASHcitet] = ACTIONS(5327), - [anon_sym_BSLASHcitep] = ACTIONS(5327), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteyear] = ACTIONS(5327), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), - [anon_sym_BSLASHcitedate] = ACTIONS(5327), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), - [anon_sym_BSLASHciteurl] = ACTIONS(5327), - [anon_sym_BSLASHfullcite] = ACTIONS(5327), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5327), - [anon_sym_BSLASHcitealt] = ACTIONS(5327), - [anon_sym_BSLASHcitealp] = ACTIONS(5327), - [anon_sym_BSLASHcitetext] = ACTIONS(5327), - [anon_sym_BSLASHparencite] = ACTIONS(5327), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHParencite] = ACTIONS(5327), - [anon_sym_BSLASHfootcite] = ACTIONS(5327), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5327), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5327), - [anon_sym_BSLASHtextcite] = ACTIONS(5327), - [anon_sym_BSLASHTextcite] = ACTIONS(5327), - [anon_sym_BSLASHsmartcite] = ACTIONS(5327), - [anon_sym_BSLASHSmartcite] = ACTIONS(5327), - [anon_sym_BSLASHsupercite] = ACTIONS(5327), - [anon_sym_BSLASHautocite] = ACTIONS(5327), - [anon_sym_BSLASHAutocite] = ACTIONS(5327), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), - [anon_sym_BSLASHvolcite] = ACTIONS(5327), - [anon_sym_BSLASHVolcite] = ACTIONS(5327), - [anon_sym_BSLASHpvolcite] = ACTIONS(5327), - [anon_sym_BSLASHPvolcite] = ACTIONS(5327), - [anon_sym_BSLASHfvolcite] = ACTIONS(5327), - [anon_sym_BSLASHftvolcite] = ACTIONS(5327), - [anon_sym_BSLASHsvolcite] = ACTIONS(5327), - [anon_sym_BSLASHSvolcite] = ACTIONS(5327), - [anon_sym_BSLASHtvolcite] = ACTIONS(5327), - [anon_sym_BSLASHTvolcite] = ACTIONS(5327), - [anon_sym_BSLASHavolcite] = ACTIONS(5327), - [anon_sym_BSLASHAvolcite] = ACTIONS(5327), - [anon_sym_BSLASHnotecite] = ACTIONS(5327), - [anon_sym_BSLASHNotecite] = ACTIONS(5327), - [anon_sym_BSLASHpnotecite] = ACTIONS(5327), - [anon_sym_BSLASHPnotecite] = ACTIONS(5327), - [anon_sym_BSLASHfnotecite] = ACTIONS(5327), - [anon_sym_BSLASHlabel] = ACTIONS(5327), - [anon_sym_BSLASHref] = ACTIONS(5327), - [anon_sym_BSLASHeqref] = ACTIONS(5327), - [anon_sym_BSLASHvref] = ACTIONS(5327), - [anon_sym_BSLASHVref] = ACTIONS(5327), - [anon_sym_BSLASHautoref] = ACTIONS(5327), - [anon_sym_BSLASHpageref] = ACTIONS(5327), - [anon_sym_BSLASHcref] = ACTIONS(5327), - [anon_sym_BSLASHCref] = ACTIONS(5327), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnameCref] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5327), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5327), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5327), - [anon_sym_BSLASHlabelcref] = ACTIONS(5327), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange] = ACTIONS(5327), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), - [anon_sym_BSLASHnewlabel] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand] = ACTIONS(5327), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdef] = ACTIONS(5327), - [anon_sym_BSLASHlet] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5327), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5327), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5327), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5327), - [anon_sym_BSLASHgls] = ACTIONS(5327), - [anon_sym_BSLASHGls] = ACTIONS(5327), - [anon_sym_BSLASHGLS] = ACTIONS(5327), - [anon_sym_BSLASHglspl] = ACTIONS(5327), - [anon_sym_BSLASHGlspl] = ACTIONS(5327), - [anon_sym_BSLASHGLSpl] = ACTIONS(5327), - [anon_sym_BSLASHglsdisp] = ACTIONS(5327), - [anon_sym_BSLASHglslink] = ACTIONS(5327), - [anon_sym_BSLASHglstext] = ACTIONS(5327), - [anon_sym_BSLASHGlstext] = ACTIONS(5327), - [anon_sym_BSLASHGLStext] = ACTIONS(5327), - [anon_sym_BSLASHglsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5327), - [anon_sym_BSLASHglsplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSplural] = ACTIONS(5327), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5327), - [anon_sym_BSLASHglsname] = ACTIONS(5327), - [anon_sym_BSLASHGlsname] = ACTIONS(5327), - [anon_sym_BSLASHGLSname] = ACTIONS(5327), - [anon_sym_BSLASHglssymbol] = ACTIONS(5327), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5327), - [anon_sym_BSLASHglsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5327), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5327), - [anon_sym_BSLASHglsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5327), - [anon_sym_BSLASHglsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5327), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5327), - [anon_sym_BSLASHglsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5327), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5327), - [anon_sym_BSLASHglsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5327), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5327), - [anon_sym_BSLASHnewacronym] = ACTIONS(5327), - [anon_sym_BSLASHacrshort] = ACTIONS(5327), - [anon_sym_BSLASHAcrshort] = ACTIONS(5327), - [anon_sym_BSLASHACRshort] = ACTIONS(5327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5327), - [anon_sym_BSLASHacrlong] = ACTIONS(5327), - [anon_sym_BSLASHAcrlong] = ACTIONS(5327), - [anon_sym_BSLASHACRlong] = ACTIONS(5327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5327), - [anon_sym_BSLASHacrfull] = ACTIONS(5327), - [anon_sym_BSLASHAcrfull] = ACTIONS(5327), - [anon_sym_BSLASHACRfull] = ACTIONS(5327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5327), - [anon_sym_BSLASHacs] = ACTIONS(5327), - [anon_sym_BSLASHAcs] = ACTIONS(5327), - [anon_sym_BSLASHacsp] = ACTIONS(5327), - [anon_sym_BSLASHAcsp] = ACTIONS(5327), - [anon_sym_BSLASHacl] = ACTIONS(5327), - [anon_sym_BSLASHAcl] = ACTIONS(5327), - [anon_sym_BSLASHaclp] = ACTIONS(5327), - [anon_sym_BSLASHAclp] = ACTIONS(5327), - [anon_sym_BSLASHacf] = ACTIONS(5327), - [anon_sym_BSLASHAcf] = ACTIONS(5327), - [anon_sym_BSLASHacfp] = ACTIONS(5327), - [anon_sym_BSLASHAcfp] = ACTIONS(5327), - [anon_sym_BSLASHac] = ACTIONS(5327), - [anon_sym_BSLASHAc] = ACTIONS(5327), - [anon_sym_BSLASHacp] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5327), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5327), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5327), - [anon_sym_BSLASHcolor] = ACTIONS(5327), - [anon_sym_BSLASHcolorbox] = ACTIONS(5327), - [anon_sym_BSLASHtextcolor] = ACTIONS(5327), - [anon_sym_BSLASHpagecolor] = ACTIONS(5327), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5327), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5327), + [1454] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHbegin] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), }, - [1570] = { - [sym_command_name] = ACTIONS(5427), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(5425), - [anon_sym_COMMA] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(5425), - [anon_sym_RBRACE] = ACTIONS(5425), - [sym_word] = ACTIONS(5427), - [sym_placeholder] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5427), - [anon_sym_DASH] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym__] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5427), - [anon_sym_GT] = ACTIONS(5427), - [anon_sym_BANG] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_SQUOTE] = ACTIONS(5427), - [anon_sym_BSLASHusepackage] = ACTIONS(5427), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5427), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5427), - [anon_sym_BSLASHinclude] = ACTIONS(5427), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5427), - [anon_sym_BSLASHinput] = ACTIONS(5427), - [anon_sym_BSLASHsubfile] = ACTIONS(5427), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5427), - [anon_sym_BSLASHbibliography] = ACTIONS(5427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5427), - [anon_sym_BSLASHincludesvg] = ACTIONS(5427), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5427), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5427), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5427), - [anon_sym_BSLASHimport] = ACTIONS(5427), - [anon_sym_BSLASHsubimport] = ACTIONS(5427), - [anon_sym_BSLASHinputfrom] = ACTIONS(5427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5427), - [anon_sym_BSLASHincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5427), - [anon_sym_BSLASHcaption] = ACTIONS(5427), - [anon_sym_BSLASHcite] = ACTIONS(5427), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCite] = ACTIONS(5427), - [anon_sym_BSLASHnocite] = ACTIONS(5427), - [anon_sym_BSLASHcitet] = ACTIONS(5427), - [anon_sym_BSLASHcitep] = ACTIONS(5427), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteauthor] = ACTIONS(5427), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5427), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitetitle] = ACTIONS(5427), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteyear] = ACTIONS(5427), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5425), - [anon_sym_BSLASHcitedate] = ACTIONS(5427), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5425), - [anon_sym_BSLASHciteurl] = ACTIONS(5427), - [anon_sym_BSLASHfullcite] = ACTIONS(5427), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5427), - [anon_sym_BSLASHcitealt] = ACTIONS(5427), - [anon_sym_BSLASHcitealp] = ACTIONS(5427), - [anon_sym_BSLASHcitetext] = ACTIONS(5427), - [anon_sym_BSLASHparencite] = ACTIONS(5427), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHParencite] = ACTIONS(5427), - [anon_sym_BSLASHfootcite] = ACTIONS(5427), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5427), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5427), - [anon_sym_BSLASHtextcite] = ACTIONS(5427), - [anon_sym_BSLASHTextcite] = ACTIONS(5427), - [anon_sym_BSLASHsmartcite] = ACTIONS(5427), - [anon_sym_BSLASHSmartcite] = ACTIONS(5427), - [anon_sym_BSLASHsupercite] = ACTIONS(5427), - [anon_sym_BSLASHautocite] = ACTIONS(5427), - [anon_sym_BSLASHAutocite] = ACTIONS(5427), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5425), - [anon_sym_BSLASHvolcite] = ACTIONS(5427), - [anon_sym_BSLASHVolcite] = ACTIONS(5427), - [anon_sym_BSLASHpvolcite] = ACTIONS(5427), - [anon_sym_BSLASHPvolcite] = ACTIONS(5427), - [anon_sym_BSLASHfvolcite] = ACTIONS(5427), - [anon_sym_BSLASHftvolcite] = ACTIONS(5427), - [anon_sym_BSLASHsvolcite] = ACTIONS(5427), - [anon_sym_BSLASHSvolcite] = ACTIONS(5427), - [anon_sym_BSLASHtvolcite] = ACTIONS(5427), - [anon_sym_BSLASHTvolcite] = ACTIONS(5427), - [anon_sym_BSLASHavolcite] = ACTIONS(5427), - [anon_sym_BSLASHAvolcite] = ACTIONS(5427), - [anon_sym_BSLASHnotecite] = ACTIONS(5427), - [anon_sym_BSLASHNotecite] = ACTIONS(5427), - [anon_sym_BSLASHpnotecite] = ACTIONS(5427), - [anon_sym_BSLASHPnotecite] = ACTIONS(5427), - [anon_sym_BSLASHfnotecite] = ACTIONS(5427), - [anon_sym_BSLASHlabel] = ACTIONS(5427), - [anon_sym_BSLASHref] = ACTIONS(5427), - [anon_sym_BSLASHeqref] = ACTIONS(5427), - [anon_sym_BSLASHvref] = ACTIONS(5427), - [anon_sym_BSLASHVref] = ACTIONS(5427), - [anon_sym_BSLASHautoref] = ACTIONS(5427), - [anon_sym_BSLASHpageref] = ACTIONS(5427), - [anon_sym_BSLASHcref] = ACTIONS(5427), - [anon_sym_BSLASHCref] = ACTIONS(5427), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnameCref] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5427), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5427), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5427), - [anon_sym_BSLASHlabelcref] = ACTIONS(5427), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange] = ACTIONS(5427), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHCrefrange] = ACTIONS(5427), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5425), - [anon_sym_BSLASHnewlabel] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand] = ACTIONS(5427), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5427), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5427), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5425), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5427), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdef] = ACTIONS(5427), - [anon_sym_BSLASHlet] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5427), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5427), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5427), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), - [anon_sym_BSLASHgls] = ACTIONS(5427), - [anon_sym_BSLASHGls] = ACTIONS(5427), - [anon_sym_BSLASHGLS] = ACTIONS(5427), - [anon_sym_BSLASHglspl] = ACTIONS(5427), - [anon_sym_BSLASHGlspl] = ACTIONS(5427), - [anon_sym_BSLASHGLSpl] = ACTIONS(5427), - [anon_sym_BSLASHglsdisp] = ACTIONS(5427), - [anon_sym_BSLASHglslink] = ACTIONS(5427), - [anon_sym_BSLASHglstext] = ACTIONS(5427), - [anon_sym_BSLASHGlstext] = ACTIONS(5427), - [anon_sym_BSLASHGLStext] = ACTIONS(5427), - [anon_sym_BSLASHglsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5427), - [anon_sym_BSLASHglsplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSplural] = ACTIONS(5427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5427), - [anon_sym_BSLASHglsname] = ACTIONS(5427), - [anon_sym_BSLASHGlsname] = ACTIONS(5427), - [anon_sym_BSLASHGLSname] = ACTIONS(5427), - [anon_sym_BSLASHglssymbol] = ACTIONS(5427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5427), - [anon_sym_BSLASHglsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5427), - [anon_sym_BSLASHglsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5427), - [anon_sym_BSLASHglsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5427), - [anon_sym_BSLASHglsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5427), - [anon_sym_BSLASHglsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5427), - [anon_sym_BSLASHnewacronym] = ACTIONS(5427), - [anon_sym_BSLASHacrshort] = ACTIONS(5427), - [anon_sym_BSLASHAcrshort] = ACTIONS(5427), - [anon_sym_BSLASHACRshort] = ACTIONS(5427), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), - [anon_sym_BSLASHacrlong] = ACTIONS(5427), - [anon_sym_BSLASHAcrlong] = ACTIONS(5427), - [anon_sym_BSLASHACRlong] = ACTIONS(5427), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), - [anon_sym_BSLASHacrfull] = ACTIONS(5427), - [anon_sym_BSLASHAcrfull] = ACTIONS(5427), - [anon_sym_BSLASHACRfull] = ACTIONS(5427), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), - [anon_sym_BSLASHacs] = ACTIONS(5427), - [anon_sym_BSLASHAcs] = ACTIONS(5427), - [anon_sym_BSLASHacsp] = ACTIONS(5427), - [anon_sym_BSLASHAcsp] = ACTIONS(5427), - [anon_sym_BSLASHacl] = ACTIONS(5427), - [anon_sym_BSLASHAcl] = ACTIONS(5427), - [anon_sym_BSLASHaclp] = ACTIONS(5427), - [anon_sym_BSLASHAclp] = ACTIONS(5427), - [anon_sym_BSLASHacf] = ACTIONS(5427), - [anon_sym_BSLASHAcf] = ACTIONS(5427), - [anon_sym_BSLASHacfp] = ACTIONS(5427), - [anon_sym_BSLASHAcfp] = ACTIONS(5427), - [anon_sym_BSLASHac] = ACTIONS(5427), - [anon_sym_BSLASHAc] = ACTIONS(5427), - [anon_sym_BSLASHacp] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5427), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5427), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5425), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5427), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5427), - [anon_sym_BSLASHcolor] = ACTIONS(5427), - [anon_sym_BSLASHcolorbox] = ACTIONS(5427), - [anon_sym_BSLASHtextcolor] = ACTIONS(5427), - [anon_sym_BSLASHpagecolor] = ACTIONS(5427), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5427), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5427), + [1455] = { + [sym_command_name] = ACTIONS(6235), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6235), + [anon_sym_LPAREN] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [sym_word] = ACTIONS(6235), + [sym_placeholder] = ACTIONS(6233), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym__] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_BANG] = ACTIONS(6235), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_SQUOTE] = ACTIONS(6235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6233), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6233), + [anon_sym_BSLASHbegin] = ACTIONS(6235), + [anon_sym_BSLASHtitle] = ACTIONS(6235), + [anon_sym_BSLASHauthor] = ACTIONS(6235), + [anon_sym_BSLASHusepackage] = ACTIONS(6235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6235), + [anon_sym_BSLASHinclude] = ACTIONS(6235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6235), + [anon_sym_BSLASHinput] = ACTIONS(6235), + [anon_sym_BSLASHsubfile] = ACTIONS(6235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6235), + [anon_sym_BSLASHbibliography] = ACTIONS(6235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6235), + [anon_sym_BSLASHincludesvg] = ACTIONS(6235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6235), + [anon_sym_BSLASHimport] = ACTIONS(6235), + [anon_sym_BSLASHsubimport] = ACTIONS(6235), + [anon_sym_BSLASHinputfrom] = ACTIONS(6235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6235), + [anon_sym_BSLASHincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6235), + [anon_sym_BSLASHcaption] = ACTIONS(6235), + [anon_sym_BSLASHcite] = ACTIONS(6235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCite] = ACTIONS(6235), + [anon_sym_BSLASHnocite] = ACTIONS(6235), + [anon_sym_BSLASHcitet] = ACTIONS(6235), + [anon_sym_BSLASHcitep] = ACTIONS(6235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteauthor] = ACTIONS(6235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitetitle] = ACTIONS(6235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteyear] = ACTIONS(6235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6233), + [anon_sym_BSLASHcitedate] = ACTIONS(6235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6233), + [anon_sym_BSLASHciteurl] = ACTIONS(6235), + [anon_sym_BSLASHfullcite] = ACTIONS(6235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6235), + [anon_sym_BSLASHcitealt] = ACTIONS(6235), + [anon_sym_BSLASHcitealp] = ACTIONS(6235), + [anon_sym_BSLASHcitetext] = ACTIONS(6235), + [anon_sym_BSLASHparencite] = ACTIONS(6235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHParencite] = ACTIONS(6235), + [anon_sym_BSLASHfootcite] = ACTIONS(6235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6235), + [anon_sym_BSLASHtextcite] = ACTIONS(6235), + [anon_sym_BSLASHTextcite] = ACTIONS(6235), + [anon_sym_BSLASHsmartcite] = ACTIONS(6235), + [anon_sym_BSLASHSmartcite] = ACTIONS(6235), + [anon_sym_BSLASHsupercite] = ACTIONS(6235), + [anon_sym_BSLASHautocite] = ACTIONS(6235), + [anon_sym_BSLASHAutocite] = ACTIONS(6235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6233), + [anon_sym_BSLASHvolcite] = ACTIONS(6235), + [anon_sym_BSLASHVolcite] = ACTIONS(6235), + [anon_sym_BSLASHpvolcite] = ACTIONS(6235), + [anon_sym_BSLASHPvolcite] = ACTIONS(6235), + [anon_sym_BSLASHfvolcite] = ACTIONS(6235), + [anon_sym_BSLASHftvolcite] = ACTIONS(6235), + [anon_sym_BSLASHsvolcite] = ACTIONS(6235), + [anon_sym_BSLASHSvolcite] = ACTIONS(6235), + [anon_sym_BSLASHtvolcite] = ACTIONS(6235), + [anon_sym_BSLASHTvolcite] = ACTIONS(6235), + [anon_sym_BSLASHavolcite] = ACTIONS(6235), + [anon_sym_BSLASHAvolcite] = ACTIONS(6235), + [anon_sym_BSLASHnotecite] = ACTIONS(6235), + [anon_sym_BSLASHNotecite] = ACTIONS(6235), + [anon_sym_BSLASHpnotecite] = ACTIONS(6235), + [anon_sym_BSLASHPnotecite] = ACTIONS(6235), + [anon_sym_BSLASHfnotecite] = ACTIONS(6235), + [anon_sym_BSLASHlabel] = ACTIONS(6235), + [anon_sym_BSLASHref] = ACTIONS(6235), + [anon_sym_BSLASHeqref] = ACTIONS(6235), + [anon_sym_BSLASHvref] = ACTIONS(6235), + [anon_sym_BSLASHVref] = ACTIONS(6235), + [anon_sym_BSLASHautoref] = ACTIONS(6235), + [anon_sym_BSLASHpageref] = ACTIONS(6235), + [anon_sym_BSLASHcref] = ACTIONS(6235), + [anon_sym_BSLASHCref] = ACTIONS(6235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnameCref] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6235), + [anon_sym_BSLASHlabelcref] = ACTIONS(6235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange] = ACTIONS(6235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHCrefrange] = ACTIONS(6235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6233), + [anon_sym_BSLASHnewlabel] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand] = ACTIONS(6235), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6235), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6235), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6233), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdef] = ACTIONS(6235), + [anon_sym_BSLASHlet] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6235), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6235), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6235), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6235), + [anon_sym_BSLASHgls] = ACTIONS(6235), + [anon_sym_BSLASHGls] = ACTIONS(6235), + [anon_sym_BSLASHGLS] = ACTIONS(6235), + [anon_sym_BSLASHglspl] = ACTIONS(6235), + [anon_sym_BSLASHGlspl] = ACTIONS(6235), + [anon_sym_BSLASHGLSpl] = ACTIONS(6235), + [anon_sym_BSLASHglsdisp] = ACTIONS(6235), + [anon_sym_BSLASHglslink] = ACTIONS(6235), + [anon_sym_BSLASHglstext] = ACTIONS(6235), + [anon_sym_BSLASHGlstext] = ACTIONS(6235), + [anon_sym_BSLASHGLStext] = ACTIONS(6235), + [anon_sym_BSLASHglsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6235), + [anon_sym_BSLASHglsplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSplural] = ACTIONS(6235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6235), + [anon_sym_BSLASHglsname] = ACTIONS(6235), + [anon_sym_BSLASHGlsname] = ACTIONS(6235), + [anon_sym_BSLASHGLSname] = ACTIONS(6235), + [anon_sym_BSLASHglssymbol] = ACTIONS(6235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6235), + [anon_sym_BSLASHglsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6235), + [anon_sym_BSLASHglsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6235), + [anon_sym_BSLASHglsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6235), + [anon_sym_BSLASHglsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6235), + [anon_sym_BSLASHglsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6235), + [anon_sym_BSLASHnewacronym] = ACTIONS(6235), + [anon_sym_BSLASHacrshort] = ACTIONS(6235), + [anon_sym_BSLASHAcrshort] = ACTIONS(6235), + [anon_sym_BSLASHACRshort] = ACTIONS(6235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6235), + [anon_sym_BSLASHacrlong] = ACTIONS(6235), + [anon_sym_BSLASHAcrlong] = ACTIONS(6235), + [anon_sym_BSLASHACRlong] = ACTIONS(6235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6235), + [anon_sym_BSLASHacrfull] = ACTIONS(6235), + [anon_sym_BSLASHAcrfull] = ACTIONS(6235), + [anon_sym_BSLASHACRfull] = ACTIONS(6235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6235), + [anon_sym_BSLASHacs] = ACTIONS(6235), + [anon_sym_BSLASHAcs] = ACTIONS(6235), + [anon_sym_BSLASHacsp] = ACTIONS(6235), + [anon_sym_BSLASHAcsp] = ACTIONS(6235), + [anon_sym_BSLASHacl] = ACTIONS(6235), + [anon_sym_BSLASHAcl] = ACTIONS(6235), + [anon_sym_BSLASHaclp] = ACTIONS(6235), + [anon_sym_BSLASHAclp] = ACTIONS(6235), + [anon_sym_BSLASHacf] = ACTIONS(6235), + [anon_sym_BSLASHAcf] = ACTIONS(6235), + [anon_sym_BSLASHacfp] = ACTIONS(6235), + [anon_sym_BSLASHAcfp] = ACTIONS(6235), + [anon_sym_BSLASHac] = ACTIONS(6235), + [anon_sym_BSLASHAc] = ACTIONS(6235), + [anon_sym_BSLASHacp] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6235), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6235), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6235), + [anon_sym_BSLASHcolor] = ACTIONS(6235), + [anon_sym_BSLASHcolorbox] = ACTIONS(6235), + [anon_sym_BSLASHtextcolor] = ACTIONS(6235), + [anon_sym_BSLASHpagecolor] = ACTIONS(6235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6235), + [anon_sym_BSLASHtext] = ACTIONS(6235), + [anon_sym_BSLASHintertext] = ACTIONS(6235), + [anon_sym_shortintertext] = ACTIONS(6235), }, - [1571] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_RBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5163), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), + [1456] = { + [sym_command_name] = ACTIONS(6231), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(6229), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_COMMA] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6229), + [sym_word] = ACTIONS(6231), + [sym_placeholder] = ACTIONS(6229), + [anon_sym_PLUS] = ACTIONS(6231), + [anon_sym_DASH] = ACTIONS(6231), + [anon_sym_STAR] = ACTIONS(6231), + [anon_sym_SLASH] = ACTIONS(6231), + [anon_sym_CARET] = ACTIONS(6231), + [anon_sym__] = ACTIONS(6231), + [anon_sym_LT] = ACTIONS(6231), + [anon_sym_GT] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [anon_sym_PIPE] = ACTIONS(6231), + [anon_sym_COLON] = ACTIONS(6231), + [anon_sym_SQUOTE] = ACTIONS(6231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6229), + [anon_sym_DOLLAR] = ACTIONS(6231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6229), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6229), + [anon_sym_BSLASHbegin] = ACTIONS(6231), + [anon_sym_BSLASHtitle] = ACTIONS(6231), + [anon_sym_BSLASHauthor] = ACTIONS(6231), + [anon_sym_BSLASHusepackage] = ACTIONS(6231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6231), + [anon_sym_BSLASHinclude] = ACTIONS(6231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6231), + [anon_sym_BSLASHinput] = ACTIONS(6231), + [anon_sym_BSLASHsubfile] = ACTIONS(6231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6231), + [anon_sym_BSLASHbibliography] = ACTIONS(6231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6231), + [anon_sym_BSLASHincludesvg] = ACTIONS(6231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6231), + [anon_sym_BSLASHimport] = ACTIONS(6231), + [anon_sym_BSLASHsubimport] = ACTIONS(6231), + [anon_sym_BSLASHinputfrom] = ACTIONS(6231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6231), + [anon_sym_BSLASHincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6231), + [anon_sym_BSLASHcaption] = ACTIONS(6231), + [anon_sym_BSLASHcite] = ACTIONS(6231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCite] = ACTIONS(6231), + [anon_sym_BSLASHnocite] = ACTIONS(6231), + [anon_sym_BSLASHcitet] = ACTIONS(6231), + [anon_sym_BSLASHcitep] = ACTIONS(6231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteauthor] = ACTIONS(6231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitetitle] = ACTIONS(6231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteyear] = ACTIONS(6231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6229), + [anon_sym_BSLASHcitedate] = ACTIONS(6231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6229), + [anon_sym_BSLASHciteurl] = ACTIONS(6231), + [anon_sym_BSLASHfullcite] = ACTIONS(6231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6231), + [anon_sym_BSLASHcitealt] = ACTIONS(6231), + [anon_sym_BSLASHcitealp] = ACTIONS(6231), + [anon_sym_BSLASHcitetext] = ACTIONS(6231), + [anon_sym_BSLASHparencite] = ACTIONS(6231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHParencite] = ACTIONS(6231), + [anon_sym_BSLASHfootcite] = ACTIONS(6231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6231), + [anon_sym_BSLASHtextcite] = ACTIONS(6231), + [anon_sym_BSLASHTextcite] = ACTIONS(6231), + [anon_sym_BSLASHsmartcite] = ACTIONS(6231), + [anon_sym_BSLASHSmartcite] = ACTIONS(6231), + [anon_sym_BSLASHsupercite] = ACTIONS(6231), + [anon_sym_BSLASHautocite] = ACTIONS(6231), + [anon_sym_BSLASHAutocite] = ACTIONS(6231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6229), + [anon_sym_BSLASHvolcite] = ACTIONS(6231), + [anon_sym_BSLASHVolcite] = ACTIONS(6231), + [anon_sym_BSLASHpvolcite] = ACTIONS(6231), + [anon_sym_BSLASHPvolcite] = ACTIONS(6231), + [anon_sym_BSLASHfvolcite] = ACTIONS(6231), + [anon_sym_BSLASHftvolcite] = ACTIONS(6231), + [anon_sym_BSLASHsvolcite] = ACTIONS(6231), + [anon_sym_BSLASHSvolcite] = ACTIONS(6231), + [anon_sym_BSLASHtvolcite] = ACTIONS(6231), + [anon_sym_BSLASHTvolcite] = ACTIONS(6231), + [anon_sym_BSLASHavolcite] = ACTIONS(6231), + [anon_sym_BSLASHAvolcite] = ACTIONS(6231), + [anon_sym_BSLASHnotecite] = ACTIONS(6231), + [anon_sym_BSLASHNotecite] = ACTIONS(6231), + [anon_sym_BSLASHpnotecite] = ACTIONS(6231), + [anon_sym_BSLASHPnotecite] = ACTIONS(6231), + [anon_sym_BSLASHfnotecite] = ACTIONS(6231), + [anon_sym_BSLASHlabel] = ACTIONS(6231), + [anon_sym_BSLASHref] = ACTIONS(6231), + [anon_sym_BSLASHeqref] = ACTIONS(6231), + [anon_sym_BSLASHvref] = ACTIONS(6231), + [anon_sym_BSLASHVref] = ACTIONS(6231), + [anon_sym_BSLASHautoref] = ACTIONS(6231), + [anon_sym_BSLASHpageref] = ACTIONS(6231), + [anon_sym_BSLASHcref] = ACTIONS(6231), + [anon_sym_BSLASHCref] = ACTIONS(6231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnameCref] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6231), + [anon_sym_BSLASHlabelcref] = ACTIONS(6231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange] = ACTIONS(6231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHCrefrange] = ACTIONS(6231), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6229), + [anon_sym_BSLASHnewlabel] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand] = ACTIONS(6231), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6231), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6231), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6229), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdef] = ACTIONS(6231), + [anon_sym_BSLASHlet] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6231), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6231), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6231), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6231), + [anon_sym_BSLASHgls] = ACTIONS(6231), + [anon_sym_BSLASHGls] = ACTIONS(6231), + [anon_sym_BSLASHGLS] = ACTIONS(6231), + [anon_sym_BSLASHglspl] = ACTIONS(6231), + [anon_sym_BSLASHGlspl] = ACTIONS(6231), + [anon_sym_BSLASHGLSpl] = ACTIONS(6231), + [anon_sym_BSLASHglsdisp] = ACTIONS(6231), + [anon_sym_BSLASHglslink] = ACTIONS(6231), + [anon_sym_BSLASHglstext] = ACTIONS(6231), + [anon_sym_BSLASHGlstext] = ACTIONS(6231), + [anon_sym_BSLASHGLStext] = ACTIONS(6231), + [anon_sym_BSLASHglsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6231), + [anon_sym_BSLASHglsplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSplural] = ACTIONS(6231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6231), + [anon_sym_BSLASHglsname] = ACTIONS(6231), + [anon_sym_BSLASHGlsname] = ACTIONS(6231), + [anon_sym_BSLASHGLSname] = ACTIONS(6231), + [anon_sym_BSLASHglssymbol] = ACTIONS(6231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6231), + [anon_sym_BSLASHglsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6231), + [anon_sym_BSLASHglsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6231), + [anon_sym_BSLASHglsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6231), + [anon_sym_BSLASHglsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6231), + [anon_sym_BSLASHglsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6231), + [anon_sym_BSLASHnewacronym] = ACTIONS(6231), + [anon_sym_BSLASHacrshort] = ACTIONS(6231), + [anon_sym_BSLASHAcrshort] = ACTIONS(6231), + [anon_sym_BSLASHACRshort] = ACTIONS(6231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6231), + [anon_sym_BSLASHacrlong] = ACTIONS(6231), + [anon_sym_BSLASHAcrlong] = ACTIONS(6231), + [anon_sym_BSLASHACRlong] = ACTIONS(6231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6231), + [anon_sym_BSLASHacrfull] = ACTIONS(6231), + [anon_sym_BSLASHAcrfull] = ACTIONS(6231), + [anon_sym_BSLASHACRfull] = ACTIONS(6231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6231), + [anon_sym_BSLASHacs] = ACTIONS(6231), + [anon_sym_BSLASHAcs] = ACTIONS(6231), + [anon_sym_BSLASHacsp] = ACTIONS(6231), + [anon_sym_BSLASHAcsp] = ACTIONS(6231), + [anon_sym_BSLASHacl] = ACTIONS(6231), + [anon_sym_BSLASHAcl] = ACTIONS(6231), + [anon_sym_BSLASHaclp] = ACTIONS(6231), + [anon_sym_BSLASHAclp] = ACTIONS(6231), + [anon_sym_BSLASHacf] = ACTIONS(6231), + [anon_sym_BSLASHAcf] = ACTIONS(6231), + [anon_sym_BSLASHacfp] = ACTIONS(6231), + [anon_sym_BSLASHAcfp] = ACTIONS(6231), + [anon_sym_BSLASHac] = ACTIONS(6231), + [anon_sym_BSLASHAc] = ACTIONS(6231), + [anon_sym_BSLASHacp] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6231), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6231), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6231), + [anon_sym_BSLASHcolor] = ACTIONS(6231), + [anon_sym_BSLASHcolorbox] = ACTIONS(6231), + [anon_sym_BSLASHtextcolor] = ACTIONS(6231), + [anon_sym_BSLASHpagecolor] = ACTIONS(6231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6231), + [anon_sym_BSLASHtext] = ACTIONS(6231), + [anon_sym_BSLASHintertext] = ACTIONS(6231), + [anon_sym_shortintertext] = ACTIONS(6231), }, - [1572] = { - [sym_command_name] = ACTIONS(5395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5395), - [anon_sym_RBRACK] = ACTIONS(5393), - [anon_sym_COMMA] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(5395), - [sym_placeholder] = ACTIONS(5393), - [anon_sym_PLUS] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_SLASH] = ACTIONS(5395), - [anon_sym_CARET] = ACTIONS(5395), - [anon_sym__] = ACTIONS(5395), - [anon_sym_LT] = ACTIONS(5395), - [anon_sym_GT] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_COLON] = ACTIONS(5395), - [anon_sym_SQUOTE] = ACTIONS(5395), - [anon_sym_BSLASHusepackage] = ACTIONS(5395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5395), - [anon_sym_BSLASHinclude] = ACTIONS(5395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5395), - [anon_sym_BSLASHinput] = ACTIONS(5395), - [anon_sym_BSLASHsubfile] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5395), - [anon_sym_BSLASHbibliography] = ACTIONS(5395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5395), - [anon_sym_BSLASHincludesvg] = ACTIONS(5395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5395), - [anon_sym_BSLASHimport] = ACTIONS(5395), - [anon_sym_BSLASHsubimport] = ACTIONS(5395), - [anon_sym_BSLASHinputfrom] = ACTIONS(5395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5395), - [anon_sym_BSLASHincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5395), - [anon_sym_BSLASHcaption] = ACTIONS(5395), - [anon_sym_BSLASHcite] = ACTIONS(5395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCite] = ACTIONS(5395), - [anon_sym_BSLASHnocite] = ACTIONS(5395), - [anon_sym_BSLASHcitet] = ACTIONS(5395), - [anon_sym_BSLASHcitep] = ACTIONS(5395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteauthor] = ACTIONS(5395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitetitle] = ACTIONS(5395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteyear] = ACTIONS(5395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5393), - [anon_sym_BSLASHcitedate] = ACTIONS(5395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5393), - [anon_sym_BSLASHciteurl] = ACTIONS(5395), - [anon_sym_BSLASHfullcite] = ACTIONS(5395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5395), - [anon_sym_BSLASHcitealt] = ACTIONS(5395), - [anon_sym_BSLASHcitealp] = ACTIONS(5395), - [anon_sym_BSLASHcitetext] = ACTIONS(5395), - [anon_sym_BSLASHparencite] = ACTIONS(5395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHParencite] = ACTIONS(5395), - [anon_sym_BSLASHfootcite] = ACTIONS(5395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5395), - [anon_sym_BSLASHtextcite] = ACTIONS(5395), - [anon_sym_BSLASHTextcite] = ACTIONS(5395), - [anon_sym_BSLASHsmartcite] = ACTIONS(5395), - [anon_sym_BSLASHSmartcite] = ACTIONS(5395), - [anon_sym_BSLASHsupercite] = ACTIONS(5395), - [anon_sym_BSLASHautocite] = ACTIONS(5395), - [anon_sym_BSLASHAutocite] = ACTIONS(5395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5393), - [anon_sym_BSLASHvolcite] = ACTIONS(5395), - [anon_sym_BSLASHVolcite] = ACTIONS(5395), - [anon_sym_BSLASHpvolcite] = ACTIONS(5395), - [anon_sym_BSLASHPvolcite] = ACTIONS(5395), - [anon_sym_BSLASHfvolcite] = ACTIONS(5395), - [anon_sym_BSLASHftvolcite] = ACTIONS(5395), - [anon_sym_BSLASHsvolcite] = ACTIONS(5395), - [anon_sym_BSLASHSvolcite] = ACTIONS(5395), - [anon_sym_BSLASHtvolcite] = ACTIONS(5395), - [anon_sym_BSLASHTvolcite] = ACTIONS(5395), - [anon_sym_BSLASHavolcite] = ACTIONS(5395), - [anon_sym_BSLASHAvolcite] = ACTIONS(5395), - [anon_sym_BSLASHnotecite] = ACTIONS(5395), - [anon_sym_BSLASHNotecite] = ACTIONS(5395), - [anon_sym_BSLASHpnotecite] = ACTIONS(5395), - [anon_sym_BSLASHPnotecite] = ACTIONS(5395), - [anon_sym_BSLASHfnotecite] = ACTIONS(5395), - [anon_sym_BSLASHlabel] = ACTIONS(5395), - [anon_sym_BSLASHref] = ACTIONS(5395), - [anon_sym_BSLASHeqref] = ACTIONS(5395), - [anon_sym_BSLASHvref] = ACTIONS(5395), - [anon_sym_BSLASHVref] = ACTIONS(5395), - [anon_sym_BSLASHautoref] = ACTIONS(5395), - [anon_sym_BSLASHpageref] = ACTIONS(5395), - [anon_sym_BSLASHcref] = ACTIONS(5395), - [anon_sym_BSLASHCref] = ACTIONS(5395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnameCref] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5395), - [anon_sym_BSLASHlabelcref] = ACTIONS(5395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange] = ACTIONS(5395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHCrefrange] = ACTIONS(5395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), - [anon_sym_BSLASHnewlabel] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand] = ACTIONS(5395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdef] = ACTIONS(5395), - [anon_sym_BSLASHlet] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5395), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5395), - [anon_sym_BSLASHgls] = ACTIONS(5395), - [anon_sym_BSLASHGls] = ACTIONS(5395), - [anon_sym_BSLASHGLS] = ACTIONS(5395), - [anon_sym_BSLASHglspl] = ACTIONS(5395), - [anon_sym_BSLASHGlspl] = ACTIONS(5395), - [anon_sym_BSLASHGLSpl] = ACTIONS(5395), - [anon_sym_BSLASHglsdisp] = ACTIONS(5395), - [anon_sym_BSLASHglslink] = ACTIONS(5395), - [anon_sym_BSLASHglstext] = ACTIONS(5395), - [anon_sym_BSLASHGlstext] = ACTIONS(5395), - [anon_sym_BSLASHGLStext] = ACTIONS(5395), - [anon_sym_BSLASHglsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5395), - [anon_sym_BSLASHglsplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSplural] = ACTIONS(5395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5395), - [anon_sym_BSLASHglsname] = ACTIONS(5395), - [anon_sym_BSLASHGlsname] = ACTIONS(5395), - [anon_sym_BSLASHGLSname] = ACTIONS(5395), - [anon_sym_BSLASHglssymbol] = ACTIONS(5395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5395), - [anon_sym_BSLASHglsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5395), - [anon_sym_BSLASHglsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5395), - [anon_sym_BSLASHglsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5395), - [anon_sym_BSLASHglsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5395), - [anon_sym_BSLASHglsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5395), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5395), - [anon_sym_BSLASHAcrshort] = ACTIONS(5395), - [anon_sym_BSLASHACRshort] = ACTIONS(5395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5395), - [anon_sym_BSLASHacrlong] = ACTIONS(5395), - [anon_sym_BSLASHAcrlong] = ACTIONS(5395), - [anon_sym_BSLASHACRlong] = ACTIONS(5395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5395), - [anon_sym_BSLASHacrfull] = ACTIONS(5395), - [anon_sym_BSLASHAcrfull] = ACTIONS(5395), - [anon_sym_BSLASHACRfull] = ACTIONS(5395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5395), - [anon_sym_BSLASHacs] = ACTIONS(5395), - [anon_sym_BSLASHAcs] = ACTIONS(5395), - [anon_sym_BSLASHacsp] = ACTIONS(5395), - [anon_sym_BSLASHAcsp] = ACTIONS(5395), - [anon_sym_BSLASHacl] = ACTIONS(5395), - [anon_sym_BSLASHAcl] = ACTIONS(5395), - [anon_sym_BSLASHaclp] = ACTIONS(5395), - [anon_sym_BSLASHAclp] = ACTIONS(5395), - [anon_sym_BSLASHacf] = ACTIONS(5395), - [anon_sym_BSLASHAcf] = ACTIONS(5395), - [anon_sym_BSLASHacfp] = ACTIONS(5395), - [anon_sym_BSLASHAcfp] = ACTIONS(5395), - [anon_sym_BSLASHac] = ACTIONS(5395), - [anon_sym_BSLASHAc] = ACTIONS(5395), - [anon_sym_BSLASHacp] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5395), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5395), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5393), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5395), - [anon_sym_BSLASHcolor] = ACTIONS(5395), - [anon_sym_BSLASHcolorbox] = ACTIONS(5395), - [anon_sym_BSLASHtextcolor] = ACTIONS(5395), - [anon_sym_BSLASHpagecolor] = ACTIONS(5395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5395), + [1457] = { + [sym_command_name] = ACTIONS(6223), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6223), + [anon_sym_LPAREN] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_RBRACK] = ACTIONS(6221), + [anon_sym_COMMA] = ACTIONS(6221), + [anon_sym_EQ] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [sym_word] = ACTIONS(6223), + [sym_placeholder] = ACTIONS(6221), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6223), + [anon_sym_SLASH] = ACTIONS(6223), + [anon_sym_CARET] = ACTIONS(6223), + [anon_sym__] = ACTIONS(6223), + [anon_sym_LT] = ACTIONS(6223), + [anon_sym_GT] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(6223), + [anon_sym_PIPE] = ACTIONS(6223), + [anon_sym_COLON] = ACTIONS(6223), + [anon_sym_SQUOTE] = ACTIONS(6223), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6221), + [anon_sym_DOLLAR] = ACTIONS(6223), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6221), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6221), + [anon_sym_BSLASHbegin] = ACTIONS(6223), + [anon_sym_BSLASHtitle] = ACTIONS(6223), + [anon_sym_BSLASHauthor] = ACTIONS(6223), + [anon_sym_BSLASHusepackage] = ACTIONS(6223), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6223), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6223), + [anon_sym_BSLASHinclude] = ACTIONS(6223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6223), + [anon_sym_BSLASHinput] = ACTIONS(6223), + [anon_sym_BSLASHsubfile] = ACTIONS(6223), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6223), + [anon_sym_BSLASHbibliography] = ACTIONS(6223), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6223), + [anon_sym_BSLASHincludesvg] = ACTIONS(6223), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6223), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6223), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6223), + [anon_sym_BSLASHimport] = ACTIONS(6223), + [anon_sym_BSLASHsubimport] = ACTIONS(6223), + [anon_sym_BSLASHinputfrom] = ACTIONS(6223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6223), + [anon_sym_BSLASHincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6223), + [anon_sym_BSLASHcaption] = ACTIONS(6223), + [anon_sym_BSLASHcite] = ACTIONS(6223), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCite] = ACTIONS(6223), + [anon_sym_BSLASHnocite] = ACTIONS(6223), + [anon_sym_BSLASHcitet] = ACTIONS(6223), + [anon_sym_BSLASHcitep] = ACTIONS(6223), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteauthor] = ACTIONS(6223), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6223), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitetitle] = ACTIONS(6223), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteyear] = ACTIONS(6223), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6221), + [anon_sym_BSLASHcitedate] = ACTIONS(6223), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6221), + [anon_sym_BSLASHciteurl] = ACTIONS(6223), + [anon_sym_BSLASHfullcite] = ACTIONS(6223), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6223), + [anon_sym_BSLASHcitealt] = ACTIONS(6223), + [anon_sym_BSLASHcitealp] = ACTIONS(6223), + [anon_sym_BSLASHcitetext] = ACTIONS(6223), + [anon_sym_BSLASHparencite] = ACTIONS(6223), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHParencite] = ACTIONS(6223), + [anon_sym_BSLASHfootcite] = ACTIONS(6223), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6223), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6223), + [anon_sym_BSLASHtextcite] = ACTIONS(6223), + [anon_sym_BSLASHTextcite] = ACTIONS(6223), + [anon_sym_BSLASHsmartcite] = ACTIONS(6223), + [anon_sym_BSLASHSmartcite] = ACTIONS(6223), + [anon_sym_BSLASHsupercite] = ACTIONS(6223), + [anon_sym_BSLASHautocite] = ACTIONS(6223), + [anon_sym_BSLASHAutocite] = ACTIONS(6223), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6221), + [anon_sym_BSLASHvolcite] = ACTIONS(6223), + [anon_sym_BSLASHVolcite] = ACTIONS(6223), + [anon_sym_BSLASHpvolcite] = ACTIONS(6223), + [anon_sym_BSLASHPvolcite] = ACTIONS(6223), + [anon_sym_BSLASHfvolcite] = ACTIONS(6223), + [anon_sym_BSLASHftvolcite] = ACTIONS(6223), + [anon_sym_BSLASHsvolcite] = ACTIONS(6223), + [anon_sym_BSLASHSvolcite] = ACTIONS(6223), + [anon_sym_BSLASHtvolcite] = ACTIONS(6223), + [anon_sym_BSLASHTvolcite] = ACTIONS(6223), + [anon_sym_BSLASHavolcite] = ACTIONS(6223), + [anon_sym_BSLASHAvolcite] = ACTIONS(6223), + [anon_sym_BSLASHnotecite] = ACTIONS(6223), + [anon_sym_BSLASHNotecite] = ACTIONS(6223), + [anon_sym_BSLASHpnotecite] = ACTIONS(6223), + [anon_sym_BSLASHPnotecite] = ACTIONS(6223), + [anon_sym_BSLASHfnotecite] = ACTIONS(6223), + [anon_sym_BSLASHlabel] = ACTIONS(6223), + [anon_sym_BSLASHref] = ACTIONS(6223), + [anon_sym_BSLASHeqref] = ACTIONS(6223), + [anon_sym_BSLASHvref] = ACTIONS(6223), + [anon_sym_BSLASHVref] = ACTIONS(6223), + [anon_sym_BSLASHautoref] = ACTIONS(6223), + [anon_sym_BSLASHpageref] = ACTIONS(6223), + [anon_sym_BSLASHcref] = ACTIONS(6223), + [anon_sym_BSLASHCref] = ACTIONS(6223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnameCref] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6223), + [anon_sym_BSLASHlabelcref] = ACTIONS(6223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange] = ACTIONS(6223), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHCrefrange] = ACTIONS(6223), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6221), + [anon_sym_BSLASHnewlabel] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand] = ACTIONS(6223), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6223), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6223), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6223), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdef] = ACTIONS(6223), + [anon_sym_BSLASHlet] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6223), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6223), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6223), + [anon_sym_BSLASHgls] = ACTIONS(6223), + [anon_sym_BSLASHGls] = ACTIONS(6223), + [anon_sym_BSLASHGLS] = ACTIONS(6223), + [anon_sym_BSLASHglspl] = ACTIONS(6223), + [anon_sym_BSLASHGlspl] = ACTIONS(6223), + [anon_sym_BSLASHGLSpl] = ACTIONS(6223), + [anon_sym_BSLASHglsdisp] = ACTIONS(6223), + [anon_sym_BSLASHglslink] = ACTIONS(6223), + [anon_sym_BSLASHglstext] = ACTIONS(6223), + [anon_sym_BSLASHGlstext] = ACTIONS(6223), + [anon_sym_BSLASHGLStext] = ACTIONS(6223), + [anon_sym_BSLASHglsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6223), + [anon_sym_BSLASHglsplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSplural] = ACTIONS(6223), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6223), + [anon_sym_BSLASHglsname] = ACTIONS(6223), + [anon_sym_BSLASHGlsname] = ACTIONS(6223), + [anon_sym_BSLASHGLSname] = ACTIONS(6223), + [anon_sym_BSLASHglssymbol] = ACTIONS(6223), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6223), + [anon_sym_BSLASHglsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6223), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6223), + [anon_sym_BSLASHglsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6223), + [anon_sym_BSLASHglsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6223), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6223), + [anon_sym_BSLASHglsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6223), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6223), + [anon_sym_BSLASHglsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6223), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6223), + [anon_sym_BSLASHnewacronym] = ACTIONS(6223), + [anon_sym_BSLASHacrshort] = ACTIONS(6223), + [anon_sym_BSLASHAcrshort] = ACTIONS(6223), + [anon_sym_BSLASHACRshort] = ACTIONS(6223), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6223), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6223), + [anon_sym_BSLASHacrlong] = ACTIONS(6223), + [anon_sym_BSLASHAcrlong] = ACTIONS(6223), + [anon_sym_BSLASHACRlong] = ACTIONS(6223), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6223), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6223), + [anon_sym_BSLASHacrfull] = ACTIONS(6223), + [anon_sym_BSLASHAcrfull] = ACTIONS(6223), + [anon_sym_BSLASHACRfull] = ACTIONS(6223), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6223), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6223), + [anon_sym_BSLASHacs] = ACTIONS(6223), + [anon_sym_BSLASHAcs] = ACTIONS(6223), + [anon_sym_BSLASHacsp] = ACTIONS(6223), + [anon_sym_BSLASHAcsp] = ACTIONS(6223), + [anon_sym_BSLASHacl] = ACTIONS(6223), + [anon_sym_BSLASHAcl] = ACTIONS(6223), + [anon_sym_BSLASHaclp] = ACTIONS(6223), + [anon_sym_BSLASHAclp] = ACTIONS(6223), + [anon_sym_BSLASHacf] = ACTIONS(6223), + [anon_sym_BSLASHAcf] = ACTIONS(6223), + [anon_sym_BSLASHacfp] = ACTIONS(6223), + [anon_sym_BSLASHAcfp] = ACTIONS(6223), + [anon_sym_BSLASHac] = ACTIONS(6223), + [anon_sym_BSLASHAc] = ACTIONS(6223), + [anon_sym_BSLASHacp] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6223), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6223), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6223), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6223), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6223), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6223), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6223), + [anon_sym_BSLASHcolor] = ACTIONS(6223), + [anon_sym_BSLASHcolorbox] = ACTIONS(6223), + [anon_sym_BSLASHtextcolor] = ACTIONS(6223), + [anon_sym_BSLASHpagecolor] = ACTIONS(6223), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6223), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6223), + [anon_sym_BSLASHtext] = ACTIONS(6223), + [anon_sym_BSLASHintertext] = ACTIONS(6223), + [anon_sym_shortintertext] = ACTIONS(6223), }, - [1573] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), + [1458] = { + [sym_command_name] = ACTIONS(6215), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6215), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_RPAREN] = ACTIONS(6213), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_RBRACK] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6213), + [anon_sym_EQ] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6213), + [sym_word] = ACTIONS(6215), + [sym_placeholder] = ACTIONS(6213), + [anon_sym_PLUS] = ACTIONS(6215), + [anon_sym_DASH] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6215), + [anon_sym_SLASH] = ACTIONS(6215), + [anon_sym_CARET] = ACTIONS(6215), + [anon_sym__] = ACTIONS(6215), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_GT] = ACTIONS(6215), + [anon_sym_BANG] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(6215), + [anon_sym_COLON] = ACTIONS(6215), + [anon_sym_SQUOTE] = ACTIONS(6215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6213), + [anon_sym_DOLLAR] = ACTIONS(6215), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6213), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6213), + [anon_sym_BSLASHbegin] = ACTIONS(6215), + [anon_sym_BSLASHtitle] = ACTIONS(6215), + [anon_sym_BSLASHauthor] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6215), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6215), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6215), + [anon_sym_BSLASHinclude] = ACTIONS(6215), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6215), + [anon_sym_BSLASHinput] = ACTIONS(6215), + [anon_sym_BSLASHsubfile] = ACTIONS(6215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6215), + [anon_sym_BSLASHbibliography] = ACTIONS(6215), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6215), + [anon_sym_BSLASHincludesvg] = ACTIONS(6215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6215), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6215), + [anon_sym_BSLASHimport] = ACTIONS(6215), + [anon_sym_BSLASHsubimport] = ACTIONS(6215), + [anon_sym_BSLASHinputfrom] = ACTIONS(6215), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6215), + [anon_sym_BSLASHincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6215), + [anon_sym_BSLASHcaption] = ACTIONS(6215), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6213), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6213), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6213), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHNotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHlabel] = ACTIONS(6215), + [anon_sym_BSLASHref] = ACTIONS(6215), + [anon_sym_BSLASHeqref] = ACTIONS(6215), + [anon_sym_BSLASHvref] = ACTIONS(6215), + [anon_sym_BSLASHVref] = ACTIONS(6215), + [anon_sym_BSLASHautoref] = ACTIONS(6215), + [anon_sym_BSLASHpageref] = ACTIONS(6215), + [anon_sym_BSLASHcref] = ACTIONS(6215), + [anon_sym_BSLASHCref] = ACTIONS(6215), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnameCref] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6215), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6215), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6215), + [anon_sym_BSLASHlabelcref] = ACTIONS(6215), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange] = ACTIONS(6215), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHCrefrange] = ACTIONS(6215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6213), + [anon_sym_BSLASHnewlabel] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand] = ACTIONS(6215), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6215), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6215), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6215), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdef] = ACTIONS(6215), + [anon_sym_BSLASHlet] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6215), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6215), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6215), + [anon_sym_BSLASHgls] = ACTIONS(6215), + [anon_sym_BSLASHGls] = ACTIONS(6215), + [anon_sym_BSLASHGLS] = ACTIONS(6215), + [anon_sym_BSLASHglspl] = ACTIONS(6215), + [anon_sym_BSLASHGlspl] = ACTIONS(6215), + [anon_sym_BSLASHGLSpl] = ACTIONS(6215), + [anon_sym_BSLASHglsdisp] = ACTIONS(6215), + [anon_sym_BSLASHglslink] = ACTIONS(6215), + [anon_sym_BSLASHglstext] = ACTIONS(6215), + [anon_sym_BSLASHGlstext] = ACTIONS(6215), + [anon_sym_BSLASHGLStext] = ACTIONS(6215), + [anon_sym_BSLASHglsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6215), + [anon_sym_BSLASHglsplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSplural] = ACTIONS(6215), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6215), + [anon_sym_BSLASHglsname] = ACTIONS(6215), + [anon_sym_BSLASHGlsname] = ACTIONS(6215), + [anon_sym_BSLASHGLSname] = ACTIONS(6215), + [anon_sym_BSLASHglssymbol] = ACTIONS(6215), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6215), + [anon_sym_BSLASHglsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6215), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6215), + [anon_sym_BSLASHglsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6215), + [anon_sym_BSLASHglsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6215), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6215), + [anon_sym_BSLASHglsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6215), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6215), + [anon_sym_BSLASHglsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6215), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6215), + [anon_sym_BSLASHnewacronym] = ACTIONS(6215), + [anon_sym_BSLASHacrshort] = ACTIONS(6215), + [anon_sym_BSLASHAcrshort] = ACTIONS(6215), + [anon_sym_BSLASHACRshort] = ACTIONS(6215), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6215), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6215), + [anon_sym_BSLASHacrlong] = ACTIONS(6215), + [anon_sym_BSLASHAcrlong] = ACTIONS(6215), + [anon_sym_BSLASHACRlong] = ACTIONS(6215), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6215), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6215), + [anon_sym_BSLASHacrfull] = ACTIONS(6215), + [anon_sym_BSLASHAcrfull] = ACTIONS(6215), + [anon_sym_BSLASHACRfull] = ACTIONS(6215), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6215), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6215), + [anon_sym_BSLASHacs] = ACTIONS(6215), + [anon_sym_BSLASHAcs] = ACTIONS(6215), + [anon_sym_BSLASHacsp] = ACTIONS(6215), + [anon_sym_BSLASHAcsp] = ACTIONS(6215), + [anon_sym_BSLASHacl] = ACTIONS(6215), + [anon_sym_BSLASHAcl] = ACTIONS(6215), + [anon_sym_BSLASHaclp] = ACTIONS(6215), + [anon_sym_BSLASHAclp] = ACTIONS(6215), + [anon_sym_BSLASHacf] = ACTIONS(6215), + [anon_sym_BSLASHAcf] = ACTIONS(6215), + [anon_sym_BSLASHacfp] = ACTIONS(6215), + [anon_sym_BSLASHAcfp] = ACTIONS(6215), + [anon_sym_BSLASHac] = ACTIONS(6215), + [anon_sym_BSLASHAc] = ACTIONS(6215), + [anon_sym_BSLASHacp] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6215), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6215), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6215), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6215), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6215), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6215), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6215), + [anon_sym_BSLASHcolor] = ACTIONS(6215), + [anon_sym_BSLASHcolorbox] = ACTIONS(6215), + [anon_sym_BSLASHtextcolor] = ACTIONS(6215), + [anon_sym_BSLASHpagecolor] = ACTIONS(6215), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6215), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6215), + [anon_sym_BSLASHtext] = ACTIONS(6215), + [anon_sym_BSLASHintertext] = ACTIONS(6215), + [anon_sym_shortintertext] = ACTIONS(6215), }, - [1574] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5171), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [1459] = { + [sym_command_name] = ACTIONS(6193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6193), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_RBRACK] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6191), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6191), + [sym_word] = ACTIONS(6193), + [sym_placeholder] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6193), + [anon_sym_SLASH] = ACTIONS(6193), + [anon_sym_CARET] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6193), + [anon_sym_BANG] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6193), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_SQUOTE] = ACTIONS(6193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), + [anon_sym_DOLLAR] = ACTIONS(6193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6191), + [anon_sym_BSLASHbegin] = ACTIONS(6193), + [anon_sym_BSLASHtitle] = ACTIONS(6193), + [anon_sym_BSLASHauthor] = ACTIONS(6193), + [anon_sym_BSLASHusepackage] = ACTIONS(6193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), + [anon_sym_BSLASHinclude] = ACTIONS(6193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), + [anon_sym_BSLASHinput] = ACTIONS(6193), + [anon_sym_BSLASHsubfile] = ACTIONS(6193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), + [anon_sym_BSLASHbibliography] = ACTIONS(6193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), + [anon_sym_BSLASHincludesvg] = ACTIONS(6193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), + [anon_sym_BSLASHimport] = ACTIONS(6193), + [anon_sym_BSLASHsubimport] = ACTIONS(6193), + [anon_sym_BSLASHinputfrom] = ACTIONS(6193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), + [anon_sym_BSLASHincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), + [anon_sym_BSLASHcaption] = ACTIONS(6193), + [anon_sym_BSLASHcite] = ACTIONS(6193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCite] = ACTIONS(6193), + [anon_sym_BSLASHnocite] = ACTIONS(6193), + [anon_sym_BSLASHcitet] = ACTIONS(6193), + [anon_sym_BSLASHcitep] = ACTIONS(6193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteauthor] = ACTIONS(6193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitetitle] = ACTIONS(6193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteyear] = ACTIONS(6193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), + [anon_sym_BSLASHcitedate] = ACTIONS(6193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), + [anon_sym_BSLASHciteurl] = ACTIONS(6193), + [anon_sym_BSLASHfullcite] = ACTIONS(6193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), + [anon_sym_BSLASHcitealt] = ACTIONS(6193), + [anon_sym_BSLASHcitealp] = ACTIONS(6193), + [anon_sym_BSLASHcitetext] = ACTIONS(6193), + [anon_sym_BSLASHparencite] = ACTIONS(6193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHParencite] = ACTIONS(6193), + [anon_sym_BSLASHfootcite] = ACTIONS(6193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), + [anon_sym_BSLASHtextcite] = ACTIONS(6193), + [anon_sym_BSLASHTextcite] = ACTIONS(6193), + [anon_sym_BSLASHsmartcite] = ACTIONS(6193), + [anon_sym_BSLASHSmartcite] = ACTIONS(6193), + [anon_sym_BSLASHsupercite] = ACTIONS(6193), + [anon_sym_BSLASHautocite] = ACTIONS(6193), + [anon_sym_BSLASHAutocite] = ACTIONS(6193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), + [anon_sym_BSLASHvolcite] = ACTIONS(6193), + [anon_sym_BSLASHVolcite] = ACTIONS(6193), + [anon_sym_BSLASHpvolcite] = ACTIONS(6193), + [anon_sym_BSLASHPvolcite] = ACTIONS(6193), + [anon_sym_BSLASHfvolcite] = ACTIONS(6193), + [anon_sym_BSLASHftvolcite] = ACTIONS(6193), + [anon_sym_BSLASHsvolcite] = ACTIONS(6193), + [anon_sym_BSLASHSvolcite] = ACTIONS(6193), + [anon_sym_BSLASHtvolcite] = ACTIONS(6193), + [anon_sym_BSLASHTvolcite] = ACTIONS(6193), + [anon_sym_BSLASHavolcite] = ACTIONS(6193), + [anon_sym_BSLASHAvolcite] = ACTIONS(6193), + [anon_sym_BSLASHnotecite] = ACTIONS(6193), + [anon_sym_BSLASHNotecite] = ACTIONS(6193), + [anon_sym_BSLASHpnotecite] = ACTIONS(6193), + [anon_sym_BSLASHPnotecite] = ACTIONS(6193), + [anon_sym_BSLASHfnotecite] = ACTIONS(6193), + [anon_sym_BSLASHlabel] = ACTIONS(6193), + [anon_sym_BSLASHref] = ACTIONS(6193), + [anon_sym_BSLASHeqref] = ACTIONS(6193), + [anon_sym_BSLASHvref] = ACTIONS(6193), + [anon_sym_BSLASHVref] = ACTIONS(6193), + [anon_sym_BSLASHautoref] = ACTIONS(6193), + [anon_sym_BSLASHpageref] = ACTIONS(6193), + [anon_sym_BSLASHcref] = ACTIONS(6193), + [anon_sym_BSLASHCref] = ACTIONS(6193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnameCref] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), + [anon_sym_BSLASHlabelcref] = ACTIONS(6193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange] = ACTIONS(6193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHCrefrange] = ACTIONS(6193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), + [anon_sym_BSLASHnewlabel] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand] = ACTIONS(6193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdef] = ACTIONS(6193), + [anon_sym_BSLASHlet] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), + [anon_sym_BSLASHgls] = ACTIONS(6193), + [anon_sym_BSLASHGls] = ACTIONS(6193), + [anon_sym_BSLASHGLS] = ACTIONS(6193), + [anon_sym_BSLASHglspl] = ACTIONS(6193), + [anon_sym_BSLASHGlspl] = ACTIONS(6193), + [anon_sym_BSLASHGLSpl] = ACTIONS(6193), + [anon_sym_BSLASHglsdisp] = ACTIONS(6193), + [anon_sym_BSLASHglslink] = ACTIONS(6193), + [anon_sym_BSLASHglstext] = ACTIONS(6193), + [anon_sym_BSLASHGlstext] = ACTIONS(6193), + [anon_sym_BSLASHGLStext] = ACTIONS(6193), + [anon_sym_BSLASHglsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), + [anon_sym_BSLASHglsplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSplural] = ACTIONS(6193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), + [anon_sym_BSLASHglsname] = ACTIONS(6193), + [anon_sym_BSLASHGlsname] = ACTIONS(6193), + [anon_sym_BSLASHGLSname] = ACTIONS(6193), + [anon_sym_BSLASHglssymbol] = ACTIONS(6193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), + [anon_sym_BSLASHglsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), + [anon_sym_BSLASHglsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), + [anon_sym_BSLASHglsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), + [anon_sym_BSLASHglsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), + [anon_sym_BSLASHglsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6193), + [anon_sym_BSLASHacrshort] = ACTIONS(6193), + [anon_sym_BSLASHAcrshort] = ACTIONS(6193), + [anon_sym_BSLASHACRshort] = ACTIONS(6193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), + [anon_sym_BSLASHacrlong] = ACTIONS(6193), + [anon_sym_BSLASHAcrlong] = ACTIONS(6193), + [anon_sym_BSLASHACRlong] = ACTIONS(6193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), + [anon_sym_BSLASHacrfull] = ACTIONS(6193), + [anon_sym_BSLASHAcrfull] = ACTIONS(6193), + [anon_sym_BSLASHACRfull] = ACTIONS(6193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), + [anon_sym_BSLASHacs] = ACTIONS(6193), + [anon_sym_BSLASHAcs] = ACTIONS(6193), + [anon_sym_BSLASHacsp] = ACTIONS(6193), + [anon_sym_BSLASHAcsp] = ACTIONS(6193), + [anon_sym_BSLASHacl] = ACTIONS(6193), + [anon_sym_BSLASHAcl] = ACTIONS(6193), + [anon_sym_BSLASHaclp] = ACTIONS(6193), + [anon_sym_BSLASHAclp] = ACTIONS(6193), + [anon_sym_BSLASHacf] = ACTIONS(6193), + [anon_sym_BSLASHAcf] = ACTIONS(6193), + [anon_sym_BSLASHacfp] = ACTIONS(6193), + [anon_sym_BSLASHAcfp] = ACTIONS(6193), + [anon_sym_BSLASHac] = ACTIONS(6193), + [anon_sym_BSLASHAc] = ACTIONS(6193), + [anon_sym_BSLASHacp] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), + [anon_sym_BSLASHcolor] = ACTIONS(6193), + [anon_sym_BSLASHcolorbox] = ACTIONS(6193), + [anon_sym_BSLASHtextcolor] = ACTIONS(6193), + [anon_sym_BSLASHpagecolor] = ACTIONS(6193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), + [anon_sym_BSLASHtext] = ACTIONS(6193), + [anon_sym_BSLASHintertext] = ACTIONS(6193), + [anon_sym_shortintertext] = ACTIONS(6193), }, - [1575] = { - [sym_command_name] = ACTIONS(5391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5391), - [anon_sym_RBRACK] = ACTIONS(5389), - [anon_sym_COMMA] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(5391), - [sym_placeholder] = ACTIONS(5389), - [anon_sym_PLUS] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym__] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5391), - [anon_sym_GT] = ACTIONS(5391), - [anon_sym_BANG] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(5391), - [anon_sym_SQUOTE] = ACTIONS(5391), - [anon_sym_BSLASHusepackage] = ACTIONS(5391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5391), - [anon_sym_BSLASHinclude] = ACTIONS(5391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5391), - [anon_sym_BSLASHinput] = ACTIONS(5391), - [anon_sym_BSLASHsubfile] = ACTIONS(5391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5391), - [anon_sym_BSLASHbibliography] = ACTIONS(5391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5391), - [anon_sym_BSLASHincludesvg] = ACTIONS(5391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5391), - [anon_sym_BSLASHimport] = ACTIONS(5391), - [anon_sym_BSLASHsubimport] = ACTIONS(5391), - [anon_sym_BSLASHinputfrom] = ACTIONS(5391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5391), - [anon_sym_BSLASHincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5391), - [anon_sym_BSLASHcaption] = ACTIONS(5391), - [anon_sym_BSLASHcite] = ACTIONS(5391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCite] = ACTIONS(5391), - [anon_sym_BSLASHnocite] = ACTIONS(5391), - [anon_sym_BSLASHcitet] = ACTIONS(5391), - [anon_sym_BSLASHcitep] = ACTIONS(5391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteauthor] = ACTIONS(5391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitetitle] = ACTIONS(5391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteyear] = ACTIONS(5391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5389), - [anon_sym_BSLASHcitedate] = ACTIONS(5391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5389), - [anon_sym_BSLASHciteurl] = ACTIONS(5391), - [anon_sym_BSLASHfullcite] = ACTIONS(5391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5391), - [anon_sym_BSLASHcitealt] = ACTIONS(5391), - [anon_sym_BSLASHcitealp] = ACTIONS(5391), - [anon_sym_BSLASHcitetext] = ACTIONS(5391), - [anon_sym_BSLASHparencite] = ACTIONS(5391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHParencite] = ACTIONS(5391), - [anon_sym_BSLASHfootcite] = ACTIONS(5391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5391), - [anon_sym_BSLASHtextcite] = ACTIONS(5391), - [anon_sym_BSLASHTextcite] = ACTIONS(5391), - [anon_sym_BSLASHsmartcite] = ACTIONS(5391), - [anon_sym_BSLASHSmartcite] = ACTIONS(5391), - [anon_sym_BSLASHsupercite] = ACTIONS(5391), - [anon_sym_BSLASHautocite] = ACTIONS(5391), - [anon_sym_BSLASHAutocite] = ACTIONS(5391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5389), - [anon_sym_BSLASHvolcite] = ACTIONS(5391), - [anon_sym_BSLASHVolcite] = ACTIONS(5391), - [anon_sym_BSLASHpvolcite] = ACTIONS(5391), - [anon_sym_BSLASHPvolcite] = ACTIONS(5391), - [anon_sym_BSLASHfvolcite] = ACTIONS(5391), - [anon_sym_BSLASHftvolcite] = ACTIONS(5391), - [anon_sym_BSLASHsvolcite] = ACTIONS(5391), - [anon_sym_BSLASHSvolcite] = ACTIONS(5391), - [anon_sym_BSLASHtvolcite] = ACTIONS(5391), - [anon_sym_BSLASHTvolcite] = ACTIONS(5391), - [anon_sym_BSLASHavolcite] = ACTIONS(5391), - [anon_sym_BSLASHAvolcite] = ACTIONS(5391), - [anon_sym_BSLASHnotecite] = ACTIONS(5391), - [anon_sym_BSLASHNotecite] = ACTIONS(5391), - [anon_sym_BSLASHpnotecite] = ACTIONS(5391), - [anon_sym_BSLASHPnotecite] = ACTIONS(5391), - [anon_sym_BSLASHfnotecite] = ACTIONS(5391), - [anon_sym_BSLASHlabel] = ACTIONS(5391), - [anon_sym_BSLASHref] = ACTIONS(5391), - [anon_sym_BSLASHeqref] = ACTIONS(5391), - [anon_sym_BSLASHvref] = ACTIONS(5391), - [anon_sym_BSLASHVref] = ACTIONS(5391), - [anon_sym_BSLASHautoref] = ACTIONS(5391), - [anon_sym_BSLASHpageref] = ACTIONS(5391), - [anon_sym_BSLASHcref] = ACTIONS(5391), - [anon_sym_BSLASHCref] = ACTIONS(5391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnameCref] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), - [anon_sym_BSLASHlabelcref] = ACTIONS(5391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange] = ACTIONS(5391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHCrefrange] = ACTIONS(5391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5389), - [anon_sym_BSLASHnewlabel] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand] = ACTIONS(5391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdef] = ACTIONS(5391), - [anon_sym_BSLASHlet] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5391), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5391), - [anon_sym_BSLASHgls] = ACTIONS(5391), - [anon_sym_BSLASHGls] = ACTIONS(5391), - [anon_sym_BSLASHGLS] = ACTIONS(5391), - [anon_sym_BSLASHglspl] = ACTIONS(5391), - [anon_sym_BSLASHGlspl] = ACTIONS(5391), - [anon_sym_BSLASHGLSpl] = ACTIONS(5391), - [anon_sym_BSLASHglsdisp] = ACTIONS(5391), - [anon_sym_BSLASHglslink] = ACTIONS(5391), - [anon_sym_BSLASHglstext] = ACTIONS(5391), - [anon_sym_BSLASHGlstext] = ACTIONS(5391), - [anon_sym_BSLASHGLStext] = ACTIONS(5391), - [anon_sym_BSLASHglsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5391), - [anon_sym_BSLASHglsplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSplural] = ACTIONS(5391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5391), - [anon_sym_BSLASHglsname] = ACTIONS(5391), - [anon_sym_BSLASHGlsname] = ACTIONS(5391), - [anon_sym_BSLASHGLSname] = ACTIONS(5391), - [anon_sym_BSLASHglssymbol] = ACTIONS(5391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5391), - [anon_sym_BSLASHglsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5391), - [anon_sym_BSLASHglsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5391), - [anon_sym_BSLASHglsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5391), - [anon_sym_BSLASHglsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5391), - [anon_sym_BSLASHglsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5391), - [anon_sym_BSLASHnewacronym] = ACTIONS(5391), - [anon_sym_BSLASHacrshort] = ACTIONS(5391), - [anon_sym_BSLASHAcrshort] = ACTIONS(5391), - [anon_sym_BSLASHACRshort] = ACTIONS(5391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5391), - [anon_sym_BSLASHacrlong] = ACTIONS(5391), - [anon_sym_BSLASHAcrlong] = ACTIONS(5391), - [anon_sym_BSLASHACRlong] = ACTIONS(5391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5391), - [anon_sym_BSLASHacrfull] = ACTIONS(5391), - [anon_sym_BSLASHAcrfull] = ACTIONS(5391), - [anon_sym_BSLASHACRfull] = ACTIONS(5391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5391), - [anon_sym_BSLASHacs] = ACTIONS(5391), - [anon_sym_BSLASHAcs] = ACTIONS(5391), - [anon_sym_BSLASHacsp] = ACTIONS(5391), - [anon_sym_BSLASHAcsp] = ACTIONS(5391), - [anon_sym_BSLASHacl] = ACTIONS(5391), - [anon_sym_BSLASHAcl] = ACTIONS(5391), - [anon_sym_BSLASHaclp] = ACTIONS(5391), - [anon_sym_BSLASHAclp] = ACTIONS(5391), - [anon_sym_BSLASHacf] = ACTIONS(5391), - [anon_sym_BSLASHAcf] = ACTIONS(5391), - [anon_sym_BSLASHacfp] = ACTIONS(5391), - [anon_sym_BSLASHAcfp] = ACTIONS(5391), - [anon_sym_BSLASHac] = ACTIONS(5391), - [anon_sym_BSLASHAc] = ACTIONS(5391), - [anon_sym_BSLASHacp] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5391), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5391), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5389), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5391), - [anon_sym_BSLASHcolor] = ACTIONS(5391), - [anon_sym_BSLASHcolorbox] = ACTIONS(5391), - [anon_sym_BSLASHtextcolor] = ACTIONS(5391), - [anon_sym_BSLASHpagecolor] = ACTIONS(5391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5391), + [1460] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHbegin] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), }, - [1576] = { - [sym_command_name] = ACTIONS(5387), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5387), - [anon_sym_RBRACK] = ACTIONS(5385), - [anon_sym_COMMA] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(5385), - [anon_sym_RBRACE] = ACTIONS(5385), - [sym_word] = ACTIONS(5387), - [sym_placeholder] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym__] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5387), - [anon_sym_GT] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_SQUOTE] = ACTIONS(5387), - [anon_sym_BSLASHusepackage] = ACTIONS(5387), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5387), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5387), - [anon_sym_BSLASHinclude] = ACTIONS(5387), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5387), - [anon_sym_BSLASHinput] = ACTIONS(5387), - [anon_sym_BSLASHsubfile] = ACTIONS(5387), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5387), - [anon_sym_BSLASHbibliography] = ACTIONS(5387), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5387), - [anon_sym_BSLASHincludesvg] = ACTIONS(5387), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5387), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5387), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5387), - [anon_sym_BSLASHimport] = ACTIONS(5387), - [anon_sym_BSLASHsubimport] = ACTIONS(5387), - [anon_sym_BSLASHinputfrom] = ACTIONS(5387), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5387), - [anon_sym_BSLASHincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5387), - [anon_sym_BSLASHcaption] = ACTIONS(5387), - [anon_sym_BSLASHcite] = ACTIONS(5387), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCite] = ACTIONS(5387), - [anon_sym_BSLASHnocite] = ACTIONS(5387), - [anon_sym_BSLASHcitet] = ACTIONS(5387), - [anon_sym_BSLASHcitep] = ACTIONS(5387), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor] = ACTIONS(5387), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5387), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle] = ACTIONS(5387), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteyear] = ACTIONS(5387), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5385), - [anon_sym_BSLASHcitedate] = ACTIONS(5387), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5385), - [anon_sym_BSLASHciteurl] = ACTIONS(5387), - [anon_sym_BSLASHfullcite] = ACTIONS(5387), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5387), - [anon_sym_BSLASHcitealt] = ACTIONS(5387), - [anon_sym_BSLASHcitealp] = ACTIONS(5387), - [anon_sym_BSLASHcitetext] = ACTIONS(5387), - [anon_sym_BSLASHparencite] = ACTIONS(5387), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHParencite] = ACTIONS(5387), - [anon_sym_BSLASHfootcite] = ACTIONS(5387), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5387), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5387), - [anon_sym_BSLASHtextcite] = ACTIONS(5387), - [anon_sym_BSLASHTextcite] = ACTIONS(5387), - [anon_sym_BSLASHsmartcite] = ACTIONS(5387), - [anon_sym_BSLASHSmartcite] = ACTIONS(5387), - [anon_sym_BSLASHsupercite] = ACTIONS(5387), - [anon_sym_BSLASHautocite] = ACTIONS(5387), - [anon_sym_BSLASHAutocite] = ACTIONS(5387), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5385), - [anon_sym_BSLASHvolcite] = ACTIONS(5387), - [anon_sym_BSLASHVolcite] = ACTIONS(5387), - [anon_sym_BSLASHpvolcite] = ACTIONS(5387), - [anon_sym_BSLASHPvolcite] = ACTIONS(5387), - [anon_sym_BSLASHfvolcite] = ACTIONS(5387), - [anon_sym_BSLASHftvolcite] = ACTIONS(5387), - [anon_sym_BSLASHsvolcite] = ACTIONS(5387), - [anon_sym_BSLASHSvolcite] = ACTIONS(5387), - [anon_sym_BSLASHtvolcite] = ACTIONS(5387), - [anon_sym_BSLASHTvolcite] = ACTIONS(5387), - [anon_sym_BSLASHavolcite] = ACTIONS(5387), - [anon_sym_BSLASHAvolcite] = ACTIONS(5387), - [anon_sym_BSLASHnotecite] = ACTIONS(5387), - [anon_sym_BSLASHNotecite] = ACTIONS(5387), - [anon_sym_BSLASHpnotecite] = ACTIONS(5387), - [anon_sym_BSLASHPnotecite] = ACTIONS(5387), - [anon_sym_BSLASHfnotecite] = ACTIONS(5387), - [anon_sym_BSLASHlabel] = ACTIONS(5387), - [anon_sym_BSLASHref] = ACTIONS(5387), - [anon_sym_BSLASHeqref] = ACTIONS(5387), - [anon_sym_BSLASHvref] = ACTIONS(5387), - [anon_sym_BSLASHVref] = ACTIONS(5387), - [anon_sym_BSLASHautoref] = ACTIONS(5387), - [anon_sym_BSLASHpageref] = ACTIONS(5387), - [anon_sym_BSLASHcref] = ACTIONS(5387), - [anon_sym_BSLASHCref] = ACTIONS(5387), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnameCref] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5387), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5387), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5387), - [anon_sym_BSLASHlabelcref] = ACTIONS(5387), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange] = ACTIONS(5387), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange] = ACTIONS(5387), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5385), - [anon_sym_BSLASHnewlabel] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand] = ACTIONS(5387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdef] = ACTIONS(5387), - [anon_sym_BSLASHlet] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5387), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5387), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5387), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5387), - [anon_sym_BSLASHgls] = ACTIONS(5387), - [anon_sym_BSLASHGls] = ACTIONS(5387), - [anon_sym_BSLASHGLS] = ACTIONS(5387), - [anon_sym_BSLASHglspl] = ACTIONS(5387), - [anon_sym_BSLASHGlspl] = ACTIONS(5387), - [anon_sym_BSLASHGLSpl] = ACTIONS(5387), - [anon_sym_BSLASHglsdisp] = ACTIONS(5387), - [anon_sym_BSLASHglslink] = ACTIONS(5387), - [anon_sym_BSLASHglstext] = ACTIONS(5387), - [anon_sym_BSLASHGlstext] = ACTIONS(5387), - [anon_sym_BSLASHGLStext] = ACTIONS(5387), - [anon_sym_BSLASHglsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5387), - [anon_sym_BSLASHglsplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSplural] = ACTIONS(5387), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5387), - [anon_sym_BSLASHglsname] = ACTIONS(5387), - [anon_sym_BSLASHGlsname] = ACTIONS(5387), - [anon_sym_BSLASHGLSname] = ACTIONS(5387), - [anon_sym_BSLASHglssymbol] = ACTIONS(5387), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5387), - [anon_sym_BSLASHglsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5387), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5387), - [anon_sym_BSLASHglsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5387), - [anon_sym_BSLASHglsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5387), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5387), - [anon_sym_BSLASHglsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5387), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5387), - [anon_sym_BSLASHglsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5387), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5387), - [anon_sym_BSLASHnewacronym] = ACTIONS(5387), - [anon_sym_BSLASHacrshort] = ACTIONS(5387), - [anon_sym_BSLASHAcrshort] = ACTIONS(5387), - [anon_sym_BSLASHACRshort] = ACTIONS(5387), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5387), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5387), - [anon_sym_BSLASHacrlong] = ACTIONS(5387), - [anon_sym_BSLASHAcrlong] = ACTIONS(5387), - [anon_sym_BSLASHACRlong] = ACTIONS(5387), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5387), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5387), - [anon_sym_BSLASHacrfull] = ACTIONS(5387), - [anon_sym_BSLASHAcrfull] = ACTIONS(5387), - [anon_sym_BSLASHACRfull] = ACTIONS(5387), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5387), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5387), - [anon_sym_BSLASHacs] = ACTIONS(5387), - [anon_sym_BSLASHAcs] = ACTIONS(5387), - [anon_sym_BSLASHacsp] = ACTIONS(5387), - [anon_sym_BSLASHAcsp] = ACTIONS(5387), - [anon_sym_BSLASHacl] = ACTIONS(5387), - [anon_sym_BSLASHAcl] = ACTIONS(5387), - [anon_sym_BSLASHaclp] = ACTIONS(5387), - [anon_sym_BSLASHAclp] = ACTIONS(5387), - [anon_sym_BSLASHacf] = ACTIONS(5387), - [anon_sym_BSLASHAcf] = ACTIONS(5387), - [anon_sym_BSLASHacfp] = ACTIONS(5387), - [anon_sym_BSLASHAcfp] = ACTIONS(5387), - [anon_sym_BSLASHac] = ACTIONS(5387), - [anon_sym_BSLASHAc] = ACTIONS(5387), - [anon_sym_BSLASHacp] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5387), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5387), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5387), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5387), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5387), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5387), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5387), - [anon_sym_BSLASHcolor] = ACTIONS(5387), - [anon_sym_BSLASHcolorbox] = ACTIONS(5387), - [anon_sym_BSLASHtextcolor] = ACTIONS(5387), - [anon_sym_BSLASHpagecolor] = ACTIONS(5387), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5387), + [1461] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHbegin] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), }, - [1577] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5175), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [1462] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHbegin] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), }, - [1578] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [1463] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHbegin] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), }, - [1579] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5179), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), + [1464] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHbegin] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), }, - [1580] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [1465] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHbegin] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), }, - [1581] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [1466] = { + [sym_command_name] = ACTIONS(5861), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5859), + [anon_sym_RPAREN] = ACTIONS(5859), + [anon_sym_LBRACK] = ACTIONS(5859), + [anon_sym_RBRACK] = ACTIONS(5859), + [anon_sym_COMMA] = ACTIONS(5859), + [anon_sym_EQ] = ACTIONS(5859), + [anon_sym_LBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(5861), + [sym_placeholder] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_CARET] = ACTIONS(5861), + [anon_sym__] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5861), + [anon_sym_GT] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5861), + [anon_sym_PIPE] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5859), + [anon_sym_DOLLAR] = ACTIONS(5861), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5859), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5859), + [anon_sym_BSLASHbegin] = ACTIONS(5861), + [anon_sym_BSLASHtitle] = ACTIONS(5861), + [anon_sym_BSLASHauthor] = ACTIONS(5861), + [anon_sym_BSLASHusepackage] = ACTIONS(5861), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5861), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5861), + [anon_sym_BSLASHinclude] = ACTIONS(5861), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5861), + [anon_sym_BSLASHinput] = ACTIONS(5861), + [anon_sym_BSLASHsubfile] = ACTIONS(5861), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5861), + [anon_sym_BSLASHbibliography] = ACTIONS(5861), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5861), + [anon_sym_BSLASHincludesvg] = ACTIONS(5861), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5861), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5861), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5861), + [anon_sym_BSLASHimport] = ACTIONS(5861), + [anon_sym_BSLASHsubimport] = ACTIONS(5861), + [anon_sym_BSLASHinputfrom] = ACTIONS(5861), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5861), + [anon_sym_BSLASHincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5861), + [anon_sym_BSLASHcaption] = ACTIONS(5861), + [anon_sym_BSLASHcite] = ACTIONS(5861), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCite] = ACTIONS(5861), + [anon_sym_BSLASHnocite] = ACTIONS(5861), + [anon_sym_BSLASHcitet] = ACTIONS(5861), + [anon_sym_BSLASHcitep] = ACTIONS(5861), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteauthor] = ACTIONS(5861), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5861), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitetitle] = ACTIONS(5861), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteyear] = ACTIONS(5861), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5859), + [anon_sym_BSLASHcitedate] = ACTIONS(5861), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5859), + [anon_sym_BSLASHciteurl] = ACTIONS(5861), + [anon_sym_BSLASHfullcite] = ACTIONS(5861), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5861), + [anon_sym_BSLASHcitealt] = ACTIONS(5861), + [anon_sym_BSLASHcitealp] = ACTIONS(5861), + [anon_sym_BSLASHcitetext] = ACTIONS(5861), + [anon_sym_BSLASHparencite] = ACTIONS(5861), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHParencite] = ACTIONS(5861), + [anon_sym_BSLASHfootcite] = ACTIONS(5861), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5861), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5861), + [anon_sym_BSLASHtextcite] = ACTIONS(5861), + [anon_sym_BSLASHTextcite] = ACTIONS(5861), + [anon_sym_BSLASHsmartcite] = ACTIONS(5861), + [anon_sym_BSLASHSmartcite] = ACTIONS(5861), + [anon_sym_BSLASHsupercite] = ACTIONS(5861), + [anon_sym_BSLASHautocite] = ACTIONS(5861), + [anon_sym_BSLASHAutocite] = ACTIONS(5861), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5859), + [anon_sym_BSLASHvolcite] = ACTIONS(5861), + [anon_sym_BSLASHVolcite] = ACTIONS(5861), + [anon_sym_BSLASHpvolcite] = ACTIONS(5861), + [anon_sym_BSLASHPvolcite] = ACTIONS(5861), + [anon_sym_BSLASHfvolcite] = ACTIONS(5861), + [anon_sym_BSLASHftvolcite] = ACTIONS(5861), + [anon_sym_BSLASHsvolcite] = ACTIONS(5861), + [anon_sym_BSLASHSvolcite] = ACTIONS(5861), + [anon_sym_BSLASHtvolcite] = ACTIONS(5861), + [anon_sym_BSLASHTvolcite] = ACTIONS(5861), + [anon_sym_BSLASHavolcite] = ACTIONS(5861), + [anon_sym_BSLASHAvolcite] = ACTIONS(5861), + [anon_sym_BSLASHnotecite] = ACTIONS(5861), + [anon_sym_BSLASHNotecite] = ACTIONS(5861), + [anon_sym_BSLASHpnotecite] = ACTIONS(5861), + [anon_sym_BSLASHPnotecite] = ACTIONS(5861), + [anon_sym_BSLASHfnotecite] = ACTIONS(5861), + [anon_sym_BSLASHlabel] = ACTIONS(5861), + [anon_sym_BSLASHref] = ACTIONS(5861), + [anon_sym_BSLASHeqref] = ACTIONS(5861), + [anon_sym_BSLASHvref] = ACTIONS(5861), + [anon_sym_BSLASHVref] = ACTIONS(5861), + [anon_sym_BSLASHautoref] = ACTIONS(5861), + [anon_sym_BSLASHpageref] = ACTIONS(5861), + [anon_sym_BSLASHcref] = ACTIONS(5861), + [anon_sym_BSLASHCref] = ACTIONS(5861), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnameCref] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5861), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5861), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5861), + [anon_sym_BSLASHlabelcref] = ACTIONS(5861), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange] = ACTIONS(5861), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHCrefrange] = ACTIONS(5861), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5859), + [anon_sym_BSLASHnewlabel] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand] = ACTIONS(5861), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5861), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5861), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5859), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5861), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdef] = ACTIONS(5861), + [anon_sym_BSLASHlet] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5861), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5861), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5861), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5861), + [anon_sym_BSLASHgls] = ACTIONS(5861), + [anon_sym_BSLASHGls] = ACTIONS(5861), + [anon_sym_BSLASHGLS] = ACTIONS(5861), + [anon_sym_BSLASHglspl] = ACTIONS(5861), + [anon_sym_BSLASHGlspl] = ACTIONS(5861), + [anon_sym_BSLASHGLSpl] = ACTIONS(5861), + [anon_sym_BSLASHglsdisp] = ACTIONS(5861), + [anon_sym_BSLASHglslink] = ACTIONS(5861), + [anon_sym_BSLASHglstext] = ACTIONS(5861), + [anon_sym_BSLASHGlstext] = ACTIONS(5861), + [anon_sym_BSLASHGLStext] = ACTIONS(5861), + [anon_sym_BSLASHglsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5861), + [anon_sym_BSLASHglsplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSplural] = ACTIONS(5861), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5861), + [anon_sym_BSLASHglsname] = ACTIONS(5861), + [anon_sym_BSLASHGlsname] = ACTIONS(5861), + [anon_sym_BSLASHGLSname] = ACTIONS(5861), + [anon_sym_BSLASHglssymbol] = ACTIONS(5861), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5861), + [anon_sym_BSLASHglsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5861), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5861), + [anon_sym_BSLASHglsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5861), + [anon_sym_BSLASHglsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5861), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5861), + [anon_sym_BSLASHglsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5861), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5861), + [anon_sym_BSLASHglsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5861), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5861), + [anon_sym_BSLASHnewacronym] = ACTIONS(5861), + [anon_sym_BSLASHacrshort] = ACTIONS(5861), + [anon_sym_BSLASHAcrshort] = ACTIONS(5861), + [anon_sym_BSLASHACRshort] = ACTIONS(5861), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5861), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5861), + [anon_sym_BSLASHacrlong] = ACTIONS(5861), + [anon_sym_BSLASHAcrlong] = ACTIONS(5861), + [anon_sym_BSLASHACRlong] = ACTIONS(5861), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5861), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5861), + [anon_sym_BSLASHacrfull] = ACTIONS(5861), + [anon_sym_BSLASHAcrfull] = ACTIONS(5861), + [anon_sym_BSLASHACRfull] = ACTIONS(5861), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5861), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5861), + [anon_sym_BSLASHacs] = ACTIONS(5861), + [anon_sym_BSLASHAcs] = ACTIONS(5861), + [anon_sym_BSLASHacsp] = ACTIONS(5861), + [anon_sym_BSLASHAcsp] = ACTIONS(5861), + [anon_sym_BSLASHacl] = ACTIONS(5861), + [anon_sym_BSLASHAcl] = ACTIONS(5861), + [anon_sym_BSLASHaclp] = ACTIONS(5861), + [anon_sym_BSLASHAclp] = ACTIONS(5861), + [anon_sym_BSLASHacf] = ACTIONS(5861), + [anon_sym_BSLASHAcf] = ACTIONS(5861), + [anon_sym_BSLASHacfp] = ACTIONS(5861), + [anon_sym_BSLASHAcfp] = ACTIONS(5861), + [anon_sym_BSLASHac] = ACTIONS(5861), + [anon_sym_BSLASHAc] = ACTIONS(5861), + [anon_sym_BSLASHacp] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5861), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5861), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5861), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5861), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5861), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5859), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5861), + [anon_sym_BSLASHcolor] = ACTIONS(5861), + [anon_sym_BSLASHcolorbox] = ACTIONS(5861), + [anon_sym_BSLASHtextcolor] = ACTIONS(5861), + [anon_sym_BSLASHpagecolor] = ACTIONS(5861), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5861), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5861), + [anon_sym_BSLASHtext] = ACTIONS(5861), + [anon_sym_BSLASHintertext] = ACTIONS(5861), + [anon_sym_shortintertext] = ACTIONS(5861), }, - [1582] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [1467] = { + [sym_command_name] = ACTIONS(5865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5863), + [anon_sym_RPAREN] = ACTIONS(5863), + [anon_sym_LBRACK] = ACTIONS(5863), + [anon_sym_RBRACK] = ACTIONS(5863), + [anon_sym_COMMA] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_LBRACE] = ACTIONS(5863), + [sym_word] = ACTIONS(5865), + [sym_placeholder] = ACTIONS(5863), + [anon_sym_PLUS] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_CARET] = ACTIONS(5865), + [anon_sym__] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5865), + [anon_sym_GT] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5865), + [anon_sym_PIPE] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_SQUOTE] = ACTIONS(5865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5863), + [anon_sym_DOLLAR] = ACTIONS(5865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5863), + [anon_sym_BSLASHbegin] = ACTIONS(5865), + [anon_sym_BSLASHtitle] = ACTIONS(5865), + [anon_sym_BSLASHauthor] = ACTIONS(5865), + [anon_sym_BSLASHusepackage] = ACTIONS(5865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5865), + [anon_sym_BSLASHinclude] = ACTIONS(5865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5865), + [anon_sym_BSLASHinput] = ACTIONS(5865), + [anon_sym_BSLASHsubfile] = ACTIONS(5865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5865), + [anon_sym_BSLASHbibliography] = ACTIONS(5865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5865), + [anon_sym_BSLASHincludesvg] = ACTIONS(5865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5865), + [anon_sym_BSLASHimport] = ACTIONS(5865), + [anon_sym_BSLASHsubimport] = ACTIONS(5865), + [anon_sym_BSLASHinputfrom] = ACTIONS(5865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5865), + [anon_sym_BSLASHincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5865), + [anon_sym_BSLASHcaption] = ACTIONS(5865), + [anon_sym_BSLASHcite] = ACTIONS(5865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCite] = ACTIONS(5865), + [anon_sym_BSLASHnocite] = ACTIONS(5865), + [anon_sym_BSLASHcitet] = ACTIONS(5865), + [anon_sym_BSLASHcitep] = ACTIONS(5865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteauthor] = ACTIONS(5865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitetitle] = ACTIONS(5865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteyear] = ACTIONS(5865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5863), + [anon_sym_BSLASHcitedate] = ACTIONS(5865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5863), + [anon_sym_BSLASHciteurl] = ACTIONS(5865), + [anon_sym_BSLASHfullcite] = ACTIONS(5865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5865), + [anon_sym_BSLASHcitealt] = ACTIONS(5865), + [anon_sym_BSLASHcitealp] = ACTIONS(5865), + [anon_sym_BSLASHcitetext] = ACTIONS(5865), + [anon_sym_BSLASHparencite] = ACTIONS(5865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHParencite] = ACTIONS(5865), + [anon_sym_BSLASHfootcite] = ACTIONS(5865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5865), + [anon_sym_BSLASHtextcite] = ACTIONS(5865), + [anon_sym_BSLASHTextcite] = ACTIONS(5865), + [anon_sym_BSLASHsmartcite] = ACTIONS(5865), + [anon_sym_BSLASHSmartcite] = ACTIONS(5865), + [anon_sym_BSLASHsupercite] = ACTIONS(5865), + [anon_sym_BSLASHautocite] = ACTIONS(5865), + [anon_sym_BSLASHAutocite] = ACTIONS(5865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5863), + [anon_sym_BSLASHvolcite] = ACTIONS(5865), + [anon_sym_BSLASHVolcite] = ACTIONS(5865), + [anon_sym_BSLASHpvolcite] = ACTIONS(5865), + [anon_sym_BSLASHPvolcite] = ACTIONS(5865), + [anon_sym_BSLASHfvolcite] = ACTIONS(5865), + [anon_sym_BSLASHftvolcite] = ACTIONS(5865), + [anon_sym_BSLASHsvolcite] = ACTIONS(5865), + [anon_sym_BSLASHSvolcite] = ACTIONS(5865), + [anon_sym_BSLASHtvolcite] = ACTIONS(5865), + [anon_sym_BSLASHTvolcite] = ACTIONS(5865), + [anon_sym_BSLASHavolcite] = ACTIONS(5865), + [anon_sym_BSLASHAvolcite] = ACTIONS(5865), + [anon_sym_BSLASHnotecite] = ACTIONS(5865), + [anon_sym_BSLASHNotecite] = ACTIONS(5865), + [anon_sym_BSLASHpnotecite] = ACTIONS(5865), + [anon_sym_BSLASHPnotecite] = ACTIONS(5865), + [anon_sym_BSLASHfnotecite] = ACTIONS(5865), + [anon_sym_BSLASHlabel] = ACTIONS(5865), + [anon_sym_BSLASHref] = ACTIONS(5865), + [anon_sym_BSLASHeqref] = ACTIONS(5865), + [anon_sym_BSLASHvref] = ACTIONS(5865), + [anon_sym_BSLASHVref] = ACTIONS(5865), + [anon_sym_BSLASHautoref] = ACTIONS(5865), + [anon_sym_BSLASHpageref] = ACTIONS(5865), + [anon_sym_BSLASHcref] = ACTIONS(5865), + [anon_sym_BSLASHCref] = ACTIONS(5865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnameCref] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5865), + [anon_sym_BSLASHlabelcref] = ACTIONS(5865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange] = ACTIONS(5865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHCrefrange] = ACTIONS(5865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5863), + [anon_sym_BSLASHnewlabel] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand] = ACTIONS(5865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdef] = ACTIONS(5865), + [anon_sym_BSLASHlet] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5865), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5865), + [anon_sym_BSLASHgls] = ACTIONS(5865), + [anon_sym_BSLASHGls] = ACTIONS(5865), + [anon_sym_BSLASHGLS] = ACTIONS(5865), + [anon_sym_BSLASHglspl] = ACTIONS(5865), + [anon_sym_BSLASHGlspl] = ACTIONS(5865), + [anon_sym_BSLASHGLSpl] = ACTIONS(5865), + [anon_sym_BSLASHglsdisp] = ACTIONS(5865), + [anon_sym_BSLASHglslink] = ACTIONS(5865), + [anon_sym_BSLASHglstext] = ACTIONS(5865), + [anon_sym_BSLASHGlstext] = ACTIONS(5865), + [anon_sym_BSLASHGLStext] = ACTIONS(5865), + [anon_sym_BSLASHglsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5865), + [anon_sym_BSLASHglsplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSplural] = ACTIONS(5865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5865), + [anon_sym_BSLASHglsname] = ACTIONS(5865), + [anon_sym_BSLASHGlsname] = ACTIONS(5865), + [anon_sym_BSLASHGLSname] = ACTIONS(5865), + [anon_sym_BSLASHglssymbol] = ACTIONS(5865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5865), + [anon_sym_BSLASHglsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5865), + [anon_sym_BSLASHglsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5865), + [anon_sym_BSLASHglsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5865), + [anon_sym_BSLASHglsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5865), + [anon_sym_BSLASHglsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5865), + [anon_sym_BSLASHnewacronym] = ACTIONS(5865), + [anon_sym_BSLASHacrshort] = ACTIONS(5865), + [anon_sym_BSLASHAcrshort] = ACTIONS(5865), + [anon_sym_BSLASHACRshort] = ACTIONS(5865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5865), + [anon_sym_BSLASHacrlong] = ACTIONS(5865), + [anon_sym_BSLASHAcrlong] = ACTIONS(5865), + [anon_sym_BSLASHACRlong] = ACTIONS(5865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5865), + [anon_sym_BSLASHacrfull] = ACTIONS(5865), + [anon_sym_BSLASHAcrfull] = ACTIONS(5865), + [anon_sym_BSLASHACRfull] = ACTIONS(5865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5865), + [anon_sym_BSLASHacs] = ACTIONS(5865), + [anon_sym_BSLASHAcs] = ACTIONS(5865), + [anon_sym_BSLASHacsp] = ACTIONS(5865), + [anon_sym_BSLASHAcsp] = ACTIONS(5865), + [anon_sym_BSLASHacl] = ACTIONS(5865), + [anon_sym_BSLASHAcl] = ACTIONS(5865), + [anon_sym_BSLASHaclp] = ACTIONS(5865), + [anon_sym_BSLASHAclp] = ACTIONS(5865), + [anon_sym_BSLASHacf] = ACTIONS(5865), + [anon_sym_BSLASHAcf] = ACTIONS(5865), + [anon_sym_BSLASHacfp] = ACTIONS(5865), + [anon_sym_BSLASHAcfp] = ACTIONS(5865), + [anon_sym_BSLASHac] = ACTIONS(5865), + [anon_sym_BSLASHAc] = ACTIONS(5865), + [anon_sym_BSLASHacp] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5865), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5865), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5863), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5865), + [anon_sym_BSLASHcolor] = ACTIONS(5865), + [anon_sym_BSLASHcolorbox] = ACTIONS(5865), + [anon_sym_BSLASHtextcolor] = ACTIONS(5865), + [anon_sym_BSLASHpagecolor] = ACTIONS(5865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5865), + [anon_sym_BSLASHtext] = ACTIONS(5865), + [anon_sym_BSLASHintertext] = ACTIONS(5865), + [anon_sym_shortintertext] = ACTIONS(5865), }, - [1583] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5311), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), + [1468] = { + [sym_command_name] = ACTIONS(5869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5867), + [anon_sym_RPAREN] = ACTIONS(5867), + [anon_sym_LBRACK] = ACTIONS(5867), + [anon_sym_RBRACK] = ACTIONS(5867), + [anon_sym_COMMA] = ACTIONS(5867), + [anon_sym_EQ] = ACTIONS(5867), + [anon_sym_LBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(5869), + [sym_placeholder] = ACTIONS(5867), + [anon_sym_PLUS] = ACTIONS(5869), + [anon_sym_DASH] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_SLASH] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5869), + [anon_sym__] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5869), + [anon_sym_GT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5869), + [anon_sym_PIPE] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_SQUOTE] = ACTIONS(5869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5867), + [anon_sym_DOLLAR] = ACTIONS(5869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5867), + [anon_sym_BSLASHbegin] = ACTIONS(5869), + [anon_sym_BSLASHtitle] = ACTIONS(5869), + [anon_sym_BSLASHauthor] = ACTIONS(5869), + [anon_sym_BSLASHusepackage] = ACTIONS(5869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5869), + [anon_sym_BSLASHinclude] = ACTIONS(5869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5869), + [anon_sym_BSLASHinput] = ACTIONS(5869), + [anon_sym_BSLASHsubfile] = ACTIONS(5869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5869), + [anon_sym_BSLASHbibliography] = ACTIONS(5869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5869), + [anon_sym_BSLASHincludesvg] = ACTIONS(5869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5869), + [anon_sym_BSLASHimport] = ACTIONS(5869), + [anon_sym_BSLASHsubimport] = ACTIONS(5869), + [anon_sym_BSLASHinputfrom] = ACTIONS(5869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5869), + [anon_sym_BSLASHincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5869), + [anon_sym_BSLASHcaption] = ACTIONS(5869), + [anon_sym_BSLASHcite] = ACTIONS(5869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCite] = ACTIONS(5869), + [anon_sym_BSLASHnocite] = ACTIONS(5869), + [anon_sym_BSLASHcitet] = ACTIONS(5869), + [anon_sym_BSLASHcitep] = ACTIONS(5869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteauthor] = ACTIONS(5869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitetitle] = ACTIONS(5869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteyear] = ACTIONS(5869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5867), + [anon_sym_BSLASHcitedate] = ACTIONS(5869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5867), + [anon_sym_BSLASHciteurl] = ACTIONS(5869), + [anon_sym_BSLASHfullcite] = ACTIONS(5869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5869), + [anon_sym_BSLASHcitealt] = ACTIONS(5869), + [anon_sym_BSLASHcitealp] = ACTIONS(5869), + [anon_sym_BSLASHcitetext] = ACTIONS(5869), + [anon_sym_BSLASHparencite] = ACTIONS(5869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHParencite] = ACTIONS(5869), + [anon_sym_BSLASHfootcite] = ACTIONS(5869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5869), + [anon_sym_BSLASHtextcite] = ACTIONS(5869), + [anon_sym_BSLASHTextcite] = ACTIONS(5869), + [anon_sym_BSLASHsmartcite] = ACTIONS(5869), + [anon_sym_BSLASHSmartcite] = ACTIONS(5869), + [anon_sym_BSLASHsupercite] = ACTIONS(5869), + [anon_sym_BSLASHautocite] = ACTIONS(5869), + [anon_sym_BSLASHAutocite] = ACTIONS(5869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5867), + [anon_sym_BSLASHvolcite] = ACTIONS(5869), + [anon_sym_BSLASHVolcite] = ACTIONS(5869), + [anon_sym_BSLASHpvolcite] = ACTIONS(5869), + [anon_sym_BSLASHPvolcite] = ACTIONS(5869), + [anon_sym_BSLASHfvolcite] = ACTIONS(5869), + [anon_sym_BSLASHftvolcite] = ACTIONS(5869), + [anon_sym_BSLASHsvolcite] = ACTIONS(5869), + [anon_sym_BSLASHSvolcite] = ACTIONS(5869), + [anon_sym_BSLASHtvolcite] = ACTIONS(5869), + [anon_sym_BSLASHTvolcite] = ACTIONS(5869), + [anon_sym_BSLASHavolcite] = ACTIONS(5869), + [anon_sym_BSLASHAvolcite] = ACTIONS(5869), + [anon_sym_BSLASHnotecite] = ACTIONS(5869), + [anon_sym_BSLASHNotecite] = ACTIONS(5869), + [anon_sym_BSLASHpnotecite] = ACTIONS(5869), + [anon_sym_BSLASHPnotecite] = ACTIONS(5869), + [anon_sym_BSLASHfnotecite] = ACTIONS(5869), + [anon_sym_BSLASHlabel] = ACTIONS(5869), + [anon_sym_BSLASHref] = ACTIONS(5869), + [anon_sym_BSLASHeqref] = ACTIONS(5869), + [anon_sym_BSLASHvref] = ACTIONS(5869), + [anon_sym_BSLASHVref] = ACTIONS(5869), + [anon_sym_BSLASHautoref] = ACTIONS(5869), + [anon_sym_BSLASHpageref] = ACTIONS(5869), + [anon_sym_BSLASHcref] = ACTIONS(5869), + [anon_sym_BSLASHCref] = ACTIONS(5869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnameCref] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5869), + [anon_sym_BSLASHlabelcref] = ACTIONS(5869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange] = ACTIONS(5869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHCrefrange] = ACTIONS(5869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5867), + [anon_sym_BSLASHnewlabel] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand] = ACTIONS(5869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdef] = ACTIONS(5869), + [anon_sym_BSLASHlet] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5869), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5869), + [anon_sym_BSLASHgls] = ACTIONS(5869), + [anon_sym_BSLASHGls] = ACTIONS(5869), + [anon_sym_BSLASHGLS] = ACTIONS(5869), + [anon_sym_BSLASHglspl] = ACTIONS(5869), + [anon_sym_BSLASHGlspl] = ACTIONS(5869), + [anon_sym_BSLASHGLSpl] = ACTIONS(5869), + [anon_sym_BSLASHglsdisp] = ACTIONS(5869), + [anon_sym_BSLASHglslink] = ACTIONS(5869), + [anon_sym_BSLASHglstext] = ACTIONS(5869), + [anon_sym_BSLASHGlstext] = ACTIONS(5869), + [anon_sym_BSLASHGLStext] = ACTIONS(5869), + [anon_sym_BSLASHglsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5869), + [anon_sym_BSLASHglsplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSplural] = ACTIONS(5869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5869), + [anon_sym_BSLASHglsname] = ACTIONS(5869), + [anon_sym_BSLASHGlsname] = ACTIONS(5869), + [anon_sym_BSLASHGLSname] = ACTIONS(5869), + [anon_sym_BSLASHglssymbol] = ACTIONS(5869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5869), + [anon_sym_BSLASHglsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5869), + [anon_sym_BSLASHglsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5869), + [anon_sym_BSLASHglsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5869), + [anon_sym_BSLASHglsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5869), + [anon_sym_BSLASHglsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5869), + [anon_sym_BSLASHnewacronym] = ACTIONS(5869), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5869), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5867), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5869), + [anon_sym_BSLASHcolor] = ACTIONS(5869), + [anon_sym_BSLASHcolorbox] = ACTIONS(5869), + [anon_sym_BSLASHtextcolor] = ACTIONS(5869), + [anon_sym_BSLASHpagecolor] = ACTIONS(5869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5869), + [anon_sym_BSLASHtext] = ACTIONS(5869), + [anon_sym_BSLASHintertext] = ACTIONS(5869), + [anon_sym_shortintertext] = ACTIONS(5869), }, - [1584] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [1469] = { + [sym_command_name] = ACTIONS(5873), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5871), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5871), + [anon_sym_RBRACK] = ACTIONS(5871), + [anon_sym_COMMA] = ACTIONS(5871), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_LBRACE] = ACTIONS(5871), + [sym_word] = ACTIONS(5873), + [sym_placeholder] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5873), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym__] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_SQUOTE] = ACTIONS(5873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(5873), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5871), + [anon_sym_BSLASHbegin] = ACTIONS(5873), + [anon_sym_BSLASHtitle] = ACTIONS(5873), + [anon_sym_BSLASHauthor] = ACTIONS(5873), + [anon_sym_BSLASHusepackage] = ACTIONS(5873), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5873), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5873), + [anon_sym_BSLASHinclude] = ACTIONS(5873), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5873), + [anon_sym_BSLASHinput] = ACTIONS(5873), + [anon_sym_BSLASHsubfile] = ACTIONS(5873), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5873), + [anon_sym_BSLASHbibliography] = ACTIONS(5873), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5873), + [anon_sym_BSLASHincludesvg] = ACTIONS(5873), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5873), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5873), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5873), + [anon_sym_BSLASHimport] = ACTIONS(5873), + [anon_sym_BSLASHsubimport] = ACTIONS(5873), + [anon_sym_BSLASHinputfrom] = ACTIONS(5873), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5873), + [anon_sym_BSLASHincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5873), + [anon_sym_BSLASHcaption] = ACTIONS(5873), + [anon_sym_BSLASHcite] = ACTIONS(5873), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCite] = ACTIONS(5873), + [anon_sym_BSLASHnocite] = ACTIONS(5873), + [anon_sym_BSLASHcitet] = ACTIONS(5873), + [anon_sym_BSLASHcitep] = ACTIONS(5873), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteauthor] = ACTIONS(5873), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5873), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitetitle] = ACTIONS(5873), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteyear] = ACTIONS(5873), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5871), + [anon_sym_BSLASHcitedate] = ACTIONS(5873), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5871), + [anon_sym_BSLASHciteurl] = ACTIONS(5873), + [anon_sym_BSLASHfullcite] = ACTIONS(5873), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5873), + [anon_sym_BSLASHcitealt] = ACTIONS(5873), + [anon_sym_BSLASHcitealp] = ACTIONS(5873), + [anon_sym_BSLASHcitetext] = ACTIONS(5873), + [anon_sym_BSLASHparencite] = ACTIONS(5873), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHParencite] = ACTIONS(5873), + [anon_sym_BSLASHfootcite] = ACTIONS(5873), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5873), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5873), + [anon_sym_BSLASHtextcite] = ACTIONS(5873), + [anon_sym_BSLASHTextcite] = ACTIONS(5873), + [anon_sym_BSLASHsmartcite] = ACTIONS(5873), + [anon_sym_BSLASHSmartcite] = ACTIONS(5873), + [anon_sym_BSLASHsupercite] = ACTIONS(5873), + [anon_sym_BSLASHautocite] = ACTIONS(5873), + [anon_sym_BSLASHAutocite] = ACTIONS(5873), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5871), + [anon_sym_BSLASHvolcite] = ACTIONS(5873), + [anon_sym_BSLASHVolcite] = ACTIONS(5873), + [anon_sym_BSLASHpvolcite] = ACTIONS(5873), + [anon_sym_BSLASHPvolcite] = ACTIONS(5873), + [anon_sym_BSLASHfvolcite] = ACTIONS(5873), + [anon_sym_BSLASHftvolcite] = ACTIONS(5873), + [anon_sym_BSLASHsvolcite] = ACTIONS(5873), + [anon_sym_BSLASHSvolcite] = ACTIONS(5873), + [anon_sym_BSLASHtvolcite] = ACTIONS(5873), + [anon_sym_BSLASHTvolcite] = ACTIONS(5873), + [anon_sym_BSLASHavolcite] = ACTIONS(5873), + [anon_sym_BSLASHAvolcite] = ACTIONS(5873), + [anon_sym_BSLASHnotecite] = ACTIONS(5873), + [anon_sym_BSLASHNotecite] = ACTIONS(5873), + [anon_sym_BSLASHpnotecite] = ACTIONS(5873), + [anon_sym_BSLASHPnotecite] = ACTIONS(5873), + [anon_sym_BSLASHfnotecite] = ACTIONS(5873), + [anon_sym_BSLASHlabel] = ACTIONS(5873), + [anon_sym_BSLASHref] = ACTIONS(5873), + [anon_sym_BSLASHeqref] = ACTIONS(5873), + [anon_sym_BSLASHvref] = ACTIONS(5873), + [anon_sym_BSLASHVref] = ACTIONS(5873), + [anon_sym_BSLASHautoref] = ACTIONS(5873), + [anon_sym_BSLASHpageref] = ACTIONS(5873), + [anon_sym_BSLASHcref] = ACTIONS(5873), + [anon_sym_BSLASHCref] = ACTIONS(5873), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnameCref] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5873), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5873), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5873), + [anon_sym_BSLASHlabelcref] = ACTIONS(5873), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange] = ACTIONS(5873), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHCrefrange] = ACTIONS(5873), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5871), + [anon_sym_BSLASHnewlabel] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand] = ACTIONS(5873), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5873), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5873), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5871), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5873), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdef] = ACTIONS(5873), + [anon_sym_BSLASHlet] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5873), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5873), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5873), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5873), + [anon_sym_BSLASHgls] = ACTIONS(5873), + [anon_sym_BSLASHGls] = ACTIONS(5873), + [anon_sym_BSLASHGLS] = ACTIONS(5873), + [anon_sym_BSLASHglspl] = ACTIONS(5873), + [anon_sym_BSLASHGlspl] = ACTIONS(5873), + [anon_sym_BSLASHGLSpl] = ACTIONS(5873), + [anon_sym_BSLASHglsdisp] = ACTIONS(5873), + [anon_sym_BSLASHglslink] = ACTIONS(5873), + [anon_sym_BSLASHglstext] = ACTIONS(5873), + [anon_sym_BSLASHGlstext] = ACTIONS(5873), + [anon_sym_BSLASHGLStext] = ACTIONS(5873), + [anon_sym_BSLASHglsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5873), + [anon_sym_BSLASHglsplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSplural] = ACTIONS(5873), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5873), + [anon_sym_BSLASHglsname] = ACTIONS(5873), + [anon_sym_BSLASHGlsname] = ACTIONS(5873), + [anon_sym_BSLASHGLSname] = ACTIONS(5873), + [anon_sym_BSLASHglssymbol] = ACTIONS(5873), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5873), + [anon_sym_BSLASHglsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5873), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5873), + [anon_sym_BSLASHglsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5873), + [anon_sym_BSLASHglsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5873), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5873), + [anon_sym_BSLASHglsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5873), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5873), + [anon_sym_BSLASHglsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5873), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5873), + [anon_sym_BSLASHnewacronym] = ACTIONS(5873), + [anon_sym_BSLASHacrshort] = ACTIONS(5873), + [anon_sym_BSLASHAcrshort] = ACTIONS(5873), + [anon_sym_BSLASHACRshort] = ACTIONS(5873), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5873), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5873), + [anon_sym_BSLASHacrlong] = ACTIONS(5873), + [anon_sym_BSLASHAcrlong] = ACTIONS(5873), + [anon_sym_BSLASHACRlong] = ACTIONS(5873), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5873), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5873), + [anon_sym_BSLASHacrfull] = ACTIONS(5873), + [anon_sym_BSLASHAcrfull] = ACTIONS(5873), + [anon_sym_BSLASHACRfull] = ACTIONS(5873), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5873), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5873), + [anon_sym_BSLASHacs] = ACTIONS(5873), + [anon_sym_BSLASHAcs] = ACTIONS(5873), + [anon_sym_BSLASHacsp] = ACTIONS(5873), + [anon_sym_BSLASHAcsp] = ACTIONS(5873), + [anon_sym_BSLASHacl] = ACTIONS(5873), + [anon_sym_BSLASHAcl] = ACTIONS(5873), + [anon_sym_BSLASHaclp] = ACTIONS(5873), + [anon_sym_BSLASHAclp] = ACTIONS(5873), + [anon_sym_BSLASHacf] = ACTIONS(5873), + [anon_sym_BSLASHAcf] = ACTIONS(5873), + [anon_sym_BSLASHacfp] = ACTIONS(5873), + [anon_sym_BSLASHAcfp] = ACTIONS(5873), + [anon_sym_BSLASHac] = ACTIONS(5873), + [anon_sym_BSLASHAc] = ACTIONS(5873), + [anon_sym_BSLASHacp] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5873), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5873), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5873), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5873), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5873), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5871), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5873), + [anon_sym_BSLASHcolor] = ACTIONS(5873), + [anon_sym_BSLASHcolorbox] = ACTIONS(5873), + [anon_sym_BSLASHtextcolor] = ACTIONS(5873), + [anon_sym_BSLASHpagecolor] = ACTIONS(5873), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5873), + [anon_sym_BSLASHtext] = ACTIONS(5873), + [anon_sym_BSLASHintertext] = ACTIONS(5873), + [anon_sym_shortintertext] = ACTIONS(5873), }, - [1585] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [1470] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHbegin] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), }, - [1586] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [1471] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHbegin] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), }, - [1587] = { - [sym_command_name] = ACTIONS(5323), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5321), - [anon_sym_COMMA] = ACTIONS(5321), - [anon_sym_EQ] = ACTIONS(5321), - [anon_sym_RBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(5323), - [sym_placeholder] = ACTIONS(5321), - [anon_sym_PLUS] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_SLASH] = ACTIONS(5323), - [anon_sym_CARET] = ACTIONS(5323), - [anon_sym__] = ACTIONS(5323), - [anon_sym_LT] = ACTIONS(5323), - [anon_sym_GT] = ACTIONS(5323), - [anon_sym_BANG] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5323), - [anon_sym_COLON] = ACTIONS(5323), - [anon_sym_SQUOTE] = ACTIONS(5323), - [anon_sym_BSLASHusepackage] = ACTIONS(5323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), - [anon_sym_BSLASHinclude] = ACTIONS(5323), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), - [anon_sym_BSLASHinput] = ACTIONS(5323), - [anon_sym_BSLASHsubfile] = ACTIONS(5323), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5323), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), - [anon_sym_BSLASHincludesvg] = ACTIONS(5323), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), - [anon_sym_BSLASHimport] = ACTIONS(5323), - [anon_sym_BSLASHsubimport] = ACTIONS(5323), - [anon_sym_BSLASHinputfrom] = ACTIONS(5323), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), - [anon_sym_BSLASHincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), - [anon_sym_BSLASHcaption] = ACTIONS(5323), - [anon_sym_BSLASHcite] = ACTIONS(5323), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCite] = ACTIONS(5323), - [anon_sym_BSLASHnocite] = ACTIONS(5323), - [anon_sym_BSLASHcitet] = ACTIONS(5323), - [anon_sym_BSLASHcitep] = ACTIONS(5323), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteyear] = ACTIONS(5323), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), - [anon_sym_BSLASHcitedate] = ACTIONS(5323), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), - [anon_sym_BSLASHciteurl] = ACTIONS(5323), - [anon_sym_BSLASHfullcite] = ACTIONS(5323), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), - [anon_sym_BSLASHcitealt] = ACTIONS(5323), - [anon_sym_BSLASHcitealp] = ACTIONS(5323), - [anon_sym_BSLASHcitetext] = ACTIONS(5323), - [anon_sym_BSLASHparencite] = ACTIONS(5323), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHParencite] = ACTIONS(5323), - [anon_sym_BSLASHfootcite] = ACTIONS(5323), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), - [anon_sym_BSLASHtextcite] = ACTIONS(5323), - [anon_sym_BSLASHTextcite] = ACTIONS(5323), - [anon_sym_BSLASHsmartcite] = ACTIONS(5323), - [anon_sym_BSLASHSmartcite] = ACTIONS(5323), - [anon_sym_BSLASHsupercite] = ACTIONS(5323), - [anon_sym_BSLASHautocite] = ACTIONS(5323), - [anon_sym_BSLASHAutocite] = ACTIONS(5323), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), - [anon_sym_BSLASHvolcite] = ACTIONS(5323), - [anon_sym_BSLASHVolcite] = ACTIONS(5323), - [anon_sym_BSLASHpvolcite] = ACTIONS(5323), - [anon_sym_BSLASHPvolcite] = ACTIONS(5323), - [anon_sym_BSLASHfvolcite] = ACTIONS(5323), - [anon_sym_BSLASHftvolcite] = ACTIONS(5323), - [anon_sym_BSLASHsvolcite] = ACTIONS(5323), - [anon_sym_BSLASHSvolcite] = ACTIONS(5323), - [anon_sym_BSLASHtvolcite] = ACTIONS(5323), - [anon_sym_BSLASHTvolcite] = ACTIONS(5323), - [anon_sym_BSLASHavolcite] = ACTIONS(5323), - [anon_sym_BSLASHAvolcite] = ACTIONS(5323), - [anon_sym_BSLASHnotecite] = ACTIONS(5323), - [anon_sym_BSLASHNotecite] = ACTIONS(5323), - [anon_sym_BSLASHpnotecite] = ACTIONS(5323), - [anon_sym_BSLASHPnotecite] = ACTIONS(5323), - [anon_sym_BSLASHfnotecite] = ACTIONS(5323), - [anon_sym_BSLASHlabel] = ACTIONS(5323), - [anon_sym_BSLASHref] = ACTIONS(5323), - [anon_sym_BSLASHeqref] = ACTIONS(5323), - [anon_sym_BSLASHvref] = ACTIONS(5323), - [anon_sym_BSLASHVref] = ACTIONS(5323), - [anon_sym_BSLASHautoref] = ACTIONS(5323), - [anon_sym_BSLASHpageref] = ACTIONS(5323), - [anon_sym_BSLASHcref] = ACTIONS(5323), - [anon_sym_BSLASHCref] = ACTIONS(5323), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnameCref] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), - [anon_sym_BSLASHlabelcref] = ACTIONS(5323), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange] = ACTIONS(5323), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), - [anon_sym_BSLASHnewlabel] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand] = ACTIONS(5323), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdef] = ACTIONS(5323), - [anon_sym_BSLASHlet] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5323), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5323), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), - [anon_sym_BSLASHgls] = ACTIONS(5323), - [anon_sym_BSLASHGls] = ACTIONS(5323), - [anon_sym_BSLASHGLS] = ACTIONS(5323), - [anon_sym_BSLASHglspl] = ACTIONS(5323), - [anon_sym_BSLASHGlspl] = ACTIONS(5323), - [anon_sym_BSLASHGLSpl] = ACTIONS(5323), - [anon_sym_BSLASHglsdisp] = ACTIONS(5323), - [anon_sym_BSLASHglslink] = ACTIONS(5323), - [anon_sym_BSLASHglstext] = ACTIONS(5323), - [anon_sym_BSLASHGlstext] = ACTIONS(5323), - [anon_sym_BSLASHGLStext] = ACTIONS(5323), - [anon_sym_BSLASHglsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), - [anon_sym_BSLASHglsplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSplural] = ACTIONS(5323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), - [anon_sym_BSLASHglsname] = ACTIONS(5323), - [anon_sym_BSLASHGlsname] = ACTIONS(5323), - [anon_sym_BSLASHGLSname] = ACTIONS(5323), - [anon_sym_BSLASHglssymbol] = ACTIONS(5323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), - [anon_sym_BSLASHglsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), - [anon_sym_BSLASHglsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), - [anon_sym_BSLASHglsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), - [anon_sym_BSLASHglsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), - [anon_sym_BSLASHglsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), - [anon_sym_BSLASHnewacronym] = ACTIONS(5323), - [anon_sym_BSLASHacrshort] = ACTIONS(5323), - [anon_sym_BSLASHAcrshort] = ACTIONS(5323), - [anon_sym_BSLASHACRshort] = ACTIONS(5323), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), - [anon_sym_BSLASHacrlong] = ACTIONS(5323), - [anon_sym_BSLASHAcrlong] = ACTIONS(5323), - [anon_sym_BSLASHACRlong] = ACTIONS(5323), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), - [anon_sym_BSLASHacrfull] = ACTIONS(5323), - [anon_sym_BSLASHAcrfull] = ACTIONS(5323), - [anon_sym_BSLASHACRfull] = ACTIONS(5323), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), - [anon_sym_BSLASHacs] = ACTIONS(5323), - [anon_sym_BSLASHAcs] = ACTIONS(5323), - [anon_sym_BSLASHacsp] = ACTIONS(5323), - [anon_sym_BSLASHAcsp] = ACTIONS(5323), - [anon_sym_BSLASHacl] = ACTIONS(5323), - [anon_sym_BSLASHAcl] = ACTIONS(5323), - [anon_sym_BSLASHaclp] = ACTIONS(5323), - [anon_sym_BSLASHAclp] = ACTIONS(5323), - [anon_sym_BSLASHacf] = ACTIONS(5323), - [anon_sym_BSLASHAcf] = ACTIONS(5323), - [anon_sym_BSLASHacfp] = ACTIONS(5323), - [anon_sym_BSLASHAcfp] = ACTIONS(5323), - [anon_sym_BSLASHac] = ACTIONS(5323), - [anon_sym_BSLASHAc] = ACTIONS(5323), - [anon_sym_BSLASHacp] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), - [anon_sym_BSLASHcolor] = ACTIONS(5323), - [anon_sym_BSLASHcolorbox] = ACTIONS(5323), - [anon_sym_BSLASHtextcolor] = ACTIONS(5323), - [anon_sym_BSLASHpagecolor] = ACTIONS(5323), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [1472] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHbegin] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [1473] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHbegin] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [1474] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHbegin] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [1475] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHbegin] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [1476] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHbegin] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1477] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHbegin] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1478] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHbegin] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1479] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHbegin] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [1480] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHbegin] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1481] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHbegin] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1482] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHbegin] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1483] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHbegin] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [1484] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHbegin] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1485] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHbegin] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1486] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHbegin] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1487] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHbegin] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1488] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHbegin] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1489] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHbegin] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1490] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHbegin] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1491] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHbegin] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1492] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHbegin] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [1493] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHbegin] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [1494] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHbegin] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [1495] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHbegin] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [1496] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHbegin] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [1497] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHbegin] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [1498] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHbegin] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [1499] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHbegin] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), + }, + [1500] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHbegin] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [1501] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHbegin] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [1502] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHbegin] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), + }, + [1503] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHbegin] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), + }, + [1504] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHbegin] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [1505] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHbegin] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [1506] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHbegin] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [1507] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHbegin] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [1508] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHbegin] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [1509] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHbegin] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [1510] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHbegin] = ACTIONS(185), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [1511] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHbegin] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [1512] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHbegin] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [1513] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHbegin] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1514] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHbegin] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1515] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LPAREN] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6165), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_LBRACE] = ACTIONS(6165), + [anon_sym_RBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [1516] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LPAREN] = ACTIONS(5843), + [anon_sym_RPAREN] = ACTIONS(5843), + [anon_sym_LBRACK] = ACTIONS(5843), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_LBRACE] = ACTIONS(5843), + [anon_sym_RBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1517] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), + }, + [1518] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5839), + [anon_sym_RPAREN] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [anon_sym_RBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), + }, + [1519] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LPAREN] = ACTIONS(5875), + [anon_sym_RPAREN] = ACTIONS(5875), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [anon_sym_RBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [1520] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [1521] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1522] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LPAREN] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(6079), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_LBRACE] = ACTIONS(6079), + [anon_sym_RBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [1523] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LPAREN] = ACTIONS(6083), + [anon_sym_RPAREN] = ACTIONS(6083), + [anon_sym_LBRACK] = ACTIONS(6083), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_LBRACE] = ACTIONS(6083), + [anon_sym_RBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1524] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6095), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_LBRACE] = ACTIONS(6095), + [anon_sym_RBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [1525] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LPAREN] = ACTIONS(6099), + [anon_sym_RPAREN] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(6099), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6099), + [anon_sym_RBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [1526] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LPAREN] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_LBRACK] = ACTIONS(6103), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_LBRACE] = ACTIONS(6103), + [anon_sym_RBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), + }, + [1527] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_LBRACE] = ACTIONS(6107), + [anon_sym_RBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), + }, + [1528] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_RPAREN] = ACTIONS(6111), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_LBRACE] = ACTIONS(6111), + [anon_sym_RBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), + }, + [1529] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LPAREN] = ACTIONS(6117), + [anon_sym_RPAREN] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6117), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_LBRACE] = ACTIONS(6117), + [anon_sym_RBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), + }, + [1530] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_RPAREN] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(6121), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_LBRACE] = ACTIONS(6121), + [anon_sym_RBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), + }, + [1531] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LPAREN] = ACTIONS(6125), + [anon_sym_RPAREN] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_LBRACE] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [1532] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [1533] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_LBRACE] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), + }, + [1534] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LPAREN] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6141), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_LBRACE] = ACTIONS(6141), + [anon_sym_RBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [1535] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LPAREN] = ACTIONS(6153), + [anon_sym_RPAREN] = ACTIONS(6153), + [anon_sym_LBRACK] = ACTIONS(6153), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_LBRACE] = ACTIONS(6153), + [anon_sym_RBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [1536] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LPAREN] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [1537] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [1538] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LPAREN] = ACTIONS(5835), + [anon_sym_RPAREN] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5835), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5835), + [anon_sym_RBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [1539] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_RPAREN] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6225), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [anon_sym_RBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [1540] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LPAREN] = ACTIONS(6217), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6217), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_LBRACE] = ACTIONS(6217), + [anon_sym_RBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [1541] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [1542] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6187), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_LBRACE] = ACTIONS(6187), + [anon_sym_RBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [1543] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6173), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_LBRACE] = ACTIONS(6173), + [anon_sym_RBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [1544] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_LBRACE] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [1545] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LPAREN] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [1546] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LPAREN] = ACTIONS(6157), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(6157), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_LBRACE] = ACTIONS(6157), + [anon_sym_RBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), + }, + [1547] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LPAREN] = ACTIONS(6149), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6149), + [anon_sym_RBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [1548] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6137), + [anon_sym_RPAREN] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(6137), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_LBRACE] = ACTIONS(6137), + [anon_sym_RBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [1549] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [1550] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LPAREN] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_LBRACK] = ACTIONS(6091), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_LBRACE] = ACTIONS(6091), + [anon_sym_RBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), + }, + [1551] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_RPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [anon_sym_RBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), + }, + [1552] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5847), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LBRACK] = ACTIONS(5847), + [anon_sym_RBRACK] = ACTIONS(5847), + [anon_sym_COMMA] = ACTIONS(5847), + [anon_sym_LBRACE] = ACTIONS(5847), + [anon_sym_RBRACE] = ACTIONS(5847), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1553] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_LBRACE] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [1554] = { + [sym_command_name] = ACTIONS(6271), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6271), + [anon_sym_LPAREN] = ACTIONS(6273), + [anon_sym_RPAREN] = ACTIONS(6273), + [anon_sym_LBRACK] = ACTIONS(6273), + [anon_sym_RBRACK] = ACTIONS(6273), + [anon_sym_COMMA] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6273), + [anon_sym_RBRACE] = ACTIONS(6273), + [sym_word] = ACTIONS(6271), + [sym_placeholder] = ACTIONS(6273), + [anon_sym_PLUS] = ACTIONS(6271), + [anon_sym_DASH] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6271), + [anon_sym_SLASH] = ACTIONS(6271), + [anon_sym_CARET] = ACTIONS(6271), + [anon_sym__] = ACTIONS(6271), + [anon_sym_LT] = ACTIONS(6271), + [anon_sym_GT] = ACTIONS(6271), + [anon_sym_BANG] = ACTIONS(6271), + [anon_sym_PIPE] = ACTIONS(6271), + [anon_sym_COLON] = ACTIONS(6271), + [anon_sym_SQUOTE] = ACTIONS(6271), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6273), + [anon_sym_DOLLAR] = ACTIONS(6271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6273), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6273), + [anon_sym_BSLASHtitle] = ACTIONS(6271), + [anon_sym_BSLASHauthor] = ACTIONS(6271), + [anon_sym_BSLASHusepackage] = ACTIONS(6271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6271), + [anon_sym_BSLASHinclude] = ACTIONS(6271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6271), + [anon_sym_BSLASHinput] = ACTIONS(6271), + [anon_sym_BSLASHsubfile] = ACTIONS(6271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6271), + [anon_sym_BSLASHbibliography] = ACTIONS(6271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6271), + [anon_sym_BSLASHincludesvg] = ACTIONS(6271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6271), + [anon_sym_BSLASHimport] = ACTIONS(6271), + [anon_sym_BSLASHsubimport] = ACTIONS(6271), + [anon_sym_BSLASHinputfrom] = ACTIONS(6271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6271), + [anon_sym_BSLASHincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6271), + [anon_sym_BSLASHcaption] = ACTIONS(6271), + [anon_sym_BSLASHcite] = ACTIONS(6271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCite] = ACTIONS(6271), + [anon_sym_BSLASHnocite] = ACTIONS(6271), + [anon_sym_BSLASHcitet] = ACTIONS(6271), + [anon_sym_BSLASHcitep] = ACTIONS(6271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteauthor] = ACTIONS(6271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitetitle] = ACTIONS(6271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteyear] = ACTIONS(6271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6273), + [anon_sym_BSLASHcitedate] = ACTIONS(6271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6273), + [anon_sym_BSLASHciteurl] = ACTIONS(6271), + [anon_sym_BSLASHfullcite] = ACTIONS(6271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6271), + [anon_sym_BSLASHcitealt] = ACTIONS(6271), + [anon_sym_BSLASHcitealp] = ACTIONS(6271), + [anon_sym_BSLASHcitetext] = ACTIONS(6271), + [anon_sym_BSLASHparencite] = ACTIONS(6271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHParencite] = ACTIONS(6271), + [anon_sym_BSLASHfootcite] = ACTIONS(6271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6271), + [anon_sym_BSLASHtextcite] = ACTIONS(6271), + [anon_sym_BSLASHTextcite] = ACTIONS(6271), + [anon_sym_BSLASHsmartcite] = ACTIONS(6271), + [anon_sym_BSLASHSmartcite] = ACTIONS(6271), + [anon_sym_BSLASHsupercite] = ACTIONS(6271), + [anon_sym_BSLASHautocite] = ACTIONS(6271), + [anon_sym_BSLASHAutocite] = ACTIONS(6271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6273), + [anon_sym_BSLASHvolcite] = ACTIONS(6271), + [anon_sym_BSLASHVolcite] = ACTIONS(6271), + [anon_sym_BSLASHpvolcite] = ACTIONS(6271), + [anon_sym_BSLASHPvolcite] = ACTIONS(6271), + [anon_sym_BSLASHfvolcite] = ACTIONS(6271), + [anon_sym_BSLASHftvolcite] = ACTIONS(6271), + [anon_sym_BSLASHsvolcite] = ACTIONS(6271), + [anon_sym_BSLASHSvolcite] = ACTIONS(6271), + [anon_sym_BSLASHtvolcite] = ACTIONS(6271), + [anon_sym_BSLASHTvolcite] = ACTIONS(6271), + [anon_sym_BSLASHavolcite] = ACTIONS(6271), + [anon_sym_BSLASHAvolcite] = ACTIONS(6271), + [anon_sym_BSLASHnotecite] = ACTIONS(6271), + [anon_sym_BSLASHNotecite] = ACTIONS(6271), + [anon_sym_BSLASHpnotecite] = ACTIONS(6271), + [anon_sym_BSLASHPnotecite] = ACTIONS(6271), + [anon_sym_BSLASHfnotecite] = ACTIONS(6271), + [anon_sym_BSLASHlabel] = ACTIONS(6271), + [anon_sym_BSLASHref] = ACTIONS(6271), + [anon_sym_BSLASHeqref] = ACTIONS(6271), + [anon_sym_BSLASHvref] = ACTIONS(6271), + [anon_sym_BSLASHVref] = ACTIONS(6271), + [anon_sym_BSLASHautoref] = ACTIONS(6271), + [anon_sym_BSLASHpageref] = ACTIONS(6271), + [anon_sym_BSLASHcref] = ACTIONS(6271), + [anon_sym_BSLASHCref] = ACTIONS(6271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnameCref] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6271), + [anon_sym_BSLASHlabelcref] = ACTIONS(6271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange] = ACTIONS(6271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHCrefrange] = ACTIONS(6271), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6273), + [anon_sym_BSLASHnewlabel] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand] = ACTIONS(6271), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6271), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6271), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6273), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdef] = ACTIONS(6271), + [anon_sym_BSLASHlet] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6271), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6271), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6271), + [anon_sym_BSLASHgls] = ACTIONS(6271), + [anon_sym_BSLASHGls] = ACTIONS(6271), + [anon_sym_BSLASHGLS] = ACTIONS(6271), + [anon_sym_BSLASHglspl] = ACTIONS(6271), + [anon_sym_BSLASHGlspl] = ACTIONS(6271), + [anon_sym_BSLASHGLSpl] = ACTIONS(6271), + [anon_sym_BSLASHglsdisp] = ACTIONS(6271), + [anon_sym_BSLASHglslink] = ACTIONS(6271), + [anon_sym_BSLASHglstext] = ACTIONS(6271), + [anon_sym_BSLASHGlstext] = ACTIONS(6271), + [anon_sym_BSLASHGLStext] = ACTIONS(6271), + [anon_sym_BSLASHglsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6271), + [anon_sym_BSLASHglsplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSplural] = ACTIONS(6271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6271), + [anon_sym_BSLASHglsname] = ACTIONS(6271), + [anon_sym_BSLASHGlsname] = ACTIONS(6271), + [anon_sym_BSLASHGLSname] = ACTIONS(6271), + [anon_sym_BSLASHglssymbol] = ACTIONS(6271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6271), + [anon_sym_BSLASHglsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6271), + [anon_sym_BSLASHglsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6271), + [anon_sym_BSLASHglsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6271), + [anon_sym_BSLASHglsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6271), + [anon_sym_BSLASHglsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6271), + [anon_sym_BSLASHnewacronym] = ACTIONS(6271), + [anon_sym_BSLASHacrshort] = ACTIONS(6271), + [anon_sym_BSLASHAcrshort] = ACTIONS(6271), + [anon_sym_BSLASHACRshort] = ACTIONS(6271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6271), + [anon_sym_BSLASHacrlong] = ACTIONS(6271), + [anon_sym_BSLASHAcrlong] = ACTIONS(6271), + [anon_sym_BSLASHACRlong] = ACTIONS(6271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6271), + [anon_sym_BSLASHacrfull] = ACTIONS(6271), + [anon_sym_BSLASHAcrfull] = ACTIONS(6271), + [anon_sym_BSLASHACRfull] = ACTIONS(6271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6271), + [anon_sym_BSLASHacs] = ACTIONS(6271), + [anon_sym_BSLASHAcs] = ACTIONS(6271), + [anon_sym_BSLASHacsp] = ACTIONS(6271), + [anon_sym_BSLASHAcsp] = ACTIONS(6271), + [anon_sym_BSLASHacl] = ACTIONS(6271), + [anon_sym_BSLASHAcl] = ACTIONS(6271), + [anon_sym_BSLASHaclp] = ACTIONS(6271), + [anon_sym_BSLASHAclp] = ACTIONS(6271), + [anon_sym_BSLASHacf] = ACTIONS(6271), + [anon_sym_BSLASHAcf] = ACTIONS(6271), + [anon_sym_BSLASHacfp] = ACTIONS(6271), + [anon_sym_BSLASHAcfp] = ACTIONS(6271), + [anon_sym_BSLASHac] = ACTIONS(6271), + [anon_sym_BSLASHAc] = ACTIONS(6271), + [anon_sym_BSLASHacp] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6271), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6271), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6271), + [anon_sym_BSLASHcolor] = ACTIONS(6271), + [anon_sym_BSLASHcolorbox] = ACTIONS(6271), + [anon_sym_BSLASHtextcolor] = ACTIONS(6271), + [anon_sym_BSLASHpagecolor] = ACTIONS(6271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6271), + [anon_sym_BSLASHtext] = ACTIONS(6271), + [anon_sym_BSLASHintertext] = ACTIONS(6271), + [anon_sym_shortintertext] = ACTIONS(6271), + }, + [1555] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_LBRACE] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [1556] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_LBRACE] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [1557] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [1558] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [1559] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_LBRACE] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [1560] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5921), + [anon_sym_RPAREN] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5921), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1561] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1562] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1563] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_RPAREN] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1564] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5977), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5977), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_LBRACE] = ACTIONS(5977), + [anon_sym_RBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1565] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_LBRACE] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1566] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [1567] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1568] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1569] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1570] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6195), + [anon_sym_RBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1571] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(6265), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(6265), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_LBRACE] = ACTIONS(6265), + [anon_sym_RBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1572] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [anon_sym_RBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1573] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5985), + [anon_sym_RPAREN] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(5985), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_LBRACE] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1574] = { + [sym_command_name] = ACTIONS(6289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6289), + [anon_sym_LPAREN] = ACTIONS(6291), + [anon_sym_RPAREN] = ACTIONS(6291), + [anon_sym_LBRACK] = ACTIONS(6291), + [anon_sym_RBRACK] = ACTIONS(6291), + [anon_sym_COMMA] = ACTIONS(6291), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(6291), + [sym_word] = ACTIONS(6289), + [sym_placeholder] = ACTIONS(6291), + [anon_sym_PLUS] = ACTIONS(6289), + [anon_sym_DASH] = ACTIONS(6289), + [anon_sym_STAR] = ACTIONS(6289), + [anon_sym_SLASH] = ACTIONS(6289), + [anon_sym_CARET] = ACTIONS(6289), + [anon_sym__] = ACTIONS(6289), + [anon_sym_LT] = ACTIONS(6289), + [anon_sym_GT] = ACTIONS(6289), + [anon_sym_BANG] = ACTIONS(6289), + [anon_sym_PIPE] = ACTIONS(6289), + [anon_sym_COLON] = ACTIONS(6289), + [anon_sym_SQUOTE] = ACTIONS(6289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), + [anon_sym_DOLLAR] = ACTIONS(6289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6291), + [anon_sym_BSLASHtitle] = ACTIONS(6289), + [anon_sym_BSLASHauthor] = ACTIONS(6289), + [anon_sym_BSLASHusepackage] = ACTIONS(6289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), + [anon_sym_BSLASHinclude] = ACTIONS(6289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), + [anon_sym_BSLASHinput] = ACTIONS(6289), + [anon_sym_BSLASHsubfile] = ACTIONS(6289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), + [anon_sym_BSLASHbibliography] = ACTIONS(6289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), + [anon_sym_BSLASHincludesvg] = ACTIONS(6289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), + [anon_sym_BSLASHimport] = ACTIONS(6289), + [anon_sym_BSLASHsubimport] = ACTIONS(6289), + [anon_sym_BSLASHinputfrom] = ACTIONS(6289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), + [anon_sym_BSLASHincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), + [anon_sym_BSLASHcaption] = ACTIONS(6289), + [anon_sym_BSLASHcite] = ACTIONS(6289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCite] = ACTIONS(6289), + [anon_sym_BSLASHnocite] = ACTIONS(6289), + [anon_sym_BSLASHcitet] = ACTIONS(6289), + [anon_sym_BSLASHcitep] = ACTIONS(6289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteauthor] = ACTIONS(6289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitetitle] = ACTIONS(6289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteyear] = ACTIONS(6289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), + [anon_sym_BSLASHcitedate] = ACTIONS(6289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), + [anon_sym_BSLASHciteurl] = ACTIONS(6289), + [anon_sym_BSLASHfullcite] = ACTIONS(6289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), + [anon_sym_BSLASHcitealt] = ACTIONS(6289), + [anon_sym_BSLASHcitealp] = ACTIONS(6289), + [anon_sym_BSLASHcitetext] = ACTIONS(6289), + [anon_sym_BSLASHparencite] = ACTIONS(6289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHParencite] = ACTIONS(6289), + [anon_sym_BSLASHfootcite] = ACTIONS(6289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), + [anon_sym_BSLASHtextcite] = ACTIONS(6289), + [anon_sym_BSLASHTextcite] = ACTIONS(6289), + [anon_sym_BSLASHsmartcite] = ACTIONS(6289), + [anon_sym_BSLASHSmartcite] = ACTIONS(6289), + [anon_sym_BSLASHsupercite] = ACTIONS(6289), + [anon_sym_BSLASHautocite] = ACTIONS(6289), + [anon_sym_BSLASHAutocite] = ACTIONS(6289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), + [anon_sym_BSLASHvolcite] = ACTIONS(6289), + [anon_sym_BSLASHVolcite] = ACTIONS(6289), + [anon_sym_BSLASHpvolcite] = ACTIONS(6289), + [anon_sym_BSLASHPvolcite] = ACTIONS(6289), + [anon_sym_BSLASHfvolcite] = ACTIONS(6289), + [anon_sym_BSLASHftvolcite] = ACTIONS(6289), + [anon_sym_BSLASHsvolcite] = ACTIONS(6289), + [anon_sym_BSLASHSvolcite] = ACTIONS(6289), + [anon_sym_BSLASHtvolcite] = ACTIONS(6289), + [anon_sym_BSLASHTvolcite] = ACTIONS(6289), + [anon_sym_BSLASHavolcite] = ACTIONS(6289), + [anon_sym_BSLASHAvolcite] = ACTIONS(6289), + [anon_sym_BSLASHnotecite] = ACTIONS(6289), + [anon_sym_BSLASHNotecite] = ACTIONS(6289), + [anon_sym_BSLASHpnotecite] = ACTIONS(6289), + [anon_sym_BSLASHPnotecite] = ACTIONS(6289), + [anon_sym_BSLASHfnotecite] = ACTIONS(6289), + [anon_sym_BSLASHlabel] = ACTIONS(6289), + [anon_sym_BSLASHref] = ACTIONS(6289), + [anon_sym_BSLASHeqref] = ACTIONS(6289), + [anon_sym_BSLASHvref] = ACTIONS(6289), + [anon_sym_BSLASHVref] = ACTIONS(6289), + [anon_sym_BSLASHautoref] = ACTIONS(6289), + [anon_sym_BSLASHpageref] = ACTIONS(6289), + [anon_sym_BSLASHcref] = ACTIONS(6289), + [anon_sym_BSLASHCref] = ACTIONS(6289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnameCref] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), + [anon_sym_BSLASHlabelcref] = ACTIONS(6289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange] = ACTIONS(6289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHCrefrange] = ACTIONS(6289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), + [anon_sym_BSLASHnewlabel] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand] = ACTIONS(6289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdef] = ACTIONS(6289), + [anon_sym_BSLASHlet] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), + [anon_sym_BSLASHgls] = ACTIONS(6289), + [anon_sym_BSLASHGls] = ACTIONS(6289), + [anon_sym_BSLASHGLS] = ACTIONS(6289), + [anon_sym_BSLASHglspl] = ACTIONS(6289), + [anon_sym_BSLASHGlspl] = ACTIONS(6289), + [anon_sym_BSLASHGLSpl] = ACTIONS(6289), + [anon_sym_BSLASHglsdisp] = ACTIONS(6289), + [anon_sym_BSLASHglslink] = ACTIONS(6289), + [anon_sym_BSLASHglstext] = ACTIONS(6289), + [anon_sym_BSLASHGlstext] = ACTIONS(6289), + [anon_sym_BSLASHGLStext] = ACTIONS(6289), + [anon_sym_BSLASHglsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), + [anon_sym_BSLASHglsplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSplural] = ACTIONS(6289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), + [anon_sym_BSLASHglsname] = ACTIONS(6289), + [anon_sym_BSLASHGlsname] = ACTIONS(6289), + [anon_sym_BSLASHGLSname] = ACTIONS(6289), + [anon_sym_BSLASHglssymbol] = ACTIONS(6289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), + [anon_sym_BSLASHglsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), + [anon_sym_BSLASHglsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), + [anon_sym_BSLASHglsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), + [anon_sym_BSLASHglsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), + [anon_sym_BSLASHglsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), + [anon_sym_BSLASHnewacronym] = ACTIONS(6289), + [anon_sym_BSLASHacrshort] = ACTIONS(6289), + [anon_sym_BSLASHAcrshort] = ACTIONS(6289), + [anon_sym_BSLASHACRshort] = ACTIONS(6289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), + [anon_sym_BSLASHacrlong] = ACTIONS(6289), + [anon_sym_BSLASHAcrlong] = ACTIONS(6289), + [anon_sym_BSLASHACRlong] = ACTIONS(6289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), + [anon_sym_BSLASHacrfull] = ACTIONS(6289), + [anon_sym_BSLASHAcrfull] = ACTIONS(6289), + [anon_sym_BSLASHACRfull] = ACTIONS(6289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), + [anon_sym_BSLASHacs] = ACTIONS(6289), + [anon_sym_BSLASHAcs] = ACTIONS(6289), + [anon_sym_BSLASHacsp] = ACTIONS(6289), + [anon_sym_BSLASHAcsp] = ACTIONS(6289), + [anon_sym_BSLASHacl] = ACTIONS(6289), + [anon_sym_BSLASHAcl] = ACTIONS(6289), + [anon_sym_BSLASHaclp] = ACTIONS(6289), + [anon_sym_BSLASHAclp] = ACTIONS(6289), + [anon_sym_BSLASHacf] = ACTIONS(6289), + [anon_sym_BSLASHAcf] = ACTIONS(6289), + [anon_sym_BSLASHacfp] = ACTIONS(6289), + [anon_sym_BSLASHAcfp] = ACTIONS(6289), + [anon_sym_BSLASHac] = ACTIONS(6289), + [anon_sym_BSLASHAc] = ACTIONS(6289), + [anon_sym_BSLASHacp] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), + [anon_sym_BSLASHcolor] = ACTIONS(6289), + [anon_sym_BSLASHcolorbox] = ACTIONS(6289), + [anon_sym_BSLASHtextcolor] = ACTIONS(6289), + [anon_sym_BSLASHpagecolor] = ACTIONS(6289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), + [anon_sym_BSLASHtext] = ACTIONS(6289), + [anon_sym_BSLASHintertext] = ACTIONS(6289), + [anon_sym_shortintertext] = ACTIONS(6289), + }, + [1575] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [anon_sym_RBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1576] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1577] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1578] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_LBRACE] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [1579] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5973), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_LBRACK] = ACTIONS(5973), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_LBRACE] = ACTIONS(5973), + [anon_sym_RBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [1580] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [anon_sym_RBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [1581] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [1582] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LPAREN] = ACTIONS(6257), + [anon_sym_RPAREN] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(6257), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [1583] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [1584] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [1585] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LPAREN] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6261), + [anon_sym_RBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [1586] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [anon_sym_RBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1587] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LPAREN] = ACTIONS(6207), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LBRACK] = ACTIONS(6207), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_LBRACE] = ACTIONS(6207), + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), }, [1588] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LPAREN] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6203), + [anon_sym_RBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), }, [1589] = { - [sym_command_name] = ACTIONS(5383), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5381), - [anon_sym_COMMA] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_RBRACE] = ACTIONS(5381), - [sym_word] = ACTIONS(5383), - [sym_placeholder] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym__] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5383), - [anon_sym_GT] = ACTIONS(5383), - [anon_sym_BANG] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_SQUOTE] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5383), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5383), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5383), - [anon_sym_BSLASHinclude] = ACTIONS(5383), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5383), - [anon_sym_BSLASHinput] = ACTIONS(5383), - [anon_sym_BSLASHsubfile] = ACTIONS(5383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5383), - [anon_sym_BSLASHbibliography] = ACTIONS(5383), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5383), - [anon_sym_BSLASHincludesvg] = ACTIONS(5383), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5383), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5383), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5383), - [anon_sym_BSLASHimport] = ACTIONS(5383), - [anon_sym_BSLASHsubimport] = ACTIONS(5383), - [anon_sym_BSLASHinputfrom] = ACTIONS(5383), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5383), - [anon_sym_BSLASHincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5383), - [anon_sym_BSLASHcaption] = ACTIONS(5383), - [anon_sym_BSLASHcite] = ACTIONS(5383), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCite] = ACTIONS(5383), - [anon_sym_BSLASHnocite] = ACTIONS(5383), - [anon_sym_BSLASHcitet] = ACTIONS(5383), - [anon_sym_BSLASHcitep] = ACTIONS(5383), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteyear] = ACTIONS(5383), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5381), - [anon_sym_BSLASHcitedate] = ACTIONS(5383), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5381), - [anon_sym_BSLASHciteurl] = ACTIONS(5383), - [anon_sym_BSLASHfullcite] = ACTIONS(5383), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5383), - [anon_sym_BSLASHcitealt] = ACTIONS(5383), - [anon_sym_BSLASHcitealp] = ACTIONS(5383), - [anon_sym_BSLASHcitetext] = ACTIONS(5383), - [anon_sym_BSLASHparencite] = ACTIONS(5383), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHParencite] = ACTIONS(5383), - [anon_sym_BSLASHfootcite] = ACTIONS(5383), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5383), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5383), - [anon_sym_BSLASHtextcite] = ACTIONS(5383), - [anon_sym_BSLASHTextcite] = ACTIONS(5383), - [anon_sym_BSLASHsmartcite] = ACTIONS(5383), - [anon_sym_BSLASHSmartcite] = ACTIONS(5383), - [anon_sym_BSLASHsupercite] = ACTIONS(5383), - [anon_sym_BSLASHautocite] = ACTIONS(5383), - [anon_sym_BSLASHAutocite] = ACTIONS(5383), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5381), - [anon_sym_BSLASHvolcite] = ACTIONS(5383), - [anon_sym_BSLASHVolcite] = ACTIONS(5383), - [anon_sym_BSLASHpvolcite] = ACTIONS(5383), - [anon_sym_BSLASHPvolcite] = ACTIONS(5383), - [anon_sym_BSLASHfvolcite] = ACTIONS(5383), - [anon_sym_BSLASHftvolcite] = ACTIONS(5383), - [anon_sym_BSLASHsvolcite] = ACTIONS(5383), - [anon_sym_BSLASHSvolcite] = ACTIONS(5383), - [anon_sym_BSLASHtvolcite] = ACTIONS(5383), - [anon_sym_BSLASHTvolcite] = ACTIONS(5383), - [anon_sym_BSLASHavolcite] = ACTIONS(5383), - [anon_sym_BSLASHAvolcite] = ACTIONS(5383), - [anon_sym_BSLASHnotecite] = ACTIONS(5383), - [anon_sym_BSLASHNotecite] = ACTIONS(5383), - [anon_sym_BSLASHpnotecite] = ACTIONS(5383), - [anon_sym_BSLASHPnotecite] = ACTIONS(5383), - [anon_sym_BSLASHfnotecite] = ACTIONS(5383), - [anon_sym_BSLASHlabel] = ACTIONS(5383), - [anon_sym_BSLASHref] = ACTIONS(5383), - [anon_sym_BSLASHeqref] = ACTIONS(5383), - [anon_sym_BSLASHvref] = ACTIONS(5383), - [anon_sym_BSLASHVref] = ACTIONS(5383), - [anon_sym_BSLASHautoref] = ACTIONS(5383), - [anon_sym_BSLASHpageref] = ACTIONS(5383), - [anon_sym_BSLASHcref] = ACTIONS(5383), - [anon_sym_BSLASHCref] = ACTIONS(5383), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnameCref] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5383), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5383), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5383), - [anon_sym_BSLASHlabelcref] = ACTIONS(5383), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange] = ACTIONS(5383), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5381), - [anon_sym_BSLASHnewlabel] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand] = ACTIONS(5383), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdef] = ACTIONS(5383), - [anon_sym_BSLASHlet] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5383), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5383), - [anon_sym_BSLASHgls] = ACTIONS(5383), - [anon_sym_BSLASHGls] = ACTIONS(5383), - [anon_sym_BSLASHGLS] = ACTIONS(5383), - [anon_sym_BSLASHglspl] = ACTIONS(5383), - [anon_sym_BSLASHGlspl] = ACTIONS(5383), - [anon_sym_BSLASHGLSpl] = ACTIONS(5383), - [anon_sym_BSLASHglsdisp] = ACTIONS(5383), - [anon_sym_BSLASHglslink] = ACTIONS(5383), - [anon_sym_BSLASHglstext] = ACTIONS(5383), - [anon_sym_BSLASHGlstext] = ACTIONS(5383), - [anon_sym_BSLASHGLStext] = ACTIONS(5383), - [anon_sym_BSLASHglsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5383), - [anon_sym_BSLASHglsplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSplural] = ACTIONS(5383), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5383), - [anon_sym_BSLASHglsname] = ACTIONS(5383), - [anon_sym_BSLASHGlsname] = ACTIONS(5383), - [anon_sym_BSLASHGLSname] = ACTIONS(5383), - [anon_sym_BSLASHglssymbol] = ACTIONS(5383), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5383), - [anon_sym_BSLASHglsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5383), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5383), - [anon_sym_BSLASHglsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5383), - [anon_sym_BSLASHglsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5383), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5383), - [anon_sym_BSLASHglsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5383), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5383), - [anon_sym_BSLASHglsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5383), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5383), - [anon_sym_BSLASHnewacronym] = ACTIONS(5383), - [anon_sym_BSLASHacrshort] = ACTIONS(5383), - [anon_sym_BSLASHAcrshort] = ACTIONS(5383), - [anon_sym_BSLASHACRshort] = ACTIONS(5383), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5383), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5383), - [anon_sym_BSLASHacrlong] = ACTIONS(5383), - [anon_sym_BSLASHAcrlong] = ACTIONS(5383), - [anon_sym_BSLASHACRlong] = ACTIONS(5383), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5383), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5383), - [anon_sym_BSLASHacrfull] = ACTIONS(5383), - [anon_sym_BSLASHAcrfull] = ACTIONS(5383), - [anon_sym_BSLASHACRfull] = ACTIONS(5383), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5383), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5383), - [anon_sym_BSLASHacs] = ACTIONS(5383), - [anon_sym_BSLASHAcs] = ACTIONS(5383), - [anon_sym_BSLASHacsp] = ACTIONS(5383), - [anon_sym_BSLASHAcsp] = ACTIONS(5383), - [anon_sym_BSLASHacl] = ACTIONS(5383), - [anon_sym_BSLASHAcl] = ACTIONS(5383), - [anon_sym_BSLASHaclp] = ACTIONS(5383), - [anon_sym_BSLASHAclp] = ACTIONS(5383), - [anon_sym_BSLASHacf] = ACTIONS(5383), - [anon_sym_BSLASHAcf] = ACTIONS(5383), - [anon_sym_BSLASHacfp] = ACTIONS(5383), - [anon_sym_BSLASHAcfp] = ACTIONS(5383), - [anon_sym_BSLASHac] = ACTIONS(5383), - [anon_sym_BSLASHAc] = ACTIONS(5383), - [anon_sym_BSLASHacp] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5383), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5383), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5383), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5383), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5383), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5383), - [anon_sym_BSLASHcolor] = ACTIONS(5383), - [anon_sym_BSLASHcolorbox] = ACTIONS(5383), - [anon_sym_BSLASHtextcolor] = ACTIONS(5383), - [anon_sym_BSLASHpagecolor] = ACTIONS(5383), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5383), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5383), + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LPAREN] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), }, [1590] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6051), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [anon_sym_RBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), }, [1591] = { - [sym_command_name] = ACTIONS(5229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5227), - [anon_sym_COMMA] = ACTIONS(5227), - [anon_sym_EQ] = ACTIONS(5227), - [anon_sym_RBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(5229), - [sym_placeholder] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_BANG] = ACTIONS(5229), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_SQUOTE] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), - [anon_sym_BSLASHinclude] = ACTIONS(5229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), - [anon_sym_BSLASHinput] = ACTIONS(5229), - [anon_sym_BSLASHsubfile] = ACTIONS(5229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), - [anon_sym_BSLASHbibliography] = ACTIONS(5229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), - [anon_sym_BSLASHincludesvg] = ACTIONS(5229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), - [anon_sym_BSLASHimport] = ACTIONS(5229), - [anon_sym_BSLASHsubimport] = ACTIONS(5229), - [anon_sym_BSLASHinputfrom] = ACTIONS(5229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), - [anon_sym_BSLASHincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), - [anon_sym_BSLASHcaption] = ACTIONS(5229), - [anon_sym_BSLASHcite] = ACTIONS(5229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCite] = ACTIONS(5229), - [anon_sym_BSLASHnocite] = ACTIONS(5229), - [anon_sym_BSLASHcitet] = ACTIONS(5229), - [anon_sym_BSLASHcitep] = ACTIONS(5229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteauthor] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitetitle] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteyear] = ACTIONS(5229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), - [anon_sym_BSLASHcitedate] = ACTIONS(5229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), - [anon_sym_BSLASHciteurl] = ACTIONS(5229), - [anon_sym_BSLASHfullcite] = ACTIONS(5229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), - [anon_sym_BSLASHcitealt] = ACTIONS(5229), - [anon_sym_BSLASHcitealp] = ACTIONS(5229), - [anon_sym_BSLASHcitetext] = ACTIONS(5229), - [anon_sym_BSLASHparencite] = ACTIONS(5229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHParencite] = ACTIONS(5229), - [anon_sym_BSLASHfootcite] = ACTIONS(5229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), - [anon_sym_BSLASHtextcite] = ACTIONS(5229), - [anon_sym_BSLASHTextcite] = ACTIONS(5229), - [anon_sym_BSLASHsmartcite] = ACTIONS(5229), - [anon_sym_BSLASHSmartcite] = ACTIONS(5229), - [anon_sym_BSLASHsupercite] = ACTIONS(5229), - [anon_sym_BSLASHautocite] = ACTIONS(5229), - [anon_sym_BSLASHAutocite] = ACTIONS(5229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), - [anon_sym_BSLASHvolcite] = ACTIONS(5229), - [anon_sym_BSLASHVolcite] = ACTIONS(5229), - [anon_sym_BSLASHpvolcite] = ACTIONS(5229), - [anon_sym_BSLASHPvolcite] = ACTIONS(5229), - [anon_sym_BSLASHfvolcite] = ACTIONS(5229), - [anon_sym_BSLASHftvolcite] = ACTIONS(5229), - [anon_sym_BSLASHsvolcite] = ACTIONS(5229), - [anon_sym_BSLASHSvolcite] = ACTIONS(5229), - [anon_sym_BSLASHtvolcite] = ACTIONS(5229), - [anon_sym_BSLASHTvolcite] = ACTIONS(5229), - [anon_sym_BSLASHavolcite] = ACTIONS(5229), - [anon_sym_BSLASHAvolcite] = ACTIONS(5229), - [anon_sym_BSLASHnotecite] = ACTIONS(5229), - [anon_sym_BSLASHNotecite] = ACTIONS(5229), - [anon_sym_BSLASHpnotecite] = ACTIONS(5229), - [anon_sym_BSLASHPnotecite] = ACTIONS(5229), - [anon_sym_BSLASHfnotecite] = ACTIONS(5229), - [anon_sym_BSLASHlabel] = ACTIONS(5229), - [anon_sym_BSLASHref] = ACTIONS(5229), - [anon_sym_BSLASHeqref] = ACTIONS(5229), - [anon_sym_BSLASHvref] = ACTIONS(5229), - [anon_sym_BSLASHVref] = ACTIONS(5229), - [anon_sym_BSLASHautoref] = ACTIONS(5229), - [anon_sym_BSLASHpageref] = ACTIONS(5229), - [anon_sym_BSLASHcref] = ACTIONS(5229), - [anon_sym_BSLASHCref] = ACTIONS(5229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnameCref] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), - [anon_sym_BSLASHlabelcref] = ACTIONS(5229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange] = ACTIONS(5229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHCrefrange] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), - [anon_sym_BSLASHnewlabel] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand] = ACTIONS(5229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdef] = ACTIONS(5229), - [anon_sym_BSLASHlet] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), - [anon_sym_BSLASHgls] = ACTIONS(5229), - [anon_sym_BSLASHGls] = ACTIONS(5229), - [anon_sym_BSLASHGLS] = ACTIONS(5229), - [anon_sym_BSLASHglspl] = ACTIONS(5229), - [anon_sym_BSLASHGlspl] = ACTIONS(5229), - [anon_sym_BSLASHGLSpl] = ACTIONS(5229), - [anon_sym_BSLASHglsdisp] = ACTIONS(5229), - [anon_sym_BSLASHglslink] = ACTIONS(5229), - [anon_sym_BSLASHglstext] = ACTIONS(5229), - [anon_sym_BSLASHGlstext] = ACTIONS(5229), - [anon_sym_BSLASHGLStext] = ACTIONS(5229), - [anon_sym_BSLASHglsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), - [anon_sym_BSLASHglsplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSplural] = ACTIONS(5229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), - [anon_sym_BSLASHglsname] = ACTIONS(5229), - [anon_sym_BSLASHGlsname] = ACTIONS(5229), - [anon_sym_BSLASHGLSname] = ACTIONS(5229), - [anon_sym_BSLASHglssymbol] = ACTIONS(5229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), - [anon_sym_BSLASHglsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), - [anon_sym_BSLASHglsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), - [anon_sym_BSLASHglsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), - [anon_sym_BSLASHglsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), - [anon_sym_BSLASHglsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), - [anon_sym_BSLASHnewacronym] = ACTIONS(5229), - [anon_sym_BSLASHacrshort] = ACTIONS(5229), - [anon_sym_BSLASHAcrshort] = ACTIONS(5229), - [anon_sym_BSLASHACRshort] = ACTIONS(5229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), - [anon_sym_BSLASHacrlong] = ACTIONS(5229), - [anon_sym_BSLASHAcrlong] = ACTIONS(5229), - [anon_sym_BSLASHACRlong] = ACTIONS(5229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), - [anon_sym_BSLASHacrfull] = ACTIONS(5229), - [anon_sym_BSLASHAcrfull] = ACTIONS(5229), - [anon_sym_BSLASHACRfull] = ACTIONS(5229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), - [anon_sym_BSLASHacs] = ACTIONS(5229), - [anon_sym_BSLASHAcs] = ACTIONS(5229), - [anon_sym_BSLASHacsp] = ACTIONS(5229), - [anon_sym_BSLASHAcsp] = ACTIONS(5229), - [anon_sym_BSLASHacl] = ACTIONS(5229), - [anon_sym_BSLASHAcl] = ACTIONS(5229), - [anon_sym_BSLASHaclp] = ACTIONS(5229), - [anon_sym_BSLASHAclp] = ACTIONS(5229), - [anon_sym_BSLASHacf] = ACTIONS(5229), - [anon_sym_BSLASHAcf] = ACTIONS(5229), - [anon_sym_BSLASHacfp] = ACTIONS(5229), - [anon_sym_BSLASHAcfp] = ACTIONS(5229), - [anon_sym_BSLASHac] = ACTIONS(5229), - [anon_sym_BSLASHAc] = ACTIONS(5229), - [anon_sym_BSLASHacp] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), - [anon_sym_BSLASHcolor] = ACTIONS(5229), - [anon_sym_BSLASHcolorbox] = ACTIONS(5229), - [anon_sym_BSLASHtextcolor] = ACTIONS(5229), - [anon_sym_BSLASHpagecolor] = ACTIONS(5229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [anon_sym_RBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), }, [1592] = { - [sym_command_name] = ACTIONS(5233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [sym_word] = ACTIONS(5233), - [sym_placeholder] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym__] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_BANG] = ACTIONS(5233), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_SQUOTE] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), - [anon_sym_BSLASHinclude] = ACTIONS(5233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), - [anon_sym_BSLASHinput] = ACTIONS(5233), - [anon_sym_BSLASHsubfile] = ACTIONS(5233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), - [anon_sym_BSLASHbibliography] = ACTIONS(5233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), - [anon_sym_BSLASHincludesvg] = ACTIONS(5233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), - [anon_sym_BSLASHimport] = ACTIONS(5233), - [anon_sym_BSLASHsubimport] = ACTIONS(5233), - [anon_sym_BSLASHinputfrom] = ACTIONS(5233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), - [anon_sym_BSLASHincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), - [anon_sym_BSLASHcaption] = ACTIONS(5233), - [anon_sym_BSLASHcite] = ACTIONS(5233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCite] = ACTIONS(5233), - [anon_sym_BSLASHnocite] = ACTIONS(5233), - [anon_sym_BSLASHcitet] = ACTIONS(5233), - [anon_sym_BSLASHcitep] = ACTIONS(5233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteyear] = ACTIONS(5233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), - [anon_sym_BSLASHcitedate] = ACTIONS(5233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), - [anon_sym_BSLASHciteurl] = ACTIONS(5233), - [anon_sym_BSLASHfullcite] = ACTIONS(5233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), - [anon_sym_BSLASHcitealt] = ACTIONS(5233), - [anon_sym_BSLASHcitealp] = ACTIONS(5233), - [anon_sym_BSLASHcitetext] = ACTIONS(5233), - [anon_sym_BSLASHparencite] = ACTIONS(5233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHParencite] = ACTIONS(5233), - [anon_sym_BSLASHfootcite] = ACTIONS(5233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), - [anon_sym_BSLASHtextcite] = ACTIONS(5233), - [anon_sym_BSLASHTextcite] = ACTIONS(5233), - [anon_sym_BSLASHsmartcite] = ACTIONS(5233), - [anon_sym_BSLASHSmartcite] = ACTIONS(5233), - [anon_sym_BSLASHsupercite] = ACTIONS(5233), - [anon_sym_BSLASHautocite] = ACTIONS(5233), - [anon_sym_BSLASHAutocite] = ACTIONS(5233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), - [anon_sym_BSLASHvolcite] = ACTIONS(5233), - [anon_sym_BSLASHVolcite] = ACTIONS(5233), - [anon_sym_BSLASHpvolcite] = ACTIONS(5233), - [anon_sym_BSLASHPvolcite] = ACTIONS(5233), - [anon_sym_BSLASHfvolcite] = ACTIONS(5233), - [anon_sym_BSLASHftvolcite] = ACTIONS(5233), - [anon_sym_BSLASHsvolcite] = ACTIONS(5233), - [anon_sym_BSLASHSvolcite] = ACTIONS(5233), - [anon_sym_BSLASHtvolcite] = ACTIONS(5233), - [anon_sym_BSLASHTvolcite] = ACTIONS(5233), - [anon_sym_BSLASHavolcite] = ACTIONS(5233), - [anon_sym_BSLASHAvolcite] = ACTIONS(5233), - [anon_sym_BSLASHnotecite] = ACTIONS(5233), - [anon_sym_BSLASHNotecite] = ACTIONS(5233), - [anon_sym_BSLASHpnotecite] = ACTIONS(5233), - [anon_sym_BSLASHPnotecite] = ACTIONS(5233), - [anon_sym_BSLASHfnotecite] = ACTIONS(5233), - [anon_sym_BSLASHlabel] = ACTIONS(5233), - [anon_sym_BSLASHref] = ACTIONS(5233), - [anon_sym_BSLASHeqref] = ACTIONS(5233), - [anon_sym_BSLASHvref] = ACTIONS(5233), - [anon_sym_BSLASHVref] = ACTIONS(5233), - [anon_sym_BSLASHautoref] = ACTIONS(5233), - [anon_sym_BSLASHpageref] = ACTIONS(5233), - [anon_sym_BSLASHcref] = ACTIONS(5233), - [anon_sym_BSLASHCref] = ACTIONS(5233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnameCref] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), - [anon_sym_BSLASHlabelcref] = ACTIONS(5233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange] = ACTIONS(5233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), - [anon_sym_BSLASHnewlabel] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand] = ACTIONS(5233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdef] = ACTIONS(5233), - [anon_sym_BSLASHlet] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), - [anon_sym_BSLASHgls] = ACTIONS(5233), - [anon_sym_BSLASHGls] = ACTIONS(5233), - [anon_sym_BSLASHGLS] = ACTIONS(5233), - [anon_sym_BSLASHglspl] = ACTIONS(5233), - [anon_sym_BSLASHGlspl] = ACTIONS(5233), - [anon_sym_BSLASHGLSpl] = ACTIONS(5233), - [anon_sym_BSLASHglsdisp] = ACTIONS(5233), - [anon_sym_BSLASHglslink] = ACTIONS(5233), - [anon_sym_BSLASHglstext] = ACTIONS(5233), - [anon_sym_BSLASHGlstext] = ACTIONS(5233), - [anon_sym_BSLASHGLStext] = ACTIONS(5233), - [anon_sym_BSLASHglsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), - [anon_sym_BSLASHglsplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSplural] = ACTIONS(5233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), - [anon_sym_BSLASHglsname] = ACTIONS(5233), - [anon_sym_BSLASHGlsname] = ACTIONS(5233), - [anon_sym_BSLASHGLSname] = ACTIONS(5233), - [anon_sym_BSLASHglssymbol] = ACTIONS(5233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), - [anon_sym_BSLASHglsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), - [anon_sym_BSLASHglsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), - [anon_sym_BSLASHglsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), - [anon_sym_BSLASHglsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), - [anon_sym_BSLASHglsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5233), - [anon_sym_BSLASHAcrshort] = ACTIONS(5233), - [anon_sym_BSLASHACRshort] = ACTIONS(5233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), - [anon_sym_BSLASHacrlong] = ACTIONS(5233), - [anon_sym_BSLASHAcrlong] = ACTIONS(5233), - [anon_sym_BSLASHACRlong] = ACTIONS(5233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), - [anon_sym_BSLASHacrfull] = ACTIONS(5233), - [anon_sym_BSLASHAcrfull] = ACTIONS(5233), - [anon_sym_BSLASHACRfull] = ACTIONS(5233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), - [anon_sym_BSLASHacs] = ACTIONS(5233), - [anon_sym_BSLASHAcs] = ACTIONS(5233), - [anon_sym_BSLASHacsp] = ACTIONS(5233), - [anon_sym_BSLASHAcsp] = ACTIONS(5233), - [anon_sym_BSLASHacl] = ACTIONS(5233), - [anon_sym_BSLASHAcl] = ACTIONS(5233), - [anon_sym_BSLASHaclp] = ACTIONS(5233), - [anon_sym_BSLASHAclp] = ACTIONS(5233), - [anon_sym_BSLASHacf] = ACTIONS(5233), - [anon_sym_BSLASHAcf] = ACTIONS(5233), - [anon_sym_BSLASHacfp] = ACTIONS(5233), - [anon_sym_BSLASHAcfp] = ACTIONS(5233), - [anon_sym_BSLASHac] = ACTIONS(5233), - [anon_sym_BSLASHAc] = ACTIONS(5233), - [anon_sym_BSLASHacp] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), - [anon_sym_BSLASHcolor] = ACTIONS(5233), - [anon_sym_BSLASHcolorbox] = ACTIONS(5233), - [anon_sym_BSLASHtextcolor] = ACTIONS(5233), - [anon_sym_BSLASHpagecolor] = ACTIONS(5233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5789), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_LBRACE] = ACTIONS(5789), + [anon_sym_RBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), }, [1593] = { - [sym_command_name] = ACTIONS(5375), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5375), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_EQ] = ACTIONS(5373), - [anon_sym_RBRACE] = ACTIONS(5373), - [sym_word] = ACTIONS(5375), - [sym_placeholder] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_CARET] = ACTIONS(5375), - [anon_sym__] = ACTIONS(5375), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_COLON] = ACTIONS(5375), - [anon_sym_SQUOTE] = ACTIONS(5375), - [anon_sym_BSLASHusepackage] = ACTIONS(5375), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5375), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5375), - [anon_sym_BSLASHinclude] = ACTIONS(5375), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5375), - [anon_sym_BSLASHinput] = ACTIONS(5375), - [anon_sym_BSLASHsubfile] = ACTIONS(5375), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5375), - [anon_sym_BSLASHbibliography] = ACTIONS(5375), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5375), - [anon_sym_BSLASHincludesvg] = ACTIONS(5375), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5375), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5375), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5375), - [anon_sym_BSLASHimport] = ACTIONS(5375), - [anon_sym_BSLASHsubimport] = ACTIONS(5375), - [anon_sym_BSLASHinputfrom] = ACTIONS(5375), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5375), - [anon_sym_BSLASHincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5375), - [anon_sym_BSLASHcaption] = ACTIONS(5375), - [anon_sym_BSLASHcite] = ACTIONS(5375), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCite] = ACTIONS(5375), - [anon_sym_BSLASHnocite] = ACTIONS(5375), - [anon_sym_BSLASHcitet] = ACTIONS(5375), - [anon_sym_BSLASHcitep] = ACTIONS(5375), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteyear] = ACTIONS(5375), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5373), - [anon_sym_BSLASHcitedate] = ACTIONS(5375), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5373), - [anon_sym_BSLASHciteurl] = ACTIONS(5375), - [anon_sym_BSLASHfullcite] = ACTIONS(5375), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), - [anon_sym_BSLASHcitealt] = ACTIONS(5375), - [anon_sym_BSLASHcitealp] = ACTIONS(5375), - [anon_sym_BSLASHcitetext] = ACTIONS(5375), - [anon_sym_BSLASHparencite] = ACTIONS(5375), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHParencite] = ACTIONS(5375), - [anon_sym_BSLASHfootcite] = ACTIONS(5375), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), - [anon_sym_BSLASHtextcite] = ACTIONS(5375), - [anon_sym_BSLASHTextcite] = ACTIONS(5375), - [anon_sym_BSLASHsmartcite] = ACTIONS(5375), - [anon_sym_BSLASHSmartcite] = ACTIONS(5375), - [anon_sym_BSLASHsupercite] = ACTIONS(5375), - [anon_sym_BSLASHautocite] = ACTIONS(5375), - [anon_sym_BSLASHAutocite] = ACTIONS(5375), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5373), - [anon_sym_BSLASHvolcite] = ACTIONS(5375), - [anon_sym_BSLASHVolcite] = ACTIONS(5375), - [anon_sym_BSLASHpvolcite] = ACTIONS(5375), - [anon_sym_BSLASHPvolcite] = ACTIONS(5375), - [anon_sym_BSLASHfvolcite] = ACTIONS(5375), - [anon_sym_BSLASHftvolcite] = ACTIONS(5375), - [anon_sym_BSLASHsvolcite] = ACTIONS(5375), - [anon_sym_BSLASHSvolcite] = ACTIONS(5375), - [anon_sym_BSLASHtvolcite] = ACTIONS(5375), - [anon_sym_BSLASHTvolcite] = ACTIONS(5375), - [anon_sym_BSLASHavolcite] = ACTIONS(5375), - [anon_sym_BSLASHAvolcite] = ACTIONS(5375), - [anon_sym_BSLASHnotecite] = ACTIONS(5375), - [anon_sym_BSLASHNotecite] = ACTIONS(5375), - [anon_sym_BSLASHpnotecite] = ACTIONS(5375), - [anon_sym_BSLASHPnotecite] = ACTIONS(5375), - [anon_sym_BSLASHfnotecite] = ACTIONS(5375), - [anon_sym_BSLASHlabel] = ACTIONS(5375), - [anon_sym_BSLASHref] = ACTIONS(5375), - [anon_sym_BSLASHeqref] = ACTIONS(5375), - [anon_sym_BSLASHvref] = ACTIONS(5375), - [anon_sym_BSLASHVref] = ACTIONS(5375), - [anon_sym_BSLASHautoref] = ACTIONS(5375), - [anon_sym_BSLASHpageref] = ACTIONS(5375), - [anon_sym_BSLASHcref] = ACTIONS(5375), - [anon_sym_BSLASHCref] = ACTIONS(5375), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnameCref] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5375), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5375), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5375), - [anon_sym_BSLASHlabelcref] = ACTIONS(5375), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange] = ACTIONS(5375), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5373), - [anon_sym_BSLASHnewlabel] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand] = ACTIONS(5375), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdef] = ACTIONS(5375), - [anon_sym_BSLASHlet] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5375), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5375), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5375), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5375), - [anon_sym_BSLASHgls] = ACTIONS(5375), - [anon_sym_BSLASHGls] = ACTIONS(5375), - [anon_sym_BSLASHGLS] = ACTIONS(5375), - [anon_sym_BSLASHglspl] = ACTIONS(5375), - [anon_sym_BSLASHGlspl] = ACTIONS(5375), - [anon_sym_BSLASHGLSpl] = ACTIONS(5375), - [anon_sym_BSLASHglsdisp] = ACTIONS(5375), - [anon_sym_BSLASHglslink] = ACTIONS(5375), - [anon_sym_BSLASHglstext] = ACTIONS(5375), - [anon_sym_BSLASHGlstext] = ACTIONS(5375), - [anon_sym_BSLASHGLStext] = ACTIONS(5375), - [anon_sym_BSLASHglsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5375), - [anon_sym_BSLASHglsplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSplural] = ACTIONS(5375), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5375), - [anon_sym_BSLASHglsname] = ACTIONS(5375), - [anon_sym_BSLASHGlsname] = ACTIONS(5375), - [anon_sym_BSLASHGLSname] = ACTIONS(5375), - [anon_sym_BSLASHglssymbol] = ACTIONS(5375), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5375), - [anon_sym_BSLASHglsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5375), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5375), - [anon_sym_BSLASHglsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5375), - [anon_sym_BSLASHglsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5375), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5375), - [anon_sym_BSLASHglsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5375), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5375), - [anon_sym_BSLASHglsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5375), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5375), - [anon_sym_BSLASHnewacronym] = ACTIONS(5375), - [anon_sym_BSLASHacrshort] = ACTIONS(5375), - [anon_sym_BSLASHAcrshort] = ACTIONS(5375), - [anon_sym_BSLASHACRshort] = ACTIONS(5375), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5375), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5375), - [anon_sym_BSLASHacrlong] = ACTIONS(5375), - [anon_sym_BSLASHAcrlong] = ACTIONS(5375), - [anon_sym_BSLASHACRlong] = ACTIONS(5375), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5375), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5375), - [anon_sym_BSLASHacrfull] = ACTIONS(5375), - [anon_sym_BSLASHAcrfull] = ACTIONS(5375), - [anon_sym_BSLASHACRfull] = ACTIONS(5375), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5375), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5375), - [anon_sym_BSLASHacs] = ACTIONS(5375), - [anon_sym_BSLASHAcs] = ACTIONS(5375), - [anon_sym_BSLASHacsp] = ACTIONS(5375), - [anon_sym_BSLASHAcsp] = ACTIONS(5375), - [anon_sym_BSLASHacl] = ACTIONS(5375), - [anon_sym_BSLASHAcl] = ACTIONS(5375), - [anon_sym_BSLASHaclp] = ACTIONS(5375), - [anon_sym_BSLASHAclp] = ACTIONS(5375), - [anon_sym_BSLASHacf] = ACTIONS(5375), - [anon_sym_BSLASHAcf] = ACTIONS(5375), - [anon_sym_BSLASHacfp] = ACTIONS(5375), - [anon_sym_BSLASHAcfp] = ACTIONS(5375), - [anon_sym_BSLASHac] = ACTIONS(5375), - [anon_sym_BSLASHAc] = ACTIONS(5375), - [anon_sym_BSLASHacp] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5375), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5375), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5375), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5375), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5375), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5375), - [anon_sym_BSLASHcolor] = ACTIONS(5375), - [anon_sym_BSLASHcolorbox] = ACTIONS(5375), - [anon_sym_BSLASHtextcolor] = ACTIONS(5375), - [anon_sym_BSLASHpagecolor] = ACTIONS(5375), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5375), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5375), + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_LBRACE] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), }, [1594] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6009), + [anon_sym_RPAREN] = ACTIONS(6009), + [anon_sym_LBRACK] = ACTIONS(6009), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_LBRACE] = ACTIONS(6009), + [anon_sym_RBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), }, [1595] = { - [sym_command_name] = ACTIONS(5365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5363), - [anon_sym_COMMA] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_RBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(5365), - [sym_placeholder] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_STAR] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5365), - [anon_sym_CARET] = ACTIONS(5365), - [anon_sym__] = ACTIONS(5365), - [anon_sym_LT] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5365), - [anon_sym_BANG] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5365), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_SQUOTE] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5365), - [anon_sym_BSLASHinclude] = ACTIONS(5365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5365), - [anon_sym_BSLASHinput] = ACTIONS(5365), - [anon_sym_BSLASHsubfile] = ACTIONS(5365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5365), - [anon_sym_BSLASHbibliography] = ACTIONS(5365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5365), - [anon_sym_BSLASHincludesvg] = ACTIONS(5365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5365), - [anon_sym_BSLASHimport] = ACTIONS(5365), - [anon_sym_BSLASHsubimport] = ACTIONS(5365), - [anon_sym_BSLASHinputfrom] = ACTIONS(5365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5365), - [anon_sym_BSLASHincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5365), - [anon_sym_BSLASHcaption] = ACTIONS(5365), - [anon_sym_BSLASHcite] = ACTIONS(5365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCite] = ACTIONS(5365), - [anon_sym_BSLASHnocite] = ACTIONS(5365), - [anon_sym_BSLASHcitet] = ACTIONS(5365), - [anon_sym_BSLASHcitep] = ACTIONS(5365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteauthor] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitetitle] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteyear] = ACTIONS(5365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5363), - [anon_sym_BSLASHcitedate] = ACTIONS(5365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5363), - [anon_sym_BSLASHciteurl] = ACTIONS(5365), - [anon_sym_BSLASHfullcite] = ACTIONS(5365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5365), - [anon_sym_BSLASHcitealt] = ACTIONS(5365), - [anon_sym_BSLASHcitealp] = ACTIONS(5365), - [anon_sym_BSLASHcitetext] = ACTIONS(5365), - [anon_sym_BSLASHparencite] = ACTIONS(5365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHParencite] = ACTIONS(5365), - [anon_sym_BSLASHfootcite] = ACTIONS(5365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5365), - [anon_sym_BSLASHtextcite] = ACTIONS(5365), - [anon_sym_BSLASHTextcite] = ACTIONS(5365), - [anon_sym_BSLASHsmartcite] = ACTIONS(5365), - [anon_sym_BSLASHSmartcite] = ACTIONS(5365), - [anon_sym_BSLASHsupercite] = ACTIONS(5365), - [anon_sym_BSLASHautocite] = ACTIONS(5365), - [anon_sym_BSLASHAutocite] = ACTIONS(5365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5363), - [anon_sym_BSLASHvolcite] = ACTIONS(5365), - [anon_sym_BSLASHVolcite] = ACTIONS(5365), - [anon_sym_BSLASHpvolcite] = ACTIONS(5365), - [anon_sym_BSLASHPvolcite] = ACTIONS(5365), - [anon_sym_BSLASHfvolcite] = ACTIONS(5365), - [anon_sym_BSLASHftvolcite] = ACTIONS(5365), - [anon_sym_BSLASHsvolcite] = ACTIONS(5365), - [anon_sym_BSLASHSvolcite] = ACTIONS(5365), - [anon_sym_BSLASHtvolcite] = ACTIONS(5365), - [anon_sym_BSLASHTvolcite] = ACTIONS(5365), - [anon_sym_BSLASHavolcite] = ACTIONS(5365), - [anon_sym_BSLASHAvolcite] = ACTIONS(5365), - [anon_sym_BSLASHnotecite] = ACTIONS(5365), - [anon_sym_BSLASHNotecite] = ACTIONS(5365), - [anon_sym_BSLASHpnotecite] = ACTIONS(5365), - [anon_sym_BSLASHPnotecite] = ACTIONS(5365), - [anon_sym_BSLASHfnotecite] = ACTIONS(5365), - [anon_sym_BSLASHlabel] = ACTIONS(5365), - [anon_sym_BSLASHref] = ACTIONS(5365), - [anon_sym_BSLASHeqref] = ACTIONS(5365), - [anon_sym_BSLASHvref] = ACTIONS(5365), - [anon_sym_BSLASHVref] = ACTIONS(5365), - [anon_sym_BSLASHautoref] = ACTIONS(5365), - [anon_sym_BSLASHpageref] = ACTIONS(5365), - [anon_sym_BSLASHcref] = ACTIONS(5365), - [anon_sym_BSLASHCref] = ACTIONS(5365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnameCref] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5365), - [anon_sym_BSLASHlabelcref] = ACTIONS(5365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange] = ACTIONS(5365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHCrefrange] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5363), - [anon_sym_BSLASHnewlabel] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand] = ACTIONS(5365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdef] = ACTIONS(5365), - [anon_sym_BSLASHlet] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5365), - [anon_sym_BSLASHgls] = ACTIONS(5365), - [anon_sym_BSLASHGls] = ACTIONS(5365), - [anon_sym_BSLASHGLS] = ACTIONS(5365), - [anon_sym_BSLASHglspl] = ACTIONS(5365), - [anon_sym_BSLASHGlspl] = ACTIONS(5365), - [anon_sym_BSLASHGLSpl] = ACTIONS(5365), - [anon_sym_BSLASHglsdisp] = ACTIONS(5365), - [anon_sym_BSLASHglslink] = ACTIONS(5365), - [anon_sym_BSLASHglstext] = ACTIONS(5365), - [anon_sym_BSLASHGlstext] = ACTIONS(5365), - [anon_sym_BSLASHGLStext] = ACTIONS(5365), - [anon_sym_BSLASHglsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5365), - [anon_sym_BSLASHglsplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSplural] = ACTIONS(5365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5365), - [anon_sym_BSLASHglsname] = ACTIONS(5365), - [anon_sym_BSLASHGlsname] = ACTIONS(5365), - [anon_sym_BSLASHGLSname] = ACTIONS(5365), - [anon_sym_BSLASHglssymbol] = ACTIONS(5365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5365), - [anon_sym_BSLASHglsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5365), - [anon_sym_BSLASHglsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5365), - [anon_sym_BSLASHglsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5365), - [anon_sym_BSLASHglsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5365), - [anon_sym_BSLASHglsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5365), - [anon_sym_BSLASHnewacronym] = ACTIONS(5365), - [anon_sym_BSLASHacrshort] = ACTIONS(5365), - [anon_sym_BSLASHAcrshort] = ACTIONS(5365), - [anon_sym_BSLASHACRshort] = ACTIONS(5365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5365), - [anon_sym_BSLASHacrlong] = ACTIONS(5365), - [anon_sym_BSLASHAcrlong] = ACTIONS(5365), - [anon_sym_BSLASHACRlong] = ACTIONS(5365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5365), - [anon_sym_BSLASHacrfull] = ACTIONS(5365), - [anon_sym_BSLASHAcrfull] = ACTIONS(5365), - [anon_sym_BSLASHACRfull] = ACTIONS(5365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5365), - [anon_sym_BSLASHacs] = ACTIONS(5365), - [anon_sym_BSLASHAcs] = ACTIONS(5365), - [anon_sym_BSLASHacsp] = ACTIONS(5365), - [anon_sym_BSLASHAcsp] = ACTIONS(5365), - [anon_sym_BSLASHacl] = ACTIONS(5365), - [anon_sym_BSLASHAcl] = ACTIONS(5365), - [anon_sym_BSLASHaclp] = ACTIONS(5365), - [anon_sym_BSLASHAclp] = ACTIONS(5365), - [anon_sym_BSLASHacf] = ACTIONS(5365), - [anon_sym_BSLASHAcf] = ACTIONS(5365), - [anon_sym_BSLASHacfp] = ACTIONS(5365), - [anon_sym_BSLASHAcfp] = ACTIONS(5365), - [anon_sym_BSLASHac] = ACTIONS(5365), - [anon_sym_BSLASHAc] = ACTIONS(5365), - [anon_sym_BSLASHacp] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5365), - [anon_sym_BSLASHcolor] = ACTIONS(5365), - [anon_sym_BSLASHcolorbox] = ACTIONS(5365), - [anon_sym_BSLASHtextcolor] = ACTIONS(5365), - [anon_sym_BSLASHpagecolor] = ACTIONS(5365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5365), + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), }, [1596] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [anon_sym_RBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), }, [1597] = { - [sym_command_name] = ACTIONS(5459), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5459), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5457), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(5459), - [sym_placeholder] = ACTIONS(5457), - [anon_sym_PLUS] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5459), - [anon_sym_STAR] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5459), - [anon_sym_CARET] = ACTIONS(5459), - [anon_sym__] = ACTIONS(5459), - [anon_sym_LT] = ACTIONS(5459), - [anon_sym_GT] = ACTIONS(5459), - [anon_sym_BANG] = ACTIONS(5459), - [anon_sym_PIPE] = ACTIONS(5459), - [anon_sym_COLON] = ACTIONS(5459), - [anon_sym_SQUOTE] = ACTIONS(5459), - [anon_sym_BSLASHusepackage] = ACTIONS(5459), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5459), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5459), - [anon_sym_BSLASHinclude] = ACTIONS(5459), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5459), - [anon_sym_BSLASHinput] = ACTIONS(5459), - [anon_sym_BSLASHsubfile] = ACTIONS(5459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5459), - [anon_sym_BSLASHbibliography] = ACTIONS(5459), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5459), - [anon_sym_BSLASHincludesvg] = ACTIONS(5459), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5459), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5459), - [anon_sym_BSLASHimport] = ACTIONS(5459), - [anon_sym_BSLASHsubimport] = ACTIONS(5459), - [anon_sym_BSLASHinputfrom] = ACTIONS(5459), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5459), - [anon_sym_BSLASHincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5459), - [anon_sym_BSLASHcaption] = ACTIONS(5459), - [anon_sym_BSLASHcite] = ACTIONS(5459), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCite] = ACTIONS(5459), - [anon_sym_BSLASHnocite] = ACTIONS(5459), - [anon_sym_BSLASHcitet] = ACTIONS(5459), - [anon_sym_BSLASHcitep] = ACTIONS(5459), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteauthor] = ACTIONS(5459), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5459), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitetitle] = ACTIONS(5459), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteyear] = ACTIONS(5459), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5457), - [anon_sym_BSLASHcitedate] = ACTIONS(5459), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5457), - [anon_sym_BSLASHciteurl] = ACTIONS(5459), - [anon_sym_BSLASHfullcite] = ACTIONS(5459), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5459), - [anon_sym_BSLASHcitealt] = ACTIONS(5459), - [anon_sym_BSLASHcitealp] = ACTIONS(5459), - [anon_sym_BSLASHcitetext] = ACTIONS(5459), - [anon_sym_BSLASHparencite] = ACTIONS(5459), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHParencite] = ACTIONS(5459), - [anon_sym_BSLASHfootcite] = ACTIONS(5459), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5459), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5459), - [anon_sym_BSLASHtextcite] = ACTIONS(5459), - [anon_sym_BSLASHTextcite] = ACTIONS(5459), - [anon_sym_BSLASHsmartcite] = ACTIONS(5459), - [anon_sym_BSLASHSmartcite] = ACTIONS(5459), - [anon_sym_BSLASHsupercite] = ACTIONS(5459), - [anon_sym_BSLASHautocite] = ACTIONS(5459), - [anon_sym_BSLASHAutocite] = ACTIONS(5459), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5457), - [anon_sym_BSLASHvolcite] = ACTIONS(5459), - [anon_sym_BSLASHVolcite] = ACTIONS(5459), - [anon_sym_BSLASHpvolcite] = ACTIONS(5459), - [anon_sym_BSLASHPvolcite] = ACTIONS(5459), - [anon_sym_BSLASHfvolcite] = ACTIONS(5459), - [anon_sym_BSLASHftvolcite] = ACTIONS(5459), - [anon_sym_BSLASHsvolcite] = ACTIONS(5459), - [anon_sym_BSLASHSvolcite] = ACTIONS(5459), - [anon_sym_BSLASHtvolcite] = ACTIONS(5459), - [anon_sym_BSLASHTvolcite] = ACTIONS(5459), - [anon_sym_BSLASHavolcite] = ACTIONS(5459), - [anon_sym_BSLASHAvolcite] = ACTIONS(5459), - [anon_sym_BSLASHnotecite] = ACTIONS(5459), - [anon_sym_BSLASHNotecite] = ACTIONS(5459), - [anon_sym_BSLASHpnotecite] = ACTIONS(5459), - [anon_sym_BSLASHPnotecite] = ACTIONS(5459), - [anon_sym_BSLASHfnotecite] = ACTIONS(5459), - [anon_sym_BSLASHlabel] = ACTIONS(5459), - [anon_sym_BSLASHref] = ACTIONS(5459), - [anon_sym_BSLASHeqref] = ACTIONS(5459), - [anon_sym_BSLASHvref] = ACTIONS(5459), - [anon_sym_BSLASHVref] = ACTIONS(5459), - [anon_sym_BSLASHautoref] = ACTIONS(5459), - [anon_sym_BSLASHpageref] = ACTIONS(5459), - [anon_sym_BSLASHcref] = ACTIONS(5459), - [anon_sym_BSLASHCref] = ACTIONS(5459), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnameCref] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5459), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5459), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5459), - [anon_sym_BSLASHlabelcref] = ACTIONS(5459), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange] = ACTIONS(5459), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHCrefrange] = ACTIONS(5459), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5457), - [anon_sym_BSLASHnewlabel] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand] = ACTIONS(5459), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5459), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5459), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5457), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5459), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdef] = ACTIONS(5459), - [anon_sym_BSLASHlet] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5459), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5459), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5459), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5459), - [anon_sym_BSLASHgls] = ACTIONS(5459), - [anon_sym_BSLASHGls] = ACTIONS(5459), - [anon_sym_BSLASHGLS] = ACTIONS(5459), - [anon_sym_BSLASHglspl] = ACTIONS(5459), - [anon_sym_BSLASHGlspl] = ACTIONS(5459), - [anon_sym_BSLASHGLSpl] = ACTIONS(5459), - [anon_sym_BSLASHglsdisp] = ACTIONS(5459), - [anon_sym_BSLASHglslink] = ACTIONS(5459), - [anon_sym_BSLASHglstext] = ACTIONS(5459), - [anon_sym_BSLASHGlstext] = ACTIONS(5459), - [anon_sym_BSLASHGLStext] = ACTIONS(5459), - [anon_sym_BSLASHglsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5459), - [anon_sym_BSLASHglsplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSplural] = ACTIONS(5459), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5459), - [anon_sym_BSLASHglsname] = ACTIONS(5459), - [anon_sym_BSLASHGlsname] = ACTIONS(5459), - [anon_sym_BSLASHGLSname] = ACTIONS(5459), - [anon_sym_BSLASHglssymbol] = ACTIONS(5459), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5459), - [anon_sym_BSLASHglsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5459), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5459), - [anon_sym_BSLASHglsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5459), - [anon_sym_BSLASHglsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5459), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5459), - [anon_sym_BSLASHglsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5459), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5459), - [anon_sym_BSLASHglsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5459), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5459), - [anon_sym_BSLASHnewacronym] = ACTIONS(5459), - [anon_sym_BSLASHacrshort] = ACTIONS(5459), - [anon_sym_BSLASHAcrshort] = ACTIONS(5459), - [anon_sym_BSLASHACRshort] = ACTIONS(5459), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5459), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5459), - [anon_sym_BSLASHacrlong] = ACTIONS(5459), - [anon_sym_BSLASHAcrlong] = ACTIONS(5459), - [anon_sym_BSLASHACRlong] = ACTIONS(5459), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5459), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5459), - [anon_sym_BSLASHacrfull] = ACTIONS(5459), - [anon_sym_BSLASHAcrfull] = ACTIONS(5459), - [anon_sym_BSLASHACRfull] = ACTIONS(5459), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5459), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5459), - [anon_sym_BSLASHacs] = ACTIONS(5459), - [anon_sym_BSLASHAcs] = ACTIONS(5459), - [anon_sym_BSLASHacsp] = ACTIONS(5459), - [anon_sym_BSLASHAcsp] = ACTIONS(5459), - [anon_sym_BSLASHacl] = ACTIONS(5459), - [anon_sym_BSLASHAcl] = ACTIONS(5459), - [anon_sym_BSLASHaclp] = ACTIONS(5459), - [anon_sym_BSLASHAclp] = ACTIONS(5459), - [anon_sym_BSLASHacf] = ACTIONS(5459), - [anon_sym_BSLASHAcf] = ACTIONS(5459), - [anon_sym_BSLASHacfp] = ACTIONS(5459), - [anon_sym_BSLASHAcfp] = ACTIONS(5459), - [anon_sym_BSLASHac] = ACTIONS(5459), - [anon_sym_BSLASHAc] = ACTIONS(5459), - [anon_sym_BSLASHacp] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5459), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5459), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5459), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5459), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5459), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5457), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5459), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5459), - [anon_sym_BSLASHcolor] = ACTIONS(5459), - [anon_sym_BSLASHcolorbox] = ACTIONS(5459), - [anon_sym_BSLASHtextcolor] = ACTIONS(5459), - [anon_sym_BSLASHpagecolor] = ACTIONS(5459), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5459), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5459), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), }, [1598] = { - [sym_command_name] = ACTIONS(5479), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5479), - [anon_sym_RBRACK] = ACTIONS(5477), - [anon_sym_COMMA] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_RBRACE] = ACTIONS(5477), - [sym_word] = ACTIONS(5479), - [sym_placeholder] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym__] = ACTIONS(5479), - [anon_sym_LT] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5479), - [anon_sym_BANG] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5479), - [anon_sym_SQUOTE] = ACTIONS(5479), - [anon_sym_BSLASHusepackage] = ACTIONS(5479), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5479), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5479), - [anon_sym_BSLASHinclude] = ACTIONS(5479), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5479), - [anon_sym_BSLASHinput] = ACTIONS(5479), - [anon_sym_BSLASHsubfile] = ACTIONS(5479), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5479), - [anon_sym_BSLASHbibliography] = ACTIONS(5479), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5479), - [anon_sym_BSLASHincludesvg] = ACTIONS(5479), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5479), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5479), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5479), - [anon_sym_BSLASHimport] = ACTIONS(5479), - [anon_sym_BSLASHsubimport] = ACTIONS(5479), - [anon_sym_BSLASHinputfrom] = ACTIONS(5479), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5479), - [anon_sym_BSLASHincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5479), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5479), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCite] = ACTIONS(5479), - [anon_sym_BSLASHnocite] = ACTIONS(5479), - [anon_sym_BSLASHcitet] = ACTIONS(5479), - [anon_sym_BSLASHcitep] = ACTIONS(5479), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteauthor] = ACTIONS(5479), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5479), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitetitle] = ACTIONS(5479), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteyear] = ACTIONS(5479), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5477), - [anon_sym_BSLASHcitedate] = ACTIONS(5479), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5477), - [anon_sym_BSLASHciteurl] = ACTIONS(5479), - [anon_sym_BSLASHfullcite] = ACTIONS(5479), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5479), - [anon_sym_BSLASHcitealt] = ACTIONS(5479), - [anon_sym_BSLASHcitealp] = ACTIONS(5479), - [anon_sym_BSLASHcitetext] = ACTIONS(5479), - [anon_sym_BSLASHparencite] = ACTIONS(5479), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHParencite] = ACTIONS(5479), - [anon_sym_BSLASHfootcite] = ACTIONS(5479), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5479), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5479), - [anon_sym_BSLASHtextcite] = ACTIONS(5479), - [anon_sym_BSLASHTextcite] = ACTIONS(5479), - [anon_sym_BSLASHsmartcite] = ACTIONS(5479), - [anon_sym_BSLASHSmartcite] = ACTIONS(5479), - [anon_sym_BSLASHsupercite] = ACTIONS(5479), - [anon_sym_BSLASHautocite] = ACTIONS(5479), - [anon_sym_BSLASHAutocite] = ACTIONS(5479), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5477), - [anon_sym_BSLASHvolcite] = ACTIONS(5479), - [anon_sym_BSLASHVolcite] = ACTIONS(5479), - [anon_sym_BSLASHpvolcite] = ACTIONS(5479), - [anon_sym_BSLASHPvolcite] = ACTIONS(5479), - [anon_sym_BSLASHfvolcite] = ACTIONS(5479), - [anon_sym_BSLASHftvolcite] = ACTIONS(5479), - [anon_sym_BSLASHsvolcite] = ACTIONS(5479), - [anon_sym_BSLASHSvolcite] = ACTIONS(5479), - [anon_sym_BSLASHtvolcite] = ACTIONS(5479), - [anon_sym_BSLASHTvolcite] = ACTIONS(5479), - [anon_sym_BSLASHavolcite] = ACTIONS(5479), - [anon_sym_BSLASHAvolcite] = ACTIONS(5479), - [anon_sym_BSLASHnotecite] = ACTIONS(5479), - [anon_sym_BSLASHNotecite] = ACTIONS(5479), - [anon_sym_BSLASHpnotecite] = ACTIONS(5479), - [anon_sym_BSLASHPnotecite] = ACTIONS(5479), - [anon_sym_BSLASHfnotecite] = ACTIONS(5479), - [anon_sym_BSLASHlabel] = ACTIONS(5479), - [anon_sym_BSLASHref] = ACTIONS(5479), - [anon_sym_BSLASHeqref] = ACTIONS(5479), - [anon_sym_BSLASHvref] = ACTIONS(5479), - [anon_sym_BSLASHVref] = ACTIONS(5479), - [anon_sym_BSLASHautoref] = ACTIONS(5479), - [anon_sym_BSLASHpageref] = ACTIONS(5479), - [anon_sym_BSLASHcref] = ACTIONS(5479), - [anon_sym_BSLASHCref] = ACTIONS(5479), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnameCref] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5479), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5479), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5479), - [anon_sym_BSLASHlabelcref] = ACTIONS(5479), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange] = ACTIONS(5479), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHCrefrange] = ACTIONS(5479), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5477), - [anon_sym_BSLASHnewlabel] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand] = ACTIONS(5479), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5479), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5479), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5477), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5479), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdef] = ACTIONS(5479), - [anon_sym_BSLASHlet] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5479), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5479), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5479), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5479), - [anon_sym_BSLASHgls] = ACTIONS(5479), - [anon_sym_BSLASHGls] = ACTIONS(5479), - [anon_sym_BSLASHGLS] = ACTIONS(5479), - [anon_sym_BSLASHglspl] = ACTIONS(5479), - [anon_sym_BSLASHGlspl] = ACTIONS(5479), - [anon_sym_BSLASHGLSpl] = ACTIONS(5479), - [anon_sym_BSLASHglsdisp] = ACTIONS(5479), - [anon_sym_BSLASHglslink] = ACTIONS(5479), - [anon_sym_BSLASHglstext] = ACTIONS(5479), - [anon_sym_BSLASHGlstext] = ACTIONS(5479), - [anon_sym_BSLASHGLStext] = ACTIONS(5479), - [anon_sym_BSLASHglsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5479), - [anon_sym_BSLASHglsplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSplural] = ACTIONS(5479), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5479), - [anon_sym_BSLASHglsname] = ACTIONS(5479), - [anon_sym_BSLASHGlsname] = ACTIONS(5479), - [anon_sym_BSLASHGLSname] = ACTIONS(5479), - [anon_sym_BSLASHglssymbol] = ACTIONS(5479), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5479), - [anon_sym_BSLASHglsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5479), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5479), - [anon_sym_BSLASHglsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5479), - [anon_sym_BSLASHglsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5479), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5479), - [anon_sym_BSLASHglsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5479), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5479), - [anon_sym_BSLASHglsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5479), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5479), - [anon_sym_BSLASHnewacronym] = ACTIONS(5479), - [anon_sym_BSLASHacrshort] = ACTIONS(5479), - [anon_sym_BSLASHAcrshort] = ACTIONS(5479), - [anon_sym_BSLASHACRshort] = ACTIONS(5479), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5479), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5479), - [anon_sym_BSLASHacrlong] = ACTIONS(5479), - [anon_sym_BSLASHAcrlong] = ACTIONS(5479), - [anon_sym_BSLASHACRlong] = ACTIONS(5479), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5479), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5479), - [anon_sym_BSLASHacrfull] = ACTIONS(5479), - [anon_sym_BSLASHAcrfull] = ACTIONS(5479), - [anon_sym_BSLASHACRfull] = ACTIONS(5479), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5479), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5479), - [anon_sym_BSLASHacs] = ACTIONS(5479), - [anon_sym_BSLASHAcs] = ACTIONS(5479), - [anon_sym_BSLASHacsp] = ACTIONS(5479), - [anon_sym_BSLASHAcsp] = ACTIONS(5479), - [anon_sym_BSLASHacl] = ACTIONS(5479), - [anon_sym_BSLASHAcl] = ACTIONS(5479), - [anon_sym_BSLASHaclp] = ACTIONS(5479), - [anon_sym_BSLASHAclp] = ACTIONS(5479), - [anon_sym_BSLASHacf] = ACTIONS(5479), - [anon_sym_BSLASHAcf] = ACTIONS(5479), - [anon_sym_BSLASHacfp] = ACTIONS(5479), - [anon_sym_BSLASHAcfp] = ACTIONS(5479), - [anon_sym_BSLASHac] = ACTIONS(5479), - [anon_sym_BSLASHAc] = ACTIONS(5479), - [anon_sym_BSLASHacp] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5479), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5479), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5479), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5479), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5479), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5477), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5479), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5479), - [anon_sym_BSLASHcolor] = ACTIONS(5479), - [anon_sym_BSLASHcolorbox] = ACTIONS(5479), - [anon_sym_BSLASHtextcolor] = ACTIONS(5479), - [anon_sym_BSLASHpagecolor] = ACTIONS(5479), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5479), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5479), + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LPAREN] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), }, [1599] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), }, [1600] = { - [sym_command_name] = ACTIONS(5475), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5475), - [anon_sym_RBRACK] = ACTIONS(5473), - [anon_sym_COMMA] = ACTIONS(5473), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_RBRACE] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [sym_placeholder] = ACTIONS(5473), - [anon_sym_PLUS] = ACTIONS(5475), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5475), - [anon_sym_CARET] = ACTIONS(5475), - [anon_sym__] = ACTIONS(5475), - [anon_sym_LT] = ACTIONS(5475), - [anon_sym_GT] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_PIPE] = ACTIONS(5475), - [anon_sym_COLON] = ACTIONS(5475), - [anon_sym_SQUOTE] = ACTIONS(5475), - [anon_sym_BSLASHusepackage] = ACTIONS(5475), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5475), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5475), - [anon_sym_BSLASHinclude] = ACTIONS(5475), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5475), - [anon_sym_BSLASHinput] = ACTIONS(5475), - [anon_sym_BSLASHsubfile] = ACTIONS(5475), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5475), - [anon_sym_BSLASHbibliography] = ACTIONS(5475), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5475), - [anon_sym_BSLASHincludesvg] = ACTIONS(5475), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5475), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5475), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5475), - [anon_sym_BSLASHimport] = ACTIONS(5475), - [anon_sym_BSLASHsubimport] = ACTIONS(5475), - [anon_sym_BSLASHinputfrom] = ACTIONS(5475), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5475), - [anon_sym_BSLASHincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5475), - [anon_sym_BSLASHcaption] = ACTIONS(5475), - [anon_sym_BSLASHcite] = ACTIONS(5475), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCite] = ACTIONS(5475), - [anon_sym_BSLASHnocite] = ACTIONS(5475), - [anon_sym_BSLASHcitet] = ACTIONS(5475), - [anon_sym_BSLASHcitep] = ACTIONS(5475), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteauthor] = ACTIONS(5475), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5475), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitetitle] = ACTIONS(5475), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteyear] = ACTIONS(5475), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5473), - [anon_sym_BSLASHcitedate] = ACTIONS(5475), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5473), - [anon_sym_BSLASHciteurl] = ACTIONS(5475), - [anon_sym_BSLASHfullcite] = ACTIONS(5475), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5475), - [anon_sym_BSLASHcitealt] = ACTIONS(5475), - [anon_sym_BSLASHcitealp] = ACTIONS(5475), - [anon_sym_BSLASHcitetext] = ACTIONS(5475), - [anon_sym_BSLASHparencite] = ACTIONS(5475), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHParencite] = ACTIONS(5475), - [anon_sym_BSLASHfootcite] = ACTIONS(5475), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5475), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5475), - [anon_sym_BSLASHtextcite] = ACTIONS(5475), - [anon_sym_BSLASHTextcite] = ACTIONS(5475), - [anon_sym_BSLASHsmartcite] = ACTIONS(5475), - [anon_sym_BSLASHSmartcite] = ACTIONS(5475), - [anon_sym_BSLASHsupercite] = ACTIONS(5475), - [anon_sym_BSLASHautocite] = ACTIONS(5475), - [anon_sym_BSLASHAutocite] = ACTIONS(5475), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5473), - [anon_sym_BSLASHvolcite] = ACTIONS(5475), - [anon_sym_BSLASHVolcite] = ACTIONS(5475), - [anon_sym_BSLASHpvolcite] = ACTIONS(5475), - [anon_sym_BSLASHPvolcite] = ACTIONS(5475), - [anon_sym_BSLASHfvolcite] = ACTIONS(5475), - [anon_sym_BSLASHftvolcite] = ACTIONS(5475), - [anon_sym_BSLASHsvolcite] = ACTIONS(5475), - [anon_sym_BSLASHSvolcite] = ACTIONS(5475), - [anon_sym_BSLASHtvolcite] = ACTIONS(5475), - [anon_sym_BSLASHTvolcite] = ACTIONS(5475), - [anon_sym_BSLASHavolcite] = ACTIONS(5475), - [anon_sym_BSLASHAvolcite] = ACTIONS(5475), - [anon_sym_BSLASHnotecite] = ACTIONS(5475), - [anon_sym_BSLASHNotecite] = ACTIONS(5475), - [anon_sym_BSLASHpnotecite] = ACTIONS(5475), - [anon_sym_BSLASHPnotecite] = ACTIONS(5475), - [anon_sym_BSLASHfnotecite] = ACTIONS(5475), - [anon_sym_BSLASHlabel] = ACTIONS(5475), - [anon_sym_BSLASHref] = ACTIONS(5475), - [anon_sym_BSLASHeqref] = ACTIONS(5475), - [anon_sym_BSLASHvref] = ACTIONS(5475), - [anon_sym_BSLASHVref] = ACTIONS(5475), - [anon_sym_BSLASHautoref] = ACTIONS(5475), - [anon_sym_BSLASHpageref] = ACTIONS(5475), - [anon_sym_BSLASHcref] = ACTIONS(5475), - [anon_sym_BSLASHCref] = ACTIONS(5475), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnameCref] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5475), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5475), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5475), - [anon_sym_BSLASHlabelcref] = ACTIONS(5475), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange] = ACTIONS(5475), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHCrefrange] = ACTIONS(5475), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5473), - [anon_sym_BSLASHnewlabel] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand] = ACTIONS(5475), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5475), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5475), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5473), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5475), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdef] = ACTIONS(5475), - [anon_sym_BSLASHlet] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5475), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5475), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5475), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5475), - [anon_sym_BSLASHgls] = ACTIONS(5475), - [anon_sym_BSLASHGls] = ACTIONS(5475), - [anon_sym_BSLASHGLS] = ACTIONS(5475), - [anon_sym_BSLASHglspl] = ACTIONS(5475), - [anon_sym_BSLASHGlspl] = ACTIONS(5475), - [anon_sym_BSLASHGLSpl] = ACTIONS(5475), - [anon_sym_BSLASHglsdisp] = ACTIONS(5475), - [anon_sym_BSLASHglslink] = ACTIONS(5475), - [anon_sym_BSLASHglstext] = ACTIONS(5475), - [anon_sym_BSLASHGlstext] = ACTIONS(5475), - [anon_sym_BSLASHGLStext] = ACTIONS(5475), - [anon_sym_BSLASHglsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5475), - [anon_sym_BSLASHglsplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSplural] = ACTIONS(5475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5475), - [anon_sym_BSLASHglsname] = ACTIONS(5475), - [anon_sym_BSLASHGlsname] = ACTIONS(5475), - [anon_sym_BSLASHGLSname] = ACTIONS(5475), - [anon_sym_BSLASHglssymbol] = ACTIONS(5475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5475), - [anon_sym_BSLASHglsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5475), - [anon_sym_BSLASHglsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5475), - [anon_sym_BSLASHglsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5475), - [anon_sym_BSLASHglsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5475), - [anon_sym_BSLASHglsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5475), - [anon_sym_BSLASHnewacronym] = ACTIONS(5475), - [anon_sym_BSLASHacrshort] = ACTIONS(5475), - [anon_sym_BSLASHAcrshort] = ACTIONS(5475), - [anon_sym_BSLASHACRshort] = ACTIONS(5475), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5475), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5475), - [anon_sym_BSLASHacrlong] = ACTIONS(5475), - [anon_sym_BSLASHAcrlong] = ACTIONS(5475), - [anon_sym_BSLASHACRlong] = ACTIONS(5475), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5475), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5475), - [anon_sym_BSLASHacrfull] = ACTIONS(5475), - [anon_sym_BSLASHAcrfull] = ACTIONS(5475), - [anon_sym_BSLASHACRfull] = ACTIONS(5475), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5475), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5475), - [anon_sym_BSLASHacs] = ACTIONS(5475), - [anon_sym_BSLASHAcs] = ACTIONS(5475), - [anon_sym_BSLASHacsp] = ACTIONS(5475), - [anon_sym_BSLASHAcsp] = ACTIONS(5475), - [anon_sym_BSLASHacl] = ACTIONS(5475), - [anon_sym_BSLASHAcl] = ACTIONS(5475), - [anon_sym_BSLASHaclp] = ACTIONS(5475), - [anon_sym_BSLASHAclp] = ACTIONS(5475), - [anon_sym_BSLASHacf] = ACTIONS(5475), - [anon_sym_BSLASHAcf] = ACTIONS(5475), - [anon_sym_BSLASHacfp] = ACTIONS(5475), - [anon_sym_BSLASHAcfp] = ACTIONS(5475), - [anon_sym_BSLASHac] = ACTIONS(5475), - [anon_sym_BSLASHAc] = ACTIONS(5475), - [anon_sym_BSLASHacp] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5475), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5475), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5475), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5475), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5475), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5473), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5475), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5475), - [anon_sym_BSLASHcolor] = ACTIONS(5475), - [anon_sym_BSLASHcolorbox] = ACTIONS(5475), - [anon_sym_BSLASHtextcolor] = ACTIONS(5475), - [anon_sym_BSLASHpagecolor] = ACTIONS(5475), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5475), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5475), + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [anon_sym_RBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), }, [1601] = { - [sym_command_name] = ACTIONS(5471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5471), - [anon_sym_RBRACK] = ACTIONS(5469), - [anon_sym_COMMA] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(5471), - [sym_placeholder] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5471), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5471), - [anon_sym_CARET] = ACTIONS(5471), - [anon_sym__] = ACTIONS(5471), - [anon_sym_LT] = ACTIONS(5471), - [anon_sym_GT] = ACTIONS(5471), - [anon_sym_BANG] = ACTIONS(5471), - [anon_sym_PIPE] = ACTIONS(5471), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_SQUOTE] = ACTIONS(5471), - [anon_sym_BSLASHusepackage] = ACTIONS(5471), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5471), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5471), - [anon_sym_BSLASHinclude] = ACTIONS(5471), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5471), - [anon_sym_BSLASHinput] = ACTIONS(5471), - [anon_sym_BSLASHsubfile] = ACTIONS(5471), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5471), - [anon_sym_BSLASHbibliography] = ACTIONS(5471), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5471), - [anon_sym_BSLASHincludesvg] = ACTIONS(5471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5471), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5471), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5471), - [anon_sym_BSLASHimport] = ACTIONS(5471), - [anon_sym_BSLASHsubimport] = ACTIONS(5471), - [anon_sym_BSLASHinputfrom] = ACTIONS(5471), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5471), - [anon_sym_BSLASHincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5471), - [anon_sym_BSLASHcaption] = ACTIONS(5471), - [anon_sym_BSLASHcite] = ACTIONS(5471), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCite] = ACTIONS(5471), - [anon_sym_BSLASHnocite] = ACTIONS(5471), - [anon_sym_BSLASHcitet] = ACTIONS(5471), - [anon_sym_BSLASHcitep] = ACTIONS(5471), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteauthor] = ACTIONS(5471), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5471), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitetitle] = ACTIONS(5471), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteyear] = ACTIONS(5471), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5469), - [anon_sym_BSLASHcitedate] = ACTIONS(5471), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5469), - [anon_sym_BSLASHciteurl] = ACTIONS(5471), - [anon_sym_BSLASHfullcite] = ACTIONS(5471), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5471), - [anon_sym_BSLASHcitealt] = ACTIONS(5471), - [anon_sym_BSLASHcitealp] = ACTIONS(5471), - [anon_sym_BSLASHcitetext] = ACTIONS(5471), - [anon_sym_BSLASHparencite] = ACTIONS(5471), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHParencite] = ACTIONS(5471), - [anon_sym_BSLASHfootcite] = ACTIONS(5471), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5471), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5471), - [anon_sym_BSLASHtextcite] = ACTIONS(5471), - [anon_sym_BSLASHTextcite] = ACTIONS(5471), - [anon_sym_BSLASHsmartcite] = ACTIONS(5471), - [anon_sym_BSLASHSmartcite] = ACTIONS(5471), - [anon_sym_BSLASHsupercite] = ACTIONS(5471), - [anon_sym_BSLASHautocite] = ACTIONS(5471), - [anon_sym_BSLASHAutocite] = ACTIONS(5471), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5469), - [anon_sym_BSLASHvolcite] = ACTIONS(5471), - [anon_sym_BSLASHVolcite] = ACTIONS(5471), - [anon_sym_BSLASHpvolcite] = ACTIONS(5471), - [anon_sym_BSLASHPvolcite] = ACTIONS(5471), - [anon_sym_BSLASHfvolcite] = ACTIONS(5471), - [anon_sym_BSLASHftvolcite] = ACTIONS(5471), - [anon_sym_BSLASHsvolcite] = ACTIONS(5471), - [anon_sym_BSLASHSvolcite] = ACTIONS(5471), - [anon_sym_BSLASHtvolcite] = ACTIONS(5471), - [anon_sym_BSLASHTvolcite] = ACTIONS(5471), - [anon_sym_BSLASHavolcite] = ACTIONS(5471), - [anon_sym_BSLASHAvolcite] = ACTIONS(5471), - [anon_sym_BSLASHnotecite] = ACTIONS(5471), - [anon_sym_BSLASHNotecite] = ACTIONS(5471), - [anon_sym_BSLASHpnotecite] = ACTIONS(5471), - [anon_sym_BSLASHPnotecite] = ACTIONS(5471), - [anon_sym_BSLASHfnotecite] = ACTIONS(5471), - [anon_sym_BSLASHlabel] = ACTIONS(5471), - [anon_sym_BSLASHref] = ACTIONS(5471), - [anon_sym_BSLASHeqref] = ACTIONS(5471), - [anon_sym_BSLASHvref] = ACTIONS(5471), - [anon_sym_BSLASHVref] = ACTIONS(5471), - [anon_sym_BSLASHautoref] = ACTIONS(5471), - [anon_sym_BSLASHpageref] = ACTIONS(5471), - [anon_sym_BSLASHcref] = ACTIONS(5471), - [anon_sym_BSLASHCref] = ACTIONS(5471), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnameCref] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5471), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5471), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5471), - [anon_sym_BSLASHlabelcref] = ACTIONS(5471), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange] = ACTIONS(5471), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHCrefrange] = ACTIONS(5471), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5469), - [anon_sym_BSLASHnewlabel] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand] = ACTIONS(5471), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5471), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5471), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5469), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5471), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdef] = ACTIONS(5471), - [anon_sym_BSLASHlet] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5471), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5471), - [anon_sym_BSLASHgls] = ACTIONS(5471), - [anon_sym_BSLASHGls] = ACTIONS(5471), - [anon_sym_BSLASHGLS] = ACTIONS(5471), - [anon_sym_BSLASHglspl] = ACTIONS(5471), - [anon_sym_BSLASHGlspl] = ACTIONS(5471), - [anon_sym_BSLASHGLSpl] = ACTIONS(5471), - [anon_sym_BSLASHglsdisp] = ACTIONS(5471), - [anon_sym_BSLASHglslink] = ACTIONS(5471), - [anon_sym_BSLASHglstext] = ACTIONS(5471), - [anon_sym_BSLASHGlstext] = ACTIONS(5471), - [anon_sym_BSLASHGLStext] = ACTIONS(5471), - [anon_sym_BSLASHglsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5471), - [anon_sym_BSLASHglsplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSplural] = ACTIONS(5471), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5471), - [anon_sym_BSLASHglsname] = ACTIONS(5471), - [anon_sym_BSLASHGlsname] = ACTIONS(5471), - [anon_sym_BSLASHGLSname] = ACTIONS(5471), - [anon_sym_BSLASHglssymbol] = ACTIONS(5471), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5471), - [anon_sym_BSLASHglsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5471), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5471), - [anon_sym_BSLASHglsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5471), - [anon_sym_BSLASHglsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5471), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5471), - [anon_sym_BSLASHglsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5471), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5471), - [anon_sym_BSLASHglsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5471), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5471), - [anon_sym_BSLASHnewacronym] = ACTIONS(5471), - [anon_sym_BSLASHacrshort] = ACTIONS(5471), - [anon_sym_BSLASHAcrshort] = ACTIONS(5471), - [anon_sym_BSLASHACRshort] = ACTIONS(5471), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5471), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5471), - [anon_sym_BSLASHacrlong] = ACTIONS(5471), - [anon_sym_BSLASHAcrlong] = ACTIONS(5471), - [anon_sym_BSLASHACRlong] = ACTIONS(5471), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5471), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5471), - [anon_sym_BSLASHacrfull] = ACTIONS(5471), - [anon_sym_BSLASHAcrfull] = ACTIONS(5471), - [anon_sym_BSLASHACRfull] = ACTIONS(5471), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5471), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5471), - [anon_sym_BSLASHacs] = ACTIONS(5471), - [anon_sym_BSLASHAcs] = ACTIONS(5471), - [anon_sym_BSLASHacsp] = ACTIONS(5471), - [anon_sym_BSLASHAcsp] = ACTIONS(5471), - [anon_sym_BSLASHacl] = ACTIONS(5471), - [anon_sym_BSLASHAcl] = ACTIONS(5471), - [anon_sym_BSLASHaclp] = ACTIONS(5471), - [anon_sym_BSLASHAclp] = ACTIONS(5471), - [anon_sym_BSLASHacf] = ACTIONS(5471), - [anon_sym_BSLASHAcf] = ACTIONS(5471), - [anon_sym_BSLASHacfp] = ACTIONS(5471), - [anon_sym_BSLASHAcfp] = ACTIONS(5471), - [anon_sym_BSLASHac] = ACTIONS(5471), - [anon_sym_BSLASHAc] = ACTIONS(5471), - [anon_sym_BSLASHacp] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5471), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5471), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5471), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5471), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5471), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5471), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5471), - [anon_sym_BSLASHcolor] = ACTIONS(5471), - [anon_sym_BSLASHcolorbox] = ACTIONS(5471), - [anon_sym_BSLASHtextcolor] = ACTIONS(5471), - [anon_sym_BSLASHpagecolor] = ACTIONS(5471), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5471), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5471), + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_LBRACE] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), }, [1602] = { - [sym_command_name] = ACTIONS(5467), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5467), - [anon_sym_RBRACK] = ACTIONS(5465), - [anon_sym_COMMA] = ACTIONS(5465), - [anon_sym_EQ] = ACTIONS(5465), - [anon_sym_RBRACE] = ACTIONS(5465), - [sym_word] = ACTIONS(5467), - [sym_placeholder] = ACTIONS(5465), - [anon_sym_PLUS] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_CARET] = ACTIONS(5467), - [anon_sym__] = ACTIONS(5467), - [anon_sym_LT] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5467), - [anon_sym_BANG] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(5467), - [anon_sym_SQUOTE] = ACTIONS(5467), - [anon_sym_BSLASHusepackage] = ACTIONS(5467), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5467), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5467), - [anon_sym_BSLASHinclude] = ACTIONS(5467), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5467), - [anon_sym_BSLASHinput] = ACTIONS(5467), - [anon_sym_BSLASHsubfile] = ACTIONS(5467), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5467), - [anon_sym_BSLASHbibliography] = ACTIONS(5467), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5467), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5467), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5467), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5467), - [anon_sym_BSLASHimport] = ACTIONS(5467), - [anon_sym_BSLASHsubimport] = ACTIONS(5467), - [anon_sym_BSLASHinputfrom] = ACTIONS(5467), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5467), - [anon_sym_BSLASHincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5467), - [anon_sym_BSLASHcaption] = ACTIONS(5467), - [anon_sym_BSLASHcite] = ACTIONS(5467), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCite] = ACTIONS(5467), - [anon_sym_BSLASHnocite] = ACTIONS(5467), - [anon_sym_BSLASHcitet] = ACTIONS(5467), - [anon_sym_BSLASHcitep] = ACTIONS(5467), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteauthor] = ACTIONS(5467), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5467), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitetitle] = ACTIONS(5467), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteyear] = ACTIONS(5467), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5465), - [anon_sym_BSLASHcitedate] = ACTIONS(5467), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5465), - [anon_sym_BSLASHciteurl] = ACTIONS(5467), - [anon_sym_BSLASHfullcite] = ACTIONS(5467), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5467), - [anon_sym_BSLASHcitealt] = ACTIONS(5467), - [anon_sym_BSLASHcitealp] = ACTIONS(5467), - [anon_sym_BSLASHcitetext] = ACTIONS(5467), - [anon_sym_BSLASHparencite] = ACTIONS(5467), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHParencite] = ACTIONS(5467), - [anon_sym_BSLASHfootcite] = ACTIONS(5467), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5467), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5467), - [anon_sym_BSLASHtextcite] = ACTIONS(5467), - [anon_sym_BSLASHTextcite] = ACTIONS(5467), - [anon_sym_BSLASHsmartcite] = ACTIONS(5467), - [anon_sym_BSLASHSmartcite] = ACTIONS(5467), - [anon_sym_BSLASHsupercite] = ACTIONS(5467), - [anon_sym_BSLASHautocite] = ACTIONS(5467), - [anon_sym_BSLASHAutocite] = ACTIONS(5467), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5465), - [anon_sym_BSLASHvolcite] = ACTIONS(5467), - [anon_sym_BSLASHVolcite] = ACTIONS(5467), - [anon_sym_BSLASHpvolcite] = ACTIONS(5467), - [anon_sym_BSLASHPvolcite] = ACTIONS(5467), - [anon_sym_BSLASHfvolcite] = ACTIONS(5467), - [anon_sym_BSLASHftvolcite] = ACTIONS(5467), - [anon_sym_BSLASHsvolcite] = ACTIONS(5467), - [anon_sym_BSLASHSvolcite] = ACTIONS(5467), - [anon_sym_BSLASHtvolcite] = ACTIONS(5467), - [anon_sym_BSLASHTvolcite] = ACTIONS(5467), - [anon_sym_BSLASHavolcite] = ACTIONS(5467), - [anon_sym_BSLASHAvolcite] = ACTIONS(5467), - [anon_sym_BSLASHnotecite] = ACTIONS(5467), - [anon_sym_BSLASHNotecite] = ACTIONS(5467), - [anon_sym_BSLASHpnotecite] = ACTIONS(5467), - [anon_sym_BSLASHPnotecite] = ACTIONS(5467), - [anon_sym_BSLASHfnotecite] = ACTIONS(5467), - [anon_sym_BSLASHlabel] = ACTIONS(5467), - [anon_sym_BSLASHref] = ACTIONS(5467), - [anon_sym_BSLASHeqref] = ACTIONS(5467), - [anon_sym_BSLASHvref] = ACTIONS(5467), - [anon_sym_BSLASHVref] = ACTIONS(5467), - [anon_sym_BSLASHautoref] = ACTIONS(5467), - [anon_sym_BSLASHpageref] = ACTIONS(5467), - [anon_sym_BSLASHcref] = ACTIONS(5467), - [anon_sym_BSLASHCref] = ACTIONS(5467), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnameCref] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5467), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5467), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5467), - [anon_sym_BSLASHlabelcref] = ACTIONS(5467), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange] = ACTIONS(5467), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHCrefrange] = ACTIONS(5467), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5465), - [anon_sym_BSLASHnewlabel] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand] = ACTIONS(5467), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5467), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5467), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5465), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5467), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdef] = ACTIONS(5467), - [anon_sym_BSLASHlet] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5467), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5467), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5467), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5467), - [anon_sym_BSLASHgls] = ACTIONS(5467), - [anon_sym_BSLASHGls] = ACTIONS(5467), - [anon_sym_BSLASHGLS] = ACTIONS(5467), - [anon_sym_BSLASHglspl] = ACTIONS(5467), - [anon_sym_BSLASHGlspl] = ACTIONS(5467), - [anon_sym_BSLASHGLSpl] = ACTIONS(5467), - [anon_sym_BSLASHglsdisp] = ACTIONS(5467), - [anon_sym_BSLASHglslink] = ACTIONS(5467), - [anon_sym_BSLASHglstext] = ACTIONS(5467), - [anon_sym_BSLASHGlstext] = ACTIONS(5467), - [anon_sym_BSLASHGLStext] = ACTIONS(5467), - [anon_sym_BSLASHglsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5467), - [anon_sym_BSLASHglsplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSplural] = ACTIONS(5467), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5467), - [anon_sym_BSLASHglsname] = ACTIONS(5467), - [anon_sym_BSLASHGlsname] = ACTIONS(5467), - [anon_sym_BSLASHGLSname] = ACTIONS(5467), - [anon_sym_BSLASHglssymbol] = ACTIONS(5467), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5467), - [anon_sym_BSLASHglsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5467), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5467), - [anon_sym_BSLASHglsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5467), - [anon_sym_BSLASHglsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5467), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5467), - [anon_sym_BSLASHglsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5467), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5467), - [anon_sym_BSLASHglsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5467), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5467), - [anon_sym_BSLASHnewacronym] = ACTIONS(5467), - [anon_sym_BSLASHacrshort] = ACTIONS(5467), - [anon_sym_BSLASHAcrshort] = ACTIONS(5467), - [anon_sym_BSLASHACRshort] = ACTIONS(5467), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5467), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5467), - [anon_sym_BSLASHacrlong] = ACTIONS(5467), - [anon_sym_BSLASHAcrlong] = ACTIONS(5467), - [anon_sym_BSLASHACRlong] = ACTIONS(5467), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5467), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5467), - [anon_sym_BSLASHacrfull] = ACTIONS(5467), - [anon_sym_BSLASHAcrfull] = ACTIONS(5467), - [anon_sym_BSLASHACRfull] = ACTIONS(5467), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5467), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5467), - [anon_sym_BSLASHacs] = ACTIONS(5467), - [anon_sym_BSLASHAcs] = ACTIONS(5467), - [anon_sym_BSLASHacsp] = ACTIONS(5467), - [anon_sym_BSLASHAcsp] = ACTIONS(5467), - [anon_sym_BSLASHacl] = ACTIONS(5467), - [anon_sym_BSLASHAcl] = ACTIONS(5467), - [anon_sym_BSLASHaclp] = ACTIONS(5467), - [anon_sym_BSLASHAclp] = ACTIONS(5467), - [anon_sym_BSLASHacf] = ACTIONS(5467), - [anon_sym_BSLASHAcf] = ACTIONS(5467), - [anon_sym_BSLASHacfp] = ACTIONS(5467), - [anon_sym_BSLASHAcfp] = ACTIONS(5467), - [anon_sym_BSLASHac] = ACTIONS(5467), - [anon_sym_BSLASHAc] = ACTIONS(5467), - [anon_sym_BSLASHacp] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5467), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5467), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5467), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5467), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5467), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5467), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5467), - [anon_sym_BSLASHcolor] = ACTIONS(5467), - [anon_sym_BSLASHcolorbox] = ACTIONS(5467), - [anon_sym_BSLASHtextcolor] = ACTIONS(5467), - [anon_sym_BSLASHpagecolor] = ACTIONS(5467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5467), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [anon_sym_RBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), }, [1603] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1604] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), + }, + [1605] = { + [sym_curly_group] = STATE(1609), + [sym_brack_group_text] = STATE(2475), [sym_command_name] = ACTIONS(5353), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_LBRACE] = ACTIONS(4273), [anon_sym_RBRACE] = ACTIONS(5351), + [anon_sym_BSLASHand] = ACTIONS(5353), [sym_word] = ACTIONS(5353), [sym_placeholder] = ACTIONS(5351), [anon_sym_PLUS] = ACTIONS(5353), @@ -471503,1678 +480576,25018 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(5353), [anon_sym_COLON] = ACTIONS(5353), [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), [anon_sym_BSLASHusepackage] = ACTIONS(5353), [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - }, - [1604] = { - [sym_command_name] = ACTIONS(5463), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5463), - [anon_sym_RBRACK] = ACTIONS(5461), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_RBRACE] = ACTIONS(5461), - [sym_word] = ACTIONS(5463), - [sym_placeholder] = ACTIONS(5461), - [anon_sym_PLUS] = ACTIONS(5463), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_STAR] = ACTIONS(5463), - [anon_sym_SLASH] = ACTIONS(5463), - [anon_sym_CARET] = ACTIONS(5463), - [anon_sym__] = ACTIONS(5463), - [anon_sym_LT] = ACTIONS(5463), - [anon_sym_GT] = ACTIONS(5463), - [anon_sym_BANG] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5463), - [anon_sym_COLON] = ACTIONS(5463), - [anon_sym_SQUOTE] = ACTIONS(5463), - [anon_sym_BSLASHusepackage] = ACTIONS(5463), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5463), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5463), - [anon_sym_BSLASHinclude] = ACTIONS(5463), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5463), - [anon_sym_BSLASHinput] = ACTIONS(5463), - [anon_sym_BSLASHsubfile] = ACTIONS(5463), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5463), - [anon_sym_BSLASHbibliography] = ACTIONS(5463), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5463), - [anon_sym_BSLASHincludesvg] = ACTIONS(5463), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5463), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5463), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5463), - [anon_sym_BSLASHimport] = ACTIONS(5463), - [anon_sym_BSLASHsubimport] = ACTIONS(5463), - [anon_sym_BSLASHinputfrom] = ACTIONS(5463), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5463), - [anon_sym_BSLASHincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5463), - [anon_sym_BSLASHcaption] = ACTIONS(5463), - [anon_sym_BSLASHcite] = ACTIONS(5463), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCite] = ACTIONS(5463), - [anon_sym_BSLASHnocite] = ACTIONS(5463), - [anon_sym_BSLASHcitet] = ACTIONS(5463), - [anon_sym_BSLASHcitep] = ACTIONS(5463), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteauthor] = ACTIONS(5463), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5463), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitetitle] = ACTIONS(5463), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteyear] = ACTIONS(5463), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5461), - [anon_sym_BSLASHcitedate] = ACTIONS(5463), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5461), - [anon_sym_BSLASHciteurl] = ACTIONS(5463), - [anon_sym_BSLASHfullcite] = ACTIONS(5463), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5463), - [anon_sym_BSLASHcitealt] = ACTIONS(5463), - [anon_sym_BSLASHcitealp] = ACTIONS(5463), - [anon_sym_BSLASHcitetext] = ACTIONS(5463), - [anon_sym_BSLASHparencite] = ACTIONS(5463), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHParencite] = ACTIONS(5463), - [anon_sym_BSLASHfootcite] = ACTIONS(5463), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5463), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5463), - [anon_sym_BSLASHtextcite] = ACTIONS(5463), - [anon_sym_BSLASHTextcite] = ACTIONS(5463), - [anon_sym_BSLASHsmartcite] = ACTIONS(5463), - [anon_sym_BSLASHSmartcite] = ACTIONS(5463), - [anon_sym_BSLASHsupercite] = ACTIONS(5463), - [anon_sym_BSLASHautocite] = ACTIONS(5463), - [anon_sym_BSLASHAutocite] = ACTIONS(5463), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5461), - [anon_sym_BSLASHvolcite] = ACTIONS(5463), - [anon_sym_BSLASHVolcite] = ACTIONS(5463), - [anon_sym_BSLASHpvolcite] = ACTIONS(5463), - [anon_sym_BSLASHPvolcite] = ACTIONS(5463), - [anon_sym_BSLASHfvolcite] = ACTIONS(5463), - [anon_sym_BSLASHftvolcite] = ACTIONS(5463), - [anon_sym_BSLASHsvolcite] = ACTIONS(5463), - [anon_sym_BSLASHSvolcite] = ACTIONS(5463), - [anon_sym_BSLASHtvolcite] = ACTIONS(5463), - [anon_sym_BSLASHTvolcite] = ACTIONS(5463), - [anon_sym_BSLASHavolcite] = ACTIONS(5463), - [anon_sym_BSLASHAvolcite] = ACTIONS(5463), - [anon_sym_BSLASHnotecite] = ACTIONS(5463), - [anon_sym_BSLASHNotecite] = ACTIONS(5463), - [anon_sym_BSLASHpnotecite] = ACTIONS(5463), - [anon_sym_BSLASHPnotecite] = ACTIONS(5463), - [anon_sym_BSLASHfnotecite] = ACTIONS(5463), - [anon_sym_BSLASHlabel] = ACTIONS(5463), - [anon_sym_BSLASHref] = ACTIONS(5463), - [anon_sym_BSLASHeqref] = ACTIONS(5463), - [anon_sym_BSLASHvref] = ACTIONS(5463), - [anon_sym_BSLASHVref] = ACTIONS(5463), - [anon_sym_BSLASHautoref] = ACTIONS(5463), - [anon_sym_BSLASHpageref] = ACTIONS(5463), - [anon_sym_BSLASHcref] = ACTIONS(5463), - [anon_sym_BSLASHCref] = ACTIONS(5463), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnameCref] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5463), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5463), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5463), - [anon_sym_BSLASHlabelcref] = ACTIONS(5463), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange] = ACTIONS(5463), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHCrefrange] = ACTIONS(5463), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5461), - [anon_sym_BSLASHnewlabel] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand] = ACTIONS(5463), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5463), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5463), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5461), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5463), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdef] = ACTIONS(5463), - [anon_sym_BSLASHlet] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5463), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5463), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5463), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5463), - [anon_sym_BSLASHgls] = ACTIONS(5463), - [anon_sym_BSLASHGls] = ACTIONS(5463), - [anon_sym_BSLASHGLS] = ACTIONS(5463), - [anon_sym_BSLASHglspl] = ACTIONS(5463), - [anon_sym_BSLASHGlspl] = ACTIONS(5463), - [anon_sym_BSLASHGLSpl] = ACTIONS(5463), - [anon_sym_BSLASHglsdisp] = ACTIONS(5463), - [anon_sym_BSLASHglslink] = ACTIONS(5463), - [anon_sym_BSLASHglstext] = ACTIONS(5463), - [anon_sym_BSLASHGlstext] = ACTIONS(5463), - [anon_sym_BSLASHGLStext] = ACTIONS(5463), - [anon_sym_BSLASHglsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5463), - [anon_sym_BSLASHglsplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSplural] = ACTIONS(5463), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5463), - [anon_sym_BSLASHglsname] = ACTIONS(5463), - [anon_sym_BSLASHGlsname] = ACTIONS(5463), - [anon_sym_BSLASHGLSname] = ACTIONS(5463), - [anon_sym_BSLASHglssymbol] = ACTIONS(5463), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5463), - [anon_sym_BSLASHglsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5463), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5463), - [anon_sym_BSLASHglsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5463), - [anon_sym_BSLASHglsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5463), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5463), - [anon_sym_BSLASHglsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5463), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5463), - [anon_sym_BSLASHglsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5463), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5463), - [anon_sym_BSLASHnewacronym] = ACTIONS(5463), - [anon_sym_BSLASHacrshort] = ACTIONS(5463), - [anon_sym_BSLASHAcrshort] = ACTIONS(5463), - [anon_sym_BSLASHACRshort] = ACTIONS(5463), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5463), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5463), - [anon_sym_BSLASHacrlong] = ACTIONS(5463), - [anon_sym_BSLASHAcrlong] = ACTIONS(5463), - [anon_sym_BSLASHACRlong] = ACTIONS(5463), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5463), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5463), - [anon_sym_BSLASHacrfull] = ACTIONS(5463), - [anon_sym_BSLASHAcrfull] = ACTIONS(5463), - [anon_sym_BSLASHACRfull] = ACTIONS(5463), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5463), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5463), - [anon_sym_BSLASHacs] = ACTIONS(5463), - [anon_sym_BSLASHAcs] = ACTIONS(5463), - [anon_sym_BSLASHacsp] = ACTIONS(5463), - [anon_sym_BSLASHAcsp] = ACTIONS(5463), - [anon_sym_BSLASHacl] = ACTIONS(5463), - [anon_sym_BSLASHAcl] = ACTIONS(5463), - [anon_sym_BSLASHaclp] = ACTIONS(5463), - [anon_sym_BSLASHAclp] = ACTIONS(5463), - [anon_sym_BSLASHacf] = ACTIONS(5463), - [anon_sym_BSLASHAcf] = ACTIONS(5463), - [anon_sym_BSLASHacfp] = ACTIONS(5463), - [anon_sym_BSLASHAcfp] = ACTIONS(5463), - [anon_sym_BSLASHac] = ACTIONS(5463), - [anon_sym_BSLASHAc] = ACTIONS(5463), - [anon_sym_BSLASHacp] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5463), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5463), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5463), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5463), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5463), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5461), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5463), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5463), - [anon_sym_BSLASHcolor] = ACTIONS(5463), - [anon_sym_BSLASHcolorbox] = ACTIONS(5463), - [anon_sym_BSLASHtextcolor] = ACTIONS(5463), - [anon_sym_BSLASHpagecolor] = ACTIONS(5463), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5463), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5463), - }, - [1605] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - }, - [1606] = { - [sym_command_name] = ACTIONS(5487), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5487), - [anon_sym_RBRACK] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_RBRACE] = ACTIONS(5485), - [sym_word] = ACTIONS(5487), - [sym_placeholder] = ACTIONS(5485), - [anon_sym_PLUS] = ACTIONS(5487), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_STAR] = ACTIONS(5487), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_CARET] = ACTIONS(5487), - [anon_sym__] = ACTIONS(5487), - [anon_sym_LT] = ACTIONS(5487), - [anon_sym_GT] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5487), - [anon_sym_PIPE] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(5487), - [anon_sym_SQUOTE] = ACTIONS(5487), - [anon_sym_BSLASHusepackage] = ACTIONS(5487), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5487), - [anon_sym_BSLASHinclude] = ACTIONS(5487), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5487), - [anon_sym_BSLASHinput] = ACTIONS(5487), - [anon_sym_BSLASHsubfile] = ACTIONS(5487), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5487), - [anon_sym_BSLASHbibliography] = ACTIONS(5487), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5487), - [anon_sym_BSLASHincludesvg] = ACTIONS(5487), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5487), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5487), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5487), - [anon_sym_BSLASHimport] = ACTIONS(5487), - [anon_sym_BSLASHsubimport] = ACTIONS(5487), - [anon_sym_BSLASHinputfrom] = ACTIONS(5487), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5487), - [anon_sym_BSLASHincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5487), - [anon_sym_BSLASHcaption] = ACTIONS(5487), - [anon_sym_BSLASHcite] = ACTIONS(5487), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5487), - [anon_sym_BSLASHnocite] = ACTIONS(5487), - [anon_sym_BSLASHcitet] = ACTIONS(5487), - [anon_sym_BSLASHcitep] = ACTIONS(5487), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5487), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5487), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5487), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5487), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5487), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5487), - [anon_sym_BSLASHfullcite] = ACTIONS(5487), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5487), - [anon_sym_BSLASHcitealt] = ACTIONS(5487), - [anon_sym_BSLASHcitealp] = ACTIONS(5487), - [anon_sym_BSLASHcitetext] = ACTIONS(5487), - [anon_sym_BSLASHparencite] = ACTIONS(5487), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5487), - [anon_sym_BSLASHfootcite] = ACTIONS(5487), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5487), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5487), - [anon_sym_BSLASHtextcite] = ACTIONS(5487), - [anon_sym_BSLASHTextcite] = ACTIONS(5487), - [anon_sym_BSLASHsmartcite] = ACTIONS(5487), - [anon_sym_BSLASHSmartcite] = ACTIONS(5487), - [anon_sym_BSLASHsupercite] = ACTIONS(5487), - [anon_sym_BSLASHautocite] = ACTIONS(5487), - [anon_sym_BSLASHAutocite] = ACTIONS(5487), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5487), - [anon_sym_BSLASHVolcite] = ACTIONS(5487), - [anon_sym_BSLASHpvolcite] = ACTIONS(5487), - [anon_sym_BSLASHPvolcite] = ACTIONS(5487), - [anon_sym_BSLASHfvolcite] = ACTIONS(5487), - [anon_sym_BSLASHftvolcite] = ACTIONS(5487), - [anon_sym_BSLASHsvolcite] = ACTIONS(5487), - [anon_sym_BSLASHSvolcite] = ACTIONS(5487), - [anon_sym_BSLASHtvolcite] = ACTIONS(5487), - [anon_sym_BSLASHTvolcite] = ACTIONS(5487), - [anon_sym_BSLASHavolcite] = ACTIONS(5487), - [anon_sym_BSLASHAvolcite] = ACTIONS(5487), - [anon_sym_BSLASHnotecite] = ACTIONS(5487), - [anon_sym_BSLASHNotecite] = ACTIONS(5487), - [anon_sym_BSLASHpnotecite] = ACTIONS(5487), - [anon_sym_BSLASHPnotecite] = ACTIONS(5487), - [anon_sym_BSLASHfnotecite] = ACTIONS(5487), - [anon_sym_BSLASHlabel] = ACTIONS(5487), - [anon_sym_BSLASHref] = ACTIONS(5487), - [anon_sym_BSLASHeqref] = ACTIONS(5487), - [anon_sym_BSLASHvref] = ACTIONS(5487), - [anon_sym_BSLASHVref] = ACTIONS(5487), - [anon_sym_BSLASHautoref] = ACTIONS(5487), - [anon_sym_BSLASHpageref] = ACTIONS(5487), - [anon_sym_BSLASHcref] = ACTIONS(5487), - [anon_sym_BSLASHCref] = ACTIONS(5487), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnameCref] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5487), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5487), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5487), - [anon_sym_BSLASHlabelcref] = ACTIONS(5487), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange] = ACTIONS(5487), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCrefrange] = ACTIONS(5487), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5485), - [anon_sym_BSLASHnewlabel] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand] = ACTIONS(5487), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5487), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5487), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5485), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5487), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdef] = ACTIONS(5487), - [anon_sym_BSLASHlet] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5487), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5487), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5487), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5487), - [anon_sym_BSLASHgls] = ACTIONS(5487), - [anon_sym_BSLASHGls] = ACTIONS(5487), - [anon_sym_BSLASHGLS] = ACTIONS(5487), - [anon_sym_BSLASHglspl] = ACTIONS(5487), - [anon_sym_BSLASHGlspl] = ACTIONS(5487), - [anon_sym_BSLASHGLSpl] = ACTIONS(5487), - [anon_sym_BSLASHglsdisp] = ACTIONS(5487), - [anon_sym_BSLASHglslink] = ACTIONS(5487), - [anon_sym_BSLASHglstext] = ACTIONS(5487), - [anon_sym_BSLASHGlstext] = ACTIONS(5487), - [anon_sym_BSLASHGLStext] = ACTIONS(5487), - [anon_sym_BSLASHglsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5487), - [anon_sym_BSLASHglsplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSplural] = ACTIONS(5487), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5487), - [anon_sym_BSLASHglsname] = ACTIONS(5487), - [anon_sym_BSLASHGlsname] = ACTIONS(5487), - [anon_sym_BSLASHGLSname] = ACTIONS(5487), - [anon_sym_BSLASHglssymbol] = ACTIONS(5487), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5487), - [anon_sym_BSLASHglsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5487), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5487), - [anon_sym_BSLASHglsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5487), - [anon_sym_BSLASHglsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5487), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5487), - [anon_sym_BSLASHglsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5487), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5487), - [anon_sym_BSLASHglsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5487), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5487), - [anon_sym_BSLASHnewacronym] = ACTIONS(5487), - [anon_sym_BSLASHacrshort] = ACTIONS(5487), - [anon_sym_BSLASHAcrshort] = ACTIONS(5487), - [anon_sym_BSLASHACRshort] = ACTIONS(5487), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5487), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5487), - [anon_sym_BSLASHacrlong] = ACTIONS(5487), - [anon_sym_BSLASHAcrlong] = ACTIONS(5487), - [anon_sym_BSLASHACRlong] = ACTIONS(5487), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5487), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5487), - [anon_sym_BSLASHacrfull] = ACTIONS(5487), - [anon_sym_BSLASHAcrfull] = ACTIONS(5487), - [anon_sym_BSLASHACRfull] = ACTIONS(5487), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5487), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5487), - [anon_sym_BSLASHacs] = ACTIONS(5487), - [anon_sym_BSLASHAcs] = ACTIONS(5487), - [anon_sym_BSLASHacsp] = ACTIONS(5487), - [anon_sym_BSLASHAcsp] = ACTIONS(5487), - [anon_sym_BSLASHacl] = ACTIONS(5487), - [anon_sym_BSLASHAcl] = ACTIONS(5487), - [anon_sym_BSLASHaclp] = ACTIONS(5487), - [anon_sym_BSLASHAclp] = ACTIONS(5487), - [anon_sym_BSLASHacf] = ACTIONS(5487), - [anon_sym_BSLASHAcf] = ACTIONS(5487), - [anon_sym_BSLASHacfp] = ACTIONS(5487), - [anon_sym_BSLASHAcfp] = ACTIONS(5487), - [anon_sym_BSLASHac] = ACTIONS(5487), - [anon_sym_BSLASHAc] = ACTIONS(5487), - [anon_sym_BSLASHacp] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5487), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5487), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5487), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5487), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5487), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5485), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5487), - [anon_sym_BSLASHcolor] = ACTIONS(5487), - [anon_sym_BSLASHcolorbox] = ACTIONS(5487), - [anon_sym_BSLASHtextcolor] = ACTIONS(5487), - [anon_sym_BSLASHpagecolor] = ACTIONS(5487), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5487), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5487), - }, - [1607] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - }, - [1608] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHtext] = ACTIONS(5353), + [anon_sym_BSLASHintertext] = ACTIONS(5353), + [anon_sym_shortintertext] = ACTIONS(5353), + }, + [1606] = { + [sym_curly_group] = STATE(1611), + [sym_brack_group_text] = STATE(2464), + [sym_command_name] = ACTIONS(5417), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(5415), + [anon_sym_BSLASHand] = ACTIONS(5417), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5415), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5415), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + [anon_sym_BSLASHtext] = ACTIONS(5417), + [anon_sym_BSLASHintertext] = ACTIONS(5417), + [anon_sym_shortintertext] = ACTIONS(5417), + }, + [1607] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_BSLASHand] = ACTIONS(5807), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5805), + [anon_sym_DOLLAR] = ACTIONS(5807), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5805), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + [anon_sym_BSLASHtext] = ACTIONS(5807), + [anon_sym_BSLASHintertext] = ACTIONS(5807), + [anon_sym_shortintertext] = ACTIONS(5807), + }, + [1608] = { + [sym_command_name] = ACTIONS(5403), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(6337), + [anon_sym_LBRACE] = ACTIONS(5401), + [anon_sym_RBRACE] = ACTIONS(5401), + [anon_sym_BSLASHand] = ACTIONS(5403), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5401), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5401), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5401), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [anon_sym_BSLASHtext] = ACTIONS(5403), + [anon_sym_BSLASHintertext] = ACTIONS(5403), + [anon_sym_shortintertext] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(6339), }, [1609] = { - [sym_command_name] = ACTIONS(5319), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5317), - [anon_sym_COMMA] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_RBRACE] = ACTIONS(5317), - [sym_word] = ACTIONS(5319), - [sym_placeholder] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(5319), - [anon_sym_STAR] = ACTIONS(5319), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_CARET] = ACTIONS(5319), - [anon_sym__] = ACTIONS(5319), - [anon_sym_LT] = ACTIONS(5319), - [anon_sym_GT] = ACTIONS(5319), - [anon_sym_BANG] = ACTIONS(5319), - [anon_sym_PIPE] = ACTIONS(5319), - [anon_sym_COLON] = ACTIONS(5319), - [anon_sym_SQUOTE] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5319), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), - [anon_sym_BSLASHinclude] = ACTIONS(5319), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), - [anon_sym_BSLASHinput] = ACTIONS(5319), - [anon_sym_BSLASHsubfile] = ACTIONS(5319), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), - [anon_sym_BSLASHbibliography] = ACTIONS(5319), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), - [anon_sym_BSLASHincludesvg] = ACTIONS(5319), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), - [anon_sym_BSLASHimport] = ACTIONS(5319), - [anon_sym_BSLASHsubimport] = ACTIONS(5319), - [anon_sym_BSLASHinputfrom] = ACTIONS(5319), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), - [anon_sym_BSLASHincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), - [anon_sym_BSLASHcaption] = ACTIONS(5319), - [anon_sym_BSLASHcite] = ACTIONS(5319), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCite] = ACTIONS(5319), - [anon_sym_BSLASHnocite] = ACTIONS(5319), - [anon_sym_BSLASHcitet] = ACTIONS(5319), - [anon_sym_BSLASHcitep] = ACTIONS(5319), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteyear] = ACTIONS(5319), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), - [anon_sym_BSLASHcitedate] = ACTIONS(5319), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), - [anon_sym_BSLASHciteurl] = ACTIONS(5319), - [anon_sym_BSLASHfullcite] = ACTIONS(5319), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), - [anon_sym_BSLASHcitealt] = ACTIONS(5319), - [anon_sym_BSLASHcitealp] = ACTIONS(5319), - [anon_sym_BSLASHcitetext] = ACTIONS(5319), - [anon_sym_BSLASHparencite] = ACTIONS(5319), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHParencite] = ACTIONS(5319), - [anon_sym_BSLASHfootcite] = ACTIONS(5319), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), - [anon_sym_BSLASHtextcite] = ACTIONS(5319), - [anon_sym_BSLASHTextcite] = ACTIONS(5319), - [anon_sym_BSLASHsmartcite] = ACTIONS(5319), - [anon_sym_BSLASHSmartcite] = ACTIONS(5319), - [anon_sym_BSLASHsupercite] = ACTIONS(5319), - [anon_sym_BSLASHautocite] = ACTIONS(5319), - [anon_sym_BSLASHAutocite] = ACTIONS(5319), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), - [anon_sym_BSLASHvolcite] = ACTIONS(5319), - [anon_sym_BSLASHVolcite] = ACTIONS(5319), - [anon_sym_BSLASHpvolcite] = ACTIONS(5319), - [anon_sym_BSLASHPvolcite] = ACTIONS(5319), - [anon_sym_BSLASHfvolcite] = ACTIONS(5319), - [anon_sym_BSLASHftvolcite] = ACTIONS(5319), - [anon_sym_BSLASHsvolcite] = ACTIONS(5319), - [anon_sym_BSLASHSvolcite] = ACTIONS(5319), - [anon_sym_BSLASHtvolcite] = ACTIONS(5319), - [anon_sym_BSLASHTvolcite] = ACTIONS(5319), - [anon_sym_BSLASHavolcite] = ACTIONS(5319), - [anon_sym_BSLASHAvolcite] = ACTIONS(5319), - [anon_sym_BSLASHnotecite] = ACTIONS(5319), - [anon_sym_BSLASHNotecite] = ACTIONS(5319), - [anon_sym_BSLASHpnotecite] = ACTIONS(5319), - [anon_sym_BSLASHPnotecite] = ACTIONS(5319), - [anon_sym_BSLASHfnotecite] = ACTIONS(5319), - [anon_sym_BSLASHlabel] = ACTIONS(5319), - [anon_sym_BSLASHref] = ACTIONS(5319), - [anon_sym_BSLASHeqref] = ACTIONS(5319), - [anon_sym_BSLASHvref] = ACTIONS(5319), - [anon_sym_BSLASHVref] = ACTIONS(5319), - [anon_sym_BSLASHautoref] = ACTIONS(5319), - [anon_sym_BSLASHpageref] = ACTIONS(5319), - [anon_sym_BSLASHcref] = ACTIONS(5319), - [anon_sym_BSLASHCref] = ACTIONS(5319), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnameCref] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), - [anon_sym_BSLASHlabelcref] = ACTIONS(5319), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange] = ACTIONS(5319), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), - [anon_sym_BSLASHnewlabel] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand] = ACTIONS(5319), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdef] = ACTIONS(5319), - [anon_sym_BSLASHlet] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5319), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), - [anon_sym_BSLASHgls] = ACTIONS(5319), - [anon_sym_BSLASHGls] = ACTIONS(5319), - [anon_sym_BSLASHGLS] = ACTIONS(5319), - [anon_sym_BSLASHglspl] = ACTIONS(5319), - [anon_sym_BSLASHGlspl] = ACTIONS(5319), - [anon_sym_BSLASHGLSpl] = ACTIONS(5319), - [anon_sym_BSLASHglsdisp] = ACTIONS(5319), - [anon_sym_BSLASHglslink] = ACTIONS(5319), - [anon_sym_BSLASHglstext] = ACTIONS(5319), - [anon_sym_BSLASHGlstext] = ACTIONS(5319), - [anon_sym_BSLASHGLStext] = ACTIONS(5319), - [anon_sym_BSLASHglsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), - [anon_sym_BSLASHglsplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSplural] = ACTIONS(5319), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), - [anon_sym_BSLASHglsname] = ACTIONS(5319), - [anon_sym_BSLASHGlsname] = ACTIONS(5319), - [anon_sym_BSLASHGLSname] = ACTIONS(5319), - [anon_sym_BSLASHglssymbol] = ACTIONS(5319), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), - [anon_sym_BSLASHglsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), - [anon_sym_BSLASHglsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), - [anon_sym_BSLASHglsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), - [anon_sym_BSLASHglsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), - [anon_sym_BSLASHglsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), - [anon_sym_BSLASHnewacronym] = ACTIONS(5319), - [anon_sym_BSLASHacrshort] = ACTIONS(5319), - [anon_sym_BSLASHAcrshort] = ACTIONS(5319), - [anon_sym_BSLASHACRshort] = ACTIONS(5319), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), - [anon_sym_BSLASHacrlong] = ACTIONS(5319), - [anon_sym_BSLASHAcrlong] = ACTIONS(5319), - [anon_sym_BSLASHACRlong] = ACTIONS(5319), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), - [anon_sym_BSLASHacrfull] = ACTIONS(5319), - [anon_sym_BSLASHAcrfull] = ACTIONS(5319), - [anon_sym_BSLASHACRfull] = ACTIONS(5319), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), - [anon_sym_BSLASHacs] = ACTIONS(5319), - [anon_sym_BSLASHAcs] = ACTIONS(5319), - [anon_sym_BSLASHacsp] = ACTIONS(5319), - [anon_sym_BSLASHAcsp] = ACTIONS(5319), - [anon_sym_BSLASHacl] = ACTIONS(5319), - [anon_sym_BSLASHAcl] = ACTIONS(5319), - [anon_sym_BSLASHaclp] = ACTIONS(5319), - [anon_sym_BSLASHAclp] = ACTIONS(5319), - [anon_sym_BSLASHacf] = ACTIONS(5319), - [anon_sym_BSLASHAcf] = ACTIONS(5319), - [anon_sym_BSLASHacfp] = ACTIONS(5319), - [anon_sym_BSLASHAcfp] = ACTIONS(5319), - [anon_sym_BSLASHac] = ACTIONS(5319), - [anon_sym_BSLASHAc] = ACTIONS(5319), - [anon_sym_BSLASHacp] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), - [anon_sym_BSLASHcolor] = ACTIONS(5319), - [anon_sym_BSLASHcolorbox] = ACTIONS(5319), - [anon_sym_BSLASHtextcolor] = ACTIONS(5319), - [anon_sym_BSLASHpagecolor] = ACTIONS(5319), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), + [sym_brack_group_text] = STATE(1684), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(6341), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_RBRACE] = ACTIONS(5599), + [anon_sym_BSLASHand] = ACTIONS(5601), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5599), + [anon_sym_DOLLAR] = ACTIONS(5601), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5599), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5599), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + [anon_sym_BSLASHtext] = ACTIONS(5601), + [anon_sym_BSLASHintertext] = ACTIONS(5601), + [anon_sym_shortintertext] = ACTIONS(5601), }, [1610] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [anon_sym_RBRACE] = ACTIONS(6087), + [anon_sym_BSLASHand] = ACTIONS(6089), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(6089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6087), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + [anon_sym_BSLASHtext] = ACTIONS(6089), + [anon_sym_BSLASHintertext] = ACTIONS(6089), + [anon_sym_shortintertext] = ACTIONS(6089), + }, + [1611] = { + [sym_brack_group_text] = STATE(1620), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(6341), + [anon_sym_LBRACE] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_BSLASHand] = ACTIONS(5785), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5783), + [anon_sym_DOLLAR] = ACTIONS(5785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5783), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5783), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + [anon_sym_BSLASHtext] = ACTIONS(5785), + [anon_sym_BSLASHintertext] = ACTIONS(5785), + [anon_sym_shortintertext] = ACTIONS(5785), + }, + [1612] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_BSLASHand] = ACTIONS(5811), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5809), + [anon_sym_DOLLAR] = ACTIONS(5811), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5809), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5809), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + [anon_sym_BSLASHtext] = ACTIONS(5811), + [anon_sym_BSLASHintertext] = ACTIONS(5811), + [anon_sym_shortintertext] = ACTIONS(5811), + }, + [1613] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_BSLASHand] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6059), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + [anon_sym_BSLASHtext] = ACTIONS(6061), + [anon_sym_BSLASHintertext] = ACTIONS(6061), + [anon_sym_shortintertext] = ACTIONS(6061), + }, + [1614] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [anon_sym_RBRACE] = ACTIONS(6179), + [anon_sym_BSLASHand] = ACTIONS(6181), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6179), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + [anon_sym_BSLASHtext] = ACTIONS(6181), + [anon_sym_BSLASHintertext] = ACTIONS(6181), + [anon_sym_shortintertext] = ACTIONS(6181), + }, + [1615] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6343), + [anon_sym_LBRACE] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5777), + [anon_sym_BSLASHand] = ACTIONS(5779), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5777), + [anon_sym_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5777), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5777), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + [anon_sym_BSLASHtext] = ACTIONS(5779), + [anon_sym_BSLASHintertext] = ACTIONS(5779), + [anon_sym_shortintertext] = ACTIONS(5779), + }, + [1616] = { + [sym_curly_group] = STATE(1688), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_BSLASHand] = ACTIONS(5755), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5753), + [anon_sym_DOLLAR] = ACTIONS(5755), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5753), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5753), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + [anon_sym_BSLASHtext] = ACTIONS(5755), + [anon_sym_BSLASHintertext] = ACTIONS(5755), + [anon_sym_shortintertext] = ACTIONS(5755), + }, + [1617] = { + [sym_curly_group] = STATE(1679), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(5607), + [anon_sym_BSLASHand] = ACTIONS(5609), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5607), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5607), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5607), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + [anon_sym_BSLASHtext] = ACTIONS(5609), + [anon_sym_BSLASHintertext] = ACTIONS(5609), + [anon_sym_shortintertext] = ACTIONS(5609), + }, + [1618] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [anon_sym_RBRACE] = ACTIONS(5875), + [anon_sym_BSLASHand] = ACTIONS(5877), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5875), + [anon_sym_DOLLAR] = ACTIONS(5877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5875), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5875), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + [anon_sym_BSLASHtext] = ACTIONS(5877), + [anon_sym_BSLASHintertext] = ACTIONS(5877), + [anon_sym_shortintertext] = ACTIONS(5877), + }, + [1619] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_LBRACE] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_BSLASHand] = ACTIONS(5893), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(5893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5891), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + [anon_sym_BSLASHtext] = ACTIONS(5893), + [anon_sym_BSLASHintertext] = ACTIONS(5893), + [anon_sym_shortintertext] = ACTIONS(5893), + }, + [1620] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_LBRACE] = ACTIONS(6225), + [anon_sym_RBRACE] = ACTIONS(6225), + [anon_sym_BSLASHand] = ACTIONS(6227), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6225), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + [anon_sym_BSLASHtext] = ACTIONS(6227), + [anon_sym_BSLASHintertext] = ACTIONS(6227), + [anon_sym_shortintertext] = ACTIONS(6227), + }, + [1621] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym_BSLASHand] = ACTIONS(6253), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6251), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + [anon_sym_BSLASHtext] = ACTIONS(6253), + [anon_sym_BSLASHintertext] = ACTIONS(6253), + [anon_sym_shortintertext] = ACTIONS(6253), + }, + [1622] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(6257), + [anon_sym_BSLASHand] = ACTIONS(6259), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6257), + [anon_sym_DOLLAR] = ACTIONS(6259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6257), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6257), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + [anon_sym_BSLASHtext] = ACTIONS(6259), + [anon_sym_BSLASHintertext] = ACTIONS(6259), + [anon_sym_shortintertext] = ACTIONS(6259), + }, + [1623] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_LBRACE] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_BSLASHand] = ACTIONS(5901), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5899), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + [anon_sym_BSLASHtext] = ACTIONS(5901), + [anon_sym_BSLASHintertext] = ACTIONS(5901), + [anon_sym_shortintertext] = ACTIONS(5901), + }, + [1624] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_LBRACE] = ACTIONS(6067), + [anon_sym_RBRACE] = ACTIONS(6067), + [anon_sym_BSLASHand] = ACTIONS(6069), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6067), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + [anon_sym_BSLASHtext] = ACTIONS(6069), + [anon_sym_BSLASHintertext] = ACTIONS(6069), + [anon_sym_shortintertext] = ACTIONS(6069), + }, + [1625] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_LBRACE] = ACTIONS(5973), + [anon_sym_RBRACE] = ACTIONS(5973), + [anon_sym_BSLASHand] = ACTIONS(5975), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5973), + [anon_sym_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5973), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5973), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + [anon_sym_BSLASHtext] = ACTIONS(5975), + [anon_sym_BSLASHintertext] = ACTIONS(5975), + [anon_sym_shortintertext] = ACTIONS(5975), + }, + [1626] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_LBRACE] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_BSLASHand] = ACTIONS(5965), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(5965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5963), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + [anon_sym_BSLASHtext] = ACTIONS(5965), + [anon_sym_BSLASHintertext] = ACTIONS(5965), + [anon_sym_shortintertext] = ACTIONS(5965), + }, + [1627] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_LBRACE] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6247), + [anon_sym_BSLASHand] = ACTIONS(6249), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6247), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + [anon_sym_BSLASHtext] = ACTIONS(6249), + [anon_sym_BSLASHintertext] = ACTIONS(6249), + [anon_sym_shortintertext] = ACTIONS(6249), + }, + [1628] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [anon_sym_BSLASHand] = ACTIONS(5915), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5915), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5913), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5913), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + [anon_sym_BSLASHtext] = ACTIONS(5915), + [anon_sym_BSLASHintertext] = ACTIONS(5915), + [anon_sym_shortintertext] = ACTIONS(5915), + }, + [1629] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_LBRACE] = ACTIONS(5997), + [anon_sym_RBRACE] = ACTIONS(5997), + [anon_sym_BSLASHand] = ACTIONS(5999), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5997), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + [anon_sym_BSLASHtext] = ACTIONS(5999), + [anon_sym_BSLASHintertext] = ACTIONS(5999), + [anon_sym_shortintertext] = ACTIONS(5999), + }, + [1630] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_LBRACE] = ACTIONS(5993), + [anon_sym_RBRACE] = ACTIONS(5993), + [anon_sym_BSLASHand] = ACTIONS(5995), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5993), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + [anon_sym_BSLASHtext] = ACTIONS(5995), + [anon_sym_BSLASHintertext] = ACTIONS(5995), + [anon_sym_shortintertext] = ACTIONS(5995), + }, + [1631] = { + [sym_command_name] = ACTIONS(6345), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6345), + [anon_sym_LBRACE] = ACTIONS(6347), + [anon_sym_RBRACE] = ACTIONS(6347), + [anon_sym_BSLASHand] = ACTIONS(6345), + [sym_word] = ACTIONS(6345), + [sym_placeholder] = ACTIONS(6347), + [anon_sym_PLUS] = ACTIONS(6345), + [anon_sym_DASH] = ACTIONS(6345), + [anon_sym_STAR] = ACTIONS(6345), + [anon_sym_SLASH] = ACTIONS(6345), + [anon_sym_CARET] = ACTIONS(6345), + [anon_sym__] = ACTIONS(6345), + [anon_sym_LT] = ACTIONS(6345), + [anon_sym_GT] = ACTIONS(6345), + [anon_sym_BANG] = ACTIONS(6345), + [anon_sym_PIPE] = ACTIONS(6345), + [anon_sym_COLON] = ACTIONS(6345), + [anon_sym_SQUOTE] = ACTIONS(6345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), + [anon_sym_DOLLAR] = ACTIONS(6345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6347), + [anon_sym_BSLASHtitle] = ACTIONS(6345), + [anon_sym_BSLASHauthor] = ACTIONS(6345), + [anon_sym_BSLASHusepackage] = ACTIONS(6345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), + [anon_sym_BSLASHinclude] = ACTIONS(6345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), + [anon_sym_BSLASHinput] = ACTIONS(6345), + [anon_sym_BSLASHsubfile] = ACTIONS(6345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), + [anon_sym_BSLASHbibliography] = ACTIONS(6345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), + [anon_sym_BSLASHincludesvg] = ACTIONS(6345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), + [anon_sym_BSLASHimport] = ACTIONS(6345), + [anon_sym_BSLASHsubimport] = ACTIONS(6345), + [anon_sym_BSLASHinputfrom] = ACTIONS(6345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), + [anon_sym_BSLASHincludefrom] = ACTIONS(6345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), + [anon_sym_BSLASHcaption] = ACTIONS(6345), + [anon_sym_BSLASHcite] = ACTIONS(6345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCite] = ACTIONS(6345), + [anon_sym_BSLASHnocite] = ACTIONS(6345), + [anon_sym_BSLASHcitet] = ACTIONS(6345), + [anon_sym_BSLASHcitep] = ACTIONS(6345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteauthor] = ACTIONS(6345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitetitle] = ACTIONS(6345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteyear] = ACTIONS(6345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitedate] = ACTIONS(6345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteurl] = ACTIONS(6345), + [anon_sym_BSLASHfullcite] = ACTIONS(6345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), + [anon_sym_BSLASHcitealt] = ACTIONS(6345), + [anon_sym_BSLASHcitealp] = ACTIONS(6345), + [anon_sym_BSLASHcitetext] = ACTIONS(6345), + [anon_sym_BSLASHparencite] = ACTIONS(6345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHParencite] = ACTIONS(6345), + [anon_sym_BSLASHfootcite] = ACTIONS(6345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), + [anon_sym_BSLASHtextcite] = ACTIONS(6345), + [anon_sym_BSLASHTextcite] = ACTIONS(6345), + [anon_sym_BSLASHsmartcite] = ACTIONS(6345), + [anon_sym_BSLASHSmartcite] = ACTIONS(6345), + [anon_sym_BSLASHsupercite] = ACTIONS(6345), + [anon_sym_BSLASHautocite] = ACTIONS(6345), + [anon_sym_BSLASHAutocite] = ACTIONS(6345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHvolcite] = ACTIONS(6345), + [anon_sym_BSLASHVolcite] = ACTIONS(6345), + [anon_sym_BSLASHpvolcite] = ACTIONS(6345), + [anon_sym_BSLASHPvolcite] = ACTIONS(6345), + [anon_sym_BSLASHfvolcite] = ACTIONS(6345), + [anon_sym_BSLASHftvolcite] = ACTIONS(6345), + [anon_sym_BSLASHsvolcite] = ACTIONS(6345), + [anon_sym_BSLASHSvolcite] = ACTIONS(6345), + [anon_sym_BSLASHtvolcite] = ACTIONS(6345), + [anon_sym_BSLASHTvolcite] = ACTIONS(6345), + [anon_sym_BSLASHavolcite] = ACTIONS(6345), + [anon_sym_BSLASHAvolcite] = ACTIONS(6345), + [anon_sym_BSLASHnotecite] = ACTIONS(6345), + [anon_sym_BSLASHNotecite] = ACTIONS(6345), + [anon_sym_BSLASHpnotecite] = ACTIONS(6345), + [anon_sym_BSLASHPnotecite] = ACTIONS(6345), + [anon_sym_BSLASHfnotecite] = ACTIONS(6345), + [anon_sym_BSLASHlabel] = ACTIONS(6345), + [anon_sym_BSLASHref] = ACTIONS(6345), + [anon_sym_BSLASHeqref] = ACTIONS(6345), + [anon_sym_BSLASHvref] = ACTIONS(6345), + [anon_sym_BSLASHVref] = ACTIONS(6345), + [anon_sym_BSLASHautoref] = ACTIONS(6345), + [anon_sym_BSLASHpageref] = ACTIONS(6345), + [anon_sym_BSLASHcref] = ACTIONS(6345), + [anon_sym_BSLASHCref] = ACTIONS(6345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), + [anon_sym_BSLASHnamecref] = ACTIONS(6345), + [anon_sym_BSLASHnameCref] = ACTIONS(6345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), + [anon_sym_BSLASHlabelcref] = ACTIONS(6345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), + [anon_sym_BSLASHcrefrange] = ACTIONS(6345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCrefrange] = ACTIONS(6345), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), + [anon_sym_BSLASHnewlabel] = ACTIONS(6345), + [anon_sym_BSLASHnewcommand] = ACTIONS(6345), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdef] = ACTIONS(6345), + [anon_sym_BSLASHlet] = ACTIONS(6345), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), + [anon_sym_BSLASHgls] = ACTIONS(6345), + [anon_sym_BSLASHGls] = ACTIONS(6345), + [anon_sym_BSLASHGLS] = ACTIONS(6345), + [anon_sym_BSLASHglspl] = ACTIONS(6345), + [anon_sym_BSLASHGlspl] = ACTIONS(6345), + [anon_sym_BSLASHGLSpl] = ACTIONS(6345), + [anon_sym_BSLASHglsdisp] = ACTIONS(6345), + [anon_sym_BSLASHglslink] = ACTIONS(6345), + [anon_sym_BSLASHglstext] = ACTIONS(6345), + [anon_sym_BSLASHGlstext] = ACTIONS(6345), + [anon_sym_BSLASHGLStext] = ACTIONS(6345), + [anon_sym_BSLASHglsfirst] = ACTIONS(6345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), + [anon_sym_BSLASHglsplural] = ACTIONS(6345), + [anon_sym_BSLASHGlsplural] = ACTIONS(6345), + [anon_sym_BSLASHGLSplural] = ACTIONS(6345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHglsname] = ACTIONS(6345), + [anon_sym_BSLASHGlsname] = ACTIONS(6345), + [anon_sym_BSLASHGLSname] = ACTIONS(6345), + [anon_sym_BSLASHglssymbol] = ACTIONS(6345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), + [anon_sym_BSLASHglsdesc] = ACTIONS(6345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), + [anon_sym_BSLASHglsuseri] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), + [anon_sym_BSLASHglsuserii] = ACTIONS(6345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), + [anon_sym_BSLASHglsuserv] = ACTIONS(6345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), + [anon_sym_BSLASHglsuservi] = ACTIONS(6345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), + [anon_sym_BSLASHnewacronym] = ACTIONS(6345), + [anon_sym_BSLASHacrshort] = ACTIONS(6345), + [anon_sym_BSLASHAcrshort] = ACTIONS(6345), + [anon_sym_BSLASHACRshort] = ACTIONS(6345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), + [anon_sym_BSLASHacrlong] = ACTIONS(6345), + [anon_sym_BSLASHAcrlong] = ACTIONS(6345), + [anon_sym_BSLASHACRlong] = ACTIONS(6345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), + [anon_sym_BSLASHacrfull] = ACTIONS(6345), + [anon_sym_BSLASHAcrfull] = ACTIONS(6345), + [anon_sym_BSLASHACRfull] = ACTIONS(6345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), + [anon_sym_BSLASHacs] = ACTIONS(6345), + [anon_sym_BSLASHAcs] = ACTIONS(6345), + [anon_sym_BSLASHacsp] = ACTIONS(6345), + [anon_sym_BSLASHAcsp] = ACTIONS(6345), + [anon_sym_BSLASHacl] = ACTIONS(6345), + [anon_sym_BSLASHAcl] = ACTIONS(6345), + [anon_sym_BSLASHaclp] = ACTIONS(6345), + [anon_sym_BSLASHAclp] = ACTIONS(6345), + [anon_sym_BSLASHacf] = ACTIONS(6345), + [anon_sym_BSLASHAcf] = ACTIONS(6345), + [anon_sym_BSLASHacfp] = ACTIONS(6345), + [anon_sym_BSLASHAcfp] = ACTIONS(6345), + [anon_sym_BSLASHac] = ACTIONS(6345), + [anon_sym_BSLASHAc] = ACTIONS(6345), + [anon_sym_BSLASHacp] = ACTIONS(6345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), + [anon_sym_BSLASHcolor] = ACTIONS(6345), + [anon_sym_BSLASHcolorbox] = ACTIONS(6345), + [anon_sym_BSLASHtextcolor] = ACTIONS(6345), + [anon_sym_BSLASHpagecolor] = ACTIONS(6345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), + [anon_sym_BSLASHtext] = ACTIONS(6345), + [anon_sym_BSLASHintertext] = ACTIONS(6345), + [anon_sym_shortintertext] = ACTIONS(6345), + }, + [1632] = { + [sym_command_name] = ACTIONS(5937), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5937), + [anon_sym_LBRACE] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_BSLASHand] = ACTIONS(5937), + [sym_word] = ACTIONS(5937), + [sym_placeholder] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5937), + [anon_sym_SLASH] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5937), + [anon_sym__] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_SQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5937), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5935), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5935), + [anon_sym_BSLASHtitle] = ACTIONS(5937), + [anon_sym_BSLASHauthor] = ACTIONS(5937), + [anon_sym_BSLASHusepackage] = ACTIONS(5937), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5937), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5937), + [anon_sym_BSLASHinclude] = ACTIONS(5937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5937), + [anon_sym_BSLASHinput] = ACTIONS(5937), + [anon_sym_BSLASHsubfile] = ACTIONS(5937), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5937), + [anon_sym_BSLASHbibliography] = ACTIONS(5937), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5937), + [anon_sym_BSLASHincludesvg] = ACTIONS(5937), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5937), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5937), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5937), + [anon_sym_BSLASHimport] = ACTIONS(5937), + [anon_sym_BSLASHsubimport] = ACTIONS(5937), + [anon_sym_BSLASHinputfrom] = ACTIONS(5937), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5937), + [anon_sym_BSLASHincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5937), + [anon_sym_BSLASHcaption] = ACTIONS(5937), + [anon_sym_BSLASHcite] = ACTIONS(5937), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCite] = ACTIONS(5937), + [anon_sym_BSLASHnocite] = ACTIONS(5937), + [anon_sym_BSLASHcitet] = ACTIONS(5937), + [anon_sym_BSLASHcitep] = ACTIONS(5937), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteauthor] = ACTIONS(5937), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5937), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitetitle] = ACTIONS(5937), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteyear] = ACTIONS(5937), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5935), + [anon_sym_BSLASHcitedate] = ACTIONS(5937), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5935), + [anon_sym_BSLASHciteurl] = ACTIONS(5937), + [anon_sym_BSLASHfullcite] = ACTIONS(5937), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5937), + [anon_sym_BSLASHcitealt] = ACTIONS(5937), + [anon_sym_BSLASHcitealp] = ACTIONS(5937), + [anon_sym_BSLASHcitetext] = ACTIONS(5937), + [anon_sym_BSLASHparencite] = ACTIONS(5937), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHParencite] = ACTIONS(5937), + [anon_sym_BSLASHfootcite] = ACTIONS(5937), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5937), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5937), + [anon_sym_BSLASHtextcite] = ACTIONS(5937), + [anon_sym_BSLASHTextcite] = ACTIONS(5937), + [anon_sym_BSLASHsmartcite] = ACTIONS(5937), + [anon_sym_BSLASHSmartcite] = ACTIONS(5937), + [anon_sym_BSLASHsupercite] = ACTIONS(5937), + [anon_sym_BSLASHautocite] = ACTIONS(5937), + [anon_sym_BSLASHAutocite] = ACTIONS(5937), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5935), + [anon_sym_BSLASHvolcite] = ACTIONS(5937), + [anon_sym_BSLASHVolcite] = ACTIONS(5937), + [anon_sym_BSLASHpvolcite] = ACTIONS(5937), + [anon_sym_BSLASHPvolcite] = ACTIONS(5937), + [anon_sym_BSLASHfvolcite] = ACTIONS(5937), + [anon_sym_BSLASHftvolcite] = ACTIONS(5937), + [anon_sym_BSLASHsvolcite] = ACTIONS(5937), + [anon_sym_BSLASHSvolcite] = ACTIONS(5937), + [anon_sym_BSLASHtvolcite] = ACTIONS(5937), + [anon_sym_BSLASHTvolcite] = ACTIONS(5937), + [anon_sym_BSLASHavolcite] = ACTIONS(5937), + [anon_sym_BSLASHAvolcite] = ACTIONS(5937), + [anon_sym_BSLASHnotecite] = ACTIONS(5937), + [anon_sym_BSLASHNotecite] = ACTIONS(5937), + [anon_sym_BSLASHpnotecite] = ACTIONS(5937), + [anon_sym_BSLASHPnotecite] = ACTIONS(5937), + [anon_sym_BSLASHfnotecite] = ACTIONS(5937), + [anon_sym_BSLASHlabel] = ACTIONS(5937), + [anon_sym_BSLASHref] = ACTIONS(5937), + [anon_sym_BSLASHeqref] = ACTIONS(5937), + [anon_sym_BSLASHvref] = ACTIONS(5937), + [anon_sym_BSLASHVref] = ACTIONS(5937), + [anon_sym_BSLASHautoref] = ACTIONS(5937), + [anon_sym_BSLASHpageref] = ACTIONS(5937), + [anon_sym_BSLASHcref] = ACTIONS(5937), + [anon_sym_BSLASHCref] = ACTIONS(5937), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnameCref] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5937), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5937), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5937), + [anon_sym_BSLASHlabelcref] = ACTIONS(5937), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange] = ACTIONS(5937), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHCrefrange] = ACTIONS(5937), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5935), + [anon_sym_BSLASHnewlabel] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand] = ACTIONS(5937), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5937), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5937), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5935), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5937), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdef] = ACTIONS(5937), + [anon_sym_BSLASHlet] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5937), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5937), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5937), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5937), + [anon_sym_BSLASHgls] = ACTIONS(5937), + [anon_sym_BSLASHGls] = ACTIONS(5937), + [anon_sym_BSLASHGLS] = ACTIONS(5937), + [anon_sym_BSLASHglspl] = ACTIONS(5937), + [anon_sym_BSLASHGlspl] = ACTIONS(5937), + [anon_sym_BSLASHGLSpl] = ACTIONS(5937), + [anon_sym_BSLASHglsdisp] = ACTIONS(5937), + [anon_sym_BSLASHglslink] = ACTIONS(5937), + [anon_sym_BSLASHglstext] = ACTIONS(5937), + [anon_sym_BSLASHGlstext] = ACTIONS(5937), + [anon_sym_BSLASHGLStext] = ACTIONS(5937), + [anon_sym_BSLASHglsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5937), + [anon_sym_BSLASHglsplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSplural] = ACTIONS(5937), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5937), + [anon_sym_BSLASHglsname] = ACTIONS(5937), + [anon_sym_BSLASHGlsname] = ACTIONS(5937), + [anon_sym_BSLASHGLSname] = ACTIONS(5937), + [anon_sym_BSLASHglssymbol] = ACTIONS(5937), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5937), + [anon_sym_BSLASHglsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5937), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5937), + [anon_sym_BSLASHglsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5937), + [anon_sym_BSLASHglsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5937), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5937), + [anon_sym_BSLASHglsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5937), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5937), + [anon_sym_BSLASHglsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5937), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5937), + [anon_sym_BSLASHnewacronym] = ACTIONS(5937), + [anon_sym_BSLASHacrshort] = ACTIONS(5937), + [anon_sym_BSLASHAcrshort] = ACTIONS(5937), + [anon_sym_BSLASHACRshort] = ACTIONS(5937), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5937), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5937), + [anon_sym_BSLASHacrlong] = ACTIONS(5937), + [anon_sym_BSLASHAcrlong] = ACTIONS(5937), + [anon_sym_BSLASHACRlong] = ACTIONS(5937), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5937), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5937), + [anon_sym_BSLASHacrfull] = ACTIONS(5937), + [anon_sym_BSLASHAcrfull] = ACTIONS(5937), + [anon_sym_BSLASHACRfull] = ACTIONS(5937), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5937), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5937), + [anon_sym_BSLASHacs] = ACTIONS(5937), + [anon_sym_BSLASHAcs] = ACTIONS(5937), + [anon_sym_BSLASHacsp] = ACTIONS(5937), + [anon_sym_BSLASHAcsp] = ACTIONS(5937), + [anon_sym_BSLASHacl] = ACTIONS(5937), + [anon_sym_BSLASHAcl] = ACTIONS(5937), + [anon_sym_BSLASHaclp] = ACTIONS(5937), + [anon_sym_BSLASHAclp] = ACTIONS(5937), + [anon_sym_BSLASHacf] = ACTIONS(5937), + [anon_sym_BSLASHAcf] = ACTIONS(5937), + [anon_sym_BSLASHacfp] = ACTIONS(5937), + [anon_sym_BSLASHAcfp] = ACTIONS(5937), + [anon_sym_BSLASHac] = ACTIONS(5937), + [anon_sym_BSLASHAc] = ACTIONS(5937), + [anon_sym_BSLASHacp] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5937), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5937), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5937), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5937), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5937), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5937), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5937), + [anon_sym_BSLASHcolor] = ACTIONS(5937), + [anon_sym_BSLASHcolorbox] = ACTIONS(5937), + [anon_sym_BSLASHtextcolor] = ACTIONS(5937), + [anon_sym_BSLASHpagecolor] = ACTIONS(5937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5937), + [anon_sym_BSLASHtext] = ACTIONS(5937), + [anon_sym_BSLASHintertext] = ACTIONS(5937), + [anon_sym_shortintertext] = ACTIONS(5937), + }, + [1633] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_LBRACE] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5985), + [anon_sym_BSLASHand] = ACTIONS(5987), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), + [anon_sym_DOLLAR] = ACTIONS(5987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5985), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + [anon_sym_BSLASHtext] = ACTIONS(5987), + [anon_sym_BSLASHintertext] = ACTIONS(5987), + [anon_sym_shortintertext] = ACTIONS(5987), + }, + [1634] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_LBRACE] = ACTIONS(5989), + [anon_sym_RBRACE] = ACTIONS(5989), + [anon_sym_BSLASHand] = ACTIONS(5991), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5989), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + [anon_sym_BSLASHtext] = ACTIONS(5991), + [anon_sym_BSLASHintertext] = ACTIONS(5991), + [anon_sym_shortintertext] = ACTIONS(5991), + }, + [1635] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_LBRACE] = ACTIONS(6265), + [anon_sym_RBRACE] = ACTIONS(6265), + [anon_sym_BSLASHand] = ACTIONS(6267), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(6267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6265), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6265), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + [anon_sym_BSLASHtext] = ACTIONS(6267), + [anon_sym_BSLASHintertext] = ACTIONS(6267), + [anon_sym_shortintertext] = ACTIONS(6267), + }, + [1636] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_LBRACE] = ACTIONS(6195), + [anon_sym_RBRACE] = ACTIONS(6195), + [anon_sym_BSLASHand] = ACTIONS(6197), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6195), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + [anon_sym_BSLASHtext] = ACTIONS(6197), + [anon_sym_BSLASHintertext] = ACTIONS(6197), + [anon_sym_shortintertext] = ACTIONS(6197), + }, + [1637] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_LBRACE] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [anon_sym_BSLASHand] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6071), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + [anon_sym_BSLASHtext] = ACTIONS(6073), + [anon_sym_BSLASHintertext] = ACTIONS(6073), + [anon_sym_shortintertext] = ACTIONS(6073), + }, + [1638] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_LBRACE] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6063), + [anon_sym_BSLASHand] = ACTIONS(6065), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6063), + [anon_sym_DOLLAR] = ACTIONS(6065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6063), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + [anon_sym_BSLASHtext] = ACTIONS(6065), + [anon_sym_BSLASHintertext] = ACTIONS(6065), + [anon_sym_shortintertext] = ACTIONS(6065), + }, + [1639] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_LBRACE] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_BSLASHand] = ACTIONS(5897), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(5897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5895), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + [anon_sym_BSLASHtext] = ACTIONS(5897), + [anon_sym_BSLASHintertext] = ACTIONS(5897), + [anon_sym_shortintertext] = ACTIONS(5897), + }, + [1640] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_LBRACE] = ACTIONS(5843), + [anon_sym_RBRACE] = ACTIONS(5843), + [anon_sym_BSLASHand] = ACTIONS(5845), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5843), + [anon_sym_DOLLAR] = ACTIONS(5845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5843), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + [anon_sym_BSLASHtext] = ACTIONS(5845), + [anon_sym_BSLASHintertext] = ACTIONS(5845), + [anon_sym_shortintertext] = ACTIONS(5845), + }, + [1641] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_LBRACE] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_BSLASHand] = ACTIONS(5857), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5855), + [anon_sym_DOLLAR] = ACTIONS(5857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5855), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + [anon_sym_BSLASHtext] = ACTIONS(5857), + [anon_sym_BSLASHintertext] = ACTIONS(5857), + [anon_sym_shortintertext] = ACTIONS(5857), + }, + [1642] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_LBRACE] = ACTIONS(5977), + [anon_sym_RBRACE] = ACTIONS(5977), + [anon_sym_BSLASHand] = ACTIONS(5979), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5977), + [anon_sym_DOLLAR] = ACTIONS(5979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5977), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + [anon_sym_BSLASHtext] = ACTIONS(5979), + [anon_sym_BSLASHintertext] = ACTIONS(5979), + [anon_sym_shortintertext] = ACTIONS(5979), + }, + [1643] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5905), + [anon_sym_BSLASHand] = ACTIONS(5907), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5905), + [anon_sym_DOLLAR] = ACTIONS(5907), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5905), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5905), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + [anon_sym_BSLASHtext] = ACTIONS(5907), + [anon_sym_BSLASHintertext] = ACTIONS(5907), + [anon_sym_shortintertext] = ACTIONS(5907), + }, + [1644] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_BSLASHand] = ACTIONS(5911), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5909), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + [anon_sym_BSLASHtext] = ACTIONS(5911), + [anon_sym_BSLASHintertext] = ACTIONS(5911), + [anon_sym_shortintertext] = ACTIONS(5911), + }, + [1645] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_BSLASHand] = ACTIONS(5919), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5917), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + [anon_sym_BSLASHtext] = ACTIONS(5919), + [anon_sym_BSLASHintertext] = ACTIONS(5919), + [anon_sym_shortintertext] = ACTIONS(5919), + }, + [1646] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(5921), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_BSLASHand] = ACTIONS(5923), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5921), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5921), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + [anon_sym_BSLASHtext] = ACTIONS(5923), + [anon_sym_BSLASHintertext] = ACTIONS(5923), + [anon_sym_shortintertext] = ACTIONS(5923), + }, + [1647] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_LBRACE] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_BSLASHand] = ACTIONS(5941), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5941), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5939), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + [anon_sym_BSLASHtext] = ACTIONS(5941), + [anon_sym_BSLASHintertext] = ACTIONS(5941), + [anon_sym_shortintertext] = ACTIONS(5941), + }, + [1648] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_LBRACE] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [anon_sym_BSLASHand] = ACTIONS(5945), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5945), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5943), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5943), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + [anon_sym_BSLASHtext] = ACTIONS(5945), + [anon_sym_BSLASHintertext] = ACTIONS(5945), + [anon_sym_shortintertext] = ACTIONS(5945), + }, + [1649] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_LBRACE] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_BSLASHand] = ACTIONS(5953), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5951), + [anon_sym_DOLLAR] = ACTIONS(5953), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5951), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5951), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + [anon_sym_BSLASHtext] = ACTIONS(5953), + [anon_sym_BSLASHintertext] = ACTIONS(5953), + [anon_sym_shortintertext] = ACTIONS(5953), + }, + [1650] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_LBRACE] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_BSLASHand] = ACTIONS(5957), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5957), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5955), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5955), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + [anon_sym_BSLASHtext] = ACTIONS(5957), + [anon_sym_BSLASHintertext] = ACTIONS(5957), + [anon_sym_shortintertext] = ACTIONS(5957), + }, + [1651] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_LBRACE] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_BSLASHand] = ACTIONS(5961), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(5961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5959), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5959), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + [anon_sym_BSLASHtext] = ACTIONS(5961), + [anon_sym_BSLASHintertext] = ACTIONS(5961), + [anon_sym_shortintertext] = ACTIONS(5961), + }, + [1652] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_LBRACE] = ACTIONS(6165), + [anon_sym_RBRACE] = ACTIONS(6165), + [anon_sym_BSLASHand] = ACTIONS(6167), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6165), + [anon_sym_DOLLAR] = ACTIONS(6167), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6165), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6165), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + [anon_sym_BSLASHtext] = ACTIONS(6167), + [anon_sym_BSLASHintertext] = ACTIONS(6167), + [anon_sym_shortintertext] = ACTIONS(6167), + }, + [1653] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_LBRACE] = ACTIONS(6261), + [anon_sym_RBRACE] = ACTIONS(6261), + [anon_sym_BSLASHand] = ACTIONS(6263), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6261), + [anon_sym_DOLLAR] = ACTIONS(6263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6261), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6261), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + [anon_sym_BSLASHtext] = ACTIONS(6263), + [anon_sym_BSLASHintertext] = ACTIONS(6263), + [anon_sym_shortintertext] = ACTIONS(6263), + }, + [1654] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_LBRACE] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [anon_sym_BSLASHand] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6047), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6045), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6045), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + [anon_sym_BSLASHtext] = ACTIONS(6047), + [anon_sym_BSLASHintertext] = ACTIONS(6047), + [anon_sym_shortintertext] = ACTIONS(6047), + }, + [1655] = { + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(185), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_BSLASHand] = ACTIONS(185), + [sym_word] = ACTIONS(185), + [sym_placeholder] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym__] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(183), + [anon_sym_BSLASHtitle] = ACTIONS(185), + [anon_sym_BSLASHauthor] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(185), + [anon_sym_BSLASHinclude] = ACTIONS(185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(185), + [anon_sym_BSLASHinput] = ACTIONS(185), + [anon_sym_BSLASHsubfile] = ACTIONS(185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(185), + [anon_sym_BSLASHbibliography] = ACTIONS(185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(185), + [anon_sym_BSLASHincludesvg] = ACTIONS(185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(185), + [anon_sym_BSLASHimport] = ACTIONS(185), + [anon_sym_BSLASHsubimport] = ACTIONS(185), + [anon_sym_BSLASHinputfrom] = ACTIONS(185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(185), + [anon_sym_BSLASHincludefrom] = ACTIONS(185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(185), + [anon_sym_BSLASHcaption] = ACTIONS(185), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(183), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(183), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(183), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(183), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(183), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHNotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHlabel] = ACTIONS(185), + [anon_sym_BSLASHref] = ACTIONS(185), + [anon_sym_BSLASHeqref] = ACTIONS(185), + [anon_sym_BSLASHvref] = ACTIONS(185), + [anon_sym_BSLASHVref] = ACTIONS(185), + [anon_sym_BSLASHautoref] = ACTIONS(185), + [anon_sym_BSLASHpageref] = ACTIONS(185), + [anon_sym_BSLASHcref] = ACTIONS(185), + [anon_sym_BSLASHCref] = ACTIONS(185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(183), + [anon_sym_BSLASHnamecref] = ACTIONS(185), + [anon_sym_BSLASHnameCref] = ACTIONS(185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(185), + [anon_sym_BSLASHlabelcref] = ACTIONS(185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(185), + [anon_sym_BSLASHcrefrange] = ACTIONS(185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHCrefrange] = ACTIONS(185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(183), + [anon_sym_BSLASHnewlabel] = ACTIONS(185), + [anon_sym_BSLASHnewcommand] = ACTIONS(185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(183), + [anon_sym_BSLASHdef] = ACTIONS(185), + [anon_sym_BSLASHlet] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(185), + [anon_sym_BSLASHgls] = ACTIONS(185), + [anon_sym_BSLASHGls] = ACTIONS(185), + [anon_sym_BSLASHGLS] = ACTIONS(185), + [anon_sym_BSLASHglspl] = ACTIONS(185), + [anon_sym_BSLASHGlspl] = ACTIONS(185), + [anon_sym_BSLASHGLSpl] = ACTIONS(185), + [anon_sym_BSLASHglsdisp] = ACTIONS(185), + [anon_sym_BSLASHglslink] = ACTIONS(185), + [anon_sym_BSLASHglstext] = ACTIONS(185), + [anon_sym_BSLASHGlstext] = ACTIONS(185), + [anon_sym_BSLASHGLStext] = ACTIONS(185), + [anon_sym_BSLASHglsfirst] = ACTIONS(185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(185), + [anon_sym_BSLASHglsplural] = ACTIONS(185), + [anon_sym_BSLASHGlsplural] = ACTIONS(185), + [anon_sym_BSLASHGLSplural] = ACTIONS(185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(185), + [anon_sym_BSLASHglsname] = ACTIONS(185), + [anon_sym_BSLASHGlsname] = ACTIONS(185), + [anon_sym_BSLASHGLSname] = ACTIONS(185), + [anon_sym_BSLASHglssymbol] = ACTIONS(185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(185), + [anon_sym_BSLASHglsdesc] = ACTIONS(185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(185), + [anon_sym_BSLASHglsuseri] = ACTIONS(185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(185), + [anon_sym_BSLASHglsuserii] = ACTIONS(185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(185), + [anon_sym_BSLASHglsuserv] = ACTIONS(185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(185), + [anon_sym_BSLASHglsuservi] = ACTIONS(185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(185), + [anon_sym_BSLASHnewacronym] = ACTIONS(185), + [anon_sym_BSLASHacrshort] = ACTIONS(185), + [anon_sym_BSLASHAcrshort] = ACTIONS(185), + [anon_sym_BSLASHACRshort] = ACTIONS(185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(185), + [anon_sym_BSLASHacrlong] = ACTIONS(185), + [anon_sym_BSLASHAcrlong] = ACTIONS(185), + [anon_sym_BSLASHACRlong] = ACTIONS(185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(185), + [anon_sym_BSLASHacrfull] = ACTIONS(185), + [anon_sym_BSLASHAcrfull] = ACTIONS(185), + [anon_sym_BSLASHACRfull] = ACTIONS(185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(185), + [anon_sym_BSLASHacs] = ACTIONS(185), + [anon_sym_BSLASHAcs] = ACTIONS(185), + [anon_sym_BSLASHacsp] = ACTIONS(185), + [anon_sym_BSLASHAcsp] = ACTIONS(185), + [anon_sym_BSLASHacl] = ACTIONS(185), + [anon_sym_BSLASHAcl] = ACTIONS(185), + [anon_sym_BSLASHaclp] = ACTIONS(185), + [anon_sym_BSLASHAclp] = ACTIONS(185), + [anon_sym_BSLASHacf] = ACTIONS(185), + [anon_sym_BSLASHAcf] = ACTIONS(185), + [anon_sym_BSLASHacfp] = ACTIONS(185), + [anon_sym_BSLASHAcfp] = ACTIONS(185), + [anon_sym_BSLASHac] = ACTIONS(185), + [anon_sym_BSLASHAc] = ACTIONS(185), + [anon_sym_BSLASHacp] = ACTIONS(185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(185), + [anon_sym_BSLASHcolor] = ACTIONS(185), + [anon_sym_BSLASHcolorbox] = ACTIONS(185), + [anon_sym_BSLASHtextcolor] = ACTIONS(185), + [anon_sym_BSLASHpagecolor] = ACTIONS(185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(185), + [anon_sym_BSLASHtext] = ACTIONS(185), + [anon_sym_BSLASHintertext] = ACTIONS(185), + [anon_sym_shortintertext] = ACTIONS(185), + }, + [1656] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_LBRACE] = ACTIONS(6207), + [anon_sym_RBRACE] = ACTIONS(6207), + [anon_sym_BSLASHand] = ACTIONS(6209), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), + [anon_sym_DOLLAR] = ACTIONS(6209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6207), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + [anon_sym_BSLASHtext] = ACTIONS(6209), + [anon_sym_BSLASHintertext] = ACTIONS(6209), + [anon_sym_shortintertext] = ACTIONS(6209), + }, + [1657] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_LBRACE] = ACTIONS(6091), + [anon_sym_RBRACE] = ACTIONS(6091), + [anon_sym_BSLASHand] = ACTIONS(6093), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6091), + [anon_sym_DOLLAR] = ACTIONS(6093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6091), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + [anon_sym_BSLASHtext] = ACTIONS(6093), + [anon_sym_BSLASHintertext] = ACTIONS(6093), + [anon_sym_shortintertext] = ACTIONS(6093), + }, + [1658] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [anon_sym_BSLASHand] = ACTIONS(6135), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(6135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6133), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + [anon_sym_BSLASHtext] = ACTIONS(6135), + [anon_sym_BSLASHintertext] = ACTIONS(6135), + [anon_sym_shortintertext] = ACTIONS(6135), + }, + [1659] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_LBRACE] = ACTIONS(6137), + [anon_sym_RBRACE] = ACTIONS(6137), + [anon_sym_BSLASHand] = ACTIONS(6139), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6137), + [anon_sym_DOLLAR] = ACTIONS(6139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6137), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + [anon_sym_BSLASHtext] = ACTIONS(6139), + [anon_sym_BSLASHintertext] = ACTIONS(6139), + [anon_sym_shortintertext] = ACTIONS(6139), + }, + [1660] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_LBRACE] = ACTIONS(6149), + [anon_sym_RBRACE] = ACTIONS(6149), + [anon_sym_BSLASHand] = ACTIONS(6151), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6149), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6149), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + [anon_sym_BSLASHtext] = ACTIONS(6151), + [anon_sym_BSLASHintertext] = ACTIONS(6151), + [anon_sym_shortintertext] = ACTIONS(6151), + }, + [1661] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_LBRACE] = ACTIONS(6157), + [anon_sym_RBRACE] = ACTIONS(6157), + [anon_sym_BSLASHand] = ACTIONS(6159), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6157), + [anon_sym_DOLLAR] = ACTIONS(6159), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6157), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6157), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + [anon_sym_BSLASHtext] = ACTIONS(6159), + [anon_sym_BSLASHintertext] = ACTIONS(6159), + [anon_sym_shortintertext] = ACTIONS(6159), + }, + [1662] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_LBRACE] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [anon_sym_BSLASHand] = ACTIONS(6163), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6161), + [anon_sym_DOLLAR] = ACTIONS(6163), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6161), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6161), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + [anon_sym_BSLASHtext] = ACTIONS(6163), + [anon_sym_BSLASHintertext] = ACTIONS(6163), + [anon_sym_shortintertext] = ACTIONS(6163), + }, + [1663] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_LBRACE] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_BSLASHand] = ACTIONS(6171), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6169), + [anon_sym_DOLLAR] = ACTIONS(6171), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6169), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6169), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + [anon_sym_BSLASHtext] = ACTIONS(6171), + [anon_sym_BSLASHintertext] = ACTIONS(6171), + [anon_sym_shortintertext] = ACTIONS(6171), + }, + [1664] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(6173), + [anon_sym_RBRACE] = ACTIONS(6173), + [anon_sym_BSLASHand] = ACTIONS(6175), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6173), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6173), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + [anon_sym_BSLASHtext] = ACTIONS(6175), + [anon_sym_BSLASHintertext] = ACTIONS(6175), + [anon_sym_shortintertext] = ACTIONS(6175), + }, + [1665] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_BSLASHand] = ACTIONS(139), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(175), + [anon_sym_BSLASHtitle] = ACTIONS(139), + [anon_sym_BSLASHauthor] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(175), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(175), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(175), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(175), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(175), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(175), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(175), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(175), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1666] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_LBRACE] = ACTIONS(6203), + [anon_sym_RBRACE] = ACTIONS(6203), + [anon_sym_BSLASHand] = ACTIONS(6205), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_DOLLAR] = ACTIONS(6205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6203), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + [anon_sym_BSLASHtext] = ACTIONS(6205), + [anon_sym_BSLASHintertext] = ACTIONS(6205), + [anon_sym_shortintertext] = ACTIONS(6205), + }, + [1667] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_LBRACE] = ACTIONS(6187), + [anon_sym_RBRACE] = ACTIONS(6187), + [anon_sym_BSLASHand] = ACTIONS(6189), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6187), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + [anon_sym_BSLASHtext] = ACTIONS(6189), + [anon_sym_BSLASHintertext] = ACTIONS(6189), + [anon_sym_shortintertext] = ACTIONS(6189), + }, + [1668] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_LBRACE] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6199), + [anon_sym_BSLASHand] = ACTIONS(6201), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6199), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + [anon_sym_BSLASHtext] = ACTIONS(6201), + [anon_sym_BSLASHintertext] = ACTIONS(6201), + [anon_sym_shortintertext] = ACTIONS(6201), + }, + [1669] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_LBRACE] = ACTIONS(6217), + [anon_sym_RBRACE] = ACTIONS(6217), + [anon_sym_BSLASHand] = ACTIONS(6219), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6217), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6217), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + [anon_sym_BSLASHtext] = ACTIONS(6219), + [anon_sym_BSLASHintertext] = ACTIONS(6219), + [anon_sym_shortintertext] = ACTIONS(6219), + }, + [1670] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_LBRACE] = ACTIONS(5839), + [anon_sym_RBRACE] = ACTIONS(5839), + [anon_sym_BSLASHand] = ACTIONS(5841), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5839), + [anon_sym_DOLLAR] = ACTIONS(5841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5839), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + [anon_sym_BSLASHtext] = ACTIONS(5841), + [anon_sym_BSLASHintertext] = ACTIONS(5841), + [anon_sym_shortintertext] = ACTIONS(5841), + }, + [1671] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_LBRACE] = ACTIONS(5835), + [anon_sym_RBRACE] = ACTIONS(5835), + [anon_sym_BSLASHand] = ACTIONS(5837), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5835), + [anon_sym_DOLLAR] = ACTIONS(5837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5835), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + [anon_sym_BSLASHtext] = ACTIONS(5837), + [anon_sym_BSLASHintertext] = ACTIONS(5837), + [anon_sym_shortintertext] = ACTIONS(5837), + }, + [1672] = { + [sym_command_name] = ACTIONS(5803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5803), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_BSLASHand] = ACTIONS(5803), + [sym_word] = ACTIONS(5803), + [sym_placeholder] = ACTIONS(5801), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym__] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5803), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5803), + [anon_sym_SQUOTE] = ACTIONS(5803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5801), + [anon_sym_BSLASHtitle] = ACTIONS(5803), + [anon_sym_BSLASHauthor] = ACTIONS(5803), + [anon_sym_BSLASHusepackage] = ACTIONS(5803), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5803), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5803), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5803), + [anon_sym_BSLASHsubfile] = ACTIONS(5803), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5803), + [anon_sym_BSLASHbibliography] = ACTIONS(5803), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5803), + [anon_sym_BSLASHincludesvg] = ACTIONS(5803), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5803), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5803), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5803), + [anon_sym_BSLASHimport] = ACTIONS(5803), + [anon_sym_BSLASHsubimport] = ACTIONS(5803), + [anon_sym_BSLASHinputfrom] = ACTIONS(5803), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5803), + [anon_sym_BSLASHincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5803), + [anon_sym_BSLASHcaption] = ACTIONS(5803), + [anon_sym_BSLASHcite] = ACTIONS(5803), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCite] = ACTIONS(5803), + [anon_sym_BSLASHnocite] = ACTIONS(5803), + [anon_sym_BSLASHcitet] = ACTIONS(5803), + [anon_sym_BSLASHcitep] = ACTIONS(5803), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteauthor] = ACTIONS(5803), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5803), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitetitle] = ACTIONS(5803), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteyear] = ACTIONS(5803), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5801), + [anon_sym_BSLASHcitedate] = ACTIONS(5803), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5801), + [anon_sym_BSLASHciteurl] = ACTIONS(5803), + [anon_sym_BSLASHfullcite] = ACTIONS(5803), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5803), + [anon_sym_BSLASHcitealt] = ACTIONS(5803), + [anon_sym_BSLASHcitealp] = ACTIONS(5803), + [anon_sym_BSLASHcitetext] = ACTIONS(5803), + [anon_sym_BSLASHparencite] = ACTIONS(5803), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHParencite] = ACTIONS(5803), + [anon_sym_BSLASHfootcite] = ACTIONS(5803), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5803), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5803), + [anon_sym_BSLASHtextcite] = ACTIONS(5803), + [anon_sym_BSLASHTextcite] = ACTIONS(5803), + [anon_sym_BSLASHsmartcite] = ACTIONS(5803), + [anon_sym_BSLASHSmartcite] = ACTIONS(5803), + [anon_sym_BSLASHsupercite] = ACTIONS(5803), + [anon_sym_BSLASHautocite] = ACTIONS(5803), + [anon_sym_BSLASHAutocite] = ACTIONS(5803), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5801), + [anon_sym_BSLASHvolcite] = ACTIONS(5803), + [anon_sym_BSLASHVolcite] = ACTIONS(5803), + [anon_sym_BSLASHpvolcite] = ACTIONS(5803), + [anon_sym_BSLASHPvolcite] = ACTIONS(5803), + [anon_sym_BSLASHfvolcite] = ACTIONS(5803), + [anon_sym_BSLASHftvolcite] = ACTIONS(5803), + [anon_sym_BSLASHsvolcite] = ACTIONS(5803), + [anon_sym_BSLASHSvolcite] = ACTIONS(5803), + [anon_sym_BSLASHtvolcite] = ACTIONS(5803), + [anon_sym_BSLASHTvolcite] = ACTIONS(5803), + [anon_sym_BSLASHavolcite] = ACTIONS(5803), + [anon_sym_BSLASHAvolcite] = ACTIONS(5803), + [anon_sym_BSLASHnotecite] = ACTIONS(5803), + [anon_sym_BSLASHNotecite] = ACTIONS(5803), + [anon_sym_BSLASHpnotecite] = ACTIONS(5803), + [anon_sym_BSLASHPnotecite] = ACTIONS(5803), + [anon_sym_BSLASHfnotecite] = ACTIONS(5803), + [anon_sym_BSLASHlabel] = ACTIONS(5803), + [anon_sym_BSLASHref] = ACTIONS(5803), + [anon_sym_BSLASHeqref] = ACTIONS(5803), + [anon_sym_BSLASHvref] = ACTIONS(5803), + [anon_sym_BSLASHVref] = ACTIONS(5803), + [anon_sym_BSLASHautoref] = ACTIONS(5803), + [anon_sym_BSLASHpageref] = ACTIONS(5803), + [anon_sym_BSLASHcref] = ACTIONS(5803), + [anon_sym_BSLASHCref] = ACTIONS(5803), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnameCref] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5803), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5803), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5803), + [anon_sym_BSLASHlabelcref] = ACTIONS(5803), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange] = ACTIONS(5803), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHCrefrange] = ACTIONS(5803), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5801), + [anon_sym_BSLASHnewlabel] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand] = ACTIONS(5803), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5803), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5803), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5801), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5803), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdef] = ACTIONS(5803), + [anon_sym_BSLASHlet] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5803), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5803), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5803), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5803), + [anon_sym_BSLASHgls] = ACTIONS(5803), + [anon_sym_BSLASHGls] = ACTIONS(5803), + [anon_sym_BSLASHGLS] = ACTIONS(5803), + [anon_sym_BSLASHglspl] = ACTIONS(5803), + [anon_sym_BSLASHGlspl] = ACTIONS(5803), + [anon_sym_BSLASHGLSpl] = ACTIONS(5803), + [anon_sym_BSLASHglsdisp] = ACTIONS(5803), + [anon_sym_BSLASHglslink] = ACTIONS(5803), + [anon_sym_BSLASHglstext] = ACTIONS(5803), + [anon_sym_BSLASHGlstext] = ACTIONS(5803), + [anon_sym_BSLASHGLStext] = ACTIONS(5803), + [anon_sym_BSLASHglsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5803), + [anon_sym_BSLASHglsplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSplural] = ACTIONS(5803), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5803), + [anon_sym_BSLASHglsname] = ACTIONS(5803), + [anon_sym_BSLASHGlsname] = ACTIONS(5803), + [anon_sym_BSLASHGLSname] = ACTIONS(5803), + [anon_sym_BSLASHglssymbol] = ACTIONS(5803), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5803), + [anon_sym_BSLASHglsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5803), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5803), + [anon_sym_BSLASHglsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5803), + [anon_sym_BSLASHglsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5803), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5803), + [anon_sym_BSLASHglsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5803), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5803), + [anon_sym_BSLASHglsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5803), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5803), + [anon_sym_BSLASHnewacronym] = ACTIONS(5803), + [anon_sym_BSLASHacrshort] = ACTIONS(5803), + [anon_sym_BSLASHAcrshort] = ACTIONS(5803), + [anon_sym_BSLASHACRshort] = ACTIONS(5803), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), + [anon_sym_BSLASHacrlong] = ACTIONS(5803), + [anon_sym_BSLASHAcrlong] = ACTIONS(5803), + [anon_sym_BSLASHACRlong] = ACTIONS(5803), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), + [anon_sym_BSLASHacrfull] = ACTIONS(5803), + [anon_sym_BSLASHAcrfull] = ACTIONS(5803), + [anon_sym_BSLASHACRfull] = ACTIONS(5803), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), + [anon_sym_BSLASHacs] = ACTIONS(5803), + [anon_sym_BSLASHAcs] = ACTIONS(5803), + [anon_sym_BSLASHacsp] = ACTIONS(5803), + [anon_sym_BSLASHAcsp] = ACTIONS(5803), + [anon_sym_BSLASHacl] = ACTIONS(5803), + [anon_sym_BSLASHAcl] = ACTIONS(5803), + [anon_sym_BSLASHaclp] = ACTIONS(5803), + [anon_sym_BSLASHAclp] = ACTIONS(5803), + [anon_sym_BSLASHacf] = ACTIONS(5803), + [anon_sym_BSLASHAcf] = ACTIONS(5803), + [anon_sym_BSLASHacfp] = ACTIONS(5803), + [anon_sym_BSLASHAcfp] = ACTIONS(5803), + [anon_sym_BSLASHac] = ACTIONS(5803), + [anon_sym_BSLASHAc] = ACTIONS(5803), + [anon_sym_BSLASHacp] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5803), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5803), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5801), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5803), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5803), + [anon_sym_BSLASHcolor] = ACTIONS(5803), + [anon_sym_BSLASHcolorbox] = ACTIONS(5803), + [anon_sym_BSLASHtextcolor] = ACTIONS(5803), + [anon_sym_BSLASHpagecolor] = ACTIONS(5803), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5803), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5803), + [anon_sym_BSLASHtext] = ACTIONS(5803), + [anon_sym_BSLASHintertext] = ACTIONS(5803), + [anon_sym_shortintertext] = ACTIONS(5803), + }, + [1673] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_LBRACE] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6239), + [anon_sym_BSLASHand] = ACTIONS(6241), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6239), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + [anon_sym_BSLASHtext] = ACTIONS(6241), + [anon_sym_BSLASHintertext] = ACTIONS(6241), + [anon_sym_shortintertext] = ACTIONS(6241), + }, + [1674] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym_BSLASHand] = ACTIONS(6185), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6183), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + [anon_sym_BSLASHtext] = ACTIONS(6185), + [anon_sym_BSLASHintertext] = ACTIONS(6185), + [anon_sym_shortintertext] = ACTIONS(6185), + }, + [1675] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_LBRACE] = ACTIONS(6153), + [anon_sym_RBRACE] = ACTIONS(6153), + [anon_sym_BSLASHand] = ACTIONS(6155), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6153), + [anon_sym_DOLLAR] = ACTIONS(6155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6153), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6153), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + [anon_sym_BSLASHtext] = ACTIONS(6155), + [anon_sym_BSLASHintertext] = ACTIONS(6155), + [anon_sym_shortintertext] = ACTIONS(6155), + }, + [1676] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_LBRACE] = ACTIONS(6141), + [anon_sym_RBRACE] = ACTIONS(6141), + [anon_sym_BSLASHand] = ACTIONS(6143), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6141), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + [anon_sym_BSLASHtext] = ACTIONS(6143), + [anon_sym_BSLASHintertext] = ACTIONS(6143), + [anon_sym_shortintertext] = ACTIONS(6143), + }, + [1677] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_LBRACE] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [anon_sym_BSLASHand] = ACTIONS(6131), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6129), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + [anon_sym_BSLASHtext] = ACTIONS(6131), + [anon_sym_BSLASHintertext] = ACTIONS(6131), + [anon_sym_shortintertext] = ACTIONS(6131), + }, + [1678] = { + [sym_command_name] = ACTIONS(191), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_BSLASHand] = ACTIONS(191), + [sym_word] = ACTIONS(191), + [sym_placeholder] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym__] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(189), + [anon_sym_BSLASH_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_BSLASH_LPAREN] = ACTIONS(189), + [anon_sym_BSLASH_LBRACE] = ACTIONS(189), + [anon_sym_BSLASHtitle] = ACTIONS(191), + [anon_sym_BSLASHauthor] = ACTIONS(191), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(191), + [anon_sym_BSLASHinclude] = ACTIONS(191), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(191), + [anon_sym_BSLASHinput] = ACTIONS(191), + [anon_sym_BSLASHsubfile] = ACTIONS(191), + [anon_sym_BSLASHaddbibresource] = ACTIONS(191), + [anon_sym_BSLASHbibliography] = ACTIONS(191), + [anon_sym_BSLASHincludegraphics] = ACTIONS(191), + [anon_sym_BSLASHincludesvg] = ACTIONS(191), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(191), + [anon_sym_BSLASHverbatiminput] = ACTIONS(191), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(191), + [anon_sym_BSLASHimport] = ACTIONS(191), + [anon_sym_BSLASHsubimport] = ACTIONS(191), + [anon_sym_BSLASHinputfrom] = ACTIONS(191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(191), + [anon_sym_BSLASHincludefrom] = ACTIONS(191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(191), + [anon_sym_BSLASHcaption] = ACTIONS(191), + [anon_sym_BSLASHcite] = ACTIONS(191), + [anon_sym_BSLASHcite_STAR] = ACTIONS(189), + [anon_sym_BSLASHCite] = ACTIONS(191), + [anon_sym_BSLASHnocite] = ACTIONS(191), + [anon_sym_BSLASHcitet] = ACTIONS(191), + [anon_sym_BSLASHcitep] = ACTIONS(191), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteauthor] = ACTIONS(191), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHCiteauthor] = ACTIONS(191), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitetitle] = ACTIONS(191), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteyear] = ACTIONS(191), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(189), + [anon_sym_BSLASHcitedate] = ACTIONS(191), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(189), + [anon_sym_BSLASHciteurl] = ACTIONS(191), + [anon_sym_BSLASHfullcite] = ACTIONS(191), + [anon_sym_BSLASHciteyearpar] = ACTIONS(191), + [anon_sym_BSLASHcitealt] = ACTIONS(191), + [anon_sym_BSLASHcitealp] = ACTIONS(191), + [anon_sym_BSLASHcitetext] = ACTIONS(191), + [anon_sym_BSLASHparencite] = ACTIONS(191), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(189), + [anon_sym_BSLASHParencite] = ACTIONS(191), + [anon_sym_BSLASHfootcite] = ACTIONS(191), + [anon_sym_BSLASHfootfullcite] = ACTIONS(191), + [anon_sym_BSLASHfootcitetext] = ACTIONS(191), + [anon_sym_BSLASHtextcite] = ACTIONS(191), + [anon_sym_BSLASHTextcite] = ACTIONS(191), + [anon_sym_BSLASHsmartcite] = ACTIONS(191), + [anon_sym_BSLASHSmartcite] = ACTIONS(191), + [anon_sym_BSLASHsupercite] = ACTIONS(191), + [anon_sym_BSLASHautocite] = ACTIONS(191), + [anon_sym_BSLASHAutocite] = ACTIONS(191), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(189), + [anon_sym_BSLASHvolcite] = ACTIONS(191), + [anon_sym_BSLASHVolcite] = ACTIONS(191), + [anon_sym_BSLASHpvolcite] = ACTIONS(191), + [anon_sym_BSLASHPvolcite] = ACTIONS(191), + [anon_sym_BSLASHfvolcite] = ACTIONS(191), + [anon_sym_BSLASHftvolcite] = ACTIONS(191), + [anon_sym_BSLASHsvolcite] = ACTIONS(191), + [anon_sym_BSLASHSvolcite] = ACTIONS(191), + [anon_sym_BSLASHtvolcite] = ACTIONS(191), + [anon_sym_BSLASHTvolcite] = ACTIONS(191), + [anon_sym_BSLASHavolcite] = ACTIONS(191), + [anon_sym_BSLASHAvolcite] = ACTIONS(191), + [anon_sym_BSLASHnotecite] = ACTIONS(191), + [anon_sym_BSLASHNotecite] = ACTIONS(191), + [anon_sym_BSLASHpnotecite] = ACTIONS(191), + [anon_sym_BSLASHPnotecite] = ACTIONS(191), + [anon_sym_BSLASHfnotecite] = ACTIONS(191), + [anon_sym_BSLASHlabel] = ACTIONS(191), + [anon_sym_BSLASHref] = ACTIONS(191), + [anon_sym_BSLASHeqref] = ACTIONS(191), + [anon_sym_BSLASHvref] = ACTIONS(191), + [anon_sym_BSLASHVref] = ACTIONS(191), + [anon_sym_BSLASHautoref] = ACTIONS(191), + [anon_sym_BSLASHpageref] = ACTIONS(191), + [anon_sym_BSLASHcref] = ACTIONS(191), + [anon_sym_BSLASHCref] = ACTIONS(191), + [anon_sym_BSLASHcref_STAR] = ACTIONS(189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(189), + [anon_sym_BSLASHnamecref] = ACTIONS(191), + [anon_sym_BSLASHnameCref] = ACTIONS(191), + [anon_sym_BSLASHlcnamecref] = ACTIONS(191), + [anon_sym_BSLASHnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHnameCrefs] = ACTIONS(191), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(191), + [anon_sym_BSLASHlabelcref] = ACTIONS(191), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(191), + [anon_sym_BSLASHcrefrange] = ACTIONS(191), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHCrefrange] = ACTIONS(191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(189), + [anon_sym_BSLASHnewlabel] = ACTIONS(191), + [anon_sym_BSLASHnewcommand] = ACTIONS(191), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(191), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(191), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(191), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(189), + [anon_sym_BSLASHdef] = ACTIONS(191), + [anon_sym_BSLASHlet] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(191), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(191), + [anon_sym_BSLASHnewenvironment] = ACTIONS(191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(191), + [anon_sym_BSLASHgls] = ACTIONS(191), + [anon_sym_BSLASHGls] = ACTIONS(191), + [anon_sym_BSLASHGLS] = ACTIONS(191), + [anon_sym_BSLASHglspl] = ACTIONS(191), + [anon_sym_BSLASHGlspl] = ACTIONS(191), + [anon_sym_BSLASHGLSpl] = ACTIONS(191), + [anon_sym_BSLASHglsdisp] = ACTIONS(191), + [anon_sym_BSLASHglslink] = ACTIONS(191), + [anon_sym_BSLASHglstext] = ACTIONS(191), + [anon_sym_BSLASHGlstext] = ACTIONS(191), + [anon_sym_BSLASHGLStext] = ACTIONS(191), + [anon_sym_BSLASHglsfirst] = ACTIONS(191), + [anon_sym_BSLASHGlsfirst] = ACTIONS(191), + [anon_sym_BSLASHGLSfirst] = ACTIONS(191), + [anon_sym_BSLASHglsplural] = ACTIONS(191), + [anon_sym_BSLASHGlsplural] = ACTIONS(191), + [anon_sym_BSLASHGLSplural] = ACTIONS(191), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(191), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(191), + [anon_sym_BSLASHglsname] = ACTIONS(191), + [anon_sym_BSLASHGlsname] = ACTIONS(191), + [anon_sym_BSLASHGLSname] = ACTIONS(191), + [anon_sym_BSLASHglssymbol] = ACTIONS(191), + [anon_sym_BSLASHGlssymbol] = ACTIONS(191), + [anon_sym_BSLASHglsdesc] = ACTIONS(191), + [anon_sym_BSLASHGlsdesc] = ACTIONS(191), + [anon_sym_BSLASHGLSdesc] = ACTIONS(191), + [anon_sym_BSLASHglsuseri] = ACTIONS(191), + [anon_sym_BSLASHGlsuseri] = ACTIONS(191), + [anon_sym_BSLASHGLSuseri] = ACTIONS(191), + [anon_sym_BSLASHglsuserii] = ACTIONS(191), + [anon_sym_BSLASHGlsuserii] = ACTIONS(191), + [anon_sym_BSLASHGLSuserii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(191), + [anon_sym_BSLASHglsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(191), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(191), + [anon_sym_BSLASHglsuserv] = ACTIONS(191), + [anon_sym_BSLASHGlsuserv] = ACTIONS(191), + [anon_sym_BSLASHGLSuserv] = ACTIONS(191), + [anon_sym_BSLASHglsuservi] = ACTIONS(191), + [anon_sym_BSLASHGlsuservi] = ACTIONS(191), + [anon_sym_BSLASHGLSuservi] = ACTIONS(191), + [anon_sym_BSLASHnewacronym] = ACTIONS(191), + [anon_sym_BSLASHacrshort] = ACTIONS(191), + [anon_sym_BSLASHAcrshort] = ACTIONS(191), + [anon_sym_BSLASHACRshort] = ACTIONS(191), + [anon_sym_BSLASHacrshortpl] = ACTIONS(191), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(191), + [anon_sym_BSLASHACRshortpl] = ACTIONS(191), + [anon_sym_BSLASHacrlong] = ACTIONS(191), + [anon_sym_BSLASHAcrlong] = ACTIONS(191), + [anon_sym_BSLASHACRlong] = ACTIONS(191), + [anon_sym_BSLASHacrlongpl] = ACTIONS(191), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(191), + [anon_sym_BSLASHACRlongpl] = ACTIONS(191), + [anon_sym_BSLASHacrfull] = ACTIONS(191), + [anon_sym_BSLASHAcrfull] = ACTIONS(191), + [anon_sym_BSLASHACRfull] = ACTIONS(191), + [anon_sym_BSLASHacrfullpl] = ACTIONS(191), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(191), + [anon_sym_BSLASHACRfullpl] = ACTIONS(191), + [anon_sym_BSLASHacs] = ACTIONS(191), + [anon_sym_BSLASHAcs] = ACTIONS(191), + [anon_sym_BSLASHacsp] = ACTIONS(191), + [anon_sym_BSLASHAcsp] = ACTIONS(191), + [anon_sym_BSLASHacl] = ACTIONS(191), + [anon_sym_BSLASHAcl] = ACTIONS(191), + [anon_sym_BSLASHaclp] = ACTIONS(191), + [anon_sym_BSLASHAclp] = ACTIONS(191), + [anon_sym_BSLASHacf] = ACTIONS(191), + [anon_sym_BSLASHAcf] = ACTIONS(191), + [anon_sym_BSLASHacfp] = ACTIONS(191), + [anon_sym_BSLASHAcfp] = ACTIONS(191), + [anon_sym_BSLASHac] = ACTIONS(191), + [anon_sym_BSLASHAc] = ACTIONS(191), + [anon_sym_BSLASHacp] = ACTIONS(191), + [anon_sym_BSLASHglsentrylong] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(191), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryshort] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(191), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(191), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem] = ACTIONS(191), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(191), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(191), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(191), + [anon_sym_BSLASHcolor] = ACTIONS(191), + [anon_sym_BSLASHcolorbox] = ACTIONS(191), + [anon_sym_BSLASHtextcolor] = ACTIONS(191), + [anon_sym_BSLASHpagecolor] = ACTIONS(191), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(191), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(191), + [anon_sym_BSLASHtext] = ACTIONS(191), + [anon_sym_BSLASHintertext] = ACTIONS(191), + [anon_sym_shortintertext] = ACTIONS(191), + }, + [1679] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_LBRACE] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(6125), + [anon_sym_BSLASHand] = ACTIONS(6127), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6125), + [anon_sym_DOLLAR] = ACTIONS(6127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6125), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + [anon_sym_BSLASHtext] = ACTIONS(6127), + [anon_sym_BSLASHintertext] = ACTIONS(6127), + [anon_sym_shortintertext] = ACTIONS(6127), + }, + [1680] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [anon_sym_BSLASHand] = ACTIONS(6147), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6145), + [anon_sym_DOLLAR] = ACTIONS(6147), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6145), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + [anon_sym_BSLASHtext] = ACTIONS(6147), + [anon_sym_BSLASHintertext] = ACTIONS(6147), + [anon_sym_shortintertext] = ACTIONS(6147), + }, + [1681] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_LBRACE] = ACTIONS(6121), + [anon_sym_RBRACE] = ACTIONS(6121), + [anon_sym_BSLASHand] = ACTIONS(6123), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6121), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + [anon_sym_BSLASHtext] = ACTIONS(6123), + [anon_sym_BSLASHintertext] = ACTIONS(6123), + [anon_sym_shortintertext] = ACTIONS(6123), + }, + [1682] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_LBRACE] = ACTIONS(6117), + [anon_sym_RBRACE] = ACTIONS(6117), + [anon_sym_BSLASHand] = ACTIONS(6119), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6117), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + [anon_sym_BSLASHtext] = ACTIONS(6119), + [anon_sym_BSLASHintertext] = ACTIONS(6119), + [anon_sym_shortintertext] = ACTIONS(6119), + }, + [1683] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_LBRACE] = ACTIONS(6111), + [anon_sym_RBRACE] = ACTIONS(6111), + [anon_sym_BSLASHand] = ACTIONS(6113), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), + [anon_sym_DOLLAR] = ACTIONS(6113), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6111), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + [anon_sym_BSLASHtext] = ACTIONS(6113), + [anon_sym_BSLASHintertext] = ACTIONS(6113), + [anon_sym_shortintertext] = ACTIONS(6113), + }, + [1684] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_LBRACE] = ACTIONS(6107), + [anon_sym_RBRACE] = ACTIONS(6107), + [anon_sym_BSLASHand] = ACTIONS(6109), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6107), + [anon_sym_DOLLAR] = ACTIONS(6109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6107), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + [anon_sym_BSLASHtext] = ACTIONS(6109), + [anon_sym_BSLASHintertext] = ACTIONS(6109), + [anon_sym_shortintertext] = ACTIONS(6109), + }, + [1685] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_LBRACE] = ACTIONS(6103), + [anon_sym_RBRACE] = ACTIONS(6103), + [anon_sym_BSLASHand] = ACTIONS(6105), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6103), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + [anon_sym_BSLASHtext] = ACTIONS(6105), + [anon_sym_BSLASHintertext] = ACTIONS(6105), + [anon_sym_shortintertext] = ACTIONS(6105), + }, + [1686] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_LBRACE] = ACTIONS(6099), + [anon_sym_RBRACE] = ACTIONS(6099), + [anon_sym_BSLASHand] = ACTIONS(6101), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6099), + [anon_sym_DOLLAR] = ACTIONS(6101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6099), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + [anon_sym_BSLASHtext] = ACTIONS(6101), + [anon_sym_BSLASHintertext] = ACTIONS(6101), + [anon_sym_shortintertext] = ACTIONS(6101), + }, + [1687] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_LBRACE] = ACTIONS(6095), + [anon_sym_RBRACE] = ACTIONS(6095), + [anon_sym_BSLASHand] = ACTIONS(6097), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6095), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + [anon_sym_BSLASHtext] = ACTIONS(6097), + [anon_sym_BSLASHintertext] = ACTIONS(6097), + [anon_sym_shortintertext] = ACTIONS(6097), + }, + [1688] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_LBRACE] = ACTIONS(6083), + [anon_sym_RBRACE] = ACTIONS(6083), + [anon_sym_BSLASHand] = ACTIONS(6085), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6083), + [anon_sym_DOLLAR] = ACTIONS(6085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6083), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + [anon_sym_BSLASHtext] = ACTIONS(6085), + [anon_sym_BSLASHintertext] = ACTIONS(6085), + [anon_sym_shortintertext] = ACTIONS(6085), + }, + [1689] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_LBRACE] = ACTIONS(6079), + [anon_sym_RBRACE] = ACTIONS(6079), + [anon_sym_BSLASHand] = ACTIONS(6081), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6079), + [anon_sym_DOLLAR] = ACTIONS(6081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6079), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + [anon_sym_BSLASHtext] = ACTIONS(6081), + [anon_sym_BSLASHintertext] = ACTIONS(6081), + [anon_sym_shortintertext] = ACTIONS(6081), + }, + [1690] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_LBRACE] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [anon_sym_BSLASHand] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6075), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + [anon_sym_BSLASHtext] = ACTIONS(6077), + [anon_sym_BSLASHintertext] = ACTIONS(6077), + [anon_sym_shortintertext] = ACTIONS(6077), + }, + [1691] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_BSLASHand] = ACTIONS(5815), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5813), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5813), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5813), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + [anon_sym_BSLASHtext] = ACTIONS(5815), + [anon_sym_BSLASHintertext] = ACTIONS(5815), + [anon_sym_shortintertext] = ACTIONS(5815), + }, + [1692] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_LBRACE] = ACTIONS(6051), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_BSLASHand] = ACTIONS(6053), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6051), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + [anon_sym_BSLASHtext] = ACTIONS(6053), + [anon_sym_BSLASHintertext] = ACTIONS(6053), + [anon_sym_shortintertext] = ACTIONS(6053), + }, + [1693] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_LBRACE] = ACTIONS(5789), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_BSLASHand] = ACTIONS(5791), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5789), + [anon_sym_DOLLAR] = ACTIONS(5791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5789), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5789), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + [anon_sym_BSLASHtext] = ACTIONS(5791), + [anon_sym_BSLASHintertext] = ACTIONS(5791), + [anon_sym_shortintertext] = ACTIONS(5791), + }, + [1694] = { + [sym_command_name] = ACTIONS(5849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5849), + [anon_sym_LBRACE] = ACTIONS(5847), + [anon_sym_RBRACE] = ACTIONS(5847), + [anon_sym_BSLASHand] = ACTIONS(5849), + [sym_word] = ACTIONS(5849), + [sym_placeholder] = ACTIONS(5847), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym__] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_BANG] = ACTIONS(5849), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5849), + [anon_sym_SQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5847), + [anon_sym_DOLLAR] = ACTIONS(5849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5847), + [anon_sym_BSLASHtitle] = ACTIONS(5849), + [anon_sym_BSLASHauthor] = ACTIONS(5849), + [anon_sym_BSLASHusepackage] = ACTIONS(5849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5849), + [anon_sym_BSLASHinclude] = ACTIONS(5849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5849), + [anon_sym_BSLASHinput] = ACTIONS(5849), + [anon_sym_BSLASHsubfile] = ACTIONS(5849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5849), + [anon_sym_BSLASHbibliography] = ACTIONS(5849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5849), + [anon_sym_BSLASHincludesvg] = ACTIONS(5849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5849), + [anon_sym_BSLASHimport] = ACTIONS(5849), + [anon_sym_BSLASHsubimport] = ACTIONS(5849), + [anon_sym_BSLASHinputfrom] = ACTIONS(5849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5849), + [anon_sym_BSLASHincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5849), + [anon_sym_BSLASHcaption] = ACTIONS(5849), + [anon_sym_BSLASHcite] = ACTIONS(5849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCite] = ACTIONS(5849), + [anon_sym_BSLASHnocite] = ACTIONS(5849), + [anon_sym_BSLASHcitet] = ACTIONS(5849), + [anon_sym_BSLASHcitep] = ACTIONS(5849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteauthor] = ACTIONS(5849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitetitle] = ACTIONS(5849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteyear] = ACTIONS(5849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5847), + [anon_sym_BSLASHcitedate] = ACTIONS(5849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5847), + [anon_sym_BSLASHciteurl] = ACTIONS(5849), + [anon_sym_BSLASHfullcite] = ACTIONS(5849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5849), + [anon_sym_BSLASHcitealt] = ACTIONS(5849), + [anon_sym_BSLASHcitealp] = ACTIONS(5849), + [anon_sym_BSLASHcitetext] = ACTIONS(5849), + [anon_sym_BSLASHparencite] = ACTIONS(5849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHParencite] = ACTIONS(5849), + [anon_sym_BSLASHfootcite] = ACTIONS(5849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5849), + [anon_sym_BSLASHtextcite] = ACTIONS(5849), + [anon_sym_BSLASHTextcite] = ACTIONS(5849), + [anon_sym_BSLASHsmartcite] = ACTIONS(5849), + [anon_sym_BSLASHSmartcite] = ACTIONS(5849), + [anon_sym_BSLASHsupercite] = ACTIONS(5849), + [anon_sym_BSLASHautocite] = ACTIONS(5849), + [anon_sym_BSLASHAutocite] = ACTIONS(5849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5847), + [anon_sym_BSLASHvolcite] = ACTIONS(5849), + [anon_sym_BSLASHVolcite] = ACTIONS(5849), + [anon_sym_BSLASHpvolcite] = ACTIONS(5849), + [anon_sym_BSLASHPvolcite] = ACTIONS(5849), + [anon_sym_BSLASHfvolcite] = ACTIONS(5849), + [anon_sym_BSLASHftvolcite] = ACTIONS(5849), + [anon_sym_BSLASHsvolcite] = ACTIONS(5849), + [anon_sym_BSLASHSvolcite] = ACTIONS(5849), + [anon_sym_BSLASHtvolcite] = ACTIONS(5849), + [anon_sym_BSLASHTvolcite] = ACTIONS(5849), + [anon_sym_BSLASHavolcite] = ACTIONS(5849), + [anon_sym_BSLASHAvolcite] = ACTIONS(5849), + [anon_sym_BSLASHnotecite] = ACTIONS(5849), + [anon_sym_BSLASHNotecite] = ACTIONS(5849), + [anon_sym_BSLASHpnotecite] = ACTIONS(5849), + [anon_sym_BSLASHPnotecite] = ACTIONS(5849), + [anon_sym_BSLASHfnotecite] = ACTIONS(5849), + [anon_sym_BSLASHlabel] = ACTIONS(5849), + [anon_sym_BSLASHref] = ACTIONS(5849), + [anon_sym_BSLASHeqref] = ACTIONS(5849), + [anon_sym_BSLASHvref] = ACTIONS(5849), + [anon_sym_BSLASHVref] = ACTIONS(5849), + [anon_sym_BSLASHautoref] = ACTIONS(5849), + [anon_sym_BSLASHpageref] = ACTIONS(5849), + [anon_sym_BSLASHcref] = ACTIONS(5849), + [anon_sym_BSLASHCref] = ACTIONS(5849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnameCref] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5849), + [anon_sym_BSLASHlabelcref] = ACTIONS(5849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange] = ACTIONS(5849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHCrefrange] = ACTIONS(5849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5847), + [anon_sym_BSLASHnewlabel] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand] = ACTIONS(5849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdef] = ACTIONS(5849), + [anon_sym_BSLASHlet] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5849), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5849), + [anon_sym_BSLASHgls] = ACTIONS(5849), + [anon_sym_BSLASHGls] = ACTIONS(5849), + [anon_sym_BSLASHGLS] = ACTIONS(5849), + [anon_sym_BSLASHglspl] = ACTIONS(5849), + [anon_sym_BSLASHGlspl] = ACTIONS(5849), + [anon_sym_BSLASHGLSpl] = ACTIONS(5849), + [anon_sym_BSLASHglsdisp] = ACTIONS(5849), + [anon_sym_BSLASHglslink] = ACTIONS(5849), + [anon_sym_BSLASHglstext] = ACTIONS(5849), + [anon_sym_BSLASHGlstext] = ACTIONS(5849), + [anon_sym_BSLASHGLStext] = ACTIONS(5849), + [anon_sym_BSLASHglsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5849), + [anon_sym_BSLASHglsplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSplural] = ACTIONS(5849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5849), + [anon_sym_BSLASHglsname] = ACTIONS(5849), + [anon_sym_BSLASHGlsname] = ACTIONS(5849), + [anon_sym_BSLASHGLSname] = ACTIONS(5849), + [anon_sym_BSLASHglssymbol] = ACTIONS(5849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5849), + [anon_sym_BSLASHglsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5849), + [anon_sym_BSLASHglsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5849), + [anon_sym_BSLASHglsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5849), + [anon_sym_BSLASHglsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5849), + [anon_sym_BSLASHglsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5849), + [anon_sym_BSLASHnewacronym] = ACTIONS(5849), + [anon_sym_BSLASHacrshort] = ACTIONS(5849), + [anon_sym_BSLASHAcrshort] = ACTIONS(5849), + [anon_sym_BSLASHACRshort] = ACTIONS(5849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5849), + [anon_sym_BSLASHacrlong] = ACTIONS(5849), + [anon_sym_BSLASHAcrlong] = ACTIONS(5849), + [anon_sym_BSLASHACRlong] = ACTIONS(5849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5849), + [anon_sym_BSLASHacrfull] = ACTIONS(5849), + [anon_sym_BSLASHAcrfull] = ACTIONS(5849), + [anon_sym_BSLASHACRfull] = ACTIONS(5849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5849), + [anon_sym_BSLASHacs] = ACTIONS(5849), + [anon_sym_BSLASHAcs] = ACTIONS(5849), + [anon_sym_BSLASHacsp] = ACTIONS(5849), + [anon_sym_BSLASHAcsp] = ACTIONS(5849), + [anon_sym_BSLASHacl] = ACTIONS(5849), + [anon_sym_BSLASHAcl] = ACTIONS(5849), + [anon_sym_BSLASHaclp] = ACTIONS(5849), + [anon_sym_BSLASHAclp] = ACTIONS(5849), + [anon_sym_BSLASHacf] = ACTIONS(5849), + [anon_sym_BSLASHAcf] = ACTIONS(5849), + [anon_sym_BSLASHacfp] = ACTIONS(5849), + [anon_sym_BSLASHAcfp] = ACTIONS(5849), + [anon_sym_BSLASHac] = ACTIONS(5849), + [anon_sym_BSLASHAc] = ACTIONS(5849), + [anon_sym_BSLASHacp] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5849), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5849), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5847), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), + [anon_sym_BSLASHcolor] = ACTIONS(5849), + [anon_sym_BSLASHcolorbox] = ACTIONS(5849), + [anon_sym_BSLASHtextcolor] = ACTIONS(5849), + [anon_sym_BSLASHpagecolor] = ACTIONS(5849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5849), + [anon_sym_BSLASHtext] = ACTIONS(5849), + [anon_sym_BSLASHintertext] = ACTIONS(5849), + [anon_sym_shortintertext] = ACTIONS(5849), + }, + [1695] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_LBRACE] = ACTIONS(6243), + [anon_sym_RBRACE] = ACTIONS(6243), + [anon_sym_BSLASHand] = ACTIONS(6245), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6243), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + [anon_sym_BSLASHtext] = ACTIONS(6245), + [anon_sym_BSLASHintertext] = ACTIONS(6245), + [anon_sym_shortintertext] = ACTIONS(6245), + }, + [1696] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_LBRACE] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [anon_sym_BSLASHand] = ACTIONS(5969), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5967), + [anon_sym_DOLLAR] = ACTIONS(5969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5967), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + [anon_sym_BSLASHtext] = ACTIONS(5969), + [anon_sym_BSLASHintertext] = ACTIONS(5969), + [anon_sym_shortintertext] = ACTIONS(5969), + }, + [1697] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_BSLASHand] = ACTIONS(6021), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6019), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + [anon_sym_BSLASHtext] = ACTIONS(6021), + [anon_sym_BSLASHintertext] = ACTIONS(6021), + [anon_sym_shortintertext] = ACTIONS(6021), + }, + [1698] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_LBRACE] = ACTIONS(6009), + [anon_sym_RBRACE] = ACTIONS(6009), + [anon_sym_BSLASHand] = ACTIONS(6011), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6009), + [anon_sym_DOLLAR] = ACTIONS(6011), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6009), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6009), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + [anon_sym_BSLASHtext] = ACTIONS(6011), + [anon_sym_BSLASHintertext] = ACTIONS(6011), + [anon_sym_shortintertext] = ACTIONS(6011), + }, + [1699] = { + [sym_command_name] = ACTIONS(181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(179), + [anon_sym_BSLASHand] = ACTIONS(181), + [sym_word] = ACTIONS(181), + [sym_placeholder] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(181), + [anon_sym__] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(179), + [anon_sym_BSLASHtitle] = ACTIONS(181), + [anon_sym_BSLASHauthor] = ACTIONS(181), + [anon_sym_BSLASHusepackage] = ACTIONS(181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(181), + [anon_sym_BSLASHinclude] = ACTIONS(181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(181), + [anon_sym_BSLASHinput] = ACTIONS(181), + [anon_sym_BSLASHsubfile] = ACTIONS(181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(181), + [anon_sym_BSLASHbibliography] = ACTIONS(181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(181), + [anon_sym_BSLASHincludesvg] = ACTIONS(181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(181), + [anon_sym_BSLASHimport] = ACTIONS(181), + [anon_sym_BSLASHsubimport] = ACTIONS(181), + [anon_sym_BSLASHinputfrom] = ACTIONS(181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(181), + [anon_sym_BSLASHincludefrom] = ACTIONS(181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(181), + [anon_sym_BSLASHcaption] = ACTIONS(181), + [anon_sym_BSLASHcite] = ACTIONS(181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(179), + [anon_sym_BSLASHCite] = ACTIONS(181), + [anon_sym_BSLASHnocite] = ACTIONS(181), + [anon_sym_BSLASHcitet] = ACTIONS(181), + [anon_sym_BSLASHcitep] = ACTIONS(181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteauthor] = ACTIONS(181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitetitle] = ACTIONS(181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteyear] = ACTIONS(181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(179), + [anon_sym_BSLASHcitedate] = ACTIONS(181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(179), + [anon_sym_BSLASHciteurl] = ACTIONS(181), + [anon_sym_BSLASHfullcite] = ACTIONS(181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(181), + [anon_sym_BSLASHcitealt] = ACTIONS(181), + [anon_sym_BSLASHcitealp] = ACTIONS(181), + [anon_sym_BSLASHcitetext] = ACTIONS(181), + [anon_sym_BSLASHparencite] = ACTIONS(181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(179), + [anon_sym_BSLASHParencite] = ACTIONS(181), + [anon_sym_BSLASHfootcite] = ACTIONS(181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(181), + [anon_sym_BSLASHtextcite] = ACTIONS(181), + [anon_sym_BSLASHTextcite] = ACTIONS(181), + [anon_sym_BSLASHsmartcite] = ACTIONS(181), + [anon_sym_BSLASHSmartcite] = ACTIONS(181), + [anon_sym_BSLASHsupercite] = ACTIONS(181), + [anon_sym_BSLASHautocite] = ACTIONS(181), + [anon_sym_BSLASHAutocite] = ACTIONS(181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(179), + [anon_sym_BSLASHvolcite] = ACTIONS(181), + [anon_sym_BSLASHVolcite] = ACTIONS(181), + [anon_sym_BSLASHpvolcite] = ACTIONS(181), + [anon_sym_BSLASHPvolcite] = ACTIONS(181), + [anon_sym_BSLASHfvolcite] = ACTIONS(181), + [anon_sym_BSLASHftvolcite] = ACTIONS(181), + [anon_sym_BSLASHsvolcite] = ACTIONS(181), + [anon_sym_BSLASHSvolcite] = ACTIONS(181), + [anon_sym_BSLASHtvolcite] = ACTIONS(181), + [anon_sym_BSLASHTvolcite] = ACTIONS(181), + [anon_sym_BSLASHavolcite] = ACTIONS(181), + [anon_sym_BSLASHAvolcite] = ACTIONS(181), + [anon_sym_BSLASHnotecite] = ACTIONS(181), + [anon_sym_BSLASHNotecite] = ACTIONS(181), + [anon_sym_BSLASHpnotecite] = ACTIONS(181), + [anon_sym_BSLASHPnotecite] = ACTIONS(181), + [anon_sym_BSLASHfnotecite] = ACTIONS(181), + [anon_sym_BSLASHlabel] = ACTIONS(181), + [anon_sym_BSLASHref] = ACTIONS(181), + [anon_sym_BSLASHeqref] = ACTIONS(181), + [anon_sym_BSLASHvref] = ACTIONS(181), + [anon_sym_BSLASHVref] = ACTIONS(181), + [anon_sym_BSLASHautoref] = ACTIONS(181), + [anon_sym_BSLASHpageref] = ACTIONS(181), + [anon_sym_BSLASHcref] = ACTIONS(181), + [anon_sym_BSLASHCref] = ACTIONS(181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(179), + [anon_sym_BSLASHnamecref] = ACTIONS(181), + [anon_sym_BSLASHnameCref] = ACTIONS(181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(181), + [anon_sym_BSLASHlabelcref] = ACTIONS(181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(181), + [anon_sym_BSLASHcrefrange] = ACTIONS(181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHCrefrange] = ACTIONS(181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(179), + [anon_sym_BSLASHnewlabel] = ACTIONS(181), + [anon_sym_BSLASHnewcommand] = ACTIONS(181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(179), + [anon_sym_BSLASHdef] = ACTIONS(181), + [anon_sym_BSLASHlet] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(181), + [anon_sym_BSLASHgls] = ACTIONS(181), + [anon_sym_BSLASHGls] = ACTIONS(181), + [anon_sym_BSLASHGLS] = ACTIONS(181), + [anon_sym_BSLASHglspl] = ACTIONS(181), + [anon_sym_BSLASHGlspl] = ACTIONS(181), + [anon_sym_BSLASHGLSpl] = ACTIONS(181), + [anon_sym_BSLASHglsdisp] = ACTIONS(181), + [anon_sym_BSLASHglslink] = ACTIONS(181), + [anon_sym_BSLASHglstext] = ACTIONS(181), + [anon_sym_BSLASHGlstext] = ACTIONS(181), + [anon_sym_BSLASHGLStext] = ACTIONS(181), + [anon_sym_BSLASHglsfirst] = ACTIONS(181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(181), + [anon_sym_BSLASHglsplural] = ACTIONS(181), + [anon_sym_BSLASHGlsplural] = ACTIONS(181), + [anon_sym_BSLASHGLSplural] = ACTIONS(181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(181), + [anon_sym_BSLASHglsname] = ACTIONS(181), + [anon_sym_BSLASHGlsname] = ACTIONS(181), + [anon_sym_BSLASHGLSname] = ACTIONS(181), + [anon_sym_BSLASHglssymbol] = ACTIONS(181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(181), + [anon_sym_BSLASHglsdesc] = ACTIONS(181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(181), + [anon_sym_BSLASHglsuseri] = ACTIONS(181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(181), + [anon_sym_BSLASHglsuserii] = ACTIONS(181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(181), + [anon_sym_BSLASHglsuserv] = ACTIONS(181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(181), + [anon_sym_BSLASHglsuservi] = ACTIONS(181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(181), + [anon_sym_BSLASHnewacronym] = ACTIONS(181), + [anon_sym_BSLASHacrshort] = ACTIONS(181), + [anon_sym_BSLASHAcrshort] = ACTIONS(181), + [anon_sym_BSLASHACRshort] = ACTIONS(181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(181), + [anon_sym_BSLASHacrlong] = ACTIONS(181), + [anon_sym_BSLASHAcrlong] = ACTIONS(181), + [anon_sym_BSLASHACRlong] = ACTIONS(181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(181), + [anon_sym_BSLASHacrfull] = ACTIONS(181), + [anon_sym_BSLASHAcrfull] = ACTIONS(181), + [anon_sym_BSLASHACRfull] = ACTIONS(181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(181), + [anon_sym_BSLASHacs] = ACTIONS(181), + [anon_sym_BSLASHAcs] = ACTIONS(181), + [anon_sym_BSLASHacsp] = ACTIONS(181), + [anon_sym_BSLASHAcsp] = ACTIONS(181), + [anon_sym_BSLASHacl] = ACTIONS(181), + [anon_sym_BSLASHAcl] = ACTIONS(181), + [anon_sym_BSLASHaclp] = ACTIONS(181), + [anon_sym_BSLASHAclp] = ACTIONS(181), + [anon_sym_BSLASHacf] = ACTIONS(181), + [anon_sym_BSLASHAcf] = ACTIONS(181), + [anon_sym_BSLASHacfp] = ACTIONS(181), + [anon_sym_BSLASHAcfp] = ACTIONS(181), + [anon_sym_BSLASHac] = ACTIONS(181), + [anon_sym_BSLASHAc] = ACTIONS(181), + [anon_sym_BSLASHacp] = ACTIONS(181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(181), + [anon_sym_BSLASHcolor] = ACTIONS(181), + [anon_sym_BSLASHcolorbox] = ACTIONS(181), + [anon_sym_BSLASHtextcolor] = ACTIONS(181), + [anon_sym_BSLASHpagecolor] = ACTIONS(181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(181), + [anon_sym_BSLASHtext] = ACTIONS(181), + [anon_sym_BSLASHintertext] = ACTIONS(181), + [anon_sym_shortintertext] = ACTIONS(181), + }, + [1700] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_LBRACE] = ACTIONS(6001), + [anon_sym_RBRACE] = ACTIONS(6001), + [anon_sym_BSLASHand] = ACTIONS(6003), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6001), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + [anon_sym_BSLASHtext] = ACTIONS(6003), + [anon_sym_BSLASHintertext] = ACTIONS(6003), + [anon_sym_shortintertext] = ACTIONS(6003), + }, + [1701] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_LBRACE] = ACTIONS(6005), + [anon_sym_RBRACE] = ACTIONS(6005), + [anon_sym_BSLASHand] = ACTIONS(6007), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6005), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + [anon_sym_BSLASHtext] = ACTIONS(6007), + [anon_sym_BSLASHintertext] = ACTIONS(6007), + [anon_sym_shortintertext] = ACTIONS(6007), + }, + [1702] = { + [sym_curly_group] = STATE(1711), + [sym_mixed_group] = STATE(1711), + [aux_sym_generic_command_repeat1] = STATE(1705), + [sym_command_name] = ACTIONS(5317), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5317), + [anon_sym_LPAREN] = ACTIONS(6349), + [anon_sym_LBRACK] = ACTIONS(6349), + [anon_sym_RBRACK] = ACTIONS(5315), + [anon_sym_COMMA] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_LBRACE] = ACTIONS(6351), + [anon_sym_RBRACE] = ACTIONS(5315), + [sym_word] = ACTIONS(5317), + [sym_placeholder] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_STAR] = ACTIONS(5317), + [anon_sym_SLASH] = ACTIONS(5317), + [anon_sym_CARET] = ACTIONS(5317), + [anon_sym__] = ACTIONS(5317), + [anon_sym_LT] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5317), + [anon_sym_BANG] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_SQUOTE] = ACTIONS(5317), + [anon_sym_BSLASHtitle] = ACTIONS(5317), + [anon_sym_BSLASHauthor] = ACTIONS(5317), + [anon_sym_BSLASHusepackage] = ACTIONS(5317), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), + [anon_sym_BSLASHinclude] = ACTIONS(5317), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), + [anon_sym_BSLASHinput] = ACTIONS(5317), + [anon_sym_BSLASHsubfile] = ACTIONS(5317), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), + [anon_sym_BSLASHbibliography] = ACTIONS(5317), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), + [anon_sym_BSLASHincludesvg] = ACTIONS(5317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), + [anon_sym_BSLASHimport] = ACTIONS(5317), + [anon_sym_BSLASHsubimport] = ACTIONS(5317), + [anon_sym_BSLASHinputfrom] = ACTIONS(5317), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), + [anon_sym_BSLASHincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), + [anon_sym_BSLASHcaption] = ACTIONS(5317), + [anon_sym_BSLASHcite] = ACTIONS(5317), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCite] = ACTIONS(5317), + [anon_sym_BSLASHnocite] = ACTIONS(5317), + [anon_sym_BSLASHcitet] = ACTIONS(5317), + [anon_sym_BSLASHcitep] = ACTIONS(5317), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteyear] = ACTIONS(5317), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), + [anon_sym_BSLASHcitedate] = ACTIONS(5317), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), + [anon_sym_BSLASHciteurl] = ACTIONS(5317), + [anon_sym_BSLASHfullcite] = ACTIONS(5317), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), + [anon_sym_BSLASHcitealt] = ACTIONS(5317), + [anon_sym_BSLASHcitealp] = ACTIONS(5317), + [anon_sym_BSLASHcitetext] = ACTIONS(5317), + [anon_sym_BSLASHparencite] = ACTIONS(5317), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHParencite] = ACTIONS(5317), + [anon_sym_BSLASHfootcite] = ACTIONS(5317), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), + [anon_sym_BSLASHtextcite] = ACTIONS(5317), + [anon_sym_BSLASHTextcite] = ACTIONS(5317), + [anon_sym_BSLASHsmartcite] = ACTIONS(5317), + [anon_sym_BSLASHSmartcite] = ACTIONS(5317), + [anon_sym_BSLASHsupercite] = ACTIONS(5317), + [anon_sym_BSLASHautocite] = ACTIONS(5317), + [anon_sym_BSLASHAutocite] = ACTIONS(5317), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), + [anon_sym_BSLASHvolcite] = ACTIONS(5317), + [anon_sym_BSLASHVolcite] = ACTIONS(5317), + [anon_sym_BSLASHpvolcite] = ACTIONS(5317), + [anon_sym_BSLASHPvolcite] = ACTIONS(5317), + [anon_sym_BSLASHfvolcite] = ACTIONS(5317), + [anon_sym_BSLASHftvolcite] = ACTIONS(5317), + [anon_sym_BSLASHsvolcite] = ACTIONS(5317), + [anon_sym_BSLASHSvolcite] = ACTIONS(5317), + [anon_sym_BSLASHtvolcite] = ACTIONS(5317), + [anon_sym_BSLASHTvolcite] = ACTIONS(5317), + [anon_sym_BSLASHavolcite] = ACTIONS(5317), + [anon_sym_BSLASHAvolcite] = ACTIONS(5317), + [anon_sym_BSLASHnotecite] = ACTIONS(5317), + [anon_sym_BSLASHNotecite] = ACTIONS(5317), + [anon_sym_BSLASHpnotecite] = ACTIONS(5317), + [anon_sym_BSLASHPnotecite] = ACTIONS(5317), + [anon_sym_BSLASHfnotecite] = ACTIONS(5317), + [anon_sym_BSLASHlabel] = ACTIONS(5317), + [anon_sym_BSLASHref] = ACTIONS(5317), + [anon_sym_BSLASHeqref] = ACTIONS(5317), + [anon_sym_BSLASHvref] = ACTIONS(5317), + [anon_sym_BSLASHVref] = ACTIONS(5317), + [anon_sym_BSLASHautoref] = ACTIONS(5317), + [anon_sym_BSLASHpageref] = ACTIONS(5317), + [anon_sym_BSLASHcref] = ACTIONS(5317), + [anon_sym_BSLASHCref] = ACTIONS(5317), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnameCref] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), + [anon_sym_BSLASHlabelcref] = ACTIONS(5317), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange] = ACTIONS(5317), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), + [anon_sym_BSLASHnewlabel] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand] = ACTIONS(5317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdef] = ACTIONS(5317), + [anon_sym_BSLASHlet] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5317), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5317), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), + [anon_sym_BSLASHgls] = ACTIONS(5317), + [anon_sym_BSLASHGls] = ACTIONS(5317), + [anon_sym_BSLASHGLS] = ACTIONS(5317), + [anon_sym_BSLASHglspl] = ACTIONS(5317), + [anon_sym_BSLASHGlspl] = ACTIONS(5317), + [anon_sym_BSLASHGLSpl] = ACTIONS(5317), + [anon_sym_BSLASHglsdisp] = ACTIONS(5317), + [anon_sym_BSLASHglslink] = ACTIONS(5317), + [anon_sym_BSLASHglstext] = ACTIONS(5317), + [anon_sym_BSLASHGlstext] = ACTIONS(5317), + [anon_sym_BSLASHGLStext] = ACTIONS(5317), + [anon_sym_BSLASHglsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), + [anon_sym_BSLASHglsplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSplural] = ACTIONS(5317), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), + [anon_sym_BSLASHglsname] = ACTIONS(5317), + [anon_sym_BSLASHGlsname] = ACTIONS(5317), + [anon_sym_BSLASHGLSname] = ACTIONS(5317), + [anon_sym_BSLASHglssymbol] = ACTIONS(5317), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), + [anon_sym_BSLASHglsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), + [anon_sym_BSLASHglsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), + [anon_sym_BSLASHglsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), + [anon_sym_BSLASHglsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), + [anon_sym_BSLASHglsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), + [anon_sym_BSLASHnewacronym] = ACTIONS(5317), + [anon_sym_BSLASHacrshort] = ACTIONS(5317), + [anon_sym_BSLASHAcrshort] = ACTIONS(5317), + [anon_sym_BSLASHACRshort] = ACTIONS(5317), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), + [anon_sym_BSLASHacrlong] = ACTIONS(5317), + [anon_sym_BSLASHAcrlong] = ACTIONS(5317), + [anon_sym_BSLASHACRlong] = ACTIONS(5317), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), + [anon_sym_BSLASHacrfull] = ACTIONS(5317), + [anon_sym_BSLASHAcrfull] = ACTIONS(5317), + [anon_sym_BSLASHACRfull] = ACTIONS(5317), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), + [anon_sym_BSLASHacs] = ACTIONS(5317), + [anon_sym_BSLASHAcs] = ACTIONS(5317), + [anon_sym_BSLASHacsp] = ACTIONS(5317), + [anon_sym_BSLASHAcsp] = ACTIONS(5317), + [anon_sym_BSLASHacl] = ACTIONS(5317), + [anon_sym_BSLASHAcl] = ACTIONS(5317), + [anon_sym_BSLASHaclp] = ACTIONS(5317), + [anon_sym_BSLASHAclp] = ACTIONS(5317), + [anon_sym_BSLASHacf] = ACTIONS(5317), + [anon_sym_BSLASHAcf] = ACTIONS(5317), + [anon_sym_BSLASHacfp] = ACTIONS(5317), + [anon_sym_BSLASHAcfp] = ACTIONS(5317), + [anon_sym_BSLASHac] = ACTIONS(5317), + [anon_sym_BSLASHAc] = ACTIONS(5317), + [anon_sym_BSLASHacp] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), + [anon_sym_BSLASHcolor] = ACTIONS(5317), + [anon_sym_BSLASHcolorbox] = ACTIONS(5317), + [anon_sym_BSLASHtextcolor] = ACTIONS(5317), + [anon_sym_BSLASHpagecolor] = ACTIONS(5317), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + }, + [1703] = { + [sym_curly_group] = STATE(1711), + [sym_mixed_group] = STATE(1711), + [aux_sym_generic_command_repeat1] = STATE(1703), + [sym_command_name] = ACTIONS(5239), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(6353), + [anon_sym_LBRACK] = ACTIONS(6353), + [anon_sym_RBRACK] = ACTIONS(5237), + [anon_sym_COMMA] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_LBRACE] = ACTIONS(6356), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym_word] = ACTIONS(5239), + [sym_placeholder] = ACTIONS(5237), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_STAR] = ACTIONS(5239), + [anon_sym_SLASH] = ACTIONS(5239), + [anon_sym_CARET] = ACTIONS(5239), + [anon_sym__] = ACTIONS(5239), + [anon_sym_LT] = ACTIONS(5239), + [anon_sym_GT] = ACTIONS(5239), + [anon_sym_BANG] = ACTIONS(5239), + [anon_sym_PIPE] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5239), + [anon_sym_SQUOTE] = ACTIONS(5239), + [anon_sym_BSLASHtitle] = ACTIONS(5239), + [anon_sym_BSLASHauthor] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), + [anon_sym_BSLASHinclude] = ACTIONS(5239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), + [anon_sym_BSLASHinput] = ACTIONS(5239), + [anon_sym_BSLASHsubfile] = ACTIONS(5239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), + [anon_sym_BSLASHbibliography] = ACTIONS(5239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), + [anon_sym_BSLASHincludesvg] = ACTIONS(5239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), + [anon_sym_BSLASHimport] = ACTIONS(5239), + [anon_sym_BSLASHsubimport] = ACTIONS(5239), + [anon_sym_BSLASHinputfrom] = ACTIONS(5239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), + [anon_sym_BSLASHincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), + [anon_sym_BSLASHcaption] = ACTIONS(5239), + [anon_sym_BSLASHcite] = ACTIONS(5239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCite] = ACTIONS(5239), + [anon_sym_BSLASHnocite] = ACTIONS(5239), + [anon_sym_BSLASHcitet] = ACTIONS(5239), + [anon_sym_BSLASHcitep] = ACTIONS(5239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteyear] = ACTIONS(5239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), + [anon_sym_BSLASHcitedate] = ACTIONS(5239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), + [anon_sym_BSLASHciteurl] = ACTIONS(5239), + [anon_sym_BSLASHfullcite] = ACTIONS(5239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), + [anon_sym_BSLASHcitealt] = ACTIONS(5239), + [anon_sym_BSLASHcitealp] = ACTIONS(5239), + [anon_sym_BSLASHcitetext] = ACTIONS(5239), + [anon_sym_BSLASHparencite] = ACTIONS(5239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHParencite] = ACTIONS(5239), + [anon_sym_BSLASHfootcite] = ACTIONS(5239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), + [anon_sym_BSLASHtextcite] = ACTIONS(5239), + [anon_sym_BSLASHTextcite] = ACTIONS(5239), + [anon_sym_BSLASHsmartcite] = ACTIONS(5239), + [anon_sym_BSLASHSmartcite] = ACTIONS(5239), + [anon_sym_BSLASHsupercite] = ACTIONS(5239), + [anon_sym_BSLASHautocite] = ACTIONS(5239), + [anon_sym_BSLASHAutocite] = ACTIONS(5239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), + [anon_sym_BSLASHvolcite] = ACTIONS(5239), + [anon_sym_BSLASHVolcite] = ACTIONS(5239), + [anon_sym_BSLASHpvolcite] = ACTIONS(5239), + [anon_sym_BSLASHPvolcite] = ACTIONS(5239), + [anon_sym_BSLASHfvolcite] = ACTIONS(5239), + [anon_sym_BSLASHftvolcite] = ACTIONS(5239), + [anon_sym_BSLASHsvolcite] = ACTIONS(5239), + [anon_sym_BSLASHSvolcite] = ACTIONS(5239), + [anon_sym_BSLASHtvolcite] = ACTIONS(5239), + [anon_sym_BSLASHTvolcite] = ACTIONS(5239), + [anon_sym_BSLASHavolcite] = ACTIONS(5239), + [anon_sym_BSLASHAvolcite] = ACTIONS(5239), + [anon_sym_BSLASHnotecite] = ACTIONS(5239), + [anon_sym_BSLASHNotecite] = ACTIONS(5239), + [anon_sym_BSLASHpnotecite] = ACTIONS(5239), + [anon_sym_BSLASHPnotecite] = ACTIONS(5239), + [anon_sym_BSLASHfnotecite] = ACTIONS(5239), + [anon_sym_BSLASHlabel] = ACTIONS(5239), + [anon_sym_BSLASHref] = ACTIONS(5239), + [anon_sym_BSLASHeqref] = ACTIONS(5239), + [anon_sym_BSLASHvref] = ACTIONS(5239), + [anon_sym_BSLASHVref] = ACTIONS(5239), + [anon_sym_BSLASHautoref] = ACTIONS(5239), + [anon_sym_BSLASHpageref] = ACTIONS(5239), + [anon_sym_BSLASHcref] = ACTIONS(5239), + [anon_sym_BSLASHCref] = ACTIONS(5239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnameCref] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), + [anon_sym_BSLASHlabelcref] = ACTIONS(5239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange] = ACTIONS(5239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), + [anon_sym_BSLASHnewlabel] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand] = ACTIONS(5239), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdef] = ACTIONS(5239), + [anon_sym_BSLASHlet] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5239), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5239), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), + [anon_sym_BSLASHgls] = ACTIONS(5239), + [anon_sym_BSLASHGls] = ACTIONS(5239), + [anon_sym_BSLASHGLS] = ACTIONS(5239), + [anon_sym_BSLASHglspl] = ACTIONS(5239), + [anon_sym_BSLASHGlspl] = ACTIONS(5239), + [anon_sym_BSLASHGLSpl] = ACTIONS(5239), + [anon_sym_BSLASHglsdisp] = ACTIONS(5239), + [anon_sym_BSLASHglslink] = ACTIONS(5239), + [anon_sym_BSLASHglstext] = ACTIONS(5239), + [anon_sym_BSLASHGlstext] = ACTIONS(5239), + [anon_sym_BSLASHGLStext] = ACTIONS(5239), + [anon_sym_BSLASHglsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), + [anon_sym_BSLASHglsplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSplural] = ACTIONS(5239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), + [anon_sym_BSLASHglsname] = ACTIONS(5239), + [anon_sym_BSLASHGlsname] = ACTIONS(5239), + [anon_sym_BSLASHGLSname] = ACTIONS(5239), + [anon_sym_BSLASHglssymbol] = ACTIONS(5239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), + [anon_sym_BSLASHglsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), + [anon_sym_BSLASHglsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), + [anon_sym_BSLASHglsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), + [anon_sym_BSLASHglsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), + [anon_sym_BSLASHglsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), + [anon_sym_BSLASHnewacronym] = ACTIONS(5239), + [anon_sym_BSLASHacrshort] = ACTIONS(5239), + [anon_sym_BSLASHAcrshort] = ACTIONS(5239), + [anon_sym_BSLASHACRshort] = ACTIONS(5239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), + [anon_sym_BSLASHacrlong] = ACTIONS(5239), + [anon_sym_BSLASHAcrlong] = ACTIONS(5239), + [anon_sym_BSLASHACRlong] = ACTIONS(5239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), + [anon_sym_BSLASHacrfull] = ACTIONS(5239), + [anon_sym_BSLASHAcrfull] = ACTIONS(5239), + [anon_sym_BSLASHACRfull] = ACTIONS(5239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), + [anon_sym_BSLASHacs] = ACTIONS(5239), + [anon_sym_BSLASHAcs] = ACTIONS(5239), + [anon_sym_BSLASHacsp] = ACTIONS(5239), + [anon_sym_BSLASHAcsp] = ACTIONS(5239), + [anon_sym_BSLASHacl] = ACTIONS(5239), + [anon_sym_BSLASHAcl] = ACTIONS(5239), + [anon_sym_BSLASHaclp] = ACTIONS(5239), + [anon_sym_BSLASHAclp] = ACTIONS(5239), + [anon_sym_BSLASHacf] = ACTIONS(5239), + [anon_sym_BSLASHAcf] = ACTIONS(5239), + [anon_sym_BSLASHacfp] = ACTIONS(5239), + [anon_sym_BSLASHAcfp] = ACTIONS(5239), + [anon_sym_BSLASHac] = ACTIONS(5239), + [anon_sym_BSLASHAc] = ACTIONS(5239), + [anon_sym_BSLASHacp] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), + [anon_sym_BSLASHcolor] = ACTIONS(5239), + [anon_sym_BSLASHcolorbox] = ACTIONS(5239), + [anon_sym_BSLASHtextcolor] = ACTIONS(5239), + [anon_sym_BSLASHpagecolor] = ACTIONS(5239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + }, + [1704] = { + [sym_command_name] = ACTIONS(6345), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6345), + [anon_sym_LBRACE] = ACTIONS(6347), + [anon_sym_RBRACE] = ACTIONS(6347), + [sym_word] = ACTIONS(6345), + [sym_placeholder] = ACTIONS(6347), + [anon_sym_PLUS] = ACTIONS(6345), + [anon_sym_DASH] = ACTIONS(6345), + [anon_sym_STAR] = ACTIONS(6345), + [anon_sym_SLASH] = ACTIONS(6345), + [anon_sym_CARET] = ACTIONS(6345), + [anon_sym__] = ACTIONS(6345), + [anon_sym_LT] = ACTIONS(6345), + [anon_sym_GT] = ACTIONS(6345), + [anon_sym_BANG] = ACTIONS(6345), + [anon_sym_PIPE] = ACTIONS(6345), + [anon_sym_COLON] = ACTIONS(6345), + [anon_sym_SQUOTE] = ACTIONS(6345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), + [anon_sym_DOLLAR] = ACTIONS(6345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), + [anon_sym_BSLASH_LBRACE] = ACTIONS(6347), + [anon_sym_BSLASHtitle] = ACTIONS(6345), + [anon_sym_BSLASHauthor] = ACTIONS(6345), + [anon_sym_BSLASHusepackage] = ACTIONS(6345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), + [anon_sym_BSLASHinclude] = ACTIONS(6345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), + [anon_sym_BSLASHinput] = ACTIONS(6345), + [anon_sym_BSLASHsubfile] = ACTIONS(6345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), + [anon_sym_BSLASHbibliography] = ACTIONS(6345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), + [anon_sym_BSLASHincludesvg] = ACTIONS(6345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), + [anon_sym_BSLASHimport] = ACTIONS(6345), + [anon_sym_BSLASHsubimport] = ACTIONS(6345), + [anon_sym_BSLASHinputfrom] = ACTIONS(6345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), + [anon_sym_BSLASHincludefrom] = ACTIONS(6345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), + [anon_sym_BSLASHcaption] = ACTIONS(6345), + [anon_sym_BSLASHcite] = ACTIONS(6345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCite] = ACTIONS(6345), + [anon_sym_BSLASHnocite] = ACTIONS(6345), + [anon_sym_BSLASHcitet] = ACTIONS(6345), + [anon_sym_BSLASHcitep] = ACTIONS(6345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteauthor] = ACTIONS(6345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitetitle] = ACTIONS(6345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteyear] = ACTIONS(6345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), + [anon_sym_BSLASHcitedate] = ACTIONS(6345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), + [anon_sym_BSLASHciteurl] = ACTIONS(6345), + [anon_sym_BSLASHfullcite] = ACTIONS(6345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), + [anon_sym_BSLASHcitealt] = ACTIONS(6345), + [anon_sym_BSLASHcitealp] = ACTIONS(6345), + [anon_sym_BSLASHcitetext] = ACTIONS(6345), + [anon_sym_BSLASHparencite] = ACTIONS(6345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHParencite] = ACTIONS(6345), + [anon_sym_BSLASHfootcite] = ACTIONS(6345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), + [anon_sym_BSLASHtextcite] = ACTIONS(6345), + [anon_sym_BSLASHTextcite] = ACTIONS(6345), + [anon_sym_BSLASHsmartcite] = ACTIONS(6345), + [anon_sym_BSLASHSmartcite] = ACTIONS(6345), + [anon_sym_BSLASHsupercite] = ACTIONS(6345), + [anon_sym_BSLASHautocite] = ACTIONS(6345), + [anon_sym_BSLASHAutocite] = ACTIONS(6345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), + [anon_sym_BSLASHvolcite] = ACTIONS(6345), + [anon_sym_BSLASHVolcite] = ACTIONS(6345), + [anon_sym_BSLASHpvolcite] = ACTIONS(6345), + [anon_sym_BSLASHPvolcite] = ACTIONS(6345), + [anon_sym_BSLASHfvolcite] = ACTIONS(6345), + [anon_sym_BSLASHftvolcite] = ACTIONS(6345), + [anon_sym_BSLASHsvolcite] = ACTIONS(6345), + [anon_sym_BSLASHSvolcite] = ACTIONS(6345), + [anon_sym_BSLASHtvolcite] = ACTIONS(6345), + [anon_sym_BSLASHTvolcite] = ACTIONS(6345), + [anon_sym_BSLASHavolcite] = ACTIONS(6345), + [anon_sym_BSLASHAvolcite] = ACTIONS(6345), + [anon_sym_BSLASHnotecite] = ACTIONS(6345), + [anon_sym_BSLASHNotecite] = ACTIONS(6345), + [anon_sym_BSLASHpnotecite] = ACTIONS(6345), + [anon_sym_BSLASHPnotecite] = ACTIONS(6345), + [anon_sym_BSLASHfnotecite] = ACTIONS(6345), + [anon_sym_BSLASHlabel] = ACTIONS(6345), + [anon_sym_BSLASHref] = ACTIONS(6345), + [anon_sym_BSLASHeqref] = ACTIONS(6345), + [anon_sym_BSLASHvref] = ACTIONS(6345), + [anon_sym_BSLASHVref] = ACTIONS(6345), + [anon_sym_BSLASHautoref] = ACTIONS(6345), + [anon_sym_BSLASHpageref] = ACTIONS(6345), + [anon_sym_BSLASHcref] = ACTIONS(6345), + [anon_sym_BSLASHCref] = ACTIONS(6345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), + [anon_sym_BSLASHnamecref] = ACTIONS(6345), + [anon_sym_BSLASHnameCref] = ACTIONS(6345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), + [anon_sym_BSLASHlabelcref] = ACTIONS(6345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), + [anon_sym_BSLASHcrefrange] = ACTIONS(6345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), + [anon_sym_BSLASHCrefrange] = ACTIONS(6345), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), + [anon_sym_BSLASHnewlabel] = ACTIONS(6345), + [anon_sym_BSLASHnewcommand] = ACTIONS(6345), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdef] = ACTIONS(6345), + [anon_sym_BSLASHlet] = ACTIONS(6345), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), + [anon_sym_BSLASHgls] = ACTIONS(6345), + [anon_sym_BSLASHGls] = ACTIONS(6345), + [anon_sym_BSLASHGLS] = ACTIONS(6345), + [anon_sym_BSLASHglspl] = ACTIONS(6345), + [anon_sym_BSLASHGlspl] = ACTIONS(6345), + [anon_sym_BSLASHGLSpl] = ACTIONS(6345), + [anon_sym_BSLASHglsdisp] = ACTIONS(6345), + [anon_sym_BSLASHglslink] = ACTIONS(6345), + [anon_sym_BSLASHglstext] = ACTIONS(6345), + [anon_sym_BSLASHGlstext] = ACTIONS(6345), + [anon_sym_BSLASHGLStext] = ACTIONS(6345), + [anon_sym_BSLASHglsfirst] = ACTIONS(6345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), + [anon_sym_BSLASHglsplural] = ACTIONS(6345), + [anon_sym_BSLASHGlsplural] = ACTIONS(6345), + [anon_sym_BSLASHGLSplural] = ACTIONS(6345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), + [anon_sym_BSLASHglsname] = ACTIONS(6345), + [anon_sym_BSLASHGlsname] = ACTIONS(6345), + [anon_sym_BSLASHGLSname] = ACTIONS(6345), + [anon_sym_BSLASHglssymbol] = ACTIONS(6345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), + [anon_sym_BSLASHglsdesc] = ACTIONS(6345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), + [anon_sym_BSLASHglsuseri] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), + [anon_sym_BSLASHglsuserii] = ACTIONS(6345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), + [anon_sym_BSLASHglsuserv] = ACTIONS(6345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), + [anon_sym_BSLASHglsuservi] = ACTIONS(6345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), + [anon_sym_BSLASHnewacronym] = ACTIONS(6345), + [anon_sym_BSLASHacrshort] = ACTIONS(6345), + [anon_sym_BSLASHAcrshort] = ACTIONS(6345), + [anon_sym_BSLASHACRshort] = ACTIONS(6345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), + [anon_sym_BSLASHacrlong] = ACTIONS(6345), + [anon_sym_BSLASHAcrlong] = ACTIONS(6345), + [anon_sym_BSLASHACRlong] = ACTIONS(6345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), + [anon_sym_BSLASHacrfull] = ACTIONS(6345), + [anon_sym_BSLASHAcrfull] = ACTIONS(6345), + [anon_sym_BSLASHACRfull] = ACTIONS(6345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), + [anon_sym_BSLASHacs] = ACTIONS(6345), + [anon_sym_BSLASHAcs] = ACTIONS(6345), + [anon_sym_BSLASHacsp] = ACTIONS(6345), + [anon_sym_BSLASHAcsp] = ACTIONS(6345), + [anon_sym_BSLASHacl] = ACTIONS(6345), + [anon_sym_BSLASHAcl] = ACTIONS(6345), + [anon_sym_BSLASHaclp] = ACTIONS(6345), + [anon_sym_BSLASHAclp] = ACTIONS(6345), + [anon_sym_BSLASHacf] = ACTIONS(6345), + [anon_sym_BSLASHAcf] = ACTIONS(6345), + [anon_sym_BSLASHacfp] = ACTIONS(6345), + [anon_sym_BSLASHAcfp] = ACTIONS(6345), + [anon_sym_BSLASHac] = ACTIONS(6345), + [anon_sym_BSLASHAc] = ACTIONS(6345), + [anon_sym_BSLASHacp] = ACTIONS(6345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), + [anon_sym_BSLASHcolor] = ACTIONS(6345), + [anon_sym_BSLASHcolorbox] = ACTIONS(6345), + [anon_sym_BSLASHtextcolor] = ACTIONS(6345), + [anon_sym_BSLASHpagecolor] = ACTIONS(6345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), + [anon_sym_BSLASHtext] = ACTIONS(6345), + [anon_sym_BSLASHintertext] = ACTIONS(6345), + [anon_sym_shortintertext] = ACTIONS(6345), + }, + [1705] = { + [sym_curly_group] = STATE(1711), + [sym_mixed_group] = STATE(1711), + [aux_sym_generic_command_repeat1] = STATE(1703), [sym_command_name] = ACTIONS(5337), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5337), + [anon_sym_LPAREN] = ACTIONS(6349), + [anon_sym_LBRACK] = ACTIONS(6349), [anon_sym_RBRACK] = ACTIONS(5335), [anon_sym_COMMA] = ACTIONS(5335), [anon_sym_EQ] = ACTIONS(5335), + [anon_sym_LBRACE] = ACTIONS(6351), [anon_sym_RBRACE] = ACTIONS(5335), [sym_word] = ACTIONS(5337), [sym_placeholder] = ACTIONS(5335), @@ -473190,6 +505603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(5337), [anon_sym_COLON] = ACTIONS(5337), [anon_sym_SQUOTE] = ACTIONS(5337), + [anon_sym_BSLASHtitle] = ACTIONS(5337), + [anon_sym_BSLASHauthor] = ACTIONS(5337), [anon_sym_BSLASHusepackage] = ACTIONS(5337), [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), @@ -473408,8101 +505823,30831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), }, + [1706] = { + [sym_curly_group] = STATE(1717), + [sym_brack_group_text] = STATE(2288), + [sym_command_name] = ACTIONS(5417), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5415), + [anon_sym_COMMA] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(6351), + [anon_sym_RBRACE] = ACTIONS(5415), + [sym_word] = ACTIONS(5417), + [sym_placeholder] = ACTIONS(5415), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_BANG] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_SQUOTE] = ACTIONS(5417), + [anon_sym_BSLASHtitle] = ACTIONS(5417), + [anon_sym_BSLASHauthor] = ACTIONS(5417), + [anon_sym_BSLASHusepackage] = ACTIONS(5417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5417), + [anon_sym_BSLASHinclude] = ACTIONS(5417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5417), + [anon_sym_BSLASHinput] = ACTIONS(5417), + [anon_sym_BSLASHsubfile] = ACTIONS(5417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5417), + [anon_sym_BSLASHbibliography] = ACTIONS(5417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5417), + [anon_sym_BSLASHincludesvg] = ACTIONS(5417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5417), + [anon_sym_BSLASHimport] = ACTIONS(5417), + [anon_sym_BSLASHsubimport] = ACTIONS(5417), + [anon_sym_BSLASHinputfrom] = ACTIONS(5417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5417), + [anon_sym_BSLASHincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5417), + [anon_sym_BSLASHcaption] = ACTIONS(5417), + [anon_sym_BSLASHcite] = ACTIONS(5417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCite] = ACTIONS(5417), + [anon_sym_BSLASHnocite] = ACTIONS(5417), + [anon_sym_BSLASHcitet] = ACTIONS(5417), + [anon_sym_BSLASHcitep] = ACTIONS(5417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteauthor] = ACTIONS(5417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitetitle] = ACTIONS(5417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteyear] = ACTIONS(5417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5415), + [anon_sym_BSLASHcitedate] = ACTIONS(5417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5415), + [anon_sym_BSLASHciteurl] = ACTIONS(5417), + [anon_sym_BSLASHfullcite] = ACTIONS(5417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5417), + [anon_sym_BSLASHcitealt] = ACTIONS(5417), + [anon_sym_BSLASHcitealp] = ACTIONS(5417), + [anon_sym_BSLASHcitetext] = ACTIONS(5417), + [anon_sym_BSLASHparencite] = ACTIONS(5417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHParencite] = ACTIONS(5417), + [anon_sym_BSLASHfootcite] = ACTIONS(5417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5417), + [anon_sym_BSLASHtextcite] = ACTIONS(5417), + [anon_sym_BSLASHTextcite] = ACTIONS(5417), + [anon_sym_BSLASHsmartcite] = ACTIONS(5417), + [anon_sym_BSLASHSmartcite] = ACTIONS(5417), + [anon_sym_BSLASHsupercite] = ACTIONS(5417), + [anon_sym_BSLASHautocite] = ACTIONS(5417), + [anon_sym_BSLASHAutocite] = ACTIONS(5417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5415), + [anon_sym_BSLASHvolcite] = ACTIONS(5417), + [anon_sym_BSLASHVolcite] = ACTIONS(5417), + [anon_sym_BSLASHpvolcite] = ACTIONS(5417), + [anon_sym_BSLASHPvolcite] = ACTIONS(5417), + [anon_sym_BSLASHfvolcite] = ACTIONS(5417), + [anon_sym_BSLASHftvolcite] = ACTIONS(5417), + [anon_sym_BSLASHsvolcite] = ACTIONS(5417), + [anon_sym_BSLASHSvolcite] = ACTIONS(5417), + [anon_sym_BSLASHtvolcite] = ACTIONS(5417), + [anon_sym_BSLASHTvolcite] = ACTIONS(5417), + [anon_sym_BSLASHavolcite] = ACTIONS(5417), + [anon_sym_BSLASHAvolcite] = ACTIONS(5417), + [anon_sym_BSLASHnotecite] = ACTIONS(5417), + [anon_sym_BSLASHNotecite] = ACTIONS(5417), + [anon_sym_BSLASHpnotecite] = ACTIONS(5417), + [anon_sym_BSLASHPnotecite] = ACTIONS(5417), + [anon_sym_BSLASHfnotecite] = ACTIONS(5417), + [anon_sym_BSLASHlabel] = ACTIONS(5417), + [anon_sym_BSLASHref] = ACTIONS(5417), + [anon_sym_BSLASHeqref] = ACTIONS(5417), + [anon_sym_BSLASHvref] = ACTIONS(5417), + [anon_sym_BSLASHVref] = ACTIONS(5417), + [anon_sym_BSLASHautoref] = ACTIONS(5417), + [anon_sym_BSLASHpageref] = ACTIONS(5417), + [anon_sym_BSLASHcref] = ACTIONS(5417), + [anon_sym_BSLASHCref] = ACTIONS(5417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnameCref] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5417), + [anon_sym_BSLASHlabelcref] = ACTIONS(5417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange] = ACTIONS(5417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHCrefrange] = ACTIONS(5417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand] = ACTIONS(5417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5415), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdef] = ACTIONS(5417), + [anon_sym_BSLASHlet] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5417), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5417), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5417), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5417), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5417), + [anon_sym_BSLASHacrshort] = ACTIONS(5417), + [anon_sym_BSLASHAcrshort] = ACTIONS(5417), + [anon_sym_BSLASHACRshort] = ACTIONS(5417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5417), + [anon_sym_BSLASHacrlong] = ACTIONS(5417), + [anon_sym_BSLASHAcrlong] = ACTIONS(5417), + [anon_sym_BSLASHACRlong] = ACTIONS(5417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5417), + [anon_sym_BSLASHacrfull] = ACTIONS(5417), + [anon_sym_BSLASHAcrfull] = ACTIONS(5417), + [anon_sym_BSLASHACRfull] = ACTIONS(5417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5417), + [anon_sym_BSLASHacs] = ACTIONS(5417), + [anon_sym_BSLASHAcs] = ACTIONS(5417), + [anon_sym_BSLASHacsp] = ACTIONS(5417), + [anon_sym_BSLASHAcsp] = ACTIONS(5417), + [anon_sym_BSLASHacl] = ACTIONS(5417), + [anon_sym_BSLASHAcl] = ACTIONS(5417), + [anon_sym_BSLASHaclp] = ACTIONS(5417), + [anon_sym_BSLASHAclp] = ACTIONS(5417), + [anon_sym_BSLASHacf] = ACTIONS(5417), + [anon_sym_BSLASHAcf] = ACTIONS(5417), + [anon_sym_BSLASHacfp] = ACTIONS(5417), + [anon_sym_BSLASHAcfp] = ACTIONS(5417), + [anon_sym_BSLASHac] = ACTIONS(5417), + [anon_sym_BSLASHAc] = ACTIONS(5417), + [anon_sym_BSLASHacp] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5417), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5417), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5415), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5417), + [anon_sym_BSLASHcolor] = ACTIONS(5417), + [anon_sym_BSLASHcolorbox] = ACTIONS(5417), + [anon_sym_BSLASHtextcolor] = ACTIONS(5417), + [anon_sym_BSLASHpagecolor] = ACTIONS(5417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5417), + }, + [1707] = { + [sym_curly_group] = STATE(1713), + [sym_brack_group_text] = STATE(2304), + [sym_command_name] = ACTIONS(5353), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5353), + [anon_sym_LBRACK] = ACTIONS(5355), + [anon_sym_RBRACK] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5351), + [anon_sym_EQ] = ACTIONS(5351), + [anon_sym_LBRACE] = ACTIONS(6351), + [anon_sym_RBRACE] = ACTIONS(5351), + [sym_word] = ACTIONS(5353), + [sym_placeholder] = ACTIONS(5351), + [anon_sym_PLUS] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5353), + [anon_sym_STAR] = ACTIONS(5353), + [anon_sym_SLASH] = ACTIONS(5353), + [anon_sym_CARET] = ACTIONS(5353), + [anon_sym__] = ACTIONS(5353), + [anon_sym_LT] = ACTIONS(5353), + [anon_sym_GT] = ACTIONS(5353), + [anon_sym_BANG] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_COLON] = ACTIONS(5353), + [anon_sym_SQUOTE] = ACTIONS(5353), + [anon_sym_BSLASHtitle] = ACTIONS(5353), + [anon_sym_BSLASHauthor] = ACTIONS(5353), + [anon_sym_BSLASHusepackage] = ACTIONS(5353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), + [anon_sym_BSLASHinclude] = ACTIONS(5353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), + [anon_sym_BSLASHinput] = ACTIONS(5353), + [anon_sym_BSLASHsubfile] = ACTIONS(5353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), + [anon_sym_BSLASHbibliography] = ACTIONS(5353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), + [anon_sym_BSLASHincludesvg] = ACTIONS(5353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), + [anon_sym_BSLASHimport] = ACTIONS(5353), + [anon_sym_BSLASHsubimport] = ACTIONS(5353), + [anon_sym_BSLASHinputfrom] = ACTIONS(5353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), + [anon_sym_BSLASHincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), + [anon_sym_BSLASHcaption] = ACTIONS(5353), + [anon_sym_BSLASHcite] = ACTIONS(5353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCite] = ACTIONS(5353), + [anon_sym_BSLASHnocite] = ACTIONS(5353), + [anon_sym_BSLASHcitet] = ACTIONS(5353), + [anon_sym_BSLASHcitep] = ACTIONS(5353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteauthor] = ACTIONS(5353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitetitle] = ACTIONS(5353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteyear] = ACTIONS(5353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), + [anon_sym_BSLASHcitedate] = ACTIONS(5353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), + [anon_sym_BSLASHciteurl] = ACTIONS(5353), + [anon_sym_BSLASHfullcite] = ACTIONS(5353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), + [anon_sym_BSLASHcitealt] = ACTIONS(5353), + [anon_sym_BSLASHcitealp] = ACTIONS(5353), + [anon_sym_BSLASHcitetext] = ACTIONS(5353), + [anon_sym_BSLASHparencite] = ACTIONS(5353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHParencite] = ACTIONS(5353), + [anon_sym_BSLASHfootcite] = ACTIONS(5353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), + [anon_sym_BSLASHtextcite] = ACTIONS(5353), + [anon_sym_BSLASHTextcite] = ACTIONS(5353), + [anon_sym_BSLASHsmartcite] = ACTIONS(5353), + [anon_sym_BSLASHSmartcite] = ACTIONS(5353), + [anon_sym_BSLASHsupercite] = ACTIONS(5353), + [anon_sym_BSLASHautocite] = ACTIONS(5353), + [anon_sym_BSLASHAutocite] = ACTIONS(5353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), + [anon_sym_BSLASHvolcite] = ACTIONS(5353), + [anon_sym_BSLASHVolcite] = ACTIONS(5353), + [anon_sym_BSLASHpvolcite] = ACTIONS(5353), + [anon_sym_BSLASHPvolcite] = ACTIONS(5353), + [anon_sym_BSLASHfvolcite] = ACTIONS(5353), + [anon_sym_BSLASHftvolcite] = ACTIONS(5353), + [anon_sym_BSLASHsvolcite] = ACTIONS(5353), + [anon_sym_BSLASHSvolcite] = ACTIONS(5353), + [anon_sym_BSLASHtvolcite] = ACTIONS(5353), + [anon_sym_BSLASHTvolcite] = ACTIONS(5353), + [anon_sym_BSLASHavolcite] = ACTIONS(5353), + [anon_sym_BSLASHAvolcite] = ACTIONS(5353), + [anon_sym_BSLASHnotecite] = ACTIONS(5353), + [anon_sym_BSLASHNotecite] = ACTIONS(5353), + [anon_sym_BSLASHpnotecite] = ACTIONS(5353), + [anon_sym_BSLASHPnotecite] = ACTIONS(5353), + [anon_sym_BSLASHfnotecite] = ACTIONS(5353), + [anon_sym_BSLASHlabel] = ACTIONS(5353), + [anon_sym_BSLASHref] = ACTIONS(5353), + [anon_sym_BSLASHeqref] = ACTIONS(5353), + [anon_sym_BSLASHvref] = ACTIONS(5353), + [anon_sym_BSLASHVref] = ACTIONS(5353), + [anon_sym_BSLASHautoref] = ACTIONS(5353), + [anon_sym_BSLASHpageref] = ACTIONS(5353), + [anon_sym_BSLASHcref] = ACTIONS(5353), + [anon_sym_BSLASHCref] = ACTIONS(5353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnameCref] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), + [anon_sym_BSLASHlabelcref] = ACTIONS(5353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange] = ACTIONS(5353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHCrefrange] = ACTIONS(5353), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), + [anon_sym_BSLASHnewlabel] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand] = ACTIONS(5353), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdef] = ACTIONS(5353), + [anon_sym_BSLASHlet] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5353), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5353), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), + [anon_sym_BSLASHgls] = ACTIONS(5353), + [anon_sym_BSLASHGls] = ACTIONS(5353), + [anon_sym_BSLASHGLS] = ACTIONS(5353), + [anon_sym_BSLASHglspl] = ACTIONS(5353), + [anon_sym_BSLASHGlspl] = ACTIONS(5353), + [anon_sym_BSLASHGLSpl] = ACTIONS(5353), + [anon_sym_BSLASHglsdisp] = ACTIONS(5353), + [anon_sym_BSLASHglslink] = ACTIONS(5353), + [anon_sym_BSLASHglstext] = ACTIONS(5353), + [anon_sym_BSLASHGlstext] = ACTIONS(5353), + [anon_sym_BSLASHGLStext] = ACTIONS(5353), + [anon_sym_BSLASHglsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), + [anon_sym_BSLASHglsplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSplural] = ACTIONS(5353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), + [anon_sym_BSLASHglsname] = ACTIONS(5353), + [anon_sym_BSLASHGlsname] = ACTIONS(5353), + [anon_sym_BSLASHGLSname] = ACTIONS(5353), + [anon_sym_BSLASHglssymbol] = ACTIONS(5353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), + [anon_sym_BSLASHglsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), + [anon_sym_BSLASHglsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), + [anon_sym_BSLASHglsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), + [anon_sym_BSLASHglsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), + [anon_sym_BSLASHglsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), + [anon_sym_BSLASHnewacronym] = ACTIONS(5353), + [anon_sym_BSLASHacrshort] = ACTIONS(5353), + [anon_sym_BSLASHAcrshort] = ACTIONS(5353), + [anon_sym_BSLASHACRshort] = ACTIONS(5353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), + [anon_sym_BSLASHacrlong] = ACTIONS(5353), + [anon_sym_BSLASHAcrlong] = ACTIONS(5353), + [anon_sym_BSLASHACRlong] = ACTIONS(5353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), + [anon_sym_BSLASHacrfull] = ACTIONS(5353), + [anon_sym_BSLASHAcrfull] = ACTIONS(5353), + [anon_sym_BSLASHACRfull] = ACTIONS(5353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), + [anon_sym_BSLASHacs] = ACTIONS(5353), + [anon_sym_BSLASHAcs] = ACTIONS(5353), + [anon_sym_BSLASHacsp] = ACTIONS(5353), + [anon_sym_BSLASHAcsp] = ACTIONS(5353), + [anon_sym_BSLASHacl] = ACTIONS(5353), + [anon_sym_BSLASHAcl] = ACTIONS(5353), + [anon_sym_BSLASHaclp] = ACTIONS(5353), + [anon_sym_BSLASHAclp] = ACTIONS(5353), + [anon_sym_BSLASHacf] = ACTIONS(5353), + [anon_sym_BSLASHAcf] = ACTIONS(5353), + [anon_sym_BSLASHacfp] = ACTIONS(5353), + [anon_sym_BSLASHAcfp] = ACTIONS(5353), + [anon_sym_BSLASHac] = ACTIONS(5353), + [anon_sym_BSLASHAc] = ACTIONS(5353), + [anon_sym_BSLASHacp] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5351), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), + [anon_sym_BSLASHcolor] = ACTIONS(5353), + [anon_sym_BSLASHcolorbox] = ACTIONS(5353), + [anon_sym_BSLASHtextcolor] = ACTIONS(5353), + [anon_sym_BSLASHpagecolor] = ACTIONS(5353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + }, + [1708] = { + [sym_command_name] = ACTIONS(6181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6181), + [anon_sym_LPAREN] = ACTIONS(6179), + [anon_sym_LBRACK] = ACTIONS(6179), + [anon_sym_RBRACK] = ACTIONS(6179), + [anon_sym_COMMA] = ACTIONS(6179), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_LBRACE] = ACTIONS(6179), + [anon_sym_RBRACE] = ACTIONS(6179), + [sym_word] = ACTIONS(6181), + [sym_placeholder] = ACTIONS(6179), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym__] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_BANG] = ACTIONS(6181), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_COLON] = ACTIONS(6181), + [anon_sym_SQUOTE] = ACTIONS(6181), + [anon_sym_BSLASHtitle] = ACTIONS(6181), + [anon_sym_BSLASHauthor] = ACTIONS(6181), + [anon_sym_BSLASHusepackage] = ACTIONS(6181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), + [anon_sym_BSLASHinclude] = ACTIONS(6181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), + [anon_sym_BSLASHinput] = ACTIONS(6181), + [anon_sym_BSLASHsubfile] = ACTIONS(6181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), + [anon_sym_BSLASHbibliography] = ACTIONS(6181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), + [anon_sym_BSLASHincludesvg] = ACTIONS(6181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), + [anon_sym_BSLASHimport] = ACTIONS(6181), + [anon_sym_BSLASHsubimport] = ACTIONS(6181), + [anon_sym_BSLASHinputfrom] = ACTIONS(6181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), + [anon_sym_BSLASHincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), + [anon_sym_BSLASHcaption] = ACTIONS(6181), + [anon_sym_BSLASHcite] = ACTIONS(6181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCite] = ACTIONS(6181), + [anon_sym_BSLASHnocite] = ACTIONS(6181), + [anon_sym_BSLASHcitet] = ACTIONS(6181), + [anon_sym_BSLASHcitep] = ACTIONS(6181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteauthor] = ACTIONS(6181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitetitle] = ACTIONS(6181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteyear] = ACTIONS(6181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), + [anon_sym_BSLASHcitedate] = ACTIONS(6181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), + [anon_sym_BSLASHciteurl] = ACTIONS(6181), + [anon_sym_BSLASHfullcite] = ACTIONS(6181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), + [anon_sym_BSLASHcitealt] = ACTIONS(6181), + [anon_sym_BSLASHcitealp] = ACTIONS(6181), + [anon_sym_BSLASHcitetext] = ACTIONS(6181), + [anon_sym_BSLASHparencite] = ACTIONS(6181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHParencite] = ACTIONS(6181), + [anon_sym_BSLASHfootcite] = ACTIONS(6181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), + [anon_sym_BSLASHtextcite] = ACTIONS(6181), + [anon_sym_BSLASHTextcite] = ACTIONS(6181), + [anon_sym_BSLASHsmartcite] = ACTIONS(6181), + [anon_sym_BSLASHSmartcite] = ACTIONS(6181), + [anon_sym_BSLASHsupercite] = ACTIONS(6181), + [anon_sym_BSLASHautocite] = ACTIONS(6181), + [anon_sym_BSLASHAutocite] = ACTIONS(6181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), + [anon_sym_BSLASHvolcite] = ACTIONS(6181), + [anon_sym_BSLASHVolcite] = ACTIONS(6181), + [anon_sym_BSLASHpvolcite] = ACTIONS(6181), + [anon_sym_BSLASHPvolcite] = ACTIONS(6181), + [anon_sym_BSLASHfvolcite] = ACTIONS(6181), + [anon_sym_BSLASHftvolcite] = ACTIONS(6181), + [anon_sym_BSLASHsvolcite] = ACTIONS(6181), + [anon_sym_BSLASHSvolcite] = ACTIONS(6181), + [anon_sym_BSLASHtvolcite] = ACTIONS(6181), + [anon_sym_BSLASHTvolcite] = ACTIONS(6181), + [anon_sym_BSLASHavolcite] = ACTIONS(6181), + [anon_sym_BSLASHAvolcite] = ACTIONS(6181), + [anon_sym_BSLASHnotecite] = ACTIONS(6181), + [anon_sym_BSLASHNotecite] = ACTIONS(6181), + [anon_sym_BSLASHpnotecite] = ACTIONS(6181), + [anon_sym_BSLASHPnotecite] = ACTIONS(6181), + [anon_sym_BSLASHfnotecite] = ACTIONS(6181), + [anon_sym_BSLASHlabel] = ACTIONS(6181), + [anon_sym_BSLASHref] = ACTIONS(6181), + [anon_sym_BSLASHeqref] = ACTIONS(6181), + [anon_sym_BSLASHvref] = ACTIONS(6181), + [anon_sym_BSLASHVref] = ACTIONS(6181), + [anon_sym_BSLASHautoref] = ACTIONS(6181), + [anon_sym_BSLASHpageref] = ACTIONS(6181), + [anon_sym_BSLASHcref] = ACTIONS(6181), + [anon_sym_BSLASHCref] = ACTIONS(6181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnameCref] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), + [anon_sym_BSLASHlabelcref] = ACTIONS(6181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange] = ACTIONS(6181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHCrefrange] = ACTIONS(6181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand] = ACTIONS(6181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdef] = ACTIONS(6181), + [anon_sym_BSLASHlet] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), + [anon_sym_BSLASHgls] = ACTIONS(6181), + [anon_sym_BSLASHGls] = ACTIONS(6181), + [anon_sym_BSLASHGLS] = ACTIONS(6181), + [anon_sym_BSLASHglspl] = ACTIONS(6181), + [anon_sym_BSLASHGlspl] = ACTIONS(6181), + [anon_sym_BSLASHGLSpl] = ACTIONS(6181), + [anon_sym_BSLASHglsdisp] = ACTIONS(6181), + [anon_sym_BSLASHglslink] = ACTIONS(6181), + [anon_sym_BSLASHglstext] = ACTIONS(6181), + [anon_sym_BSLASHGlstext] = ACTIONS(6181), + [anon_sym_BSLASHGLStext] = ACTIONS(6181), + [anon_sym_BSLASHglsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), + [anon_sym_BSLASHglsplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSplural] = ACTIONS(6181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), + [anon_sym_BSLASHglsname] = ACTIONS(6181), + [anon_sym_BSLASHGlsname] = ACTIONS(6181), + [anon_sym_BSLASHGLSname] = ACTIONS(6181), + [anon_sym_BSLASHglssymbol] = ACTIONS(6181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), + [anon_sym_BSLASHglsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), + [anon_sym_BSLASHglsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), + [anon_sym_BSLASHglsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), + [anon_sym_BSLASHglsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), + [anon_sym_BSLASHglsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), + [anon_sym_BSLASHnewacronym] = ACTIONS(6181), + [anon_sym_BSLASHacrshort] = ACTIONS(6181), + [anon_sym_BSLASHAcrshort] = ACTIONS(6181), + [anon_sym_BSLASHACRshort] = ACTIONS(6181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), + [anon_sym_BSLASHacrlong] = ACTIONS(6181), + [anon_sym_BSLASHAcrlong] = ACTIONS(6181), + [anon_sym_BSLASHACRlong] = ACTIONS(6181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), + [anon_sym_BSLASHacrfull] = ACTIONS(6181), + [anon_sym_BSLASHAcrfull] = ACTIONS(6181), + [anon_sym_BSLASHACRfull] = ACTIONS(6181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), + [anon_sym_BSLASHacs] = ACTIONS(6181), + [anon_sym_BSLASHAcs] = ACTIONS(6181), + [anon_sym_BSLASHacsp] = ACTIONS(6181), + [anon_sym_BSLASHAcsp] = ACTIONS(6181), + [anon_sym_BSLASHacl] = ACTIONS(6181), + [anon_sym_BSLASHAcl] = ACTIONS(6181), + [anon_sym_BSLASHaclp] = ACTIONS(6181), + [anon_sym_BSLASHAclp] = ACTIONS(6181), + [anon_sym_BSLASHacf] = ACTIONS(6181), + [anon_sym_BSLASHAcf] = ACTIONS(6181), + [anon_sym_BSLASHacfp] = ACTIONS(6181), + [anon_sym_BSLASHAcfp] = ACTIONS(6181), + [anon_sym_BSLASHac] = ACTIONS(6181), + [anon_sym_BSLASHAc] = ACTIONS(6181), + [anon_sym_BSLASHacp] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), + [anon_sym_BSLASHcolor] = ACTIONS(6181), + [anon_sym_BSLASHcolorbox] = ACTIONS(6181), + [anon_sym_BSLASHtextcolor] = ACTIONS(6181), + [anon_sym_BSLASHpagecolor] = ACTIONS(6181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), + }, + [1709] = { + [sym_command_name] = ACTIONS(5811), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5811), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [sym_word] = ACTIONS(5811), + [sym_placeholder] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym__] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_BANG] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [anon_sym_SQUOTE] = ACTIONS(5811), + [anon_sym_BSLASHtitle] = ACTIONS(5811), + [anon_sym_BSLASHauthor] = ACTIONS(5811), + [anon_sym_BSLASHusepackage] = ACTIONS(5811), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5811), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5811), + [anon_sym_BSLASHinclude] = ACTIONS(5811), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5811), + [anon_sym_BSLASHinput] = ACTIONS(5811), + [anon_sym_BSLASHsubfile] = ACTIONS(5811), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5811), + [anon_sym_BSLASHbibliography] = ACTIONS(5811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5811), + [anon_sym_BSLASHincludesvg] = ACTIONS(5811), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5811), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5811), + [anon_sym_BSLASHimport] = ACTIONS(5811), + [anon_sym_BSLASHsubimport] = ACTIONS(5811), + [anon_sym_BSLASHinputfrom] = ACTIONS(5811), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5811), + [anon_sym_BSLASHincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5811), + [anon_sym_BSLASHcaption] = ACTIONS(5811), + [anon_sym_BSLASHcite] = ACTIONS(5811), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCite] = ACTIONS(5811), + [anon_sym_BSLASHnocite] = ACTIONS(5811), + [anon_sym_BSLASHcitet] = ACTIONS(5811), + [anon_sym_BSLASHcitep] = ACTIONS(5811), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteauthor] = ACTIONS(5811), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5811), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitetitle] = ACTIONS(5811), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteyear] = ACTIONS(5811), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5809), + [anon_sym_BSLASHcitedate] = ACTIONS(5811), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5809), + [anon_sym_BSLASHciteurl] = ACTIONS(5811), + [anon_sym_BSLASHfullcite] = ACTIONS(5811), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5811), + [anon_sym_BSLASHcitealt] = ACTIONS(5811), + [anon_sym_BSLASHcitealp] = ACTIONS(5811), + [anon_sym_BSLASHcitetext] = ACTIONS(5811), + [anon_sym_BSLASHparencite] = ACTIONS(5811), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHParencite] = ACTIONS(5811), + [anon_sym_BSLASHfootcite] = ACTIONS(5811), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5811), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5811), + [anon_sym_BSLASHtextcite] = ACTIONS(5811), + [anon_sym_BSLASHTextcite] = ACTIONS(5811), + [anon_sym_BSLASHsmartcite] = ACTIONS(5811), + [anon_sym_BSLASHSmartcite] = ACTIONS(5811), + [anon_sym_BSLASHsupercite] = ACTIONS(5811), + [anon_sym_BSLASHautocite] = ACTIONS(5811), + [anon_sym_BSLASHAutocite] = ACTIONS(5811), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5809), + [anon_sym_BSLASHvolcite] = ACTIONS(5811), + [anon_sym_BSLASHVolcite] = ACTIONS(5811), + [anon_sym_BSLASHpvolcite] = ACTIONS(5811), + [anon_sym_BSLASHPvolcite] = ACTIONS(5811), + [anon_sym_BSLASHfvolcite] = ACTIONS(5811), + [anon_sym_BSLASHftvolcite] = ACTIONS(5811), + [anon_sym_BSLASHsvolcite] = ACTIONS(5811), + [anon_sym_BSLASHSvolcite] = ACTIONS(5811), + [anon_sym_BSLASHtvolcite] = ACTIONS(5811), + [anon_sym_BSLASHTvolcite] = ACTIONS(5811), + [anon_sym_BSLASHavolcite] = ACTIONS(5811), + [anon_sym_BSLASHAvolcite] = ACTIONS(5811), + [anon_sym_BSLASHnotecite] = ACTIONS(5811), + [anon_sym_BSLASHNotecite] = ACTIONS(5811), + [anon_sym_BSLASHpnotecite] = ACTIONS(5811), + [anon_sym_BSLASHPnotecite] = ACTIONS(5811), + [anon_sym_BSLASHfnotecite] = ACTIONS(5811), + [anon_sym_BSLASHlabel] = ACTIONS(5811), + [anon_sym_BSLASHref] = ACTIONS(5811), + [anon_sym_BSLASHeqref] = ACTIONS(5811), + [anon_sym_BSLASHvref] = ACTIONS(5811), + [anon_sym_BSLASHVref] = ACTIONS(5811), + [anon_sym_BSLASHautoref] = ACTIONS(5811), + [anon_sym_BSLASHpageref] = ACTIONS(5811), + [anon_sym_BSLASHcref] = ACTIONS(5811), + [anon_sym_BSLASHCref] = ACTIONS(5811), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnameCref] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5811), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5811), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5811), + [anon_sym_BSLASHlabelcref] = ACTIONS(5811), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange] = ACTIONS(5811), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHCrefrange] = ACTIONS(5811), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5809), + [anon_sym_BSLASHnewlabel] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand] = ACTIONS(5811), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5811), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5811), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5809), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5811), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdef] = ACTIONS(5811), + [anon_sym_BSLASHlet] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5811), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5811), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5811), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5811), + [anon_sym_BSLASHgls] = ACTIONS(5811), + [anon_sym_BSLASHGls] = ACTIONS(5811), + [anon_sym_BSLASHGLS] = ACTIONS(5811), + [anon_sym_BSLASHglspl] = ACTIONS(5811), + [anon_sym_BSLASHGlspl] = ACTIONS(5811), + [anon_sym_BSLASHGLSpl] = ACTIONS(5811), + [anon_sym_BSLASHglsdisp] = ACTIONS(5811), + [anon_sym_BSLASHglslink] = ACTIONS(5811), + [anon_sym_BSLASHglstext] = ACTIONS(5811), + [anon_sym_BSLASHGlstext] = ACTIONS(5811), + [anon_sym_BSLASHGLStext] = ACTIONS(5811), + [anon_sym_BSLASHglsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5811), + [anon_sym_BSLASHglsplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSplural] = ACTIONS(5811), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5811), + [anon_sym_BSLASHglsname] = ACTIONS(5811), + [anon_sym_BSLASHGlsname] = ACTIONS(5811), + [anon_sym_BSLASHGLSname] = ACTIONS(5811), + [anon_sym_BSLASHglssymbol] = ACTIONS(5811), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5811), + [anon_sym_BSLASHglsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5811), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5811), + [anon_sym_BSLASHglsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5811), + [anon_sym_BSLASHglsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5811), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5811), + [anon_sym_BSLASHglsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5811), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5811), + [anon_sym_BSLASHglsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5811), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5811), + [anon_sym_BSLASHnewacronym] = ACTIONS(5811), + [anon_sym_BSLASHacrshort] = ACTIONS(5811), + [anon_sym_BSLASHAcrshort] = ACTIONS(5811), + [anon_sym_BSLASHACRshort] = ACTIONS(5811), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5811), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5811), + [anon_sym_BSLASHacrlong] = ACTIONS(5811), + [anon_sym_BSLASHAcrlong] = ACTIONS(5811), + [anon_sym_BSLASHACRlong] = ACTIONS(5811), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5811), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5811), + [anon_sym_BSLASHacrfull] = ACTIONS(5811), + [anon_sym_BSLASHAcrfull] = ACTIONS(5811), + [anon_sym_BSLASHACRfull] = ACTIONS(5811), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5811), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5811), + [anon_sym_BSLASHacs] = ACTIONS(5811), + [anon_sym_BSLASHAcs] = ACTIONS(5811), + [anon_sym_BSLASHacsp] = ACTIONS(5811), + [anon_sym_BSLASHAcsp] = ACTIONS(5811), + [anon_sym_BSLASHacl] = ACTIONS(5811), + [anon_sym_BSLASHAcl] = ACTIONS(5811), + [anon_sym_BSLASHaclp] = ACTIONS(5811), + [anon_sym_BSLASHAclp] = ACTIONS(5811), + [anon_sym_BSLASHacf] = ACTIONS(5811), + [anon_sym_BSLASHAcf] = ACTIONS(5811), + [anon_sym_BSLASHacfp] = ACTIONS(5811), + [anon_sym_BSLASHAcfp] = ACTIONS(5811), + [anon_sym_BSLASHac] = ACTIONS(5811), + [anon_sym_BSLASHAc] = ACTIONS(5811), + [anon_sym_BSLASHacp] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5811), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5811), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5811), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5811), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5811), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5811), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5811), + [anon_sym_BSLASHcolor] = ACTIONS(5811), + [anon_sym_BSLASHcolorbox] = ACTIONS(5811), + [anon_sym_BSLASHtextcolor] = ACTIONS(5811), + [anon_sym_BSLASHpagecolor] = ACTIONS(5811), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5811), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5811), + }, + [1710] = { + [sym_command_name] = ACTIONS(6089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6089), + [anon_sym_LPAREN] = ACTIONS(6087), + [anon_sym_LBRACK] = ACTIONS(6087), + [anon_sym_RBRACK] = ACTIONS(6087), + [anon_sym_COMMA] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(6087), + [anon_sym_LBRACE] = ACTIONS(6087), + [anon_sym_RBRACE] = ACTIONS(6087), + [sym_word] = ACTIONS(6089), + [sym_placeholder] = ACTIONS(6087), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6089), + [anon_sym_SLASH] = ACTIONS(6089), + [anon_sym_CARET] = ACTIONS(6089), + [anon_sym__] = ACTIONS(6089), + [anon_sym_LT] = ACTIONS(6089), + [anon_sym_GT] = ACTIONS(6089), + [anon_sym_BANG] = ACTIONS(6089), + [anon_sym_PIPE] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [anon_sym_SQUOTE] = ACTIONS(6089), + [anon_sym_BSLASHtitle] = ACTIONS(6089), + [anon_sym_BSLASHauthor] = ACTIONS(6089), + [anon_sym_BSLASHusepackage] = ACTIONS(6089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6089), + [anon_sym_BSLASHinclude] = ACTIONS(6089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6089), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6089), + [anon_sym_BSLASHbibliography] = ACTIONS(6089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6089), + [anon_sym_BSLASHincludesvg] = ACTIONS(6089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6089), + [anon_sym_BSLASHimport] = ACTIONS(6089), + [anon_sym_BSLASHsubimport] = ACTIONS(6089), + [anon_sym_BSLASHinputfrom] = ACTIONS(6089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6089), + [anon_sym_BSLASHincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6089), + [anon_sym_BSLASHcaption] = ACTIONS(6089), + [anon_sym_BSLASHcite] = ACTIONS(6089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCite] = ACTIONS(6089), + [anon_sym_BSLASHnocite] = ACTIONS(6089), + [anon_sym_BSLASHcitet] = ACTIONS(6089), + [anon_sym_BSLASHcitep] = ACTIONS(6089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteauthor] = ACTIONS(6089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitetitle] = ACTIONS(6089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteyear] = ACTIONS(6089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6087), + [anon_sym_BSLASHcitedate] = ACTIONS(6089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6087), + [anon_sym_BSLASHciteurl] = ACTIONS(6089), + [anon_sym_BSLASHfullcite] = ACTIONS(6089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6089), + [anon_sym_BSLASHcitealt] = ACTIONS(6089), + [anon_sym_BSLASHcitealp] = ACTIONS(6089), + [anon_sym_BSLASHcitetext] = ACTIONS(6089), + [anon_sym_BSLASHparencite] = ACTIONS(6089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHParencite] = ACTIONS(6089), + [anon_sym_BSLASHfootcite] = ACTIONS(6089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6089), + [anon_sym_BSLASHtextcite] = ACTIONS(6089), + [anon_sym_BSLASHTextcite] = ACTIONS(6089), + [anon_sym_BSLASHsmartcite] = ACTIONS(6089), + [anon_sym_BSLASHSmartcite] = ACTIONS(6089), + [anon_sym_BSLASHsupercite] = ACTIONS(6089), + [anon_sym_BSLASHautocite] = ACTIONS(6089), + [anon_sym_BSLASHAutocite] = ACTIONS(6089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6087), + [anon_sym_BSLASHvolcite] = ACTIONS(6089), + [anon_sym_BSLASHVolcite] = ACTIONS(6089), + [anon_sym_BSLASHpvolcite] = ACTIONS(6089), + [anon_sym_BSLASHPvolcite] = ACTIONS(6089), + [anon_sym_BSLASHfvolcite] = ACTIONS(6089), + [anon_sym_BSLASHftvolcite] = ACTIONS(6089), + [anon_sym_BSLASHsvolcite] = ACTIONS(6089), + [anon_sym_BSLASHSvolcite] = ACTIONS(6089), + [anon_sym_BSLASHtvolcite] = ACTIONS(6089), + [anon_sym_BSLASHTvolcite] = ACTIONS(6089), + [anon_sym_BSLASHavolcite] = ACTIONS(6089), + [anon_sym_BSLASHAvolcite] = ACTIONS(6089), + [anon_sym_BSLASHnotecite] = ACTIONS(6089), + [anon_sym_BSLASHNotecite] = ACTIONS(6089), + [anon_sym_BSLASHpnotecite] = ACTIONS(6089), + [anon_sym_BSLASHPnotecite] = ACTIONS(6089), + [anon_sym_BSLASHfnotecite] = ACTIONS(6089), + [anon_sym_BSLASHlabel] = ACTIONS(6089), + [anon_sym_BSLASHref] = ACTIONS(6089), + [anon_sym_BSLASHeqref] = ACTIONS(6089), + [anon_sym_BSLASHvref] = ACTIONS(6089), + [anon_sym_BSLASHVref] = ACTIONS(6089), + [anon_sym_BSLASHautoref] = ACTIONS(6089), + [anon_sym_BSLASHpageref] = ACTIONS(6089), + [anon_sym_BSLASHcref] = ACTIONS(6089), + [anon_sym_BSLASHCref] = ACTIONS(6089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnameCref] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6089), + [anon_sym_BSLASHlabelcref] = ACTIONS(6089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange] = ACTIONS(6089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHCrefrange] = ACTIONS(6089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6087), + [anon_sym_BSLASHnewlabel] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand] = ACTIONS(6089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdef] = ACTIONS(6089), + [anon_sym_BSLASHlet] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6089), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6089), + [anon_sym_BSLASHgls] = ACTIONS(6089), + [anon_sym_BSLASHGls] = ACTIONS(6089), + [anon_sym_BSLASHGLS] = ACTIONS(6089), + [anon_sym_BSLASHglspl] = ACTIONS(6089), + [anon_sym_BSLASHGlspl] = ACTIONS(6089), + [anon_sym_BSLASHGLSpl] = ACTIONS(6089), + [anon_sym_BSLASHglsdisp] = ACTIONS(6089), + [anon_sym_BSLASHglslink] = ACTIONS(6089), + [anon_sym_BSLASHglstext] = ACTIONS(6089), + [anon_sym_BSLASHGlstext] = ACTIONS(6089), + [anon_sym_BSLASHGLStext] = ACTIONS(6089), + [anon_sym_BSLASHglsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6089), + [anon_sym_BSLASHglsplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSplural] = ACTIONS(6089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6089), + [anon_sym_BSLASHglsname] = ACTIONS(6089), + [anon_sym_BSLASHGlsname] = ACTIONS(6089), + [anon_sym_BSLASHGLSname] = ACTIONS(6089), + [anon_sym_BSLASHglssymbol] = ACTIONS(6089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6089), + [anon_sym_BSLASHglsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6089), + [anon_sym_BSLASHglsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6089), + [anon_sym_BSLASHglsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6089), + [anon_sym_BSLASHglsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6089), + [anon_sym_BSLASHglsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6089), + [anon_sym_BSLASHnewacronym] = ACTIONS(6089), + [anon_sym_BSLASHacrshort] = ACTIONS(6089), + [anon_sym_BSLASHAcrshort] = ACTIONS(6089), + [anon_sym_BSLASHACRshort] = ACTIONS(6089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6089), + [anon_sym_BSLASHacrlong] = ACTIONS(6089), + [anon_sym_BSLASHAcrlong] = ACTIONS(6089), + [anon_sym_BSLASHACRlong] = ACTIONS(6089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6089), + [anon_sym_BSLASHacrfull] = ACTIONS(6089), + [anon_sym_BSLASHAcrfull] = ACTIONS(6089), + [anon_sym_BSLASHACRfull] = ACTIONS(6089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6089), + [anon_sym_BSLASHacs] = ACTIONS(6089), + [anon_sym_BSLASHAcs] = ACTIONS(6089), + [anon_sym_BSLASHacsp] = ACTIONS(6089), + [anon_sym_BSLASHAcsp] = ACTIONS(6089), + [anon_sym_BSLASHacl] = ACTIONS(6089), + [anon_sym_BSLASHAcl] = ACTIONS(6089), + [anon_sym_BSLASHaclp] = ACTIONS(6089), + [anon_sym_BSLASHAclp] = ACTIONS(6089), + [anon_sym_BSLASHacf] = ACTIONS(6089), + [anon_sym_BSLASHAcf] = ACTIONS(6089), + [anon_sym_BSLASHacfp] = ACTIONS(6089), + [anon_sym_BSLASHAcfp] = ACTIONS(6089), + [anon_sym_BSLASHac] = ACTIONS(6089), + [anon_sym_BSLASHAc] = ACTIONS(6089), + [anon_sym_BSLASHacp] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6089), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6089), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6087), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6089), + [anon_sym_BSLASHcolor] = ACTIONS(6089), + [anon_sym_BSLASHcolorbox] = ACTIONS(6089), + [anon_sym_BSLASHtextcolor] = ACTIONS(6089), + [anon_sym_BSLASHpagecolor] = ACTIONS(6089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6089), + }, + [1711] = { + [sym_command_name] = ACTIONS(5807), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5807), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [sym_word] = ACTIONS(5807), + [sym_placeholder] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym__] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5807), + [anon_sym_SQUOTE] = ACTIONS(5807), + [anon_sym_BSLASHtitle] = ACTIONS(5807), + [anon_sym_BSLASHauthor] = ACTIONS(5807), + [anon_sym_BSLASHusepackage] = ACTIONS(5807), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5807), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5807), + [anon_sym_BSLASHinclude] = ACTIONS(5807), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5807), + [anon_sym_BSLASHinput] = ACTIONS(5807), + [anon_sym_BSLASHsubfile] = ACTIONS(5807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5807), + [anon_sym_BSLASHbibliography] = ACTIONS(5807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5807), + [anon_sym_BSLASHincludesvg] = ACTIONS(5807), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5807), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5807), + [anon_sym_BSLASHimport] = ACTIONS(5807), + [anon_sym_BSLASHsubimport] = ACTIONS(5807), + [anon_sym_BSLASHinputfrom] = ACTIONS(5807), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5807), + [anon_sym_BSLASHincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5807), + [anon_sym_BSLASHcaption] = ACTIONS(5807), + [anon_sym_BSLASHcite] = ACTIONS(5807), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCite] = ACTIONS(5807), + [anon_sym_BSLASHnocite] = ACTIONS(5807), + [anon_sym_BSLASHcitet] = ACTIONS(5807), + [anon_sym_BSLASHcitep] = ACTIONS(5807), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteauthor] = ACTIONS(5807), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5807), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitetitle] = ACTIONS(5807), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteyear] = ACTIONS(5807), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5805), + [anon_sym_BSLASHcitedate] = ACTIONS(5807), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5805), + [anon_sym_BSLASHciteurl] = ACTIONS(5807), + [anon_sym_BSLASHfullcite] = ACTIONS(5807), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5807), + [anon_sym_BSLASHcitealt] = ACTIONS(5807), + [anon_sym_BSLASHcitealp] = ACTIONS(5807), + [anon_sym_BSLASHcitetext] = ACTIONS(5807), + [anon_sym_BSLASHparencite] = ACTIONS(5807), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHParencite] = ACTIONS(5807), + [anon_sym_BSLASHfootcite] = ACTIONS(5807), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5807), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5807), + [anon_sym_BSLASHtextcite] = ACTIONS(5807), + [anon_sym_BSLASHTextcite] = ACTIONS(5807), + [anon_sym_BSLASHsmartcite] = ACTIONS(5807), + [anon_sym_BSLASHSmartcite] = ACTIONS(5807), + [anon_sym_BSLASHsupercite] = ACTIONS(5807), + [anon_sym_BSLASHautocite] = ACTIONS(5807), + [anon_sym_BSLASHAutocite] = ACTIONS(5807), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5805), + [anon_sym_BSLASHvolcite] = ACTIONS(5807), + [anon_sym_BSLASHVolcite] = ACTIONS(5807), + [anon_sym_BSLASHpvolcite] = ACTIONS(5807), + [anon_sym_BSLASHPvolcite] = ACTIONS(5807), + [anon_sym_BSLASHfvolcite] = ACTIONS(5807), + [anon_sym_BSLASHftvolcite] = ACTIONS(5807), + [anon_sym_BSLASHsvolcite] = ACTIONS(5807), + [anon_sym_BSLASHSvolcite] = ACTIONS(5807), + [anon_sym_BSLASHtvolcite] = ACTIONS(5807), + [anon_sym_BSLASHTvolcite] = ACTIONS(5807), + [anon_sym_BSLASHavolcite] = ACTIONS(5807), + [anon_sym_BSLASHAvolcite] = ACTIONS(5807), + [anon_sym_BSLASHnotecite] = ACTIONS(5807), + [anon_sym_BSLASHNotecite] = ACTIONS(5807), + [anon_sym_BSLASHpnotecite] = ACTIONS(5807), + [anon_sym_BSLASHPnotecite] = ACTIONS(5807), + [anon_sym_BSLASHfnotecite] = ACTIONS(5807), + [anon_sym_BSLASHlabel] = ACTIONS(5807), + [anon_sym_BSLASHref] = ACTIONS(5807), + [anon_sym_BSLASHeqref] = ACTIONS(5807), + [anon_sym_BSLASHvref] = ACTIONS(5807), + [anon_sym_BSLASHVref] = ACTIONS(5807), + [anon_sym_BSLASHautoref] = ACTIONS(5807), + [anon_sym_BSLASHpageref] = ACTIONS(5807), + [anon_sym_BSLASHcref] = ACTIONS(5807), + [anon_sym_BSLASHCref] = ACTIONS(5807), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnameCref] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5807), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5807), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5807), + [anon_sym_BSLASHlabelcref] = ACTIONS(5807), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange] = ACTIONS(5807), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHCrefrange] = ACTIONS(5807), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5805), + [anon_sym_BSLASHnewlabel] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand] = ACTIONS(5807), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5807), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5807), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5805), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdef] = ACTIONS(5807), + [anon_sym_BSLASHlet] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5807), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5807), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5807), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5807), + [anon_sym_BSLASHgls] = ACTIONS(5807), + [anon_sym_BSLASHGls] = ACTIONS(5807), + [anon_sym_BSLASHGLS] = ACTIONS(5807), + [anon_sym_BSLASHglspl] = ACTIONS(5807), + [anon_sym_BSLASHGlspl] = ACTIONS(5807), + [anon_sym_BSLASHGLSpl] = ACTIONS(5807), + [anon_sym_BSLASHglsdisp] = ACTIONS(5807), + [anon_sym_BSLASHglslink] = ACTIONS(5807), + [anon_sym_BSLASHglstext] = ACTIONS(5807), + [anon_sym_BSLASHGlstext] = ACTIONS(5807), + [anon_sym_BSLASHGLStext] = ACTIONS(5807), + [anon_sym_BSLASHglsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5807), + [anon_sym_BSLASHglsplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSplural] = ACTIONS(5807), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5807), + [anon_sym_BSLASHglsname] = ACTIONS(5807), + [anon_sym_BSLASHGlsname] = ACTIONS(5807), + [anon_sym_BSLASHGLSname] = ACTIONS(5807), + [anon_sym_BSLASHglssymbol] = ACTIONS(5807), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5807), + [anon_sym_BSLASHglsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5807), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5807), + [anon_sym_BSLASHglsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5807), + [anon_sym_BSLASHglsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5807), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5807), + [anon_sym_BSLASHglsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5807), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5807), + [anon_sym_BSLASHglsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5807), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5807), + [anon_sym_BSLASHnewacronym] = ACTIONS(5807), + [anon_sym_BSLASHacrshort] = ACTIONS(5807), + [anon_sym_BSLASHAcrshort] = ACTIONS(5807), + [anon_sym_BSLASHACRshort] = ACTIONS(5807), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5807), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5807), + [anon_sym_BSLASHacrlong] = ACTIONS(5807), + [anon_sym_BSLASHAcrlong] = ACTIONS(5807), + [anon_sym_BSLASHACRlong] = ACTIONS(5807), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5807), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5807), + [anon_sym_BSLASHacrfull] = ACTIONS(5807), + [anon_sym_BSLASHAcrfull] = ACTIONS(5807), + [anon_sym_BSLASHACRfull] = ACTIONS(5807), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5807), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5807), + [anon_sym_BSLASHacs] = ACTIONS(5807), + [anon_sym_BSLASHAcs] = ACTIONS(5807), + [anon_sym_BSLASHacsp] = ACTIONS(5807), + [anon_sym_BSLASHAcsp] = ACTIONS(5807), + [anon_sym_BSLASHacl] = ACTIONS(5807), + [anon_sym_BSLASHAcl] = ACTIONS(5807), + [anon_sym_BSLASHaclp] = ACTIONS(5807), + [anon_sym_BSLASHAclp] = ACTIONS(5807), + [anon_sym_BSLASHacf] = ACTIONS(5807), + [anon_sym_BSLASHAcf] = ACTIONS(5807), + [anon_sym_BSLASHacfp] = ACTIONS(5807), + [anon_sym_BSLASHAcfp] = ACTIONS(5807), + [anon_sym_BSLASHac] = ACTIONS(5807), + [anon_sym_BSLASHAc] = ACTIONS(5807), + [anon_sym_BSLASHacp] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5807), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5807), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5807), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5807), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5807), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5805), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5807), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5807), + [anon_sym_BSLASHcolor] = ACTIONS(5807), + [anon_sym_BSLASHcolorbox] = ACTIONS(5807), + [anon_sym_BSLASHtextcolor] = ACTIONS(5807), + [anon_sym_BSLASHpagecolor] = ACTIONS(5807), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5807), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5807), + }, + [1712] = { + [sym_command_name] = ACTIONS(6061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_RBRACK] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [sym_word] = ACTIONS(6061), + [sym_placeholder] = ACTIONS(6059), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_CARET] = ACTIONS(6061), + [anon_sym__] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_BANG] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_SQUOTE] = ACTIONS(6061), + [anon_sym_BSLASHtitle] = ACTIONS(6061), + [anon_sym_BSLASHauthor] = ACTIONS(6061), + [anon_sym_BSLASHusepackage] = ACTIONS(6061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6061), + [anon_sym_BSLASHinclude] = ACTIONS(6061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6061), + [anon_sym_BSLASHinput] = ACTIONS(6061), + [anon_sym_BSLASHsubfile] = ACTIONS(6061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6061), + [anon_sym_BSLASHbibliography] = ACTIONS(6061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6061), + [anon_sym_BSLASHincludesvg] = ACTIONS(6061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6061), + [anon_sym_BSLASHimport] = ACTIONS(6061), + [anon_sym_BSLASHsubimport] = ACTIONS(6061), + [anon_sym_BSLASHinputfrom] = ACTIONS(6061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6061), + [anon_sym_BSLASHincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6061), + [anon_sym_BSLASHcaption] = ACTIONS(6061), + [anon_sym_BSLASHcite] = ACTIONS(6061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCite] = ACTIONS(6061), + [anon_sym_BSLASHnocite] = ACTIONS(6061), + [anon_sym_BSLASHcitet] = ACTIONS(6061), + [anon_sym_BSLASHcitep] = ACTIONS(6061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteauthor] = ACTIONS(6061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitetitle] = ACTIONS(6061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteyear] = ACTIONS(6061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), + [anon_sym_BSLASHcitedate] = ACTIONS(6061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), + [anon_sym_BSLASHciteurl] = ACTIONS(6061), + [anon_sym_BSLASHfullcite] = ACTIONS(6061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6061), + [anon_sym_BSLASHcitealt] = ACTIONS(6061), + [anon_sym_BSLASHcitealp] = ACTIONS(6061), + [anon_sym_BSLASHcitetext] = ACTIONS(6061), + [anon_sym_BSLASHparencite] = ACTIONS(6061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHParencite] = ACTIONS(6061), + [anon_sym_BSLASHfootcite] = ACTIONS(6061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6061), + [anon_sym_BSLASHtextcite] = ACTIONS(6061), + [anon_sym_BSLASHTextcite] = ACTIONS(6061), + [anon_sym_BSLASHsmartcite] = ACTIONS(6061), + [anon_sym_BSLASHSmartcite] = ACTIONS(6061), + [anon_sym_BSLASHsupercite] = ACTIONS(6061), + [anon_sym_BSLASHautocite] = ACTIONS(6061), + [anon_sym_BSLASHAutocite] = ACTIONS(6061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), + [anon_sym_BSLASHvolcite] = ACTIONS(6061), + [anon_sym_BSLASHVolcite] = ACTIONS(6061), + [anon_sym_BSLASHpvolcite] = ACTIONS(6061), + [anon_sym_BSLASHPvolcite] = ACTIONS(6061), + [anon_sym_BSLASHfvolcite] = ACTIONS(6061), + [anon_sym_BSLASHftvolcite] = ACTIONS(6061), + [anon_sym_BSLASHsvolcite] = ACTIONS(6061), + [anon_sym_BSLASHSvolcite] = ACTIONS(6061), + [anon_sym_BSLASHtvolcite] = ACTIONS(6061), + [anon_sym_BSLASHTvolcite] = ACTIONS(6061), + [anon_sym_BSLASHavolcite] = ACTIONS(6061), + [anon_sym_BSLASHAvolcite] = ACTIONS(6061), + [anon_sym_BSLASHnotecite] = ACTIONS(6061), + [anon_sym_BSLASHNotecite] = ACTIONS(6061), + [anon_sym_BSLASHpnotecite] = ACTIONS(6061), + [anon_sym_BSLASHPnotecite] = ACTIONS(6061), + [anon_sym_BSLASHfnotecite] = ACTIONS(6061), + [anon_sym_BSLASHlabel] = ACTIONS(6061), + [anon_sym_BSLASHref] = ACTIONS(6061), + [anon_sym_BSLASHeqref] = ACTIONS(6061), + [anon_sym_BSLASHvref] = ACTIONS(6061), + [anon_sym_BSLASHVref] = ACTIONS(6061), + [anon_sym_BSLASHautoref] = ACTIONS(6061), + [anon_sym_BSLASHpageref] = ACTIONS(6061), + [anon_sym_BSLASHcref] = ACTIONS(6061), + [anon_sym_BSLASHCref] = ACTIONS(6061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnameCref] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6061), + [anon_sym_BSLASHlabelcref] = ACTIONS(6061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange] = ACTIONS(6061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHCrefrange] = ACTIONS(6061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), + [anon_sym_BSLASHnewlabel] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand] = ACTIONS(6061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdef] = ACTIONS(6061), + [anon_sym_BSLASHlet] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6061), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6061), + [anon_sym_BSLASHgls] = ACTIONS(6061), + [anon_sym_BSLASHGls] = ACTIONS(6061), + [anon_sym_BSLASHGLS] = ACTIONS(6061), + [anon_sym_BSLASHglspl] = ACTIONS(6061), + [anon_sym_BSLASHGlspl] = ACTIONS(6061), + [anon_sym_BSLASHGLSpl] = ACTIONS(6061), + [anon_sym_BSLASHglsdisp] = ACTIONS(6061), + [anon_sym_BSLASHglslink] = ACTIONS(6061), + [anon_sym_BSLASHglstext] = ACTIONS(6061), + [anon_sym_BSLASHGlstext] = ACTIONS(6061), + [anon_sym_BSLASHGLStext] = ACTIONS(6061), + [anon_sym_BSLASHglsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6061), + [anon_sym_BSLASHglsplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSplural] = ACTIONS(6061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6061), + [anon_sym_BSLASHglsname] = ACTIONS(6061), + [anon_sym_BSLASHGlsname] = ACTIONS(6061), + [anon_sym_BSLASHGLSname] = ACTIONS(6061), + [anon_sym_BSLASHglssymbol] = ACTIONS(6061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6061), + [anon_sym_BSLASHglsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6061), + [anon_sym_BSLASHglsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6061), + [anon_sym_BSLASHglsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6061), + [anon_sym_BSLASHglsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6061), + [anon_sym_BSLASHglsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6061), + [anon_sym_BSLASHnewacronym] = ACTIONS(6061), + [anon_sym_BSLASHacrshort] = ACTIONS(6061), + [anon_sym_BSLASHAcrshort] = ACTIONS(6061), + [anon_sym_BSLASHACRshort] = ACTIONS(6061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6061), + [anon_sym_BSLASHacrlong] = ACTIONS(6061), + [anon_sym_BSLASHAcrlong] = ACTIONS(6061), + [anon_sym_BSLASHACRlong] = ACTIONS(6061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6061), + [anon_sym_BSLASHacrfull] = ACTIONS(6061), + [anon_sym_BSLASHAcrfull] = ACTIONS(6061), + [anon_sym_BSLASHACRfull] = ACTIONS(6061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6061), + [anon_sym_BSLASHacs] = ACTIONS(6061), + [anon_sym_BSLASHAcs] = ACTIONS(6061), + [anon_sym_BSLASHacsp] = ACTIONS(6061), + [anon_sym_BSLASHAcsp] = ACTIONS(6061), + [anon_sym_BSLASHacl] = ACTIONS(6061), + [anon_sym_BSLASHAcl] = ACTIONS(6061), + [anon_sym_BSLASHaclp] = ACTIONS(6061), + [anon_sym_BSLASHAclp] = ACTIONS(6061), + [anon_sym_BSLASHacf] = ACTIONS(6061), + [anon_sym_BSLASHAcf] = ACTIONS(6061), + [anon_sym_BSLASHacfp] = ACTIONS(6061), + [anon_sym_BSLASHAcfp] = ACTIONS(6061), + [anon_sym_BSLASHac] = ACTIONS(6061), + [anon_sym_BSLASHAc] = ACTIONS(6061), + [anon_sym_BSLASHacp] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6061), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6061), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6061), + [anon_sym_BSLASHcolor] = ACTIONS(6061), + [anon_sym_BSLASHcolorbox] = ACTIONS(6061), + [anon_sym_BSLASHtextcolor] = ACTIONS(6061), + [anon_sym_BSLASHpagecolor] = ACTIONS(6061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6061), + }, + [1713] = { + [sym_brack_group_text] = STATE(1759), + [sym_command_name] = ACTIONS(5601), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(6359), + [anon_sym_RBRACK] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5599), + [anon_sym_RBRACE] = ACTIONS(5599), + [sym_word] = ACTIONS(5601), + [sym_placeholder] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym__] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_BSLASHtitle] = ACTIONS(5601), + [anon_sym_BSLASHauthor] = ACTIONS(5601), + [anon_sym_BSLASHusepackage] = ACTIONS(5601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5601), + [anon_sym_BSLASHinclude] = ACTIONS(5601), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5601), + [anon_sym_BSLASHinput] = ACTIONS(5601), + [anon_sym_BSLASHsubfile] = ACTIONS(5601), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5601), + [anon_sym_BSLASHbibliography] = ACTIONS(5601), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5601), + [anon_sym_BSLASHincludesvg] = ACTIONS(5601), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5601), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5601), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5601), + [anon_sym_BSLASHimport] = ACTIONS(5601), + [anon_sym_BSLASHsubimport] = ACTIONS(5601), + [anon_sym_BSLASHinputfrom] = ACTIONS(5601), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5601), + [anon_sym_BSLASHincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5601), + [anon_sym_BSLASHcaption] = ACTIONS(5601), + [anon_sym_BSLASHcite] = ACTIONS(5601), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCite] = ACTIONS(5601), + [anon_sym_BSLASHnocite] = ACTIONS(5601), + [anon_sym_BSLASHcitet] = ACTIONS(5601), + [anon_sym_BSLASHcitep] = ACTIONS(5601), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteauthor] = ACTIONS(5601), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5601), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitetitle] = ACTIONS(5601), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteyear] = ACTIONS(5601), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5599), + [anon_sym_BSLASHcitedate] = ACTIONS(5601), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5599), + [anon_sym_BSLASHciteurl] = ACTIONS(5601), + [anon_sym_BSLASHfullcite] = ACTIONS(5601), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5601), + [anon_sym_BSLASHcitealt] = ACTIONS(5601), + [anon_sym_BSLASHcitealp] = ACTIONS(5601), + [anon_sym_BSLASHcitetext] = ACTIONS(5601), + [anon_sym_BSLASHparencite] = ACTIONS(5601), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHParencite] = ACTIONS(5601), + [anon_sym_BSLASHfootcite] = ACTIONS(5601), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5601), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5601), + [anon_sym_BSLASHtextcite] = ACTIONS(5601), + [anon_sym_BSLASHTextcite] = ACTIONS(5601), + [anon_sym_BSLASHsmartcite] = ACTIONS(5601), + [anon_sym_BSLASHSmartcite] = ACTIONS(5601), + [anon_sym_BSLASHsupercite] = ACTIONS(5601), + [anon_sym_BSLASHautocite] = ACTIONS(5601), + [anon_sym_BSLASHAutocite] = ACTIONS(5601), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5599), + [anon_sym_BSLASHvolcite] = ACTIONS(5601), + [anon_sym_BSLASHVolcite] = ACTIONS(5601), + [anon_sym_BSLASHpvolcite] = ACTIONS(5601), + [anon_sym_BSLASHPvolcite] = ACTIONS(5601), + [anon_sym_BSLASHfvolcite] = ACTIONS(5601), + [anon_sym_BSLASHftvolcite] = ACTIONS(5601), + [anon_sym_BSLASHsvolcite] = ACTIONS(5601), + [anon_sym_BSLASHSvolcite] = ACTIONS(5601), + [anon_sym_BSLASHtvolcite] = ACTIONS(5601), + [anon_sym_BSLASHTvolcite] = ACTIONS(5601), + [anon_sym_BSLASHavolcite] = ACTIONS(5601), + [anon_sym_BSLASHAvolcite] = ACTIONS(5601), + [anon_sym_BSLASHnotecite] = ACTIONS(5601), + [anon_sym_BSLASHNotecite] = ACTIONS(5601), + [anon_sym_BSLASHpnotecite] = ACTIONS(5601), + [anon_sym_BSLASHPnotecite] = ACTIONS(5601), + [anon_sym_BSLASHfnotecite] = ACTIONS(5601), + [anon_sym_BSLASHlabel] = ACTIONS(5601), + [anon_sym_BSLASHref] = ACTIONS(5601), + [anon_sym_BSLASHeqref] = ACTIONS(5601), + [anon_sym_BSLASHvref] = ACTIONS(5601), + [anon_sym_BSLASHVref] = ACTIONS(5601), + [anon_sym_BSLASHautoref] = ACTIONS(5601), + [anon_sym_BSLASHpageref] = ACTIONS(5601), + [anon_sym_BSLASHcref] = ACTIONS(5601), + [anon_sym_BSLASHCref] = ACTIONS(5601), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnameCref] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5601), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5601), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5601), + [anon_sym_BSLASHlabelcref] = ACTIONS(5601), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange] = ACTIONS(5601), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHCrefrange] = ACTIONS(5601), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5599), + [anon_sym_BSLASHnewlabel] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand] = ACTIONS(5601), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5601), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5601), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5599), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5601), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdef] = ACTIONS(5601), + [anon_sym_BSLASHlet] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5601), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5601), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5601), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5601), + [anon_sym_BSLASHgls] = ACTIONS(5601), + [anon_sym_BSLASHGls] = ACTIONS(5601), + [anon_sym_BSLASHGLS] = ACTIONS(5601), + [anon_sym_BSLASHglspl] = ACTIONS(5601), + [anon_sym_BSLASHGlspl] = ACTIONS(5601), + [anon_sym_BSLASHGLSpl] = ACTIONS(5601), + [anon_sym_BSLASHglsdisp] = ACTIONS(5601), + [anon_sym_BSLASHglslink] = ACTIONS(5601), + [anon_sym_BSLASHglstext] = ACTIONS(5601), + [anon_sym_BSLASHGlstext] = ACTIONS(5601), + [anon_sym_BSLASHGLStext] = ACTIONS(5601), + [anon_sym_BSLASHglsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5601), + [anon_sym_BSLASHglsplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSplural] = ACTIONS(5601), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5601), + [anon_sym_BSLASHglsname] = ACTIONS(5601), + [anon_sym_BSLASHGlsname] = ACTIONS(5601), + [anon_sym_BSLASHGLSname] = ACTIONS(5601), + [anon_sym_BSLASHglssymbol] = ACTIONS(5601), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5601), + [anon_sym_BSLASHglsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5601), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5601), + [anon_sym_BSLASHglsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5601), + [anon_sym_BSLASHglsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5601), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5601), + [anon_sym_BSLASHglsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5601), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5601), + [anon_sym_BSLASHglsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5601), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5601), + [anon_sym_BSLASHnewacronym] = ACTIONS(5601), + [anon_sym_BSLASHacrshort] = ACTIONS(5601), + [anon_sym_BSLASHAcrshort] = ACTIONS(5601), + [anon_sym_BSLASHACRshort] = ACTIONS(5601), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5601), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5601), + [anon_sym_BSLASHacrlong] = ACTIONS(5601), + [anon_sym_BSLASHAcrlong] = ACTIONS(5601), + [anon_sym_BSLASHACRlong] = ACTIONS(5601), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5601), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5601), + [anon_sym_BSLASHacrfull] = ACTIONS(5601), + [anon_sym_BSLASHAcrfull] = ACTIONS(5601), + [anon_sym_BSLASHACRfull] = ACTIONS(5601), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5601), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5601), + [anon_sym_BSLASHacs] = ACTIONS(5601), + [anon_sym_BSLASHAcs] = ACTIONS(5601), + [anon_sym_BSLASHacsp] = ACTIONS(5601), + [anon_sym_BSLASHAcsp] = ACTIONS(5601), + [anon_sym_BSLASHacl] = ACTIONS(5601), + [anon_sym_BSLASHAcl] = ACTIONS(5601), + [anon_sym_BSLASHaclp] = ACTIONS(5601), + [anon_sym_BSLASHAclp] = ACTIONS(5601), + [anon_sym_BSLASHacf] = ACTIONS(5601), + [anon_sym_BSLASHAcf] = ACTIONS(5601), + [anon_sym_BSLASHacfp] = ACTIONS(5601), + [anon_sym_BSLASHAcfp] = ACTIONS(5601), + [anon_sym_BSLASHac] = ACTIONS(5601), + [anon_sym_BSLASHAc] = ACTIONS(5601), + [anon_sym_BSLASHacp] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5601), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5601), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5601), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5601), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5601), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5599), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5601), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5601), + [anon_sym_BSLASHcolor] = ACTIONS(5601), + [anon_sym_BSLASHcolorbox] = ACTIONS(5601), + [anon_sym_BSLASHtextcolor] = ACTIONS(5601), + [anon_sym_BSLASHpagecolor] = ACTIONS(5601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5601), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5601), + }, + [1714] = { + [sym_command_name] = ACTIONS(5403), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5403), + [anon_sym_BSLASHfi] = ACTIONS(6361), + [anon_sym_RBRACK] = ACTIONS(5401), + [anon_sym_COMMA] = ACTIONS(5401), + [anon_sym_EQ] = ACTIONS(5401), + [anon_sym_RBRACE] = ACTIONS(5401), + [sym_word] = ACTIONS(5403), + [sym_placeholder] = ACTIONS(5401), + [anon_sym_PLUS] = ACTIONS(5403), + [anon_sym_DASH] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym__] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5403), + [anon_sym_GT] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_SQUOTE] = ACTIONS(5403), + [anon_sym_BSLASHtitle] = ACTIONS(5403), + [anon_sym_BSLASHauthor] = ACTIONS(5403), + [anon_sym_BSLASHusepackage] = ACTIONS(5403), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5403), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5403), + [anon_sym_BSLASHinclude] = ACTIONS(5403), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5403), + [anon_sym_BSLASHinput] = ACTIONS(5403), + [anon_sym_BSLASHsubfile] = ACTIONS(5403), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5403), + [anon_sym_BSLASHbibliography] = ACTIONS(5403), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5403), + [anon_sym_BSLASHincludesvg] = ACTIONS(5403), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5403), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5403), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5403), + [anon_sym_BSLASHimport] = ACTIONS(5403), + [anon_sym_BSLASHsubimport] = ACTIONS(5403), + [anon_sym_BSLASHinputfrom] = ACTIONS(5403), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5403), + [anon_sym_BSLASHincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5403), + [anon_sym_BSLASHcaption] = ACTIONS(5403), + [anon_sym_BSLASHcite] = ACTIONS(5403), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCite] = ACTIONS(5403), + [anon_sym_BSLASHnocite] = ACTIONS(5403), + [anon_sym_BSLASHcitet] = ACTIONS(5403), + [anon_sym_BSLASHcitep] = ACTIONS(5403), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteauthor] = ACTIONS(5403), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5403), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitetitle] = ACTIONS(5403), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteyear] = ACTIONS(5403), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5401), + [anon_sym_BSLASHcitedate] = ACTIONS(5403), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5401), + [anon_sym_BSLASHciteurl] = ACTIONS(5403), + [anon_sym_BSLASHfullcite] = ACTIONS(5403), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5403), + [anon_sym_BSLASHcitealt] = ACTIONS(5403), + [anon_sym_BSLASHcitealp] = ACTIONS(5403), + [anon_sym_BSLASHcitetext] = ACTIONS(5403), + [anon_sym_BSLASHparencite] = ACTIONS(5403), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHParencite] = ACTIONS(5403), + [anon_sym_BSLASHfootcite] = ACTIONS(5403), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5403), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5403), + [anon_sym_BSLASHtextcite] = ACTIONS(5403), + [anon_sym_BSLASHTextcite] = ACTIONS(5403), + [anon_sym_BSLASHsmartcite] = ACTIONS(5403), + [anon_sym_BSLASHSmartcite] = ACTIONS(5403), + [anon_sym_BSLASHsupercite] = ACTIONS(5403), + [anon_sym_BSLASHautocite] = ACTIONS(5403), + [anon_sym_BSLASHAutocite] = ACTIONS(5403), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5401), + [anon_sym_BSLASHvolcite] = ACTIONS(5403), + [anon_sym_BSLASHVolcite] = ACTIONS(5403), + [anon_sym_BSLASHpvolcite] = ACTIONS(5403), + [anon_sym_BSLASHPvolcite] = ACTIONS(5403), + [anon_sym_BSLASHfvolcite] = ACTIONS(5403), + [anon_sym_BSLASHftvolcite] = ACTIONS(5403), + [anon_sym_BSLASHsvolcite] = ACTIONS(5403), + [anon_sym_BSLASHSvolcite] = ACTIONS(5403), + [anon_sym_BSLASHtvolcite] = ACTIONS(5403), + [anon_sym_BSLASHTvolcite] = ACTIONS(5403), + [anon_sym_BSLASHavolcite] = ACTIONS(5403), + [anon_sym_BSLASHAvolcite] = ACTIONS(5403), + [anon_sym_BSLASHnotecite] = ACTIONS(5403), + [anon_sym_BSLASHNotecite] = ACTIONS(5403), + [anon_sym_BSLASHpnotecite] = ACTIONS(5403), + [anon_sym_BSLASHPnotecite] = ACTIONS(5403), + [anon_sym_BSLASHfnotecite] = ACTIONS(5403), + [anon_sym_BSLASHlabel] = ACTIONS(5403), + [anon_sym_BSLASHref] = ACTIONS(5403), + [anon_sym_BSLASHeqref] = ACTIONS(5403), + [anon_sym_BSLASHvref] = ACTIONS(5403), + [anon_sym_BSLASHVref] = ACTIONS(5403), + [anon_sym_BSLASHautoref] = ACTIONS(5403), + [anon_sym_BSLASHpageref] = ACTIONS(5403), + [anon_sym_BSLASHcref] = ACTIONS(5403), + [anon_sym_BSLASHCref] = ACTIONS(5403), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnameCref] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5403), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5403), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5403), + [anon_sym_BSLASHlabelcref] = ACTIONS(5403), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange] = ACTIONS(5403), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHCrefrange] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5401), + [anon_sym_BSLASHnewlabel] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand] = ACTIONS(5403), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5403), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5403), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5403), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdef] = ACTIONS(5403), + [anon_sym_BSLASHlet] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5403), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5403), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5403), + [anon_sym_BSLASHgls] = ACTIONS(5403), + [anon_sym_BSLASHGls] = ACTIONS(5403), + [anon_sym_BSLASHGLS] = ACTIONS(5403), + [anon_sym_BSLASHglspl] = ACTIONS(5403), + [anon_sym_BSLASHGlspl] = ACTIONS(5403), + [anon_sym_BSLASHGLSpl] = ACTIONS(5403), + [anon_sym_BSLASHglsdisp] = ACTIONS(5403), + [anon_sym_BSLASHglslink] = ACTIONS(5403), + [anon_sym_BSLASHglstext] = ACTIONS(5403), + [anon_sym_BSLASHGlstext] = ACTIONS(5403), + [anon_sym_BSLASHGLStext] = ACTIONS(5403), + [anon_sym_BSLASHglsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5403), + [anon_sym_BSLASHglsplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSplural] = ACTIONS(5403), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5403), + [anon_sym_BSLASHglsname] = ACTIONS(5403), + [anon_sym_BSLASHGlsname] = ACTIONS(5403), + [anon_sym_BSLASHGLSname] = ACTIONS(5403), + [anon_sym_BSLASHglssymbol] = ACTIONS(5403), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5403), + [anon_sym_BSLASHglsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5403), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5403), + [anon_sym_BSLASHglsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5403), + [anon_sym_BSLASHglsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5403), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5403), + [anon_sym_BSLASHglsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5403), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5403), + [anon_sym_BSLASHglsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5403), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5403), + [anon_sym_BSLASHnewacronym] = ACTIONS(5403), + [anon_sym_BSLASHacrshort] = ACTIONS(5403), + [anon_sym_BSLASHAcrshort] = ACTIONS(5403), + [anon_sym_BSLASHACRshort] = ACTIONS(5403), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5403), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5403), + [anon_sym_BSLASHacrlong] = ACTIONS(5403), + [anon_sym_BSLASHAcrlong] = ACTIONS(5403), + [anon_sym_BSLASHACRlong] = ACTIONS(5403), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5403), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5403), + [anon_sym_BSLASHacrfull] = ACTIONS(5403), + [anon_sym_BSLASHAcrfull] = ACTIONS(5403), + [anon_sym_BSLASHACRfull] = ACTIONS(5403), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5403), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5403), + [anon_sym_BSLASHacs] = ACTIONS(5403), + [anon_sym_BSLASHAcs] = ACTIONS(5403), + [anon_sym_BSLASHacsp] = ACTIONS(5403), + [anon_sym_BSLASHAcsp] = ACTIONS(5403), + [anon_sym_BSLASHacl] = ACTIONS(5403), + [anon_sym_BSLASHAcl] = ACTIONS(5403), + [anon_sym_BSLASHaclp] = ACTIONS(5403), + [anon_sym_BSLASHAclp] = ACTIONS(5403), + [anon_sym_BSLASHacf] = ACTIONS(5403), + [anon_sym_BSLASHAcf] = ACTIONS(5403), + [anon_sym_BSLASHacfp] = ACTIONS(5403), + [anon_sym_BSLASHAcfp] = ACTIONS(5403), + [anon_sym_BSLASHac] = ACTIONS(5403), + [anon_sym_BSLASHAc] = ACTIONS(5403), + [anon_sym_BSLASHacp] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5403), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5403), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5403), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5403), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5403), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5403), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5403), + [anon_sym_BSLASHcolor] = ACTIONS(5403), + [anon_sym_BSLASHcolorbox] = ACTIONS(5403), + [anon_sym_BSLASHtextcolor] = ACTIONS(5403), + [anon_sym_BSLASHpagecolor] = ACTIONS(5403), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5403), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5403), + [sym__trivia_raw_fi] = ACTIONS(6363), + }, + [1715] = { + [sym_command_name] = ACTIONS(5877), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5877), + [anon_sym_LBRACK] = ACTIONS(5875), + [anon_sym_RBRACK] = ACTIONS(5875), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_LBRACE] = ACTIONS(5875), + [anon_sym_RBRACE] = ACTIONS(5875), + [sym_word] = ACTIONS(5877), + [sym_placeholder] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5877), + [anon_sym_STAR] = ACTIONS(5877), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_CARET] = ACTIONS(5877), + [anon_sym__] = ACTIONS(5877), + [anon_sym_LT] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_BANG] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5877), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_SQUOTE] = ACTIONS(5877), + [anon_sym_BSLASHtitle] = ACTIONS(5877), + [anon_sym_BSLASHauthor] = ACTIONS(5877), + [anon_sym_BSLASHusepackage] = ACTIONS(5877), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5877), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5877), + [anon_sym_BSLASHinclude] = ACTIONS(5877), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5877), + [anon_sym_BSLASHinput] = ACTIONS(5877), + [anon_sym_BSLASHsubfile] = ACTIONS(5877), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5877), + [anon_sym_BSLASHbibliography] = ACTIONS(5877), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5877), + [anon_sym_BSLASHincludesvg] = ACTIONS(5877), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5877), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5877), + [anon_sym_BSLASHimport] = ACTIONS(5877), + [anon_sym_BSLASHsubimport] = ACTIONS(5877), + [anon_sym_BSLASHinputfrom] = ACTIONS(5877), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5877), + [anon_sym_BSLASHincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5877), + [anon_sym_BSLASHcaption] = ACTIONS(5877), + [anon_sym_BSLASHcite] = ACTIONS(5877), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCite] = ACTIONS(5877), + [anon_sym_BSLASHnocite] = ACTIONS(5877), + [anon_sym_BSLASHcitet] = ACTIONS(5877), + [anon_sym_BSLASHcitep] = ACTIONS(5877), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteauthor] = ACTIONS(5877), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5877), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitetitle] = ACTIONS(5877), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteyear] = ACTIONS(5877), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5875), + [anon_sym_BSLASHcitedate] = ACTIONS(5877), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5875), + [anon_sym_BSLASHciteurl] = ACTIONS(5877), + [anon_sym_BSLASHfullcite] = ACTIONS(5877), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5877), + [anon_sym_BSLASHcitealt] = ACTIONS(5877), + [anon_sym_BSLASHcitealp] = ACTIONS(5877), + [anon_sym_BSLASHcitetext] = ACTIONS(5877), + [anon_sym_BSLASHparencite] = ACTIONS(5877), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHParencite] = ACTIONS(5877), + [anon_sym_BSLASHfootcite] = ACTIONS(5877), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5877), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5877), + [anon_sym_BSLASHtextcite] = ACTIONS(5877), + [anon_sym_BSLASHTextcite] = ACTIONS(5877), + [anon_sym_BSLASHsmartcite] = ACTIONS(5877), + [anon_sym_BSLASHSmartcite] = ACTIONS(5877), + [anon_sym_BSLASHsupercite] = ACTIONS(5877), + [anon_sym_BSLASHautocite] = ACTIONS(5877), + [anon_sym_BSLASHAutocite] = ACTIONS(5877), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5875), + [anon_sym_BSLASHvolcite] = ACTIONS(5877), + [anon_sym_BSLASHVolcite] = ACTIONS(5877), + [anon_sym_BSLASHpvolcite] = ACTIONS(5877), + [anon_sym_BSLASHPvolcite] = ACTIONS(5877), + [anon_sym_BSLASHfvolcite] = ACTIONS(5877), + [anon_sym_BSLASHftvolcite] = ACTIONS(5877), + [anon_sym_BSLASHsvolcite] = ACTIONS(5877), + [anon_sym_BSLASHSvolcite] = ACTIONS(5877), + [anon_sym_BSLASHtvolcite] = ACTIONS(5877), + [anon_sym_BSLASHTvolcite] = ACTIONS(5877), + [anon_sym_BSLASHavolcite] = ACTIONS(5877), + [anon_sym_BSLASHAvolcite] = ACTIONS(5877), + [anon_sym_BSLASHnotecite] = ACTIONS(5877), + [anon_sym_BSLASHNotecite] = ACTIONS(5877), + [anon_sym_BSLASHpnotecite] = ACTIONS(5877), + [anon_sym_BSLASHPnotecite] = ACTIONS(5877), + [anon_sym_BSLASHfnotecite] = ACTIONS(5877), + [anon_sym_BSLASHlabel] = ACTIONS(5877), + [anon_sym_BSLASHref] = ACTIONS(5877), + [anon_sym_BSLASHeqref] = ACTIONS(5877), + [anon_sym_BSLASHvref] = ACTIONS(5877), + [anon_sym_BSLASHVref] = ACTIONS(5877), + [anon_sym_BSLASHautoref] = ACTIONS(5877), + [anon_sym_BSLASHpageref] = ACTIONS(5877), + [anon_sym_BSLASHcref] = ACTIONS(5877), + [anon_sym_BSLASHCref] = ACTIONS(5877), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnameCref] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5877), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5877), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5877), + [anon_sym_BSLASHlabelcref] = ACTIONS(5877), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange] = ACTIONS(5877), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHCrefrange] = ACTIONS(5877), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5875), + [anon_sym_BSLASHnewlabel] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand] = ACTIONS(5877), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5877), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5877), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5875), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5877), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdef] = ACTIONS(5877), + [anon_sym_BSLASHlet] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5877), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5877), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5877), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5877), + [anon_sym_BSLASHgls] = ACTIONS(5877), + [anon_sym_BSLASHGls] = ACTIONS(5877), + [anon_sym_BSLASHGLS] = ACTIONS(5877), + [anon_sym_BSLASHglspl] = ACTIONS(5877), + [anon_sym_BSLASHGlspl] = ACTIONS(5877), + [anon_sym_BSLASHGLSpl] = ACTIONS(5877), + [anon_sym_BSLASHglsdisp] = ACTIONS(5877), + [anon_sym_BSLASHglslink] = ACTIONS(5877), + [anon_sym_BSLASHglstext] = ACTIONS(5877), + [anon_sym_BSLASHGlstext] = ACTIONS(5877), + [anon_sym_BSLASHGLStext] = ACTIONS(5877), + [anon_sym_BSLASHglsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5877), + [anon_sym_BSLASHglsplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSplural] = ACTIONS(5877), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5877), + [anon_sym_BSLASHglsname] = ACTIONS(5877), + [anon_sym_BSLASHGlsname] = ACTIONS(5877), + [anon_sym_BSLASHGLSname] = ACTIONS(5877), + [anon_sym_BSLASHglssymbol] = ACTIONS(5877), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5877), + [anon_sym_BSLASHglsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5877), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5877), + [anon_sym_BSLASHglsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5877), + [anon_sym_BSLASHglsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5877), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5877), + [anon_sym_BSLASHglsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5877), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5877), + [anon_sym_BSLASHglsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5877), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5877), + [anon_sym_BSLASHnewacronym] = ACTIONS(5877), + [anon_sym_BSLASHacrshort] = ACTIONS(5877), + [anon_sym_BSLASHAcrshort] = ACTIONS(5877), + [anon_sym_BSLASHACRshort] = ACTIONS(5877), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5877), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5877), + [anon_sym_BSLASHacrlong] = ACTIONS(5877), + [anon_sym_BSLASHAcrlong] = ACTIONS(5877), + [anon_sym_BSLASHACRlong] = ACTIONS(5877), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5877), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5877), + [anon_sym_BSLASHacrfull] = ACTIONS(5877), + [anon_sym_BSLASHAcrfull] = ACTIONS(5877), + [anon_sym_BSLASHACRfull] = ACTIONS(5877), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5877), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5877), + [anon_sym_BSLASHacs] = ACTIONS(5877), + [anon_sym_BSLASHAcs] = ACTIONS(5877), + [anon_sym_BSLASHacsp] = ACTIONS(5877), + [anon_sym_BSLASHAcsp] = ACTIONS(5877), + [anon_sym_BSLASHacl] = ACTIONS(5877), + [anon_sym_BSLASHAcl] = ACTIONS(5877), + [anon_sym_BSLASHaclp] = ACTIONS(5877), + [anon_sym_BSLASHAclp] = ACTIONS(5877), + [anon_sym_BSLASHacf] = ACTIONS(5877), + [anon_sym_BSLASHAcf] = ACTIONS(5877), + [anon_sym_BSLASHacfp] = ACTIONS(5877), + [anon_sym_BSLASHAcfp] = ACTIONS(5877), + [anon_sym_BSLASHac] = ACTIONS(5877), + [anon_sym_BSLASHAc] = ACTIONS(5877), + [anon_sym_BSLASHacp] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5877), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5877), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5877), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5877), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5877), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5877), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5877), + [anon_sym_BSLASHcolor] = ACTIONS(5877), + [anon_sym_BSLASHcolorbox] = ACTIONS(5877), + [anon_sym_BSLASHtextcolor] = ACTIONS(5877), + [anon_sym_BSLASHpagecolor] = ACTIONS(5877), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5877), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5877), + }, + [1716] = { + [sym_curly_group] = STATE(1768), + [sym_command_name] = ACTIONS(5755), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5755), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_EQ] = ACTIONS(5753), + [anon_sym_LBRACE] = ACTIONS(6351), + [anon_sym_RBRACE] = ACTIONS(5753), + [sym_word] = ACTIONS(5755), + [sym_placeholder] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5755), + [anon_sym_SLASH] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5755), + [anon_sym__] = ACTIONS(5755), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_SQUOTE] = ACTIONS(5755), + [anon_sym_BSLASHtitle] = ACTIONS(5755), + [anon_sym_BSLASHauthor] = ACTIONS(5755), + [anon_sym_BSLASHusepackage] = ACTIONS(5755), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5755), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5755), + [anon_sym_BSLASHinclude] = ACTIONS(5755), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5755), + [anon_sym_BSLASHinput] = ACTIONS(5755), + [anon_sym_BSLASHsubfile] = ACTIONS(5755), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5755), + [anon_sym_BSLASHbibliography] = ACTIONS(5755), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5755), + [anon_sym_BSLASHincludesvg] = ACTIONS(5755), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5755), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5755), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5755), + [anon_sym_BSLASHimport] = ACTIONS(5755), + [anon_sym_BSLASHsubimport] = ACTIONS(5755), + [anon_sym_BSLASHinputfrom] = ACTIONS(5755), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5755), + [anon_sym_BSLASHincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5755), + [anon_sym_BSLASHcaption] = ACTIONS(5755), + [anon_sym_BSLASHcite] = ACTIONS(5755), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCite] = ACTIONS(5755), + [anon_sym_BSLASHnocite] = ACTIONS(5755), + [anon_sym_BSLASHcitet] = ACTIONS(5755), + [anon_sym_BSLASHcitep] = ACTIONS(5755), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteauthor] = ACTIONS(5755), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5755), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitetitle] = ACTIONS(5755), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteyear] = ACTIONS(5755), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5753), + [anon_sym_BSLASHcitedate] = ACTIONS(5755), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5753), + [anon_sym_BSLASHciteurl] = ACTIONS(5755), + [anon_sym_BSLASHfullcite] = ACTIONS(5755), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5755), + [anon_sym_BSLASHcitealt] = ACTIONS(5755), + [anon_sym_BSLASHcitealp] = ACTIONS(5755), + [anon_sym_BSLASHcitetext] = ACTIONS(5755), + [anon_sym_BSLASHparencite] = ACTIONS(5755), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHParencite] = ACTIONS(5755), + [anon_sym_BSLASHfootcite] = ACTIONS(5755), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5755), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5755), + [anon_sym_BSLASHtextcite] = ACTIONS(5755), + [anon_sym_BSLASHTextcite] = ACTIONS(5755), + [anon_sym_BSLASHsmartcite] = ACTIONS(5755), + [anon_sym_BSLASHSmartcite] = ACTIONS(5755), + [anon_sym_BSLASHsupercite] = ACTIONS(5755), + [anon_sym_BSLASHautocite] = ACTIONS(5755), + [anon_sym_BSLASHAutocite] = ACTIONS(5755), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5753), + [anon_sym_BSLASHvolcite] = ACTIONS(5755), + [anon_sym_BSLASHVolcite] = ACTIONS(5755), + [anon_sym_BSLASHpvolcite] = ACTIONS(5755), + [anon_sym_BSLASHPvolcite] = ACTIONS(5755), + [anon_sym_BSLASHfvolcite] = ACTIONS(5755), + [anon_sym_BSLASHftvolcite] = ACTIONS(5755), + [anon_sym_BSLASHsvolcite] = ACTIONS(5755), + [anon_sym_BSLASHSvolcite] = ACTIONS(5755), + [anon_sym_BSLASHtvolcite] = ACTIONS(5755), + [anon_sym_BSLASHTvolcite] = ACTIONS(5755), + [anon_sym_BSLASHavolcite] = ACTIONS(5755), + [anon_sym_BSLASHAvolcite] = ACTIONS(5755), + [anon_sym_BSLASHnotecite] = ACTIONS(5755), + [anon_sym_BSLASHNotecite] = ACTIONS(5755), + [anon_sym_BSLASHpnotecite] = ACTIONS(5755), + [anon_sym_BSLASHPnotecite] = ACTIONS(5755), + [anon_sym_BSLASHfnotecite] = ACTIONS(5755), + [anon_sym_BSLASHlabel] = ACTIONS(5755), + [anon_sym_BSLASHref] = ACTIONS(5755), + [anon_sym_BSLASHeqref] = ACTIONS(5755), + [anon_sym_BSLASHvref] = ACTIONS(5755), + [anon_sym_BSLASHVref] = ACTIONS(5755), + [anon_sym_BSLASHautoref] = ACTIONS(5755), + [anon_sym_BSLASHpageref] = ACTIONS(5755), + [anon_sym_BSLASHcref] = ACTIONS(5755), + [anon_sym_BSLASHCref] = ACTIONS(5755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnameCref] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5755), + [anon_sym_BSLASHlabelcref] = ACTIONS(5755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange] = ACTIONS(5755), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHCrefrange] = ACTIONS(5755), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5753), + [anon_sym_BSLASHnewlabel] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand] = ACTIONS(5755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5753), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdef] = ACTIONS(5755), + [anon_sym_BSLASHlet] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5755), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5755), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5755), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5755), + [anon_sym_BSLASHgls] = ACTIONS(5755), + [anon_sym_BSLASHGls] = ACTIONS(5755), + [anon_sym_BSLASHGLS] = ACTIONS(5755), + [anon_sym_BSLASHglspl] = ACTIONS(5755), + [anon_sym_BSLASHGlspl] = ACTIONS(5755), + [anon_sym_BSLASHGLSpl] = ACTIONS(5755), + [anon_sym_BSLASHglsdisp] = ACTIONS(5755), + [anon_sym_BSLASHglslink] = ACTIONS(5755), + [anon_sym_BSLASHglstext] = ACTIONS(5755), + [anon_sym_BSLASHGlstext] = ACTIONS(5755), + [anon_sym_BSLASHGLStext] = ACTIONS(5755), + [anon_sym_BSLASHglsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5755), + [anon_sym_BSLASHglsplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSplural] = ACTIONS(5755), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5755), + [anon_sym_BSLASHglsname] = ACTIONS(5755), + [anon_sym_BSLASHGlsname] = ACTIONS(5755), + [anon_sym_BSLASHGLSname] = ACTIONS(5755), + [anon_sym_BSLASHglssymbol] = ACTIONS(5755), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5755), + [anon_sym_BSLASHglsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5755), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5755), + [anon_sym_BSLASHglsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5755), + [anon_sym_BSLASHglsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5755), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5755), + [anon_sym_BSLASHglsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5755), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5755), + [anon_sym_BSLASHglsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5755), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5755), + [anon_sym_BSLASHnewacronym] = ACTIONS(5755), + [anon_sym_BSLASHacrshort] = ACTIONS(5755), + [anon_sym_BSLASHAcrshort] = ACTIONS(5755), + [anon_sym_BSLASHACRshort] = ACTIONS(5755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5755), + [anon_sym_BSLASHacrlong] = ACTIONS(5755), + [anon_sym_BSLASHAcrlong] = ACTIONS(5755), + [anon_sym_BSLASHACRlong] = ACTIONS(5755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5755), + [anon_sym_BSLASHacrfull] = ACTIONS(5755), + [anon_sym_BSLASHAcrfull] = ACTIONS(5755), + [anon_sym_BSLASHACRfull] = ACTIONS(5755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5755), + [anon_sym_BSLASHacs] = ACTIONS(5755), + [anon_sym_BSLASHAcs] = ACTIONS(5755), + [anon_sym_BSLASHacsp] = ACTIONS(5755), + [anon_sym_BSLASHAcsp] = ACTIONS(5755), + [anon_sym_BSLASHacl] = ACTIONS(5755), + [anon_sym_BSLASHAcl] = ACTIONS(5755), + [anon_sym_BSLASHaclp] = ACTIONS(5755), + [anon_sym_BSLASHAclp] = ACTIONS(5755), + [anon_sym_BSLASHacf] = ACTIONS(5755), + [anon_sym_BSLASHAcf] = ACTIONS(5755), + [anon_sym_BSLASHacfp] = ACTIONS(5755), + [anon_sym_BSLASHAcfp] = ACTIONS(5755), + [anon_sym_BSLASHac] = ACTIONS(5755), + [anon_sym_BSLASHAc] = ACTIONS(5755), + [anon_sym_BSLASHacp] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5755), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5755), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5755), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5755), + [anon_sym_BSLASHcolor] = ACTIONS(5755), + [anon_sym_BSLASHcolorbox] = ACTIONS(5755), + [anon_sym_BSLASHtextcolor] = ACTIONS(5755), + [anon_sym_BSLASHpagecolor] = ACTIONS(5755), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5755), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5755), + }, + [1717] = { + [sym_brack_group_text] = STATE(1741), + [sym_command_name] = ACTIONS(5785), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(6359), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [sym_placeholder] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5785), + [anon_sym_SLASH] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5785), + [anon_sym__] = ACTIONS(5785), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5785), + [anon_sym_COLON] = ACTIONS(5785), + [anon_sym_SQUOTE] = ACTIONS(5785), + [anon_sym_BSLASHtitle] = ACTIONS(5785), + [anon_sym_BSLASHauthor] = ACTIONS(5785), + [anon_sym_BSLASHusepackage] = ACTIONS(5785), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5785), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5785), + [anon_sym_BSLASHinclude] = ACTIONS(5785), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5785), + [anon_sym_BSLASHinput] = ACTIONS(5785), + [anon_sym_BSLASHsubfile] = ACTIONS(5785), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5785), + [anon_sym_BSLASHbibliography] = ACTIONS(5785), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5785), + [anon_sym_BSLASHincludesvg] = ACTIONS(5785), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5785), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5785), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5785), + [anon_sym_BSLASHimport] = ACTIONS(5785), + [anon_sym_BSLASHsubimport] = ACTIONS(5785), + [anon_sym_BSLASHinputfrom] = ACTIONS(5785), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5785), + [anon_sym_BSLASHincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5785), + [anon_sym_BSLASHcaption] = ACTIONS(5785), + [anon_sym_BSLASHcite] = ACTIONS(5785), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCite] = ACTIONS(5785), + [anon_sym_BSLASHnocite] = ACTIONS(5785), + [anon_sym_BSLASHcitet] = ACTIONS(5785), + [anon_sym_BSLASHcitep] = ACTIONS(5785), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteauthor] = ACTIONS(5785), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5785), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitetitle] = ACTIONS(5785), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteyear] = ACTIONS(5785), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5783), + [anon_sym_BSLASHcitedate] = ACTIONS(5785), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5783), + [anon_sym_BSLASHciteurl] = ACTIONS(5785), + [anon_sym_BSLASHfullcite] = ACTIONS(5785), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5785), + [anon_sym_BSLASHcitealt] = ACTIONS(5785), + [anon_sym_BSLASHcitealp] = ACTIONS(5785), + [anon_sym_BSLASHcitetext] = ACTIONS(5785), + [anon_sym_BSLASHparencite] = ACTIONS(5785), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHParencite] = ACTIONS(5785), + [anon_sym_BSLASHfootcite] = ACTIONS(5785), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5785), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5785), + [anon_sym_BSLASHtextcite] = ACTIONS(5785), + [anon_sym_BSLASHTextcite] = ACTIONS(5785), + [anon_sym_BSLASHsmartcite] = ACTIONS(5785), + [anon_sym_BSLASHSmartcite] = ACTIONS(5785), + [anon_sym_BSLASHsupercite] = ACTIONS(5785), + [anon_sym_BSLASHautocite] = ACTIONS(5785), + [anon_sym_BSLASHAutocite] = ACTIONS(5785), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5783), + [anon_sym_BSLASHvolcite] = ACTIONS(5785), + [anon_sym_BSLASHVolcite] = ACTIONS(5785), + [anon_sym_BSLASHpvolcite] = ACTIONS(5785), + [anon_sym_BSLASHPvolcite] = ACTIONS(5785), + [anon_sym_BSLASHfvolcite] = ACTIONS(5785), + [anon_sym_BSLASHftvolcite] = ACTIONS(5785), + [anon_sym_BSLASHsvolcite] = ACTIONS(5785), + [anon_sym_BSLASHSvolcite] = ACTIONS(5785), + [anon_sym_BSLASHtvolcite] = ACTIONS(5785), + [anon_sym_BSLASHTvolcite] = ACTIONS(5785), + [anon_sym_BSLASHavolcite] = ACTIONS(5785), + [anon_sym_BSLASHAvolcite] = ACTIONS(5785), + [anon_sym_BSLASHnotecite] = ACTIONS(5785), + [anon_sym_BSLASHNotecite] = ACTIONS(5785), + [anon_sym_BSLASHpnotecite] = ACTIONS(5785), + [anon_sym_BSLASHPnotecite] = ACTIONS(5785), + [anon_sym_BSLASHfnotecite] = ACTIONS(5785), + [anon_sym_BSLASHlabel] = ACTIONS(5785), + [anon_sym_BSLASHref] = ACTIONS(5785), + [anon_sym_BSLASHeqref] = ACTIONS(5785), + [anon_sym_BSLASHvref] = ACTIONS(5785), + [anon_sym_BSLASHVref] = ACTIONS(5785), + [anon_sym_BSLASHautoref] = ACTIONS(5785), + [anon_sym_BSLASHpageref] = ACTIONS(5785), + [anon_sym_BSLASHcref] = ACTIONS(5785), + [anon_sym_BSLASHCref] = ACTIONS(5785), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnameCref] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5785), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5785), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5785), + [anon_sym_BSLASHlabelcref] = ACTIONS(5785), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange] = ACTIONS(5785), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHCrefrange] = ACTIONS(5785), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5783), + [anon_sym_BSLASHnewlabel] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand] = ACTIONS(5785), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5785), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5785), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5783), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5785), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdef] = ACTIONS(5785), + [anon_sym_BSLASHlet] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5785), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5785), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5785), + [anon_sym_BSLASHgls] = ACTIONS(5785), + [anon_sym_BSLASHGls] = ACTIONS(5785), + [anon_sym_BSLASHGLS] = ACTIONS(5785), + [anon_sym_BSLASHglspl] = ACTIONS(5785), + [anon_sym_BSLASHGlspl] = ACTIONS(5785), + [anon_sym_BSLASHGLSpl] = ACTIONS(5785), + [anon_sym_BSLASHglsdisp] = ACTIONS(5785), + [anon_sym_BSLASHglslink] = ACTIONS(5785), + [anon_sym_BSLASHglstext] = ACTIONS(5785), + [anon_sym_BSLASHGlstext] = ACTIONS(5785), + [anon_sym_BSLASHGLStext] = ACTIONS(5785), + [anon_sym_BSLASHglsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5785), + [anon_sym_BSLASHglsplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSplural] = ACTIONS(5785), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5785), + [anon_sym_BSLASHglsname] = ACTIONS(5785), + [anon_sym_BSLASHGlsname] = ACTIONS(5785), + [anon_sym_BSLASHGLSname] = ACTIONS(5785), + [anon_sym_BSLASHglssymbol] = ACTIONS(5785), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5785), + [anon_sym_BSLASHglsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5785), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5785), + [anon_sym_BSLASHglsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5785), + [anon_sym_BSLASHglsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5785), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5785), + [anon_sym_BSLASHglsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5785), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5785), + [anon_sym_BSLASHglsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5785), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5785), + [anon_sym_BSLASHnewacronym] = ACTIONS(5785), + [anon_sym_BSLASHacrshort] = ACTIONS(5785), + [anon_sym_BSLASHAcrshort] = ACTIONS(5785), + [anon_sym_BSLASHACRshort] = ACTIONS(5785), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5785), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5785), + [anon_sym_BSLASHacrlong] = ACTIONS(5785), + [anon_sym_BSLASHAcrlong] = ACTIONS(5785), + [anon_sym_BSLASHACRlong] = ACTIONS(5785), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5785), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5785), + [anon_sym_BSLASHacrfull] = ACTIONS(5785), + [anon_sym_BSLASHAcrfull] = ACTIONS(5785), + [anon_sym_BSLASHACRfull] = ACTIONS(5785), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5785), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5785), + [anon_sym_BSLASHacs] = ACTIONS(5785), + [anon_sym_BSLASHAcs] = ACTIONS(5785), + [anon_sym_BSLASHacsp] = ACTIONS(5785), + [anon_sym_BSLASHAcsp] = ACTIONS(5785), + [anon_sym_BSLASHacl] = ACTIONS(5785), + [anon_sym_BSLASHAcl] = ACTIONS(5785), + [anon_sym_BSLASHaclp] = ACTIONS(5785), + [anon_sym_BSLASHAclp] = ACTIONS(5785), + [anon_sym_BSLASHacf] = ACTIONS(5785), + [anon_sym_BSLASHAcf] = ACTIONS(5785), + [anon_sym_BSLASHacfp] = ACTIONS(5785), + [anon_sym_BSLASHAcfp] = ACTIONS(5785), + [anon_sym_BSLASHac] = ACTIONS(5785), + [anon_sym_BSLASHAc] = ACTIONS(5785), + [anon_sym_BSLASHacp] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5785), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5785), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5785), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5785), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5785), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5785), + [anon_sym_BSLASHcolor] = ACTIONS(5785), + [anon_sym_BSLASHcolorbox] = ACTIONS(5785), + [anon_sym_BSLASHtextcolor] = ACTIONS(5785), + [anon_sym_BSLASHpagecolor] = ACTIONS(5785), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5785), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5785), + }, + [1718] = { + [sym_curly_group] = STATE(1753), + [sym_command_name] = ACTIONS(5609), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5609), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(6351), + [anon_sym_RBRACE] = ACTIONS(5607), + [sym_word] = ACTIONS(5609), + [sym_placeholder] = ACTIONS(5607), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(5609), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_SQUOTE] = ACTIONS(5609), + [anon_sym_BSLASHtitle] = ACTIONS(5609), + [anon_sym_BSLASHauthor] = ACTIONS(5609), + [anon_sym_BSLASHusepackage] = ACTIONS(5609), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5609), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5609), + [anon_sym_BSLASHinclude] = ACTIONS(5609), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5609), + [anon_sym_BSLASHinput] = ACTIONS(5609), + [anon_sym_BSLASHsubfile] = ACTIONS(5609), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5609), + [anon_sym_BSLASHbibliography] = ACTIONS(5609), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5609), + [anon_sym_BSLASHincludesvg] = ACTIONS(5609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5609), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5609), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5609), + [anon_sym_BSLASHimport] = ACTIONS(5609), + [anon_sym_BSLASHsubimport] = ACTIONS(5609), + [anon_sym_BSLASHinputfrom] = ACTIONS(5609), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5609), + [anon_sym_BSLASHincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5609), + [anon_sym_BSLASHcaption] = ACTIONS(5609), + [anon_sym_BSLASHcite] = ACTIONS(5609), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCite] = ACTIONS(5609), + [anon_sym_BSLASHnocite] = ACTIONS(5609), + [anon_sym_BSLASHcitet] = ACTIONS(5609), + [anon_sym_BSLASHcitep] = ACTIONS(5609), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteauthor] = ACTIONS(5609), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5609), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitetitle] = ACTIONS(5609), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteyear] = ACTIONS(5609), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5607), + [anon_sym_BSLASHcitedate] = ACTIONS(5609), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5607), + [anon_sym_BSLASHciteurl] = ACTIONS(5609), + [anon_sym_BSLASHfullcite] = ACTIONS(5609), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5609), + [anon_sym_BSLASHcitealt] = ACTIONS(5609), + [anon_sym_BSLASHcitealp] = ACTIONS(5609), + [anon_sym_BSLASHcitetext] = ACTIONS(5609), + [anon_sym_BSLASHparencite] = ACTIONS(5609), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHParencite] = ACTIONS(5609), + [anon_sym_BSLASHfootcite] = ACTIONS(5609), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5609), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5609), + [anon_sym_BSLASHtextcite] = ACTIONS(5609), + [anon_sym_BSLASHTextcite] = ACTIONS(5609), + [anon_sym_BSLASHsmartcite] = ACTIONS(5609), + [anon_sym_BSLASHSmartcite] = ACTIONS(5609), + [anon_sym_BSLASHsupercite] = ACTIONS(5609), + [anon_sym_BSLASHautocite] = ACTIONS(5609), + [anon_sym_BSLASHAutocite] = ACTIONS(5609), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5607), + [anon_sym_BSLASHvolcite] = ACTIONS(5609), + [anon_sym_BSLASHVolcite] = ACTIONS(5609), + [anon_sym_BSLASHpvolcite] = ACTIONS(5609), + [anon_sym_BSLASHPvolcite] = ACTIONS(5609), + [anon_sym_BSLASHfvolcite] = ACTIONS(5609), + [anon_sym_BSLASHftvolcite] = ACTIONS(5609), + [anon_sym_BSLASHsvolcite] = ACTIONS(5609), + [anon_sym_BSLASHSvolcite] = ACTIONS(5609), + [anon_sym_BSLASHtvolcite] = ACTIONS(5609), + [anon_sym_BSLASHTvolcite] = ACTIONS(5609), + [anon_sym_BSLASHavolcite] = ACTIONS(5609), + [anon_sym_BSLASHAvolcite] = ACTIONS(5609), + [anon_sym_BSLASHnotecite] = ACTIONS(5609), + [anon_sym_BSLASHNotecite] = ACTIONS(5609), + [anon_sym_BSLASHpnotecite] = ACTIONS(5609), + [anon_sym_BSLASHPnotecite] = ACTIONS(5609), + [anon_sym_BSLASHfnotecite] = ACTIONS(5609), + [anon_sym_BSLASHlabel] = ACTIONS(5609), + [anon_sym_BSLASHref] = ACTIONS(5609), + [anon_sym_BSLASHeqref] = ACTIONS(5609), + [anon_sym_BSLASHvref] = ACTIONS(5609), + [anon_sym_BSLASHVref] = ACTIONS(5609), + [anon_sym_BSLASHautoref] = ACTIONS(5609), + [anon_sym_BSLASHpageref] = ACTIONS(5609), + [anon_sym_BSLASHcref] = ACTIONS(5609), + [anon_sym_BSLASHCref] = ACTIONS(5609), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnameCref] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5609), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5609), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5609), + [anon_sym_BSLASHlabelcref] = ACTIONS(5609), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange] = ACTIONS(5609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHCrefrange] = ACTIONS(5609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5607), + [anon_sym_BSLASHnewlabel] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand] = ACTIONS(5609), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5609), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5609), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5607), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5609), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdef] = ACTIONS(5609), + [anon_sym_BSLASHlet] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5609), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5609), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5609), + [anon_sym_BSLASHgls] = ACTIONS(5609), + [anon_sym_BSLASHGls] = ACTIONS(5609), + [anon_sym_BSLASHGLS] = ACTIONS(5609), + [anon_sym_BSLASHglspl] = ACTIONS(5609), + [anon_sym_BSLASHGlspl] = ACTIONS(5609), + [anon_sym_BSLASHGLSpl] = ACTIONS(5609), + [anon_sym_BSLASHglsdisp] = ACTIONS(5609), + [anon_sym_BSLASHglslink] = ACTIONS(5609), + [anon_sym_BSLASHglstext] = ACTIONS(5609), + [anon_sym_BSLASHGlstext] = ACTIONS(5609), + [anon_sym_BSLASHGLStext] = ACTIONS(5609), + [anon_sym_BSLASHglsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5609), + [anon_sym_BSLASHglsplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSplural] = ACTIONS(5609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5609), + [anon_sym_BSLASHglsname] = ACTIONS(5609), + [anon_sym_BSLASHGlsname] = ACTIONS(5609), + [anon_sym_BSLASHGLSname] = ACTIONS(5609), + [anon_sym_BSLASHglssymbol] = ACTIONS(5609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5609), + [anon_sym_BSLASHglsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5609), + [anon_sym_BSLASHglsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5609), + [anon_sym_BSLASHglsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5609), + [anon_sym_BSLASHglsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5609), + [anon_sym_BSLASHglsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5609), + [anon_sym_BSLASHnewacronym] = ACTIONS(5609), + [anon_sym_BSLASHacrshort] = ACTIONS(5609), + [anon_sym_BSLASHAcrshort] = ACTIONS(5609), + [anon_sym_BSLASHACRshort] = ACTIONS(5609), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5609), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5609), + [anon_sym_BSLASHacrlong] = ACTIONS(5609), + [anon_sym_BSLASHAcrlong] = ACTIONS(5609), + [anon_sym_BSLASHACRlong] = ACTIONS(5609), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5609), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5609), + [anon_sym_BSLASHacrfull] = ACTIONS(5609), + [anon_sym_BSLASHAcrfull] = ACTIONS(5609), + [anon_sym_BSLASHACRfull] = ACTIONS(5609), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5609), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5609), + [anon_sym_BSLASHacs] = ACTIONS(5609), + [anon_sym_BSLASHAcs] = ACTIONS(5609), + [anon_sym_BSLASHacsp] = ACTIONS(5609), + [anon_sym_BSLASHAcsp] = ACTIONS(5609), + [anon_sym_BSLASHacl] = ACTIONS(5609), + [anon_sym_BSLASHAcl] = ACTIONS(5609), + [anon_sym_BSLASHaclp] = ACTIONS(5609), + [anon_sym_BSLASHAclp] = ACTIONS(5609), + [anon_sym_BSLASHacf] = ACTIONS(5609), + [anon_sym_BSLASHAcf] = ACTIONS(5609), + [anon_sym_BSLASHacfp] = ACTIONS(5609), + [anon_sym_BSLASHAcfp] = ACTIONS(5609), + [anon_sym_BSLASHac] = ACTIONS(5609), + [anon_sym_BSLASHAc] = ACTIONS(5609), + [anon_sym_BSLASHacp] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5609), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5609), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5609), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5609), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5609), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5607), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5609), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5609), + [anon_sym_BSLASHcolor] = ACTIONS(5609), + [anon_sym_BSLASHcolorbox] = ACTIONS(5609), + [anon_sym_BSLASHtextcolor] = ACTIONS(5609), + [anon_sym_BSLASHpagecolor] = ACTIONS(5609), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5609), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5609), + }, + [1719] = { + [sym_command_name] = ACTIONS(5779), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5779), + [anon_sym_BSLASHfi] = ACTIONS(6365), + [anon_sym_RBRACK] = ACTIONS(5777), + [anon_sym_COMMA] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5777), + [sym_word] = ACTIONS(5779), + [sym_placeholder] = ACTIONS(5777), + [anon_sym_PLUS] = ACTIONS(5779), + [anon_sym_DASH] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_CARET] = ACTIONS(5779), + [anon_sym__] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5779), + [anon_sym_GT] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5779), + [anon_sym_PIPE] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_SQUOTE] = ACTIONS(5779), + [anon_sym_BSLASHtitle] = ACTIONS(5779), + [anon_sym_BSLASHauthor] = ACTIONS(5779), + [anon_sym_BSLASHusepackage] = ACTIONS(5779), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5779), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5779), + [anon_sym_BSLASHinclude] = ACTIONS(5779), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5779), + [anon_sym_BSLASHinput] = ACTIONS(5779), + [anon_sym_BSLASHsubfile] = ACTIONS(5779), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5779), + [anon_sym_BSLASHbibliography] = ACTIONS(5779), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5779), + [anon_sym_BSLASHincludesvg] = ACTIONS(5779), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5779), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5779), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5779), + [anon_sym_BSLASHimport] = ACTIONS(5779), + [anon_sym_BSLASHsubimport] = ACTIONS(5779), + [anon_sym_BSLASHinputfrom] = ACTIONS(5779), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5779), + [anon_sym_BSLASHincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5779), + [anon_sym_BSLASHcaption] = ACTIONS(5779), + [anon_sym_BSLASHcite] = ACTIONS(5779), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCite] = ACTIONS(5779), + [anon_sym_BSLASHnocite] = ACTIONS(5779), + [anon_sym_BSLASHcitet] = ACTIONS(5779), + [anon_sym_BSLASHcitep] = ACTIONS(5779), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteauthor] = ACTIONS(5779), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5779), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitetitle] = ACTIONS(5779), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteyear] = ACTIONS(5779), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5777), + [anon_sym_BSLASHcitedate] = ACTIONS(5779), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5777), + [anon_sym_BSLASHciteurl] = ACTIONS(5779), + [anon_sym_BSLASHfullcite] = ACTIONS(5779), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5779), + [anon_sym_BSLASHcitealt] = ACTIONS(5779), + [anon_sym_BSLASHcitealp] = ACTIONS(5779), + [anon_sym_BSLASHcitetext] = ACTIONS(5779), + [anon_sym_BSLASHparencite] = ACTIONS(5779), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHParencite] = ACTIONS(5779), + [anon_sym_BSLASHfootcite] = ACTIONS(5779), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5779), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5779), + [anon_sym_BSLASHtextcite] = ACTIONS(5779), + [anon_sym_BSLASHTextcite] = ACTIONS(5779), + [anon_sym_BSLASHsmartcite] = ACTIONS(5779), + [anon_sym_BSLASHSmartcite] = ACTIONS(5779), + [anon_sym_BSLASHsupercite] = ACTIONS(5779), + [anon_sym_BSLASHautocite] = ACTIONS(5779), + [anon_sym_BSLASHAutocite] = ACTIONS(5779), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5777), + [anon_sym_BSLASHvolcite] = ACTIONS(5779), + [anon_sym_BSLASHVolcite] = ACTIONS(5779), + [anon_sym_BSLASHpvolcite] = ACTIONS(5779), + [anon_sym_BSLASHPvolcite] = ACTIONS(5779), + [anon_sym_BSLASHfvolcite] = ACTIONS(5779), + [anon_sym_BSLASHftvolcite] = ACTIONS(5779), + [anon_sym_BSLASHsvolcite] = ACTIONS(5779), + [anon_sym_BSLASHSvolcite] = ACTIONS(5779), + [anon_sym_BSLASHtvolcite] = ACTIONS(5779), + [anon_sym_BSLASHTvolcite] = ACTIONS(5779), + [anon_sym_BSLASHavolcite] = ACTIONS(5779), + [anon_sym_BSLASHAvolcite] = ACTIONS(5779), + [anon_sym_BSLASHnotecite] = ACTIONS(5779), + [anon_sym_BSLASHNotecite] = ACTIONS(5779), + [anon_sym_BSLASHpnotecite] = ACTIONS(5779), + [anon_sym_BSLASHPnotecite] = ACTIONS(5779), + [anon_sym_BSLASHfnotecite] = ACTIONS(5779), + [anon_sym_BSLASHlabel] = ACTIONS(5779), + [anon_sym_BSLASHref] = ACTIONS(5779), + [anon_sym_BSLASHeqref] = ACTIONS(5779), + [anon_sym_BSLASHvref] = ACTIONS(5779), + [anon_sym_BSLASHVref] = ACTIONS(5779), + [anon_sym_BSLASHautoref] = ACTIONS(5779), + [anon_sym_BSLASHpageref] = ACTIONS(5779), + [anon_sym_BSLASHcref] = ACTIONS(5779), + [anon_sym_BSLASHCref] = ACTIONS(5779), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnameCref] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5779), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5779), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5779), + [anon_sym_BSLASHlabelcref] = ACTIONS(5779), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange] = ACTIONS(5779), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHCrefrange] = ACTIONS(5779), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5777), + [anon_sym_BSLASHnewlabel] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand] = ACTIONS(5779), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5779), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5779), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5777), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5779), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdef] = ACTIONS(5779), + [anon_sym_BSLASHlet] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5779), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5779), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5779), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5779), + [anon_sym_BSLASHgls] = ACTIONS(5779), + [anon_sym_BSLASHGls] = ACTIONS(5779), + [anon_sym_BSLASHGLS] = ACTIONS(5779), + [anon_sym_BSLASHglspl] = ACTIONS(5779), + [anon_sym_BSLASHGlspl] = ACTIONS(5779), + [anon_sym_BSLASHGLSpl] = ACTIONS(5779), + [anon_sym_BSLASHglsdisp] = ACTIONS(5779), + [anon_sym_BSLASHglslink] = ACTIONS(5779), + [anon_sym_BSLASHglstext] = ACTIONS(5779), + [anon_sym_BSLASHGlstext] = ACTIONS(5779), + [anon_sym_BSLASHGLStext] = ACTIONS(5779), + [anon_sym_BSLASHglsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5779), + [anon_sym_BSLASHglsplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSplural] = ACTIONS(5779), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5779), + [anon_sym_BSLASHglsname] = ACTIONS(5779), + [anon_sym_BSLASHGlsname] = ACTIONS(5779), + [anon_sym_BSLASHGLSname] = ACTIONS(5779), + [anon_sym_BSLASHglssymbol] = ACTIONS(5779), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5779), + [anon_sym_BSLASHglsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5779), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5779), + [anon_sym_BSLASHglsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5779), + [anon_sym_BSLASHglsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5779), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5779), + [anon_sym_BSLASHglsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5779), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5779), + [anon_sym_BSLASHglsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5779), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5779), + [anon_sym_BSLASHnewacronym] = ACTIONS(5779), + [anon_sym_BSLASHacrshort] = ACTIONS(5779), + [anon_sym_BSLASHAcrshort] = ACTIONS(5779), + [anon_sym_BSLASHACRshort] = ACTIONS(5779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5779), + [anon_sym_BSLASHacrlong] = ACTIONS(5779), + [anon_sym_BSLASHAcrlong] = ACTIONS(5779), + [anon_sym_BSLASHACRlong] = ACTIONS(5779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5779), + [anon_sym_BSLASHacrfull] = ACTIONS(5779), + [anon_sym_BSLASHAcrfull] = ACTIONS(5779), + [anon_sym_BSLASHACRfull] = ACTIONS(5779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5779), + [anon_sym_BSLASHacs] = ACTIONS(5779), + [anon_sym_BSLASHAcs] = ACTIONS(5779), + [anon_sym_BSLASHacsp] = ACTIONS(5779), + [anon_sym_BSLASHAcsp] = ACTIONS(5779), + [anon_sym_BSLASHacl] = ACTIONS(5779), + [anon_sym_BSLASHAcl] = ACTIONS(5779), + [anon_sym_BSLASHaclp] = ACTIONS(5779), + [anon_sym_BSLASHAclp] = ACTIONS(5779), + [anon_sym_BSLASHacf] = ACTIONS(5779), + [anon_sym_BSLASHAcf] = ACTIONS(5779), + [anon_sym_BSLASHacfp] = ACTIONS(5779), + [anon_sym_BSLASHAcfp] = ACTIONS(5779), + [anon_sym_BSLASHac] = ACTIONS(5779), + [anon_sym_BSLASHAc] = ACTIONS(5779), + [anon_sym_BSLASHacp] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5779), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5779), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5777), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5779), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5779), + [anon_sym_BSLASHcolor] = ACTIONS(5779), + [anon_sym_BSLASHcolorbox] = ACTIONS(5779), + [anon_sym_BSLASHtextcolor] = ACTIONS(5779), + [anon_sym_BSLASHpagecolor] = ACTIONS(5779), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5779), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5779), + }, + [1720] = { + [sym_command_name] = ACTIONS(5841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5841), + [anon_sym_RBRACK] = ACTIONS(5839), + [anon_sym_COMMA] = ACTIONS(5839), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_LBRACE] = ACTIONS(5839), + [anon_sym_RBRACE] = ACTIONS(5839), + [sym_word] = ACTIONS(5841), + [sym_placeholder] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5841), + [anon_sym_SLASH] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5841), + [anon_sym__] = ACTIONS(5841), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5841), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_SQUOTE] = ACTIONS(5841), + [anon_sym_BSLASHtitle] = ACTIONS(5841), + [anon_sym_BSLASHauthor] = ACTIONS(5841), + [anon_sym_BSLASHusepackage] = ACTIONS(5841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5841), + [anon_sym_BSLASHinclude] = ACTIONS(5841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5841), + [anon_sym_BSLASHinput] = ACTIONS(5841), + [anon_sym_BSLASHsubfile] = ACTIONS(5841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5841), + [anon_sym_BSLASHbibliography] = ACTIONS(5841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5841), + [anon_sym_BSLASHincludesvg] = ACTIONS(5841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5841), + [anon_sym_BSLASHimport] = ACTIONS(5841), + [anon_sym_BSLASHsubimport] = ACTIONS(5841), + [anon_sym_BSLASHinputfrom] = ACTIONS(5841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5841), + [anon_sym_BSLASHincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5841), + [anon_sym_BSLASHcaption] = ACTIONS(5841), + [anon_sym_BSLASHcite] = ACTIONS(5841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCite] = ACTIONS(5841), + [anon_sym_BSLASHnocite] = ACTIONS(5841), + [anon_sym_BSLASHcitet] = ACTIONS(5841), + [anon_sym_BSLASHcitep] = ACTIONS(5841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteauthor] = ACTIONS(5841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitetitle] = ACTIONS(5841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteyear] = ACTIONS(5841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5839), + [anon_sym_BSLASHcitedate] = ACTIONS(5841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5839), + [anon_sym_BSLASHciteurl] = ACTIONS(5841), + [anon_sym_BSLASHfullcite] = ACTIONS(5841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5841), + [anon_sym_BSLASHcitealt] = ACTIONS(5841), + [anon_sym_BSLASHcitealp] = ACTIONS(5841), + [anon_sym_BSLASHcitetext] = ACTIONS(5841), + [anon_sym_BSLASHparencite] = ACTIONS(5841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHParencite] = ACTIONS(5841), + [anon_sym_BSLASHfootcite] = ACTIONS(5841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5841), + [anon_sym_BSLASHtextcite] = ACTIONS(5841), + [anon_sym_BSLASHTextcite] = ACTIONS(5841), + [anon_sym_BSLASHsmartcite] = ACTIONS(5841), + [anon_sym_BSLASHSmartcite] = ACTIONS(5841), + [anon_sym_BSLASHsupercite] = ACTIONS(5841), + [anon_sym_BSLASHautocite] = ACTIONS(5841), + [anon_sym_BSLASHAutocite] = ACTIONS(5841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5839), + [anon_sym_BSLASHvolcite] = ACTIONS(5841), + [anon_sym_BSLASHVolcite] = ACTIONS(5841), + [anon_sym_BSLASHpvolcite] = ACTIONS(5841), + [anon_sym_BSLASHPvolcite] = ACTIONS(5841), + [anon_sym_BSLASHfvolcite] = ACTIONS(5841), + [anon_sym_BSLASHftvolcite] = ACTIONS(5841), + [anon_sym_BSLASHsvolcite] = ACTIONS(5841), + [anon_sym_BSLASHSvolcite] = ACTIONS(5841), + [anon_sym_BSLASHtvolcite] = ACTIONS(5841), + [anon_sym_BSLASHTvolcite] = ACTIONS(5841), + [anon_sym_BSLASHavolcite] = ACTIONS(5841), + [anon_sym_BSLASHAvolcite] = ACTIONS(5841), + [anon_sym_BSLASHnotecite] = ACTIONS(5841), + [anon_sym_BSLASHNotecite] = ACTIONS(5841), + [anon_sym_BSLASHpnotecite] = ACTIONS(5841), + [anon_sym_BSLASHPnotecite] = ACTIONS(5841), + [anon_sym_BSLASHfnotecite] = ACTIONS(5841), + [anon_sym_BSLASHlabel] = ACTIONS(5841), + [anon_sym_BSLASHref] = ACTIONS(5841), + [anon_sym_BSLASHeqref] = ACTIONS(5841), + [anon_sym_BSLASHvref] = ACTIONS(5841), + [anon_sym_BSLASHVref] = ACTIONS(5841), + [anon_sym_BSLASHautoref] = ACTIONS(5841), + [anon_sym_BSLASHpageref] = ACTIONS(5841), + [anon_sym_BSLASHcref] = ACTIONS(5841), + [anon_sym_BSLASHCref] = ACTIONS(5841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnameCref] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5841), + [anon_sym_BSLASHlabelcref] = ACTIONS(5841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange] = ACTIONS(5841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHCrefrange] = ACTIONS(5841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5839), + [anon_sym_BSLASHnewlabel] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand] = ACTIONS(5841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdef] = ACTIONS(5841), + [anon_sym_BSLASHlet] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5841), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5841), + [anon_sym_BSLASHgls] = ACTIONS(5841), + [anon_sym_BSLASHGls] = ACTIONS(5841), + [anon_sym_BSLASHGLS] = ACTIONS(5841), + [anon_sym_BSLASHglspl] = ACTIONS(5841), + [anon_sym_BSLASHGlspl] = ACTIONS(5841), + [anon_sym_BSLASHGLSpl] = ACTIONS(5841), + [anon_sym_BSLASHglsdisp] = ACTIONS(5841), + [anon_sym_BSLASHglslink] = ACTIONS(5841), + [anon_sym_BSLASHglstext] = ACTIONS(5841), + [anon_sym_BSLASHGlstext] = ACTIONS(5841), + [anon_sym_BSLASHGLStext] = ACTIONS(5841), + [anon_sym_BSLASHglsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5841), + [anon_sym_BSLASHglsplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSplural] = ACTIONS(5841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5841), + [anon_sym_BSLASHglsname] = ACTIONS(5841), + [anon_sym_BSLASHGlsname] = ACTIONS(5841), + [anon_sym_BSLASHGLSname] = ACTIONS(5841), + [anon_sym_BSLASHglssymbol] = ACTIONS(5841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5841), + [anon_sym_BSLASHglsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5841), + [anon_sym_BSLASHglsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5841), + [anon_sym_BSLASHglsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5841), + [anon_sym_BSLASHglsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5841), + [anon_sym_BSLASHglsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5841), + [anon_sym_BSLASHnewacronym] = ACTIONS(5841), + [anon_sym_BSLASHacrshort] = ACTIONS(5841), + [anon_sym_BSLASHAcrshort] = ACTIONS(5841), + [anon_sym_BSLASHACRshort] = ACTIONS(5841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5841), + [anon_sym_BSLASHacrlong] = ACTIONS(5841), + [anon_sym_BSLASHAcrlong] = ACTIONS(5841), + [anon_sym_BSLASHACRlong] = ACTIONS(5841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5841), + [anon_sym_BSLASHacrfull] = ACTIONS(5841), + [anon_sym_BSLASHAcrfull] = ACTIONS(5841), + [anon_sym_BSLASHACRfull] = ACTIONS(5841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5841), + [anon_sym_BSLASHacs] = ACTIONS(5841), + [anon_sym_BSLASHAcs] = ACTIONS(5841), + [anon_sym_BSLASHacsp] = ACTIONS(5841), + [anon_sym_BSLASHAcsp] = ACTIONS(5841), + [anon_sym_BSLASHacl] = ACTIONS(5841), + [anon_sym_BSLASHAcl] = ACTIONS(5841), + [anon_sym_BSLASHaclp] = ACTIONS(5841), + [anon_sym_BSLASHAclp] = ACTIONS(5841), + [anon_sym_BSLASHacf] = ACTIONS(5841), + [anon_sym_BSLASHAcf] = ACTIONS(5841), + [anon_sym_BSLASHacfp] = ACTIONS(5841), + [anon_sym_BSLASHAcfp] = ACTIONS(5841), + [anon_sym_BSLASHac] = ACTIONS(5841), + [anon_sym_BSLASHAc] = ACTIONS(5841), + [anon_sym_BSLASHacp] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5841), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5841), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5839), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5841), + [anon_sym_BSLASHcolor] = ACTIONS(5841), + [anon_sym_BSLASHcolorbox] = ACTIONS(5841), + [anon_sym_BSLASHtextcolor] = ACTIONS(5841), + [anon_sym_BSLASHpagecolor] = ACTIONS(5841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5841), + }, + [1721] = { + [sym_command_name] = ACTIONS(5815), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5815), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [sym_word] = ACTIONS(5815), + [sym_placeholder] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_SQUOTE] = ACTIONS(5815), + [anon_sym_BSLASHtitle] = ACTIONS(5815), + [anon_sym_BSLASHauthor] = ACTIONS(5815), + [anon_sym_BSLASHusepackage] = ACTIONS(5815), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5815), + [anon_sym_BSLASHinclude] = ACTIONS(5815), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5815), + [anon_sym_BSLASHinput] = ACTIONS(5815), + [anon_sym_BSLASHsubfile] = ACTIONS(5815), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5815), + [anon_sym_BSLASHbibliography] = ACTIONS(5815), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5815), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5815), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5815), + [anon_sym_BSLASHimport] = ACTIONS(5815), + [anon_sym_BSLASHsubimport] = ACTIONS(5815), + [anon_sym_BSLASHinputfrom] = ACTIONS(5815), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5815), + [anon_sym_BSLASHincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5815), + [anon_sym_BSLASHcaption] = ACTIONS(5815), + [anon_sym_BSLASHcite] = ACTIONS(5815), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCite] = ACTIONS(5815), + [anon_sym_BSLASHnocite] = ACTIONS(5815), + [anon_sym_BSLASHcitet] = ACTIONS(5815), + [anon_sym_BSLASHcitep] = ACTIONS(5815), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteauthor] = ACTIONS(5815), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5815), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitetitle] = ACTIONS(5815), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteyear] = ACTIONS(5815), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5813), + [anon_sym_BSLASHcitedate] = ACTIONS(5815), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5813), + [anon_sym_BSLASHciteurl] = ACTIONS(5815), + [anon_sym_BSLASHfullcite] = ACTIONS(5815), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5815), + [anon_sym_BSLASHcitealt] = ACTIONS(5815), + [anon_sym_BSLASHcitealp] = ACTIONS(5815), + [anon_sym_BSLASHcitetext] = ACTIONS(5815), + [anon_sym_BSLASHparencite] = ACTIONS(5815), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHParencite] = ACTIONS(5815), + [anon_sym_BSLASHfootcite] = ACTIONS(5815), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5815), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5815), + [anon_sym_BSLASHtextcite] = ACTIONS(5815), + [anon_sym_BSLASHTextcite] = ACTIONS(5815), + [anon_sym_BSLASHsmartcite] = ACTIONS(5815), + [anon_sym_BSLASHSmartcite] = ACTIONS(5815), + [anon_sym_BSLASHsupercite] = ACTIONS(5815), + [anon_sym_BSLASHautocite] = ACTIONS(5815), + [anon_sym_BSLASHAutocite] = ACTIONS(5815), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5813), + [anon_sym_BSLASHvolcite] = ACTIONS(5815), + [anon_sym_BSLASHVolcite] = ACTIONS(5815), + [anon_sym_BSLASHpvolcite] = ACTIONS(5815), + [anon_sym_BSLASHPvolcite] = ACTIONS(5815), + [anon_sym_BSLASHfvolcite] = ACTIONS(5815), + [anon_sym_BSLASHftvolcite] = ACTIONS(5815), + [anon_sym_BSLASHsvolcite] = ACTIONS(5815), + [anon_sym_BSLASHSvolcite] = ACTIONS(5815), + [anon_sym_BSLASHtvolcite] = ACTIONS(5815), + [anon_sym_BSLASHTvolcite] = ACTIONS(5815), + [anon_sym_BSLASHavolcite] = ACTIONS(5815), + [anon_sym_BSLASHAvolcite] = ACTIONS(5815), + [anon_sym_BSLASHnotecite] = ACTIONS(5815), + [anon_sym_BSLASHNotecite] = ACTIONS(5815), + [anon_sym_BSLASHpnotecite] = ACTIONS(5815), + [anon_sym_BSLASHPnotecite] = ACTIONS(5815), + [anon_sym_BSLASHfnotecite] = ACTIONS(5815), + [anon_sym_BSLASHlabel] = ACTIONS(5815), + [anon_sym_BSLASHref] = ACTIONS(5815), + [anon_sym_BSLASHeqref] = ACTIONS(5815), + [anon_sym_BSLASHvref] = ACTIONS(5815), + [anon_sym_BSLASHVref] = ACTIONS(5815), + [anon_sym_BSLASHautoref] = ACTIONS(5815), + [anon_sym_BSLASHpageref] = ACTIONS(5815), + [anon_sym_BSLASHcref] = ACTIONS(5815), + [anon_sym_BSLASHCref] = ACTIONS(5815), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnameCref] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5815), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5815), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5815), + [anon_sym_BSLASHlabelcref] = ACTIONS(5815), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange] = ACTIONS(5815), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHCrefrange] = ACTIONS(5815), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5813), + [anon_sym_BSLASHnewlabel] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand] = ACTIONS(5815), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5815), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5815), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5813), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5815), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdef] = ACTIONS(5815), + [anon_sym_BSLASHlet] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5815), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5815), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5815), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5815), + [anon_sym_BSLASHgls] = ACTIONS(5815), + [anon_sym_BSLASHGls] = ACTIONS(5815), + [anon_sym_BSLASHGLS] = ACTIONS(5815), + [anon_sym_BSLASHglspl] = ACTIONS(5815), + [anon_sym_BSLASHGlspl] = ACTIONS(5815), + [anon_sym_BSLASHGLSpl] = ACTIONS(5815), + [anon_sym_BSLASHglsdisp] = ACTIONS(5815), + [anon_sym_BSLASHglslink] = ACTIONS(5815), + [anon_sym_BSLASHglstext] = ACTIONS(5815), + [anon_sym_BSLASHGlstext] = ACTIONS(5815), + [anon_sym_BSLASHGLStext] = ACTIONS(5815), + [anon_sym_BSLASHglsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5815), + [anon_sym_BSLASHglsplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSplural] = ACTIONS(5815), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5815), + [anon_sym_BSLASHglsname] = ACTIONS(5815), + [anon_sym_BSLASHGlsname] = ACTIONS(5815), + [anon_sym_BSLASHGLSname] = ACTIONS(5815), + [anon_sym_BSLASHglssymbol] = ACTIONS(5815), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5815), + [anon_sym_BSLASHglsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5815), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5815), + [anon_sym_BSLASHglsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5815), + [anon_sym_BSLASHglsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5815), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5815), + [anon_sym_BSLASHglsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5815), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5815), + [anon_sym_BSLASHglsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5815), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5815), + [anon_sym_BSLASHnewacronym] = ACTIONS(5815), + [anon_sym_BSLASHacrshort] = ACTIONS(5815), + [anon_sym_BSLASHAcrshort] = ACTIONS(5815), + [anon_sym_BSLASHACRshort] = ACTIONS(5815), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5815), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5815), + [anon_sym_BSLASHacrlong] = ACTIONS(5815), + [anon_sym_BSLASHAcrlong] = ACTIONS(5815), + [anon_sym_BSLASHACRlong] = ACTIONS(5815), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5815), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5815), + [anon_sym_BSLASHacrfull] = ACTIONS(5815), + [anon_sym_BSLASHAcrfull] = ACTIONS(5815), + [anon_sym_BSLASHACRfull] = ACTIONS(5815), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5815), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5815), + [anon_sym_BSLASHacs] = ACTIONS(5815), + [anon_sym_BSLASHAcs] = ACTIONS(5815), + [anon_sym_BSLASHacsp] = ACTIONS(5815), + [anon_sym_BSLASHAcsp] = ACTIONS(5815), + [anon_sym_BSLASHacl] = ACTIONS(5815), + [anon_sym_BSLASHAcl] = ACTIONS(5815), + [anon_sym_BSLASHaclp] = ACTIONS(5815), + [anon_sym_BSLASHAclp] = ACTIONS(5815), + [anon_sym_BSLASHacf] = ACTIONS(5815), + [anon_sym_BSLASHAcf] = ACTIONS(5815), + [anon_sym_BSLASHacfp] = ACTIONS(5815), + [anon_sym_BSLASHAcfp] = ACTIONS(5815), + [anon_sym_BSLASHac] = ACTIONS(5815), + [anon_sym_BSLASHAc] = ACTIONS(5815), + [anon_sym_BSLASHacp] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5815), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5815), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5815), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5815), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5815), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5813), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5815), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), + [anon_sym_BSLASHcolor] = ACTIONS(5815), + [anon_sym_BSLASHcolorbox] = ACTIONS(5815), + [anon_sym_BSLASHtextcolor] = ACTIONS(5815), + [anon_sym_BSLASHpagecolor] = ACTIONS(5815), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5815), + }, + [1722] = { + [sym_command_name] = ACTIONS(6263), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6263), + [anon_sym_RBRACK] = ACTIONS(6261), + [anon_sym_COMMA] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(6261), + [anon_sym_RBRACE] = ACTIONS(6261), + [sym_word] = ACTIONS(6263), + [sym_placeholder] = ACTIONS(6261), + [anon_sym_PLUS] = ACTIONS(6263), + [anon_sym_DASH] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_SLASH] = ACTIONS(6263), + [anon_sym_CARET] = ACTIONS(6263), + [anon_sym__] = ACTIONS(6263), + [anon_sym_LT] = ACTIONS(6263), + [anon_sym_GT] = ACTIONS(6263), + [anon_sym_BANG] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(6263), + [anon_sym_SQUOTE] = ACTIONS(6263), + [anon_sym_BSLASHtitle] = ACTIONS(6263), + [anon_sym_BSLASHauthor] = ACTIONS(6263), + [anon_sym_BSLASHusepackage] = ACTIONS(6263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6263), + [anon_sym_BSLASHinclude] = ACTIONS(6263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6263), + [anon_sym_BSLASHinput] = ACTIONS(6263), + [anon_sym_BSLASHsubfile] = ACTIONS(6263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6263), + [anon_sym_BSLASHbibliography] = ACTIONS(6263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), + [anon_sym_BSLASHincludesvg] = ACTIONS(6263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6263), + [anon_sym_BSLASHimport] = ACTIONS(6263), + [anon_sym_BSLASHsubimport] = ACTIONS(6263), + [anon_sym_BSLASHinputfrom] = ACTIONS(6263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6263), + [anon_sym_BSLASHincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6263), + [anon_sym_BSLASHcaption] = ACTIONS(6263), + [anon_sym_BSLASHcite] = ACTIONS(6263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCite] = ACTIONS(6263), + [anon_sym_BSLASHnocite] = ACTIONS(6263), + [anon_sym_BSLASHcitet] = ACTIONS(6263), + [anon_sym_BSLASHcitep] = ACTIONS(6263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteauthor] = ACTIONS(6263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitetitle] = ACTIONS(6263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteyear] = ACTIONS(6263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6261), + [anon_sym_BSLASHcitedate] = ACTIONS(6263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6261), + [anon_sym_BSLASHciteurl] = ACTIONS(6263), + [anon_sym_BSLASHfullcite] = ACTIONS(6263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6263), + [anon_sym_BSLASHcitealt] = ACTIONS(6263), + [anon_sym_BSLASHcitealp] = ACTIONS(6263), + [anon_sym_BSLASHcitetext] = ACTIONS(6263), + [anon_sym_BSLASHparencite] = ACTIONS(6263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHParencite] = ACTIONS(6263), + [anon_sym_BSLASHfootcite] = ACTIONS(6263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6263), + [anon_sym_BSLASHtextcite] = ACTIONS(6263), + [anon_sym_BSLASHTextcite] = ACTIONS(6263), + [anon_sym_BSLASHsmartcite] = ACTIONS(6263), + [anon_sym_BSLASHSmartcite] = ACTIONS(6263), + [anon_sym_BSLASHsupercite] = ACTIONS(6263), + [anon_sym_BSLASHautocite] = ACTIONS(6263), + [anon_sym_BSLASHAutocite] = ACTIONS(6263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6261), + [anon_sym_BSLASHvolcite] = ACTIONS(6263), + [anon_sym_BSLASHVolcite] = ACTIONS(6263), + [anon_sym_BSLASHpvolcite] = ACTIONS(6263), + [anon_sym_BSLASHPvolcite] = ACTIONS(6263), + [anon_sym_BSLASHfvolcite] = ACTIONS(6263), + [anon_sym_BSLASHftvolcite] = ACTIONS(6263), + [anon_sym_BSLASHsvolcite] = ACTIONS(6263), + [anon_sym_BSLASHSvolcite] = ACTIONS(6263), + [anon_sym_BSLASHtvolcite] = ACTIONS(6263), + [anon_sym_BSLASHTvolcite] = ACTIONS(6263), + [anon_sym_BSLASHavolcite] = ACTIONS(6263), + [anon_sym_BSLASHAvolcite] = ACTIONS(6263), + [anon_sym_BSLASHnotecite] = ACTIONS(6263), + [anon_sym_BSLASHNotecite] = ACTIONS(6263), + [anon_sym_BSLASHpnotecite] = ACTIONS(6263), + [anon_sym_BSLASHPnotecite] = ACTIONS(6263), + [anon_sym_BSLASHfnotecite] = ACTIONS(6263), + [anon_sym_BSLASHlabel] = ACTIONS(6263), + [anon_sym_BSLASHref] = ACTIONS(6263), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHvref] = ACTIONS(6263), + [anon_sym_BSLASHVref] = ACTIONS(6263), + [anon_sym_BSLASHautoref] = ACTIONS(6263), + [anon_sym_BSLASHpageref] = ACTIONS(6263), + [anon_sym_BSLASHcref] = ACTIONS(6263), + [anon_sym_BSLASHCref] = ACTIONS(6263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnameCref] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6263), + [anon_sym_BSLASHlabelcref] = ACTIONS(6263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHCrefrange] = ACTIONS(6263), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand] = ACTIONS(6263), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6263), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6263), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6261), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdef] = ACTIONS(6263), + [anon_sym_BSLASHlet] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6263), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6263), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6263), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6263), + [anon_sym_BSLASHgls] = ACTIONS(6263), + [anon_sym_BSLASHGls] = ACTIONS(6263), + [anon_sym_BSLASHGLS] = ACTIONS(6263), + [anon_sym_BSLASHglspl] = ACTIONS(6263), + [anon_sym_BSLASHGlspl] = ACTIONS(6263), + [anon_sym_BSLASHGLSpl] = ACTIONS(6263), + [anon_sym_BSLASHglsdisp] = ACTIONS(6263), + [anon_sym_BSLASHglslink] = ACTIONS(6263), + [anon_sym_BSLASHglstext] = ACTIONS(6263), + [anon_sym_BSLASHGlstext] = ACTIONS(6263), + [anon_sym_BSLASHGLStext] = ACTIONS(6263), + [anon_sym_BSLASHglsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6263), + [anon_sym_BSLASHglsplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSplural] = ACTIONS(6263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6263), + [anon_sym_BSLASHglsname] = ACTIONS(6263), + [anon_sym_BSLASHGlsname] = ACTIONS(6263), + [anon_sym_BSLASHGLSname] = ACTIONS(6263), + [anon_sym_BSLASHglssymbol] = ACTIONS(6263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6263), + [anon_sym_BSLASHglsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6263), + [anon_sym_BSLASHglsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6263), + [anon_sym_BSLASHglsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6263), + [anon_sym_BSLASHglsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6263), + [anon_sym_BSLASHglsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6263), + [anon_sym_BSLASHnewacronym] = ACTIONS(6263), + [anon_sym_BSLASHacrshort] = ACTIONS(6263), + [anon_sym_BSLASHAcrshort] = ACTIONS(6263), + [anon_sym_BSLASHACRshort] = ACTIONS(6263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6263), + [anon_sym_BSLASHacrlong] = ACTIONS(6263), + [anon_sym_BSLASHAcrlong] = ACTIONS(6263), + [anon_sym_BSLASHACRlong] = ACTIONS(6263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6263), + [anon_sym_BSLASHacrfull] = ACTIONS(6263), + [anon_sym_BSLASHAcrfull] = ACTIONS(6263), + [anon_sym_BSLASHACRfull] = ACTIONS(6263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6263), + [anon_sym_BSLASHacs] = ACTIONS(6263), + [anon_sym_BSLASHAcs] = ACTIONS(6263), + [anon_sym_BSLASHacsp] = ACTIONS(6263), + [anon_sym_BSLASHAcsp] = ACTIONS(6263), + [anon_sym_BSLASHacl] = ACTIONS(6263), + [anon_sym_BSLASHAcl] = ACTIONS(6263), + [anon_sym_BSLASHaclp] = ACTIONS(6263), + [anon_sym_BSLASHAclp] = ACTIONS(6263), + [anon_sym_BSLASHacf] = ACTIONS(6263), + [anon_sym_BSLASHAcf] = ACTIONS(6263), + [anon_sym_BSLASHacfp] = ACTIONS(6263), + [anon_sym_BSLASHAcfp] = ACTIONS(6263), + [anon_sym_BSLASHac] = ACTIONS(6263), + [anon_sym_BSLASHAc] = ACTIONS(6263), + [anon_sym_BSLASHacp] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6263), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6263), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6263), + [anon_sym_BSLASHcolor] = ACTIONS(6263), + [anon_sym_BSLASHcolorbox] = ACTIONS(6263), + [anon_sym_BSLASHtextcolor] = ACTIONS(6263), + [anon_sym_BSLASHpagecolor] = ACTIONS(6263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6263), + }, + [1723] = { + [sym_command_name] = ACTIONS(6081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6081), + [anon_sym_RBRACK] = ACTIONS(6079), + [anon_sym_COMMA] = ACTIONS(6079), + [anon_sym_EQ] = ACTIONS(6079), + [anon_sym_RBRACE] = ACTIONS(6079), + [sym_word] = ACTIONS(6081), + [sym_placeholder] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(6081), + [anon_sym_DASH] = ACTIONS(6081), + [anon_sym_STAR] = ACTIONS(6081), + [anon_sym_SLASH] = ACTIONS(6081), + [anon_sym_CARET] = ACTIONS(6081), + [anon_sym__] = ACTIONS(6081), + [anon_sym_LT] = ACTIONS(6081), + [anon_sym_GT] = ACTIONS(6081), + [anon_sym_BANG] = ACTIONS(6081), + [anon_sym_PIPE] = ACTIONS(6081), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_SQUOTE] = ACTIONS(6081), + [anon_sym_BSLASHtitle] = ACTIONS(6081), + [anon_sym_BSLASHauthor] = ACTIONS(6081), + [anon_sym_BSLASHusepackage] = ACTIONS(6081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6081), + [anon_sym_BSLASHinclude] = ACTIONS(6081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6081), + [anon_sym_BSLASHinput] = ACTIONS(6081), + [anon_sym_BSLASHsubfile] = ACTIONS(6081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6081), + [anon_sym_BSLASHbibliography] = ACTIONS(6081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6081), + [anon_sym_BSLASHincludesvg] = ACTIONS(6081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6081), + [anon_sym_BSLASHimport] = ACTIONS(6081), + [anon_sym_BSLASHsubimport] = ACTIONS(6081), + [anon_sym_BSLASHinputfrom] = ACTIONS(6081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6081), + [anon_sym_BSLASHincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6081), + [anon_sym_BSLASHcaption] = ACTIONS(6081), + [anon_sym_BSLASHcite] = ACTIONS(6081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCite] = ACTIONS(6081), + [anon_sym_BSLASHnocite] = ACTIONS(6081), + [anon_sym_BSLASHcitet] = ACTIONS(6081), + [anon_sym_BSLASHcitep] = ACTIONS(6081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteauthor] = ACTIONS(6081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitetitle] = ACTIONS(6081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteyear] = ACTIONS(6081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6079), + [anon_sym_BSLASHcitedate] = ACTIONS(6081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6079), + [anon_sym_BSLASHciteurl] = ACTIONS(6081), + [anon_sym_BSLASHfullcite] = ACTIONS(6081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6081), + [anon_sym_BSLASHcitealt] = ACTIONS(6081), + [anon_sym_BSLASHcitealp] = ACTIONS(6081), + [anon_sym_BSLASHcitetext] = ACTIONS(6081), + [anon_sym_BSLASHparencite] = ACTIONS(6081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHParencite] = ACTIONS(6081), + [anon_sym_BSLASHfootcite] = ACTIONS(6081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6081), + [anon_sym_BSLASHtextcite] = ACTIONS(6081), + [anon_sym_BSLASHTextcite] = ACTIONS(6081), + [anon_sym_BSLASHsmartcite] = ACTIONS(6081), + [anon_sym_BSLASHSmartcite] = ACTIONS(6081), + [anon_sym_BSLASHsupercite] = ACTIONS(6081), + [anon_sym_BSLASHautocite] = ACTIONS(6081), + [anon_sym_BSLASHAutocite] = ACTIONS(6081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6079), + [anon_sym_BSLASHvolcite] = ACTIONS(6081), + [anon_sym_BSLASHVolcite] = ACTIONS(6081), + [anon_sym_BSLASHpvolcite] = ACTIONS(6081), + [anon_sym_BSLASHPvolcite] = ACTIONS(6081), + [anon_sym_BSLASHfvolcite] = ACTIONS(6081), + [anon_sym_BSLASHftvolcite] = ACTIONS(6081), + [anon_sym_BSLASHsvolcite] = ACTIONS(6081), + [anon_sym_BSLASHSvolcite] = ACTIONS(6081), + [anon_sym_BSLASHtvolcite] = ACTIONS(6081), + [anon_sym_BSLASHTvolcite] = ACTIONS(6081), + [anon_sym_BSLASHavolcite] = ACTIONS(6081), + [anon_sym_BSLASHAvolcite] = ACTIONS(6081), + [anon_sym_BSLASHnotecite] = ACTIONS(6081), + [anon_sym_BSLASHNotecite] = ACTIONS(6081), + [anon_sym_BSLASHpnotecite] = ACTIONS(6081), + [anon_sym_BSLASHPnotecite] = ACTIONS(6081), + [anon_sym_BSLASHfnotecite] = ACTIONS(6081), + [anon_sym_BSLASHlabel] = ACTIONS(6081), + [anon_sym_BSLASHref] = ACTIONS(6081), + [anon_sym_BSLASHeqref] = ACTIONS(6081), + [anon_sym_BSLASHvref] = ACTIONS(6081), + [anon_sym_BSLASHVref] = ACTIONS(6081), + [anon_sym_BSLASHautoref] = ACTIONS(6081), + [anon_sym_BSLASHpageref] = ACTIONS(6081), + [anon_sym_BSLASHcref] = ACTIONS(6081), + [anon_sym_BSLASHCref] = ACTIONS(6081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnameCref] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6081), + [anon_sym_BSLASHlabelcref] = ACTIONS(6081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange] = ACTIONS(6081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHCrefrange] = ACTIONS(6081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6079), + [anon_sym_BSLASHnewlabel] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand] = ACTIONS(6081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdef] = ACTIONS(6081), + [anon_sym_BSLASHlet] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6081), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6081), + [anon_sym_BSLASHgls] = ACTIONS(6081), + [anon_sym_BSLASHGls] = ACTIONS(6081), + [anon_sym_BSLASHGLS] = ACTIONS(6081), + [anon_sym_BSLASHglspl] = ACTIONS(6081), + [anon_sym_BSLASHGlspl] = ACTIONS(6081), + [anon_sym_BSLASHGLSpl] = ACTIONS(6081), + [anon_sym_BSLASHglsdisp] = ACTIONS(6081), + [anon_sym_BSLASHglslink] = ACTIONS(6081), + [anon_sym_BSLASHglstext] = ACTIONS(6081), + [anon_sym_BSLASHGlstext] = ACTIONS(6081), + [anon_sym_BSLASHGLStext] = ACTIONS(6081), + [anon_sym_BSLASHglsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6081), + [anon_sym_BSLASHglsplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSplural] = ACTIONS(6081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6081), + [anon_sym_BSLASHglsname] = ACTIONS(6081), + [anon_sym_BSLASHGlsname] = ACTIONS(6081), + [anon_sym_BSLASHGLSname] = ACTIONS(6081), + [anon_sym_BSLASHglssymbol] = ACTIONS(6081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6081), + [anon_sym_BSLASHglsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6081), + [anon_sym_BSLASHglsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6081), + [anon_sym_BSLASHglsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6081), + [anon_sym_BSLASHglsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6081), + [anon_sym_BSLASHglsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6081), + [anon_sym_BSLASHnewacronym] = ACTIONS(6081), + [anon_sym_BSLASHacrshort] = ACTIONS(6081), + [anon_sym_BSLASHAcrshort] = ACTIONS(6081), + [anon_sym_BSLASHACRshort] = ACTIONS(6081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6081), + [anon_sym_BSLASHacrlong] = ACTIONS(6081), + [anon_sym_BSLASHAcrlong] = ACTIONS(6081), + [anon_sym_BSLASHACRlong] = ACTIONS(6081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6081), + [anon_sym_BSLASHacrfull] = ACTIONS(6081), + [anon_sym_BSLASHAcrfull] = ACTIONS(6081), + [anon_sym_BSLASHACRfull] = ACTIONS(6081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6081), + [anon_sym_BSLASHacs] = ACTIONS(6081), + [anon_sym_BSLASHAcs] = ACTIONS(6081), + [anon_sym_BSLASHacsp] = ACTIONS(6081), + [anon_sym_BSLASHAcsp] = ACTIONS(6081), + [anon_sym_BSLASHacl] = ACTIONS(6081), + [anon_sym_BSLASHAcl] = ACTIONS(6081), + [anon_sym_BSLASHaclp] = ACTIONS(6081), + [anon_sym_BSLASHAclp] = ACTIONS(6081), + [anon_sym_BSLASHacf] = ACTIONS(6081), + [anon_sym_BSLASHAcf] = ACTIONS(6081), + [anon_sym_BSLASHacfp] = ACTIONS(6081), + [anon_sym_BSLASHAcfp] = ACTIONS(6081), + [anon_sym_BSLASHac] = ACTIONS(6081), + [anon_sym_BSLASHAc] = ACTIONS(6081), + [anon_sym_BSLASHacp] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6081), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6081), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6079), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6081), + [anon_sym_BSLASHcolor] = ACTIONS(6081), + [anon_sym_BSLASHcolorbox] = ACTIONS(6081), + [anon_sym_BSLASHtextcolor] = ACTIONS(6081), + [anon_sym_BSLASHpagecolor] = ACTIONS(6081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6081), + }, + [1724] = { + [sym_command_name] = ACTIONS(5999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5999), + [anon_sym_RBRACK] = ACTIONS(5997), + [anon_sym_COMMA] = ACTIONS(5997), + [anon_sym_EQ] = ACTIONS(5997), + [anon_sym_RBRACE] = ACTIONS(5997), + [sym_word] = ACTIONS(5999), + [sym_placeholder] = ACTIONS(5997), + [anon_sym_PLUS] = ACTIONS(5999), + [anon_sym_DASH] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5999), + [anon_sym__] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(5999), + [anon_sym_GT] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(5999), + [anon_sym_PIPE] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_SQUOTE] = ACTIONS(5999), + [anon_sym_BSLASHtitle] = ACTIONS(5999), + [anon_sym_BSLASHauthor] = ACTIONS(5999), + [anon_sym_BSLASHusepackage] = ACTIONS(5999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5999), + [anon_sym_BSLASHinclude] = ACTIONS(5999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5999), + [anon_sym_BSLASHinput] = ACTIONS(5999), + [anon_sym_BSLASHsubfile] = ACTIONS(5999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5999), + [anon_sym_BSLASHbibliography] = ACTIONS(5999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5999), + [anon_sym_BSLASHincludesvg] = ACTIONS(5999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5999), + [anon_sym_BSLASHimport] = ACTIONS(5999), + [anon_sym_BSLASHsubimport] = ACTIONS(5999), + [anon_sym_BSLASHinputfrom] = ACTIONS(5999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5999), + [anon_sym_BSLASHincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5999), + [anon_sym_BSLASHcaption] = ACTIONS(5999), + [anon_sym_BSLASHcite] = ACTIONS(5999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCite] = ACTIONS(5999), + [anon_sym_BSLASHnocite] = ACTIONS(5999), + [anon_sym_BSLASHcitet] = ACTIONS(5999), + [anon_sym_BSLASHcitep] = ACTIONS(5999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteauthor] = ACTIONS(5999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitetitle] = ACTIONS(5999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteyear] = ACTIONS(5999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5997), + [anon_sym_BSLASHcitedate] = ACTIONS(5999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5997), + [anon_sym_BSLASHciteurl] = ACTIONS(5999), + [anon_sym_BSLASHfullcite] = ACTIONS(5999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5999), + [anon_sym_BSLASHcitealt] = ACTIONS(5999), + [anon_sym_BSLASHcitealp] = ACTIONS(5999), + [anon_sym_BSLASHcitetext] = ACTIONS(5999), + [anon_sym_BSLASHparencite] = ACTIONS(5999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHParencite] = ACTIONS(5999), + [anon_sym_BSLASHfootcite] = ACTIONS(5999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5999), + [anon_sym_BSLASHtextcite] = ACTIONS(5999), + [anon_sym_BSLASHTextcite] = ACTIONS(5999), + [anon_sym_BSLASHsmartcite] = ACTIONS(5999), + [anon_sym_BSLASHSmartcite] = ACTIONS(5999), + [anon_sym_BSLASHsupercite] = ACTIONS(5999), + [anon_sym_BSLASHautocite] = ACTIONS(5999), + [anon_sym_BSLASHAutocite] = ACTIONS(5999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5997), + [anon_sym_BSLASHvolcite] = ACTIONS(5999), + [anon_sym_BSLASHVolcite] = ACTIONS(5999), + [anon_sym_BSLASHpvolcite] = ACTIONS(5999), + [anon_sym_BSLASHPvolcite] = ACTIONS(5999), + [anon_sym_BSLASHfvolcite] = ACTIONS(5999), + [anon_sym_BSLASHftvolcite] = ACTIONS(5999), + [anon_sym_BSLASHsvolcite] = ACTIONS(5999), + [anon_sym_BSLASHSvolcite] = ACTIONS(5999), + [anon_sym_BSLASHtvolcite] = ACTIONS(5999), + [anon_sym_BSLASHTvolcite] = ACTIONS(5999), + [anon_sym_BSLASHavolcite] = ACTIONS(5999), + [anon_sym_BSLASHAvolcite] = ACTIONS(5999), + [anon_sym_BSLASHnotecite] = ACTIONS(5999), + [anon_sym_BSLASHNotecite] = ACTIONS(5999), + [anon_sym_BSLASHpnotecite] = ACTIONS(5999), + [anon_sym_BSLASHPnotecite] = ACTIONS(5999), + [anon_sym_BSLASHfnotecite] = ACTIONS(5999), + [anon_sym_BSLASHlabel] = ACTIONS(5999), + [anon_sym_BSLASHref] = ACTIONS(5999), + [anon_sym_BSLASHeqref] = ACTIONS(5999), + [anon_sym_BSLASHvref] = ACTIONS(5999), + [anon_sym_BSLASHVref] = ACTIONS(5999), + [anon_sym_BSLASHautoref] = ACTIONS(5999), + [anon_sym_BSLASHpageref] = ACTIONS(5999), + [anon_sym_BSLASHcref] = ACTIONS(5999), + [anon_sym_BSLASHCref] = ACTIONS(5999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnameCref] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5999), + [anon_sym_BSLASHlabelcref] = ACTIONS(5999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange] = ACTIONS(5999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHCrefrange] = ACTIONS(5999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5997), + [anon_sym_BSLASHnewlabel] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand] = ACTIONS(5999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdef] = ACTIONS(5999), + [anon_sym_BSLASHlet] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5999), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5999), + [anon_sym_BSLASHgls] = ACTIONS(5999), + [anon_sym_BSLASHGls] = ACTIONS(5999), + [anon_sym_BSLASHGLS] = ACTIONS(5999), + [anon_sym_BSLASHglspl] = ACTIONS(5999), + [anon_sym_BSLASHGlspl] = ACTIONS(5999), + [anon_sym_BSLASHGLSpl] = ACTIONS(5999), + [anon_sym_BSLASHglsdisp] = ACTIONS(5999), + [anon_sym_BSLASHglslink] = ACTIONS(5999), + [anon_sym_BSLASHglstext] = ACTIONS(5999), + [anon_sym_BSLASHGlstext] = ACTIONS(5999), + [anon_sym_BSLASHGLStext] = ACTIONS(5999), + [anon_sym_BSLASHglsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5999), + [anon_sym_BSLASHglsplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSplural] = ACTIONS(5999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5999), + [anon_sym_BSLASHglsname] = ACTIONS(5999), + [anon_sym_BSLASHGlsname] = ACTIONS(5999), + [anon_sym_BSLASHGLSname] = ACTIONS(5999), + [anon_sym_BSLASHglssymbol] = ACTIONS(5999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5999), + [anon_sym_BSLASHglsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5999), + [anon_sym_BSLASHglsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5999), + [anon_sym_BSLASHglsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5999), + [anon_sym_BSLASHglsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5999), + [anon_sym_BSLASHglsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5999), + [anon_sym_BSLASHnewacronym] = ACTIONS(5999), + [anon_sym_BSLASHacrshort] = ACTIONS(5999), + [anon_sym_BSLASHAcrshort] = ACTIONS(5999), + [anon_sym_BSLASHACRshort] = ACTIONS(5999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5999), + [anon_sym_BSLASHacrlong] = ACTIONS(5999), + [anon_sym_BSLASHAcrlong] = ACTIONS(5999), + [anon_sym_BSLASHACRlong] = ACTIONS(5999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5999), + [anon_sym_BSLASHacrfull] = ACTIONS(5999), + [anon_sym_BSLASHAcrfull] = ACTIONS(5999), + [anon_sym_BSLASHACRfull] = ACTIONS(5999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5999), + [anon_sym_BSLASHacs] = ACTIONS(5999), + [anon_sym_BSLASHAcs] = ACTIONS(5999), + [anon_sym_BSLASHacsp] = ACTIONS(5999), + [anon_sym_BSLASHAcsp] = ACTIONS(5999), + [anon_sym_BSLASHacl] = ACTIONS(5999), + [anon_sym_BSLASHAcl] = ACTIONS(5999), + [anon_sym_BSLASHaclp] = ACTIONS(5999), + [anon_sym_BSLASHAclp] = ACTIONS(5999), + [anon_sym_BSLASHacf] = ACTIONS(5999), + [anon_sym_BSLASHAcf] = ACTIONS(5999), + [anon_sym_BSLASHacfp] = ACTIONS(5999), + [anon_sym_BSLASHAcfp] = ACTIONS(5999), + [anon_sym_BSLASHac] = ACTIONS(5999), + [anon_sym_BSLASHAc] = ACTIONS(5999), + [anon_sym_BSLASHacp] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5999), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5999), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5997), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5999), + [anon_sym_BSLASHcolor] = ACTIONS(5999), + [anon_sym_BSLASHcolorbox] = ACTIONS(5999), + [anon_sym_BSLASHtextcolor] = ACTIONS(5999), + [anon_sym_BSLASHpagecolor] = ACTIONS(5999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5999), + }, + [1725] = { + [sym_command_name] = ACTIONS(6135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6135), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [sym_word] = ACTIONS(6135), + [sym_placeholder] = ACTIONS(6133), + [anon_sym_PLUS] = ACTIONS(6135), + [anon_sym_DASH] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6135), + [anon_sym_SLASH] = ACTIONS(6135), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym__] = ACTIONS(6135), + [anon_sym_LT] = ACTIONS(6135), + [anon_sym_GT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6135), + [anon_sym_COLON] = ACTIONS(6135), + [anon_sym_SQUOTE] = ACTIONS(6135), + [anon_sym_BSLASHtitle] = ACTIONS(6135), + [anon_sym_BSLASHauthor] = ACTIONS(6135), + [anon_sym_BSLASHusepackage] = ACTIONS(6135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6135), + [anon_sym_BSLASHinclude] = ACTIONS(6135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6135), + [anon_sym_BSLASHinput] = ACTIONS(6135), + [anon_sym_BSLASHsubfile] = ACTIONS(6135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6135), + [anon_sym_BSLASHbibliography] = ACTIONS(6135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6135), + [anon_sym_BSLASHincludesvg] = ACTIONS(6135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6135), + [anon_sym_BSLASHimport] = ACTIONS(6135), + [anon_sym_BSLASHsubimport] = ACTIONS(6135), + [anon_sym_BSLASHinputfrom] = ACTIONS(6135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6135), + [anon_sym_BSLASHincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6135), + [anon_sym_BSLASHcaption] = ACTIONS(6135), + [anon_sym_BSLASHcite] = ACTIONS(6135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCite] = ACTIONS(6135), + [anon_sym_BSLASHnocite] = ACTIONS(6135), + [anon_sym_BSLASHcitet] = ACTIONS(6135), + [anon_sym_BSLASHcitep] = ACTIONS(6135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteauthor] = ACTIONS(6135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitetitle] = ACTIONS(6135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteyear] = ACTIONS(6135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6133), + [anon_sym_BSLASHcitedate] = ACTIONS(6135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6133), + [anon_sym_BSLASHciteurl] = ACTIONS(6135), + [anon_sym_BSLASHfullcite] = ACTIONS(6135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6135), + [anon_sym_BSLASHcitealt] = ACTIONS(6135), + [anon_sym_BSLASHcitealp] = ACTIONS(6135), + [anon_sym_BSLASHcitetext] = ACTIONS(6135), + [anon_sym_BSLASHparencite] = ACTIONS(6135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHParencite] = ACTIONS(6135), + [anon_sym_BSLASHfootcite] = ACTIONS(6135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6135), + [anon_sym_BSLASHtextcite] = ACTIONS(6135), + [anon_sym_BSLASHTextcite] = ACTIONS(6135), + [anon_sym_BSLASHsmartcite] = ACTIONS(6135), + [anon_sym_BSLASHSmartcite] = ACTIONS(6135), + [anon_sym_BSLASHsupercite] = ACTIONS(6135), + [anon_sym_BSLASHautocite] = ACTIONS(6135), + [anon_sym_BSLASHAutocite] = ACTIONS(6135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6133), + [anon_sym_BSLASHvolcite] = ACTIONS(6135), + [anon_sym_BSLASHVolcite] = ACTIONS(6135), + [anon_sym_BSLASHpvolcite] = ACTIONS(6135), + [anon_sym_BSLASHPvolcite] = ACTIONS(6135), + [anon_sym_BSLASHfvolcite] = ACTIONS(6135), + [anon_sym_BSLASHftvolcite] = ACTIONS(6135), + [anon_sym_BSLASHsvolcite] = ACTIONS(6135), + [anon_sym_BSLASHSvolcite] = ACTIONS(6135), + [anon_sym_BSLASHtvolcite] = ACTIONS(6135), + [anon_sym_BSLASHTvolcite] = ACTIONS(6135), + [anon_sym_BSLASHavolcite] = ACTIONS(6135), + [anon_sym_BSLASHAvolcite] = ACTIONS(6135), + [anon_sym_BSLASHnotecite] = ACTIONS(6135), + [anon_sym_BSLASHNotecite] = ACTIONS(6135), + [anon_sym_BSLASHpnotecite] = ACTIONS(6135), + [anon_sym_BSLASHPnotecite] = ACTIONS(6135), + [anon_sym_BSLASHfnotecite] = ACTIONS(6135), + [anon_sym_BSLASHlabel] = ACTIONS(6135), + [anon_sym_BSLASHref] = ACTIONS(6135), + [anon_sym_BSLASHeqref] = ACTIONS(6135), + [anon_sym_BSLASHvref] = ACTIONS(6135), + [anon_sym_BSLASHVref] = ACTIONS(6135), + [anon_sym_BSLASHautoref] = ACTIONS(6135), + [anon_sym_BSLASHpageref] = ACTIONS(6135), + [anon_sym_BSLASHcref] = ACTIONS(6135), + [anon_sym_BSLASHCref] = ACTIONS(6135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnameCref] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6135), + [anon_sym_BSLASHlabelcref] = ACTIONS(6135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange] = ACTIONS(6135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHCrefrange] = ACTIONS(6135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6133), + [anon_sym_BSLASHnewlabel] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand] = ACTIONS(6135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdef] = ACTIONS(6135), + [anon_sym_BSLASHlet] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6135), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6135), + [anon_sym_BSLASHgls] = ACTIONS(6135), + [anon_sym_BSLASHGls] = ACTIONS(6135), + [anon_sym_BSLASHGLS] = ACTIONS(6135), + [anon_sym_BSLASHglspl] = ACTIONS(6135), + [anon_sym_BSLASHGlspl] = ACTIONS(6135), + [anon_sym_BSLASHGLSpl] = ACTIONS(6135), + [anon_sym_BSLASHglsdisp] = ACTIONS(6135), + [anon_sym_BSLASHglslink] = ACTIONS(6135), + [anon_sym_BSLASHglstext] = ACTIONS(6135), + [anon_sym_BSLASHGlstext] = ACTIONS(6135), + [anon_sym_BSLASHGLStext] = ACTIONS(6135), + [anon_sym_BSLASHglsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6135), + [anon_sym_BSLASHglsplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSplural] = ACTIONS(6135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6135), + [anon_sym_BSLASHglsname] = ACTIONS(6135), + [anon_sym_BSLASHGlsname] = ACTIONS(6135), + [anon_sym_BSLASHGLSname] = ACTIONS(6135), + [anon_sym_BSLASHglssymbol] = ACTIONS(6135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6135), + [anon_sym_BSLASHglsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6135), + [anon_sym_BSLASHglsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6135), + [anon_sym_BSLASHglsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6135), + [anon_sym_BSLASHglsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6135), + [anon_sym_BSLASHglsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6135), + [anon_sym_BSLASHnewacronym] = ACTIONS(6135), + [anon_sym_BSLASHacrshort] = ACTIONS(6135), + [anon_sym_BSLASHAcrshort] = ACTIONS(6135), + [anon_sym_BSLASHACRshort] = ACTIONS(6135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6135), + [anon_sym_BSLASHacrlong] = ACTIONS(6135), + [anon_sym_BSLASHAcrlong] = ACTIONS(6135), + [anon_sym_BSLASHACRlong] = ACTIONS(6135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6135), + [anon_sym_BSLASHacrfull] = ACTIONS(6135), + [anon_sym_BSLASHAcrfull] = ACTIONS(6135), + [anon_sym_BSLASHACRfull] = ACTIONS(6135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6135), + [anon_sym_BSLASHacs] = ACTIONS(6135), + [anon_sym_BSLASHAcs] = ACTIONS(6135), + [anon_sym_BSLASHacsp] = ACTIONS(6135), + [anon_sym_BSLASHAcsp] = ACTIONS(6135), + [anon_sym_BSLASHacl] = ACTIONS(6135), + [anon_sym_BSLASHAcl] = ACTIONS(6135), + [anon_sym_BSLASHaclp] = ACTIONS(6135), + [anon_sym_BSLASHAclp] = ACTIONS(6135), + [anon_sym_BSLASHacf] = ACTIONS(6135), + [anon_sym_BSLASHAcf] = ACTIONS(6135), + [anon_sym_BSLASHacfp] = ACTIONS(6135), + [anon_sym_BSLASHAcfp] = ACTIONS(6135), + [anon_sym_BSLASHac] = ACTIONS(6135), + [anon_sym_BSLASHAc] = ACTIONS(6135), + [anon_sym_BSLASHacp] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6135), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6135), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6135), + [anon_sym_BSLASHcolor] = ACTIONS(6135), + [anon_sym_BSLASHcolorbox] = ACTIONS(6135), + [anon_sym_BSLASHtextcolor] = ACTIONS(6135), + [anon_sym_BSLASHpagecolor] = ACTIONS(6135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6135), + }, + [1726] = { + [sym_command_name] = ACTIONS(6139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6139), + [anon_sym_RBRACK] = ACTIONS(6137), + [anon_sym_COMMA] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_RBRACE] = ACTIONS(6137), + [sym_word] = ACTIONS(6139), + [sym_placeholder] = ACTIONS(6137), + [anon_sym_PLUS] = ACTIONS(6139), + [anon_sym_DASH] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6139), + [anon_sym_SLASH] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym__] = ACTIONS(6139), + [anon_sym_LT] = ACTIONS(6139), + [anon_sym_GT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_COLON] = ACTIONS(6139), + [anon_sym_SQUOTE] = ACTIONS(6139), + [anon_sym_BSLASHtitle] = ACTIONS(6139), + [anon_sym_BSLASHauthor] = ACTIONS(6139), + [anon_sym_BSLASHusepackage] = ACTIONS(6139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6139), + [anon_sym_BSLASHinclude] = ACTIONS(6139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6139), + [anon_sym_BSLASHinput] = ACTIONS(6139), + [anon_sym_BSLASHsubfile] = ACTIONS(6139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6139), + [anon_sym_BSLASHbibliography] = ACTIONS(6139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6139), + [anon_sym_BSLASHincludesvg] = ACTIONS(6139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6139), + [anon_sym_BSLASHimport] = ACTIONS(6139), + [anon_sym_BSLASHsubimport] = ACTIONS(6139), + [anon_sym_BSLASHinputfrom] = ACTIONS(6139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6139), + [anon_sym_BSLASHincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6139), + [anon_sym_BSLASHcaption] = ACTIONS(6139), + [anon_sym_BSLASHcite] = ACTIONS(6139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCite] = ACTIONS(6139), + [anon_sym_BSLASHnocite] = ACTIONS(6139), + [anon_sym_BSLASHcitet] = ACTIONS(6139), + [anon_sym_BSLASHcitep] = ACTIONS(6139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteauthor] = ACTIONS(6139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitetitle] = ACTIONS(6139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteyear] = ACTIONS(6139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6137), + [anon_sym_BSLASHcitedate] = ACTIONS(6139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6137), + [anon_sym_BSLASHciteurl] = ACTIONS(6139), + [anon_sym_BSLASHfullcite] = ACTIONS(6139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6139), + [anon_sym_BSLASHcitealt] = ACTIONS(6139), + [anon_sym_BSLASHcitealp] = ACTIONS(6139), + [anon_sym_BSLASHcitetext] = ACTIONS(6139), + [anon_sym_BSLASHparencite] = ACTIONS(6139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHParencite] = ACTIONS(6139), + [anon_sym_BSLASHfootcite] = ACTIONS(6139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6139), + [anon_sym_BSLASHtextcite] = ACTIONS(6139), + [anon_sym_BSLASHTextcite] = ACTIONS(6139), + [anon_sym_BSLASHsmartcite] = ACTIONS(6139), + [anon_sym_BSLASHSmartcite] = ACTIONS(6139), + [anon_sym_BSLASHsupercite] = ACTIONS(6139), + [anon_sym_BSLASHautocite] = ACTIONS(6139), + [anon_sym_BSLASHAutocite] = ACTIONS(6139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6137), + [anon_sym_BSLASHvolcite] = ACTIONS(6139), + [anon_sym_BSLASHVolcite] = ACTIONS(6139), + [anon_sym_BSLASHpvolcite] = ACTIONS(6139), + [anon_sym_BSLASHPvolcite] = ACTIONS(6139), + [anon_sym_BSLASHfvolcite] = ACTIONS(6139), + [anon_sym_BSLASHftvolcite] = ACTIONS(6139), + [anon_sym_BSLASHsvolcite] = ACTIONS(6139), + [anon_sym_BSLASHSvolcite] = ACTIONS(6139), + [anon_sym_BSLASHtvolcite] = ACTIONS(6139), + [anon_sym_BSLASHTvolcite] = ACTIONS(6139), + [anon_sym_BSLASHavolcite] = ACTIONS(6139), + [anon_sym_BSLASHAvolcite] = ACTIONS(6139), + [anon_sym_BSLASHnotecite] = ACTIONS(6139), + [anon_sym_BSLASHNotecite] = ACTIONS(6139), + [anon_sym_BSLASHpnotecite] = ACTIONS(6139), + [anon_sym_BSLASHPnotecite] = ACTIONS(6139), + [anon_sym_BSLASHfnotecite] = ACTIONS(6139), + [anon_sym_BSLASHlabel] = ACTIONS(6139), + [anon_sym_BSLASHref] = ACTIONS(6139), + [anon_sym_BSLASHeqref] = ACTIONS(6139), + [anon_sym_BSLASHvref] = ACTIONS(6139), + [anon_sym_BSLASHVref] = ACTIONS(6139), + [anon_sym_BSLASHautoref] = ACTIONS(6139), + [anon_sym_BSLASHpageref] = ACTIONS(6139), + [anon_sym_BSLASHcref] = ACTIONS(6139), + [anon_sym_BSLASHCref] = ACTIONS(6139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnameCref] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6139), + [anon_sym_BSLASHlabelcref] = ACTIONS(6139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange] = ACTIONS(6139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHCrefrange] = ACTIONS(6139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6137), + [anon_sym_BSLASHnewlabel] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand] = ACTIONS(6139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdef] = ACTIONS(6139), + [anon_sym_BSLASHlet] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6139), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6139), + [anon_sym_BSLASHgls] = ACTIONS(6139), + [anon_sym_BSLASHGls] = ACTIONS(6139), + [anon_sym_BSLASHGLS] = ACTIONS(6139), + [anon_sym_BSLASHglspl] = ACTIONS(6139), + [anon_sym_BSLASHGlspl] = ACTIONS(6139), + [anon_sym_BSLASHGLSpl] = ACTIONS(6139), + [anon_sym_BSLASHglsdisp] = ACTIONS(6139), + [anon_sym_BSLASHglslink] = ACTIONS(6139), + [anon_sym_BSLASHglstext] = ACTIONS(6139), + [anon_sym_BSLASHGlstext] = ACTIONS(6139), + [anon_sym_BSLASHGLStext] = ACTIONS(6139), + [anon_sym_BSLASHglsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6139), + [anon_sym_BSLASHglsplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSplural] = ACTIONS(6139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6139), + [anon_sym_BSLASHglsname] = ACTIONS(6139), + [anon_sym_BSLASHGlsname] = ACTIONS(6139), + [anon_sym_BSLASHGLSname] = ACTIONS(6139), + [anon_sym_BSLASHglssymbol] = ACTIONS(6139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6139), + [anon_sym_BSLASHglsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6139), + [anon_sym_BSLASHglsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6139), + [anon_sym_BSLASHglsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6139), + [anon_sym_BSLASHglsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6139), + [anon_sym_BSLASHglsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6139), + [anon_sym_BSLASHnewacronym] = ACTIONS(6139), + [anon_sym_BSLASHacrshort] = ACTIONS(6139), + [anon_sym_BSLASHAcrshort] = ACTIONS(6139), + [anon_sym_BSLASHACRshort] = ACTIONS(6139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6139), + [anon_sym_BSLASHacrlong] = ACTIONS(6139), + [anon_sym_BSLASHAcrlong] = ACTIONS(6139), + [anon_sym_BSLASHACRlong] = ACTIONS(6139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6139), + [anon_sym_BSLASHacrfull] = ACTIONS(6139), + [anon_sym_BSLASHAcrfull] = ACTIONS(6139), + [anon_sym_BSLASHACRfull] = ACTIONS(6139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6139), + [anon_sym_BSLASHacs] = ACTIONS(6139), + [anon_sym_BSLASHAcs] = ACTIONS(6139), + [anon_sym_BSLASHacsp] = ACTIONS(6139), + [anon_sym_BSLASHAcsp] = ACTIONS(6139), + [anon_sym_BSLASHacl] = ACTIONS(6139), + [anon_sym_BSLASHAcl] = ACTIONS(6139), + [anon_sym_BSLASHaclp] = ACTIONS(6139), + [anon_sym_BSLASHAclp] = ACTIONS(6139), + [anon_sym_BSLASHacf] = ACTIONS(6139), + [anon_sym_BSLASHAcf] = ACTIONS(6139), + [anon_sym_BSLASHacfp] = ACTIONS(6139), + [anon_sym_BSLASHAcfp] = ACTIONS(6139), + [anon_sym_BSLASHac] = ACTIONS(6139), + [anon_sym_BSLASHAc] = ACTIONS(6139), + [anon_sym_BSLASHacp] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6139), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6139), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6137), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6139), + [anon_sym_BSLASHcolor] = ACTIONS(6139), + [anon_sym_BSLASHcolorbox] = ACTIONS(6139), + [anon_sym_BSLASHtextcolor] = ACTIONS(6139), + [anon_sym_BSLASHpagecolor] = ACTIONS(6139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6139), + }, + [1727] = { + [sym_command_name] = ACTIONS(5915), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [sym_word] = ACTIONS(5915), + [sym_placeholder] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym__] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_SQUOTE] = ACTIONS(5915), + [anon_sym_BSLASHtitle] = ACTIONS(5915), + [anon_sym_BSLASHauthor] = ACTIONS(5915), + [anon_sym_BSLASHusepackage] = ACTIONS(5915), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5915), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5915), + [anon_sym_BSLASHinclude] = ACTIONS(5915), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5915), + [anon_sym_BSLASHinput] = ACTIONS(5915), + [anon_sym_BSLASHsubfile] = ACTIONS(5915), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5915), + [anon_sym_BSLASHbibliography] = ACTIONS(5915), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5915), + [anon_sym_BSLASHincludesvg] = ACTIONS(5915), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5915), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5915), + [anon_sym_BSLASHimport] = ACTIONS(5915), + [anon_sym_BSLASHsubimport] = ACTIONS(5915), + [anon_sym_BSLASHinputfrom] = ACTIONS(5915), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5915), + [anon_sym_BSLASHincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5915), + [anon_sym_BSLASHcaption] = ACTIONS(5915), + [anon_sym_BSLASHcite] = ACTIONS(5915), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCite] = ACTIONS(5915), + [anon_sym_BSLASHnocite] = ACTIONS(5915), + [anon_sym_BSLASHcitet] = ACTIONS(5915), + [anon_sym_BSLASHcitep] = ACTIONS(5915), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteauthor] = ACTIONS(5915), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5915), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitetitle] = ACTIONS(5915), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteyear] = ACTIONS(5915), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5913), + [anon_sym_BSLASHcitedate] = ACTIONS(5915), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5913), + [anon_sym_BSLASHciteurl] = ACTIONS(5915), + [anon_sym_BSLASHfullcite] = ACTIONS(5915), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5915), + [anon_sym_BSLASHcitealt] = ACTIONS(5915), + [anon_sym_BSLASHcitealp] = ACTIONS(5915), + [anon_sym_BSLASHcitetext] = ACTIONS(5915), + [anon_sym_BSLASHparencite] = ACTIONS(5915), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHParencite] = ACTIONS(5915), + [anon_sym_BSLASHfootcite] = ACTIONS(5915), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5915), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5915), + [anon_sym_BSLASHtextcite] = ACTIONS(5915), + [anon_sym_BSLASHTextcite] = ACTIONS(5915), + [anon_sym_BSLASHsmartcite] = ACTIONS(5915), + [anon_sym_BSLASHSmartcite] = ACTIONS(5915), + [anon_sym_BSLASHsupercite] = ACTIONS(5915), + [anon_sym_BSLASHautocite] = ACTIONS(5915), + [anon_sym_BSLASHAutocite] = ACTIONS(5915), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5913), + [anon_sym_BSLASHvolcite] = ACTIONS(5915), + [anon_sym_BSLASHVolcite] = ACTIONS(5915), + [anon_sym_BSLASHpvolcite] = ACTIONS(5915), + [anon_sym_BSLASHPvolcite] = ACTIONS(5915), + [anon_sym_BSLASHfvolcite] = ACTIONS(5915), + [anon_sym_BSLASHftvolcite] = ACTIONS(5915), + [anon_sym_BSLASHsvolcite] = ACTIONS(5915), + [anon_sym_BSLASHSvolcite] = ACTIONS(5915), + [anon_sym_BSLASHtvolcite] = ACTIONS(5915), + [anon_sym_BSLASHTvolcite] = ACTIONS(5915), + [anon_sym_BSLASHavolcite] = ACTIONS(5915), + [anon_sym_BSLASHAvolcite] = ACTIONS(5915), + [anon_sym_BSLASHnotecite] = ACTIONS(5915), + [anon_sym_BSLASHNotecite] = ACTIONS(5915), + [anon_sym_BSLASHpnotecite] = ACTIONS(5915), + [anon_sym_BSLASHPnotecite] = ACTIONS(5915), + [anon_sym_BSLASHfnotecite] = ACTIONS(5915), + [anon_sym_BSLASHlabel] = ACTIONS(5915), + [anon_sym_BSLASHref] = ACTIONS(5915), + [anon_sym_BSLASHeqref] = ACTIONS(5915), + [anon_sym_BSLASHvref] = ACTIONS(5915), + [anon_sym_BSLASHVref] = ACTIONS(5915), + [anon_sym_BSLASHautoref] = ACTIONS(5915), + [anon_sym_BSLASHpageref] = ACTIONS(5915), + [anon_sym_BSLASHcref] = ACTIONS(5915), + [anon_sym_BSLASHCref] = ACTIONS(5915), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnameCref] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5915), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5915), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5915), + [anon_sym_BSLASHlabelcref] = ACTIONS(5915), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange] = ACTIONS(5915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHCrefrange] = ACTIONS(5915), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5913), + [anon_sym_BSLASHnewlabel] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand] = ACTIONS(5915), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5915), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5915), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5913), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5915), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdef] = ACTIONS(5915), + [anon_sym_BSLASHlet] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5915), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5915), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5915), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5915), + [anon_sym_BSLASHgls] = ACTIONS(5915), + [anon_sym_BSLASHGls] = ACTIONS(5915), + [anon_sym_BSLASHGLS] = ACTIONS(5915), + [anon_sym_BSLASHglspl] = ACTIONS(5915), + [anon_sym_BSLASHGlspl] = ACTIONS(5915), + [anon_sym_BSLASHGLSpl] = ACTIONS(5915), + [anon_sym_BSLASHglsdisp] = ACTIONS(5915), + [anon_sym_BSLASHglslink] = ACTIONS(5915), + [anon_sym_BSLASHglstext] = ACTIONS(5915), + [anon_sym_BSLASHGlstext] = ACTIONS(5915), + [anon_sym_BSLASHGLStext] = ACTIONS(5915), + [anon_sym_BSLASHglsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5915), + [anon_sym_BSLASHglsplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSplural] = ACTIONS(5915), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5915), + [anon_sym_BSLASHglsname] = ACTIONS(5915), + [anon_sym_BSLASHGlsname] = ACTIONS(5915), + [anon_sym_BSLASHGLSname] = ACTIONS(5915), + [anon_sym_BSLASHglssymbol] = ACTIONS(5915), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5915), + [anon_sym_BSLASHglsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5915), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5915), + [anon_sym_BSLASHglsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5915), + [anon_sym_BSLASHglsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5915), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5915), + [anon_sym_BSLASHglsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5915), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5915), + [anon_sym_BSLASHglsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5915), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5915), + [anon_sym_BSLASHnewacronym] = ACTIONS(5915), + [anon_sym_BSLASHacrshort] = ACTIONS(5915), + [anon_sym_BSLASHAcrshort] = ACTIONS(5915), + [anon_sym_BSLASHACRshort] = ACTIONS(5915), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5915), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5915), + [anon_sym_BSLASHacrlong] = ACTIONS(5915), + [anon_sym_BSLASHAcrlong] = ACTIONS(5915), + [anon_sym_BSLASHACRlong] = ACTIONS(5915), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5915), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5915), + [anon_sym_BSLASHacrfull] = ACTIONS(5915), + [anon_sym_BSLASHAcrfull] = ACTIONS(5915), + [anon_sym_BSLASHACRfull] = ACTIONS(5915), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5915), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5915), + [anon_sym_BSLASHacs] = ACTIONS(5915), + [anon_sym_BSLASHAcs] = ACTIONS(5915), + [anon_sym_BSLASHacsp] = ACTIONS(5915), + [anon_sym_BSLASHAcsp] = ACTIONS(5915), + [anon_sym_BSLASHacl] = ACTIONS(5915), + [anon_sym_BSLASHAcl] = ACTIONS(5915), + [anon_sym_BSLASHaclp] = ACTIONS(5915), + [anon_sym_BSLASHAclp] = ACTIONS(5915), + [anon_sym_BSLASHacf] = ACTIONS(5915), + [anon_sym_BSLASHAcf] = ACTIONS(5915), + [anon_sym_BSLASHacfp] = ACTIONS(5915), + [anon_sym_BSLASHAcfp] = ACTIONS(5915), + [anon_sym_BSLASHac] = ACTIONS(5915), + [anon_sym_BSLASHAc] = ACTIONS(5915), + [anon_sym_BSLASHacp] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5915), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5915), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5915), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5915), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5915), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5915), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5915), + [anon_sym_BSLASHcolor] = ACTIONS(5915), + [anon_sym_BSLASHcolorbox] = ACTIONS(5915), + [anon_sym_BSLASHtextcolor] = ACTIONS(5915), + [anon_sym_BSLASHpagecolor] = ACTIONS(5915), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5915), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5915), + }, + [1728] = { + [sym_command_name] = ACTIONS(5845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5845), + [anon_sym_RBRACK] = ACTIONS(5843), + [anon_sym_COMMA] = ACTIONS(5843), + [anon_sym_EQ] = ACTIONS(5843), + [anon_sym_RBRACE] = ACTIONS(5843), + [sym_word] = ACTIONS(5845), + [sym_placeholder] = ACTIONS(5843), + [anon_sym_PLUS] = ACTIONS(5845), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_STAR] = ACTIONS(5845), + [anon_sym_SLASH] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5845), + [anon_sym__] = ACTIONS(5845), + [anon_sym_LT] = ACTIONS(5845), + [anon_sym_GT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5845), + [anon_sym_PIPE] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_SQUOTE] = ACTIONS(5845), + [anon_sym_BSLASHtitle] = ACTIONS(5845), + [anon_sym_BSLASHauthor] = ACTIONS(5845), + [anon_sym_BSLASHusepackage] = ACTIONS(5845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5845), + [anon_sym_BSLASHinclude] = ACTIONS(5845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5845), + [anon_sym_BSLASHinput] = ACTIONS(5845), + [anon_sym_BSLASHsubfile] = ACTIONS(5845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5845), + [anon_sym_BSLASHbibliography] = ACTIONS(5845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5845), + [anon_sym_BSLASHincludesvg] = ACTIONS(5845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5845), + [anon_sym_BSLASHimport] = ACTIONS(5845), + [anon_sym_BSLASHsubimport] = ACTIONS(5845), + [anon_sym_BSLASHinputfrom] = ACTIONS(5845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5845), + [anon_sym_BSLASHincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5845), + [anon_sym_BSLASHcaption] = ACTIONS(5845), + [anon_sym_BSLASHcite] = ACTIONS(5845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCite] = ACTIONS(5845), + [anon_sym_BSLASHnocite] = ACTIONS(5845), + [anon_sym_BSLASHcitet] = ACTIONS(5845), + [anon_sym_BSLASHcitep] = ACTIONS(5845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteauthor] = ACTIONS(5845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitetitle] = ACTIONS(5845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteyear] = ACTIONS(5845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5843), + [anon_sym_BSLASHcitedate] = ACTIONS(5845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5843), + [anon_sym_BSLASHciteurl] = ACTIONS(5845), + [anon_sym_BSLASHfullcite] = ACTIONS(5845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5845), + [anon_sym_BSLASHcitealt] = ACTIONS(5845), + [anon_sym_BSLASHcitealp] = ACTIONS(5845), + [anon_sym_BSLASHcitetext] = ACTIONS(5845), + [anon_sym_BSLASHparencite] = ACTIONS(5845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHParencite] = ACTIONS(5845), + [anon_sym_BSLASHfootcite] = ACTIONS(5845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5845), + [anon_sym_BSLASHtextcite] = ACTIONS(5845), + [anon_sym_BSLASHTextcite] = ACTIONS(5845), + [anon_sym_BSLASHsmartcite] = ACTIONS(5845), + [anon_sym_BSLASHSmartcite] = ACTIONS(5845), + [anon_sym_BSLASHsupercite] = ACTIONS(5845), + [anon_sym_BSLASHautocite] = ACTIONS(5845), + [anon_sym_BSLASHAutocite] = ACTIONS(5845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5843), + [anon_sym_BSLASHvolcite] = ACTIONS(5845), + [anon_sym_BSLASHVolcite] = ACTIONS(5845), + [anon_sym_BSLASHpvolcite] = ACTIONS(5845), + [anon_sym_BSLASHPvolcite] = ACTIONS(5845), + [anon_sym_BSLASHfvolcite] = ACTIONS(5845), + [anon_sym_BSLASHftvolcite] = ACTIONS(5845), + [anon_sym_BSLASHsvolcite] = ACTIONS(5845), + [anon_sym_BSLASHSvolcite] = ACTIONS(5845), + [anon_sym_BSLASHtvolcite] = ACTIONS(5845), + [anon_sym_BSLASHTvolcite] = ACTIONS(5845), + [anon_sym_BSLASHavolcite] = ACTIONS(5845), + [anon_sym_BSLASHAvolcite] = ACTIONS(5845), + [anon_sym_BSLASHnotecite] = ACTIONS(5845), + [anon_sym_BSLASHNotecite] = ACTIONS(5845), + [anon_sym_BSLASHpnotecite] = ACTIONS(5845), + [anon_sym_BSLASHPnotecite] = ACTIONS(5845), + [anon_sym_BSLASHfnotecite] = ACTIONS(5845), + [anon_sym_BSLASHlabel] = ACTIONS(5845), + [anon_sym_BSLASHref] = ACTIONS(5845), + [anon_sym_BSLASHeqref] = ACTIONS(5845), + [anon_sym_BSLASHvref] = ACTIONS(5845), + [anon_sym_BSLASHVref] = ACTIONS(5845), + [anon_sym_BSLASHautoref] = ACTIONS(5845), + [anon_sym_BSLASHpageref] = ACTIONS(5845), + [anon_sym_BSLASHcref] = ACTIONS(5845), + [anon_sym_BSLASHCref] = ACTIONS(5845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnameCref] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5845), + [anon_sym_BSLASHlabelcref] = ACTIONS(5845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange] = ACTIONS(5845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHCrefrange] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5843), + [anon_sym_BSLASHnewlabel] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand] = ACTIONS(5845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdef] = ACTIONS(5845), + [anon_sym_BSLASHlet] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5845), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5845), + [anon_sym_BSLASHgls] = ACTIONS(5845), + [anon_sym_BSLASHGls] = ACTIONS(5845), + [anon_sym_BSLASHGLS] = ACTIONS(5845), + [anon_sym_BSLASHglspl] = ACTIONS(5845), + [anon_sym_BSLASHGlspl] = ACTIONS(5845), + [anon_sym_BSLASHGLSpl] = ACTIONS(5845), + [anon_sym_BSLASHglsdisp] = ACTIONS(5845), + [anon_sym_BSLASHglslink] = ACTIONS(5845), + [anon_sym_BSLASHglstext] = ACTIONS(5845), + [anon_sym_BSLASHGlstext] = ACTIONS(5845), + [anon_sym_BSLASHGLStext] = ACTIONS(5845), + [anon_sym_BSLASHglsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5845), + [anon_sym_BSLASHglsplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSplural] = ACTIONS(5845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5845), + [anon_sym_BSLASHglsname] = ACTIONS(5845), + [anon_sym_BSLASHGlsname] = ACTIONS(5845), + [anon_sym_BSLASHGLSname] = ACTIONS(5845), + [anon_sym_BSLASHglssymbol] = ACTIONS(5845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5845), + [anon_sym_BSLASHglsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5845), + [anon_sym_BSLASHglsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5845), + [anon_sym_BSLASHglsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5845), + [anon_sym_BSLASHglsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5845), + [anon_sym_BSLASHglsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5845), + [anon_sym_BSLASHnewacronym] = ACTIONS(5845), + [anon_sym_BSLASHacrshort] = ACTIONS(5845), + [anon_sym_BSLASHAcrshort] = ACTIONS(5845), + [anon_sym_BSLASHACRshort] = ACTIONS(5845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5845), + [anon_sym_BSLASHacrlong] = ACTIONS(5845), + [anon_sym_BSLASHAcrlong] = ACTIONS(5845), + [anon_sym_BSLASHACRlong] = ACTIONS(5845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5845), + [anon_sym_BSLASHacrfull] = ACTIONS(5845), + [anon_sym_BSLASHAcrfull] = ACTIONS(5845), + [anon_sym_BSLASHACRfull] = ACTIONS(5845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5845), + [anon_sym_BSLASHacs] = ACTIONS(5845), + [anon_sym_BSLASHAcs] = ACTIONS(5845), + [anon_sym_BSLASHacsp] = ACTIONS(5845), + [anon_sym_BSLASHAcsp] = ACTIONS(5845), + [anon_sym_BSLASHacl] = ACTIONS(5845), + [anon_sym_BSLASHAcl] = ACTIONS(5845), + [anon_sym_BSLASHaclp] = ACTIONS(5845), + [anon_sym_BSLASHAclp] = ACTIONS(5845), + [anon_sym_BSLASHacf] = ACTIONS(5845), + [anon_sym_BSLASHAcf] = ACTIONS(5845), + [anon_sym_BSLASHacfp] = ACTIONS(5845), + [anon_sym_BSLASHAcfp] = ACTIONS(5845), + [anon_sym_BSLASHac] = ACTIONS(5845), + [anon_sym_BSLASHAc] = ACTIONS(5845), + [anon_sym_BSLASHacp] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5845), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5845), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5843), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5845), + [anon_sym_BSLASHcolor] = ACTIONS(5845), + [anon_sym_BSLASHcolorbox] = ACTIONS(5845), + [anon_sym_BSLASHtextcolor] = ACTIONS(5845), + [anon_sym_BSLASHpagecolor] = ACTIONS(5845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5845), + }, + [1729] = { + [sym_command_name] = ACTIONS(6151), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6151), + [anon_sym_RBRACK] = ACTIONS(6149), + [anon_sym_COMMA] = ACTIONS(6149), + [anon_sym_EQ] = ACTIONS(6149), + [anon_sym_RBRACE] = ACTIONS(6149), + [sym_word] = ACTIONS(6151), + [sym_placeholder] = ACTIONS(6149), + [anon_sym_PLUS] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_STAR] = ACTIONS(6151), + [anon_sym_SLASH] = ACTIONS(6151), + [anon_sym_CARET] = ACTIONS(6151), + [anon_sym__] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(6151), + [anon_sym_GT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(6151), + [anon_sym_PIPE] = ACTIONS(6151), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_SQUOTE] = ACTIONS(6151), + [anon_sym_BSLASHtitle] = ACTIONS(6151), + [anon_sym_BSLASHauthor] = ACTIONS(6151), + [anon_sym_BSLASHusepackage] = ACTIONS(6151), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6151), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6151), + [anon_sym_BSLASHinclude] = ACTIONS(6151), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6151), + [anon_sym_BSLASHinput] = ACTIONS(6151), + [anon_sym_BSLASHsubfile] = ACTIONS(6151), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6151), + [anon_sym_BSLASHbibliography] = ACTIONS(6151), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6151), + [anon_sym_BSLASHincludesvg] = ACTIONS(6151), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6151), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6151), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6151), + [anon_sym_BSLASHimport] = ACTIONS(6151), + [anon_sym_BSLASHsubimport] = ACTIONS(6151), + [anon_sym_BSLASHinputfrom] = ACTIONS(6151), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6151), + [anon_sym_BSLASHincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6151), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [anon_sym_BSLASHcite] = ACTIONS(6151), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCite] = ACTIONS(6151), + [anon_sym_BSLASHnocite] = ACTIONS(6151), + [anon_sym_BSLASHcitet] = ACTIONS(6151), + [anon_sym_BSLASHcitep] = ACTIONS(6151), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteauthor] = ACTIONS(6151), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6151), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitetitle] = ACTIONS(6151), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteyear] = ACTIONS(6151), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6149), + [anon_sym_BSLASHcitedate] = ACTIONS(6151), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6149), + [anon_sym_BSLASHciteurl] = ACTIONS(6151), + [anon_sym_BSLASHfullcite] = ACTIONS(6151), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6151), + [anon_sym_BSLASHcitealt] = ACTIONS(6151), + [anon_sym_BSLASHcitealp] = ACTIONS(6151), + [anon_sym_BSLASHcitetext] = ACTIONS(6151), + [anon_sym_BSLASHparencite] = ACTIONS(6151), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHParencite] = ACTIONS(6151), + [anon_sym_BSLASHfootcite] = ACTIONS(6151), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6151), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6151), + [anon_sym_BSLASHtextcite] = ACTIONS(6151), + [anon_sym_BSLASHTextcite] = ACTIONS(6151), + [anon_sym_BSLASHsmartcite] = ACTIONS(6151), + [anon_sym_BSLASHSmartcite] = ACTIONS(6151), + [anon_sym_BSLASHsupercite] = ACTIONS(6151), + [anon_sym_BSLASHautocite] = ACTIONS(6151), + [anon_sym_BSLASHAutocite] = ACTIONS(6151), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6149), + [anon_sym_BSLASHvolcite] = ACTIONS(6151), + [anon_sym_BSLASHVolcite] = ACTIONS(6151), + [anon_sym_BSLASHpvolcite] = ACTIONS(6151), + [anon_sym_BSLASHPvolcite] = ACTIONS(6151), + [anon_sym_BSLASHfvolcite] = ACTIONS(6151), + [anon_sym_BSLASHftvolcite] = ACTIONS(6151), + [anon_sym_BSLASHsvolcite] = ACTIONS(6151), + [anon_sym_BSLASHSvolcite] = ACTIONS(6151), + [anon_sym_BSLASHtvolcite] = ACTIONS(6151), + [anon_sym_BSLASHTvolcite] = ACTIONS(6151), + [anon_sym_BSLASHavolcite] = ACTIONS(6151), + [anon_sym_BSLASHAvolcite] = ACTIONS(6151), + [anon_sym_BSLASHnotecite] = ACTIONS(6151), + [anon_sym_BSLASHNotecite] = ACTIONS(6151), + [anon_sym_BSLASHpnotecite] = ACTIONS(6151), + [anon_sym_BSLASHPnotecite] = ACTIONS(6151), + [anon_sym_BSLASHfnotecite] = ACTIONS(6151), + [anon_sym_BSLASHlabel] = ACTIONS(6151), + [anon_sym_BSLASHref] = ACTIONS(6151), + [anon_sym_BSLASHeqref] = ACTIONS(6151), + [anon_sym_BSLASHvref] = ACTIONS(6151), + [anon_sym_BSLASHVref] = ACTIONS(6151), + [anon_sym_BSLASHautoref] = ACTIONS(6151), + [anon_sym_BSLASHpageref] = ACTIONS(6151), + [anon_sym_BSLASHcref] = ACTIONS(6151), + [anon_sym_BSLASHCref] = ACTIONS(6151), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnameCref] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6151), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6151), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6151), + [anon_sym_BSLASHlabelcref] = ACTIONS(6151), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange] = ACTIONS(6151), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHCrefrange] = ACTIONS(6151), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6149), + [anon_sym_BSLASHnewlabel] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand] = ACTIONS(6151), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6151), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6151), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6149), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6151), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdef] = ACTIONS(6151), + [anon_sym_BSLASHlet] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6151), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6151), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6151), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6151), + [anon_sym_BSLASHgls] = ACTIONS(6151), + [anon_sym_BSLASHGls] = ACTIONS(6151), + [anon_sym_BSLASHGLS] = ACTIONS(6151), + [anon_sym_BSLASHglspl] = ACTIONS(6151), + [anon_sym_BSLASHGlspl] = ACTIONS(6151), + [anon_sym_BSLASHGLSpl] = ACTIONS(6151), + [anon_sym_BSLASHglsdisp] = ACTIONS(6151), + [anon_sym_BSLASHglslink] = ACTIONS(6151), + [anon_sym_BSLASHglstext] = ACTIONS(6151), + [anon_sym_BSLASHGlstext] = ACTIONS(6151), + [anon_sym_BSLASHGLStext] = ACTIONS(6151), + [anon_sym_BSLASHglsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6151), + [anon_sym_BSLASHglsplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSplural] = ACTIONS(6151), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6151), + [anon_sym_BSLASHglsname] = ACTIONS(6151), + [anon_sym_BSLASHGlsname] = ACTIONS(6151), + [anon_sym_BSLASHGLSname] = ACTIONS(6151), + [anon_sym_BSLASHglssymbol] = ACTIONS(6151), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6151), + [anon_sym_BSLASHglsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6151), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6151), + [anon_sym_BSLASHglsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6151), + [anon_sym_BSLASHglsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6151), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6151), + [anon_sym_BSLASHglsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6151), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6151), + [anon_sym_BSLASHglsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6151), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6151), + [anon_sym_BSLASHnewacronym] = ACTIONS(6151), + [anon_sym_BSLASHacrshort] = ACTIONS(6151), + [anon_sym_BSLASHAcrshort] = ACTIONS(6151), + [anon_sym_BSLASHACRshort] = ACTIONS(6151), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6151), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6151), + [anon_sym_BSLASHacrlong] = ACTIONS(6151), + [anon_sym_BSLASHAcrlong] = ACTIONS(6151), + [anon_sym_BSLASHACRlong] = ACTIONS(6151), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6151), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6151), + [anon_sym_BSLASHacrfull] = ACTIONS(6151), + [anon_sym_BSLASHAcrfull] = ACTIONS(6151), + [anon_sym_BSLASHACRfull] = ACTIONS(6151), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6151), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6151), + [anon_sym_BSLASHacs] = ACTIONS(6151), + [anon_sym_BSLASHAcs] = ACTIONS(6151), + [anon_sym_BSLASHacsp] = ACTIONS(6151), + [anon_sym_BSLASHAcsp] = ACTIONS(6151), + [anon_sym_BSLASHacl] = ACTIONS(6151), + [anon_sym_BSLASHAcl] = ACTIONS(6151), + [anon_sym_BSLASHaclp] = ACTIONS(6151), + [anon_sym_BSLASHAclp] = ACTIONS(6151), + [anon_sym_BSLASHacf] = ACTIONS(6151), + [anon_sym_BSLASHAcf] = ACTIONS(6151), + [anon_sym_BSLASHacfp] = ACTIONS(6151), + [anon_sym_BSLASHAcfp] = ACTIONS(6151), + [anon_sym_BSLASHac] = ACTIONS(6151), + [anon_sym_BSLASHAc] = ACTIONS(6151), + [anon_sym_BSLASHacp] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6151), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6151), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6151), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6151), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6151), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6151), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6151), + [anon_sym_BSLASHcolor] = ACTIONS(6151), + [anon_sym_BSLASHcolorbox] = ACTIONS(6151), + [anon_sym_BSLASHtextcolor] = ACTIONS(6151), + [anon_sym_BSLASHpagecolor] = ACTIONS(6151), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6151), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6151), + }, + [1730] = { + [sym_command_name] = ACTIONS(6007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6007), + [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_COMMA] = ACTIONS(6005), + [anon_sym_EQ] = ACTIONS(6005), + [anon_sym_RBRACE] = ACTIONS(6005), + [sym_word] = ACTIONS(6007), + [sym_placeholder] = ACTIONS(6005), + [anon_sym_PLUS] = ACTIONS(6007), + [anon_sym_DASH] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_SLASH] = ACTIONS(6007), + [anon_sym_CARET] = ACTIONS(6007), + [anon_sym__] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6007), + [anon_sym_GT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6007), + [anon_sym_PIPE] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_SQUOTE] = ACTIONS(6007), + [anon_sym_BSLASHtitle] = ACTIONS(6007), + [anon_sym_BSLASHauthor] = ACTIONS(6007), + [anon_sym_BSLASHusepackage] = ACTIONS(6007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6007), + [anon_sym_BSLASHinclude] = ACTIONS(6007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6007), + [anon_sym_BSLASHinput] = ACTIONS(6007), + [anon_sym_BSLASHsubfile] = ACTIONS(6007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), + [anon_sym_BSLASHbibliography] = ACTIONS(6007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6007), + [anon_sym_BSLASHincludesvg] = ACTIONS(6007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6007), + [anon_sym_BSLASHimport] = ACTIONS(6007), + [anon_sym_BSLASHsubimport] = ACTIONS(6007), + [anon_sym_BSLASHinputfrom] = ACTIONS(6007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6007), + [anon_sym_BSLASHincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6007), + [anon_sym_BSLASHcaption] = ACTIONS(6007), + [anon_sym_BSLASHcite] = ACTIONS(6007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCite] = ACTIONS(6007), + [anon_sym_BSLASHnocite] = ACTIONS(6007), + [anon_sym_BSLASHcitet] = ACTIONS(6007), + [anon_sym_BSLASHcitep] = ACTIONS(6007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteauthor] = ACTIONS(6007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitetitle] = ACTIONS(6007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteyear] = ACTIONS(6007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6005), + [anon_sym_BSLASHcitedate] = ACTIONS(6007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6005), + [anon_sym_BSLASHciteurl] = ACTIONS(6007), + [anon_sym_BSLASHfullcite] = ACTIONS(6007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6007), + [anon_sym_BSLASHcitealt] = ACTIONS(6007), + [anon_sym_BSLASHcitealp] = ACTIONS(6007), + [anon_sym_BSLASHcitetext] = ACTIONS(6007), + [anon_sym_BSLASHparencite] = ACTIONS(6007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHParencite] = ACTIONS(6007), + [anon_sym_BSLASHfootcite] = ACTIONS(6007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6007), + [anon_sym_BSLASHtextcite] = ACTIONS(6007), + [anon_sym_BSLASHTextcite] = ACTIONS(6007), + [anon_sym_BSLASHsmartcite] = ACTIONS(6007), + [anon_sym_BSLASHSmartcite] = ACTIONS(6007), + [anon_sym_BSLASHsupercite] = ACTIONS(6007), + [anon_sym_BSLASHautocite] = ACTIONS(6007), + [anon_sym_BSLASHAutocite] = ACTIONS(6007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6005), + [anon_sym_BSLASHvolcite] = ACTIONS(6007), + [anon_sym_BSLASHVolcite] = ACTIONS(6007), + [anon_sym_BSLASHpvolcite] = ACTIONS(6007), + [anon_sym_BSLASHPvolcite] = ACTIONS(6007), + [anon_sym_BSLASHfvolcite] = ACTIONS(6007), + [anon_sym_BSLASHftvolcite] = ACTIONS(6007), + [anon_sym_BSLASHsvolcite] = ACTIONS(6007), + [anon_sym_BSLASHSvolcite] = ACTIONS(6007), + [anon_sym_BSLASHtvolcite] = ACTIONS(6007), + [anon_sym_BSLASHTvolcite] = ACTIONS(6007), + [anon_sym_BSLASHavolcite] = ACTIONS(6007), + [anon_sym_BSLASHAvolcite] = ACTIONS(6007), + [anon_sym_BSLASHnotecite] = ACTIONS(6007), + [anon_sym_BSLASHNotecite] = ACTIONS(6007), + [anon_sym_BSLASHpnotecite] = ACTIONS(6007), + [anon_sym_BSLASHPnotecite] = ACTIONS(6007), + [anon_sym_BSLASHfnotecite] = ACTIONS(6007), + [anon_sym_BSLASHlabel] = ACTIONS(6007), + [anon_sym_BSLASHref] = ACTIONS(6007), + [anon_sym_BSLASHeqref] = ACTIONS(6007), + [anon_sym_BSLASHvref] = ACTIONS(6007), + [anon_sym_BSLASHVref] = ACTIONS(6007), + [anon_sym_BSLASHautoref] = ACTIONS(6007), + [anon_sym_BSLASHpageref] = ACTIONS(6007), + [anon_sym_BSLASHcref] = ACTIONS(6007), + [anon_sym_BSLASHCref] = ACTIONS(6007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnameCref] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6007), + [anon_sym_BSLASHlabelcref] = ACTIONS(6007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange] = ACTIONS(6007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHCrefrange] = ACTIONS(6007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6005), + [anon_sym_BSLASHnewlabel] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand] = ACTIONS(6007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdef] = ACTIONS(6007), + [anon_sym_BSLASHlet] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6007), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6007), + [anon_sym_BSLASHgls] = ACTIONS(6007), + [anon_sym_BSLASHGls] = ACTIONS(6007), + [anon_sym_BSLASHGLS] = ACTIONS(6007), + [anon_sym_BSLASHglspl] = ACTIONS(6007), + [anon_sym_BSLASHGlspl] = ACTIONS(6007), + [anon_sym_BSLASHGLSpl] = ACTIONS(6007), + [anon_sym_BSLASHglsdisp] = ACTIONS(6007), + [anon_sym_BSLASHglslink] = ACTIONS(6007), + [anon_sym_BSLASHglstext] = ACTIONS(6007), + [anon_sym_BSLASHGlstext] = ACTIONS(6007), + [anon_sym_BSLASHGLStext] = ACTIONS(6007), + [anon_sym_BSLASHglsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6007), + [anon_sym_BSLASHglsplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSplural] = ACTIONS(6007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6007), + [anon_sym_BSLASHglsname] = ACTIONS(6007), + [anon_sym_BSLASHGlsname] = ACTIONS(6007), + [anon_sym_BSLASHGLSname] = ACTIONS(6007), + [anon_sym_BSLASHglssymbol] = ACTIONS(6007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6007), + [anon_sym_BSLASHglsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6007), + [anon_sym_BSLASHglsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6007), + [anon_sym_BSLASHglsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6007), + [anon_sym_BSLASHglsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6007), + [anon_sym_BSLASHglsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6007), + [anon_sym_BSLASHnewacronym] = ACTIONS(6007), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6007), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6005), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6007), + [anon_sym_BSLASHcolor] = ACTIONS(6007), + [anon_sym_BSLASHcolorbox] = ACTIONS(6007), + [anon_sym_BSLASHtextcolor] = ACTIONS(6007), + [anon_sym_BSLASHpagecolor] = ACTIONS(6007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6007), + }, + [1731] = { + [sym_command_name] = ACTIONS(6159), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6159), + [anon_sym_RBRACK] = ACTIONS(6157), + [anon_sym_COMMA] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_RBRACE] = ACTIONS(6157), + [sym_word] = ACTIONS(6159), + [sym_placeholder] = ACTIONS(6157), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym__] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_BANG] = ACTIONS(6159), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_SQUOTE] = ACTIONS(6159), + [anon_sym_BSLASHtitle] = ACTIONS(6159), + [anon_sym_BSLASHauthor] = ACTIONS(6159), + [anon_sym_BSLASHusepackage] = ACTIONS(6159), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6159), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6159), + [anon_sym_BSLASHinclude] = ACTIONS(6159), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6159), + [anon_sym_BSLASHinput] = ACTIONS(6159), + [anon_sym_BSLASHsubfile] = ACTIONS(6159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6159), + [anon_sym_BSLASHbibliography] = ACTIONS(6159), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6159), + [anon_sym_BSLASHincludesvg] = ACTIONS(6159), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6159), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6159), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6159), + [anon_sym_BSLASHimport] = ACTIONS(6159), + [anon_sym_BSLASHsubimport] = ACTIONS(6159), + [anon_sym_BSLASHinputfrom] = ACTIONS(6159), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6159), + [anon_sym_BSLASHincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6159), + [anon_sym_BSLASHcaption] = ACTIONS(6159), + [anon_sym_BSLASHcite] = ACTIONS(6159), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCite] = ACTIONS(6159), + [anon_sym_BSLASHnocite] = ACTIONS(6159), + [anon_sym_BSLASHcitet] = ACTIONS(6159), + [anon_sym_BSLASHcitep] = ACTIONS(6159), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteauthor] = ACTIONS(6159), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6159), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitetitle] = ACTIONS(6159), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteyear] = ACTIONS(6159), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6157), + [anon_sym_BSLASHcitedate] = ACTIONS(6159), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6157), + [anon_sym_BSLASHciteurl] = ACTIONS(6159), + [anon_sym_BSLASHfullcite] = ACTIONS(6159), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6159), + [anon_sym_BSLASHcitealt] = ACTIONS(6159), + [anon_sym_BSLASHcitealp] = ACTIONS(6159), + [anon_sym_BSLASHcitetext] = ACTIONS(6159), + [anon_sym_BSLASHparencite] = ACTIONS(6159), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHParencite] = ACTIONS(6159), + [anon_sym_BSLASHfootcite] = ACTIONS(6159), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6159), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6159), + [anon_sym_BSLASHtextcite] = ACTIONS(6159), + [anon_sym_BSLASHTextcite] = ACTIONS(6159), + [anon_sym_BSLASHsmartcite] = ACTIONS(6159), + [anon_sym_BSLASHSmartcite] = ACTIONS(6159), + [anon_sym_BSLASHsupercite] = ACTIONS(6159), + [anon_sym_BSLASHautocite] = ACTIONS(6159), + [anon_sym_BSLASHAutocite] = ACTIONS(6159), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6157), + [anon_sym_BSLASHvolcite] = ACTIONS(6159), + [anon_sym_BSLASHVolcite] = ACTIONS(6159), + [anon_sym_BSLASHpvolcite] = ACTIONS(6159), + [anon_sym_BSLASHPvolcite] = ACTIONS(6159), + [anon_sym_BSLASHfvolcite] = ACTIONS(6159), + [anon_sym_BSLASHftvolcite] = ACTIONS(6159), + [anon_sym_BSLASHsvolcite] = ACTIONS(6159), + [anon_sym_BSLASHSvolcite] = ACTIONS(6159), + [anon_sym_BSLASHtvolcite] = ACTIONS(6159), + [anon_sym_BSLASHTvolcite] = ACTIONS(6159), + [anon_sym_BSLASHavolcite] = ACTIONS(6159), + [anon_sym_BSLASHAvolcite] = ACTIONS(6159), + [anon_sym_BSLASHnotecite] = ACTIONS(6159), + [anon_sym_BSLASHNotecite] = ACTIONS(6159), + [anon_sym_BSLASHpnotecite] = ACTIONS(6159), + [anon_sym_BSLASHPnotecite] = ACTIONS(6159), + [anon_sym_BSLASHfnotecite] = ACTIONS(6159), + [anon_sym_BSLASHlabel] = ACTIONS(6159), + [anon_sym_BSLASHref] = ACTIONS(6159), + [anon_sym_BSLASHeqref] = ACTIONS(6159), + [anon_sym_BSLASHvref] = ACTIONS(6159), + [anon_sym_BSLASHVref] = ACTIONS(6159), + [anon_sym_BSLASHautoref] = ACTIONS(6159), + [anon_sym_BSLASHpageref] = ACTIONS(6159), + [anon_sym_BSLASHcref] = ACTIONS(6159), + [anon_sym_BSLASHCref] = ACTIONS(6159), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnameCref] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6159), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6159), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6159), + [anon_sym_BSLASHlabelcref] = ACTIONS(6159), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange] = ACTIONS(6159), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHCrefrange] = ACTIONS(6159), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6157), + [anon_sym_BSLASHnewlabel] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand] = ACTIONS(6159), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6159), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6159), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6157), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6159), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdef] = ACTIONS(6159), + [anon_sym_BSLASHlet] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6159), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6159), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6159), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6159), + [anon_sym_BSLASHgls] = ACTIONS(6159), + [anon_sym_BSLASHGls] = ACTIONS(6159), + [anon_sym_BSLASHGLS] = ACTIONS(6159), + [anon_sym_BSLASHglspl] = ACTIONS(6159), + [anon_sym_BSLASHGlspl] = ACTIONS(6159), + [anon_sym_BSLASHGLSpl] = ACTIONS(6159), + [anon_sym_BSLASHglsdisp] = ACTIONS(6159), + [anon_sym_BSLASHglslink] = ACTIONS(6159), + [anon_sym_BSLASHglstext] = ACTIONS(6159), + [anon_sym_BSLASHGlstext] = ACTIONS(6159), + [anon_sym_BSLASHGLStext] = ACTIONS(6159), + [anon_sym_BSLASHglsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6159), + [anon_sym_BSLASHglsplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSplural] = ACTIONS(6159), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6159), + [anon_sym_BSLASHglsname] = ACTIONS(6159), + [anon_sym_BSLASHGlsname] = ACTIONS(6159), + [anon_sym_BSLASHGLSname] = ACTIONS(6159), + [anon_sym_BSLASHglssymbol] = ACTIONS(6159), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6159), + [anon_sym_BSLASHglsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6159), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6159), + [anon_sym_BSLASHglsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6159), + [anon_sym_BSLASHglsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6159), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6159), + [anon_sym_BSLASHglsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6159), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6159), + [anon_sym_BSLASHglsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6159), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6159), + [anon_sym_BSLASHnewacronym] = ACTIONS(6159), + [anon_sym_BSLASHacrshort] = ACTIONS(6159), + [anon_sym_BSLASHAcrshort] = ACTIONS(6159), + [anon_sym_BSLASHACRshort] = ACTIONS(6159), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6159), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6159), + [anon_sym_BSLASHacrlong] = ACTIONS(6159), + [anon_sym_BSLASHAcrlong] = ACTIONS(6159), + [anon_sym_BSLASHACRlong] = ACTIONS(6159), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6159), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6159), + [anon_sym_BSLASHacrfull] = ACTIONS(6159), + [anon_sym_BSLASHAcrfull] = ACTIONS(6159), + [anon_sym_BSLASHACRfull] = ACTIONS(6159), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6159), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6159), + [anon_sym_BSLASHacs] = ACTIONS(6159), + [anon_sym_BSLASHAcs] = ACTIONS(6159), + [anon_sym_BSLASHacsp] = ACTIONS(6159), + [anon_sym_BSLASHAcsp] = ACTIONS(6159), + [anon_sym_BSLASHacl] = ACTIONS(6159), + [anon_sym_BSLASHAcl] = ACTIONS(6159), + [anon_sym_BSLASHaclp] = ACTIONS(6159), + [anon_sym_BSLASHAclp] = ACTIONS(6159), + [anon_sym_BSLASHacf] = ACTIONS(6159), + [anon_sym_BSLASHAcf] = ACTIONS(6159), + [anon_sym_BSLASHacfp] = ACTIONS(6159), + [anon_sym_BSLASHAcfp] = ACTIONS(6159), + [anon_sym_BSLASHac] = ACTIONS(6159), + [anon_sym_BSLASHAc] = ACTIONS(6159), + [anon_sym_BSLASHacp] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6159), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6159), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6159), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6159), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6159), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6159), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6159), + [anon_sym_BSLASHcolor] = ACTIONS(6159), + [anon_sym_BSLASHcolorbox] = ACTIONS(6159), + [anon_sym_BSLASHtextcolor] = ACTIONS(6159), + [anon_sym_BSLASHpagecolor] = ACTIONS(6159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6159), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6159), + }, + [1732] = { + [sym_command_name] = ACTIONS(5953), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5953), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [sym_word] = ACTIONS(5953), + [sym_placeholder] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym__] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_SQUOTE] = ACTIONS(5953), + [anon_sym_BSLASHtitle] = ACTIONS(5953), + [anon_sym_BSLASHauthor] = ACTIONS(5953), + [anon_sym_BSLASHusepackage] = ACTIONS(5953), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5953), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5953), + [anon_sym_BSLASHinclude] = ACTIONS(5953), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5953), + [anon_sym_BSLASHinput] = ACTIONS(5953), + [anon_sym_BSLASHsubfile] = ACTIONS(5953), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5953), + [anon_sym_BSLASHbibliography] = ACTIONS(5953), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5953), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5953), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5953), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5953), + [anon_sym_BSLASHimport] = ACTIONS(5953), + [anon_sym_BSLASHsubimport] = ACTIONS(5953), + [anon_sym_BSLASHinputfrom] = ACTIONS(5953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5953), + [anon_sym_BSLASHincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5953), + [anon_sym_BSLASHcaption] = ACTIONS(5953), + [anon_sym_BSLASHcite] = ACTIONS(5953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCite] = ACTIONS(5953), + [anon_sym_BSLASHnocite] = ACTIONS(5953), + [anon_sym_BSLASHcitet] = ACTIONS(5953), + [anon_sym_BSLASHcitep] = ACTIONS(5953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteauthor] = ACTIONS(5953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitetitle] = ACTIONS(5953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteyear] = ACTIONS(5953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5951), + [anon_sym_BSLASHcitedate] = ACTIONS(5953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5951), + [anon_sym_BSLASHciteurl] = ACTIONS(5953), + [anon_sym_BSLASHfullcite] = ACTIONS(5953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5953), + [anon_sym_BSLASHcitealt] = ACTIONS(5953), + [anon_sym_BSLASHcitealp] = ACTIONS(5953), + [anon_sym_BSLASHcitetext] = ACTIONS(5953), + [anon_sym_BSLASHparencite] = ACTIONS(5953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHParencite] = ACTIONS(5953), + [anon_sym_BSLASHfootcite] = ACTIONS(5953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5953), + [anon_sym_BSLASHtextcite] = ACTIONS(5953), + [anon_sym_BSLASHTextcite] = ACTIONS(5953), + [anon_sym_BSLASHsmartcite] = ACTIONS(5953), + [anon_sym_BSLASHSmartcite] = ACTIONS(5953), + [anon_sym_BSLASHsupercite] = ACTIONS(5953), + [anon_sym_BSLASHautocite] = ACTIONS(5953), + [anon_sym_BSLASHAutocite] = ACTIONS(5953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5951), + [anon_sym_BSLASHvolcite] = ACTIONS(5953), + [anon_sym_BSLASHVolcite] = ACTIONS(5953), + [anon_sym_BSLASHpvolcite] = ACTIONS(5953), + [anon_sym_BSLASHPvolcite] = ACTIONS(5953), + [anon_sym_BSLASHfvolcite] = ACTIONS(5953), + [anon_sym_BSLASHftvolcite] = ACTIONS(5953), + [anon_sym_BSLASHsvolcite] = ACTIONS(5953), + [anon_sym_BSLASHSvolcite] = ACTIONS(5953), + [anon_sym_BSLASHtvolcite] = ACTIONS(5953), + [anon_sym_BSLASHTvolcite] = ACTIONS(5953), + [anon_sym_BSLASHavolcite] = ACTIONS(5953), + [anon_sym_BSLASHAvolcite] = ACTIONS(5953), + [anon_sym_BSLASHnotecite] = ACTIONS(5953), + [anon_sym_BSLASHNotecite] = ACTIONS(5953), + [anon_sym_BSLASHpnotecite] = ACTIONS(5953), + [anon_sym_BSLASHPnotecite] = ACTIONS(5953), + [anon_sym_BSLASHfnotecite] = ACTIONS(5953), + [anon_sym_BSLASHlabel] = ACTIONS(5953), + [anon_sym_BSLASHref] = ACTIONS(5953), + [anon_sym_BSLASHeqref] = ACTIONS(5953), + [anon_sym_BSLASHvref] = ACTIONS(5953), + [anon_sym_BSLASHVref] = ACTIONS(5953), + [anon_sym_BSLASHautoref] = ACTIONS(5953), + [anon_sym_BSLASHpageref] = ACTIONS(5953), + [anon_sym_BSLASHcref] = ACTIONS(5953), + [anon_sym_BSLASHCref] = ACTIONS(5953), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnameCref] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5953), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5953), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5953), + [anon_sym_BSLASHlabelcref] = ACTIONS(5953), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange] = ACTIONS(5953), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHCrefrange] = ACTIONS(5953), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5951), + [anon_sym_BSLASHnewlabel] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand] = ACTIONS(5953), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5953), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5953), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5951), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5953), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdef] = ACTIONS(5953), + [anon_sym_BSLASHlet] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5953), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5953), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5953), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5953), + [anon_sym_BSLASHgls] = ACTIONS(5953), + [anon_sym_BSLASHGls] = ACTIONS(5953), + [anon_sym_BSLASHGLS] = ACTIONS(5953), + [anon_sym_BSLASHglspl] = ACTIONS(5953), + [anon_sym_BSLASHGlspl] = ACTIONS(5953), + [anon_sym_BSLASHGLSpl] = ACTIONS(5953), + [anon_sym_BSLASHglsdisp] = ACTIONS(5953), + [anon_sym_BSLASHglslink] = ACTIONS(5953), + [anon_sym_BSLASHglstext] = ACTIONS(5953), + [anon_sym_BSLASHGlstext] = ACTIONS(5953), + [anon_sym_BSLASHGLStext] = ACTIONS(5953), + [anon_sym_BSLASHglsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5953), + [anon_sym_BSLASHglsplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSplural] = ACTIONS(5953), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5953), + [anon_sym_BSLASHglsname] = ACTIONS(5953), + [anon_sym_BSLASHGlsname] = ACTIONS(5953), + [anon_sym_BSLASHGLSname] = ACTIONS(5953), + [anon_sym_BSLASHglssymbol] = ACTIONS(5953), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5953), + [anon_sym_BSLASHglsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5953), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5953), + [anon_sym_BSLASHglsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5953), + [anon_sym_BSLASHglsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5953), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5953), + [anon_sym_BSLASHglsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5953), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5953), + [anon_sym_BSLASHglsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5953), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5953), + [anon_sym_BSLASHnewacronym] = ACTIONS(5953), + [anon_sym_BSLASHacrshort] = ACTIONS(5953), + [anon_sym_BSLASHAcrshort] = ACTIONS(5953), + [anon_sym_BSLASHACRshort] = ACTIONS(5953), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5953), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5953), + [anon_sym_BSLASHacrlong] = ACTIONS(5953), + [anon_sym_BSLASHAcrlong] = ACTIONS(5953), + [anon_sym_BSLASHACRlong] = ACTIONS(5953), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5953), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5953), + [anon_sym_BSLASHacrfull] = ACTIONS(5953), + [anon_sym_BSLASHAcrfull] = ACTIONS(5953), + [anon_sym_BSLASHACRfull] = ACTIONS(5953), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5953), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5953), + [anon_sym_BSLASHacs] = ACTIONS(5953), + [anon_sym_BSLASHAcs] = ACTIONS(5953), + [anon_sym_BSLASHacsp] = ACTIONS(5953), + [anon_sym_BSLASHAcsp] = ACTIONS(5953), + [anon_sym_BSLASHacl] = ACTIONS(5953), + [anon_sym_BSLASHAcl] = ACTIONS(5953), + [anon_sym_BSLASHaclp] = ACTIONS(5953), + [anon_sym_BSLASHAclp] = ACTIONS(5953), + [anon_sym_BSLASHacf] = ACTIONS(5953), + [anon_sym_BSLASHAcf] = ACTIONS(5953), + [anon_sym_BSLASHacfp] = ACTIONS(5953), + [anon_sym_BSLASHAcfp] = ACTIONS(5953), + [anon_sym_BSLASHac] = ACTIONS(5953), + [anon_sym_BSLASHAc] = ACTIONS(5953), + [anon_sym_BSLASHacp] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5953), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5953), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5953), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5953), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5953), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5953), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5953), + [anon_sym_BSLASHcolor] = ACTIONS(5953), + [anon_sym_BSLASHcolorbox] = ACTIONS(5953), + [anon_sym_BSLASHtextcolor] = ACTIONS(5953), + [anon_sym_BSLASHpagecolor] = ACTIONS(5953), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5953), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5953), + }, + [1733] = { + [sym_command_name] = ACTIONS(6163), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6163), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [sym_word] = ACTIONS(6163), + [sym_placeholder] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym__] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_BANG] = ACTIONS(6163), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6163), + [anon_sym_SQUOTE] = ACTIONS(6163), + [anon_sym_BSLASHtitle] = ACTIONS(6163), + [anon_sym_BSLASHauthor] = ACTIONS(6163), + [anon_sym_BSLASHusepackage] = ACTIONS(6163), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6163), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6163), + [anon_sym_BSLASHinclude] = ACTIONS(6163), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6163), + [anon_sym_BSLASHinput] = ACTIONS(6163), + [anon_sym_BSLASHsubfile] = ACTIONS(6163), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [anon_sym_BSLASHbibliography] = ACTIONS(6163), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6163), + [anon_sym_BSLASHincludesvg] = ACTIONS(6163), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6163), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6163), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6163), + [anon_sym_BSLASHimport] = ACTIONS(6163), + [anon_sym_BSLASHsubimport] = ACTIONS(6163), + [anon_sym_BSLASHinputfrom] = ACTIONS(6163), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6163), + [anon_sym_BSLASHincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6163), + [anon_sym_BSLASHcaption] = ACTIONS(6163), + [anon_sym_BSLASHcite] = ACTIONS(6163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCite] = ACTIONS(6163), + [anon_sym_BSLASHnocite] = ACTIONS(6163), + [anon_sym_BSLASHcitet] = ACTIONS(6163), + [anon_sym_BSLASHcitep] = ACTIONS(6163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteauthor] = ACTIONS(6163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitetitle] = ACTIONS(6163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteyear] = ACTIONS(6163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6161), + [anon_sym_BSLASHcitedate] = ACTIONS(6163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6161), + [anon_sym_BSLASHciteurl] = ACTIONS(6163), + [anon_sym_BSLASHfullcite] = ACTIONS(6163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6163), + [anon_sym_BSLASHcitealt] = ACTIONS(6163), + [anon_sym_BSLASHcitealp] = ACTIONS(6163), + [anon_sym_BSLASHcitetext] = ACTIONS(6163), + [anon_sym_BSLASHparencite] = ACTIONS(6163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHParencite] = ACTIONS(6163), + [anon_sym_BSLASHfootcite] = ACTIONS(6163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6163), + [anon_sym_BSLASHtextcite] = ACTIONS(6163), + [anon_sym_BSLASHTextcite] = ACTIONS(6163), + [anon_sym_BSLASHsmartcite] = ACTIONS(6163), + [anon_sym_BSLASHSmartcite] = ACTIONS(6163), + [anon_sym_BSLASHsupercite] = ACTIONS(6163), + [anon_sym_BSLASHautocite] = ACTIONS(6163), + [anon_sym_BSLASHAutocite] = ACTIONS(6163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6161), + [anon_sym_BSLASHvolcite] = ACTIONS(6163), + [anon_sym_BSLASHVolcite] = ACTIONS(6163), + [anon_sym_BSLASHpvolcite] = ACTIONS(6163), + [anon_sym_BSLASHPvolcite] = ACTIONS(6163), + [anon_sym_BSLASHfvolcite] = ACTIONS(6163), + [anon_sym_BSLASHftvolcite] = ACTIONS(6163), + [anon_sym_BSLASHsvolcite] = ACTIONS(6163), + [anon_sym_BSLASHSvolcite] = ACTIONS(6163), + [anon_sym_BSLASHtvolcite] = ACTIONS(6163), + [anon_sym_BSLASHTvolcite] = ACTIONS(6163), + [anon_sym_BSLASHavolcite] = ACTIONS(6163), + [anon_sym_BSLASHAvolcite] = ACTIONS(6163), + [anon_sym_BSLASHnotecite] = ACTIONS(6163), + [anon_sym_BSLASHNotecite] = ACTIONS(6163), + [anon_sym_BSLASHpnotecite] = ACTIONS(6163), + [anon_sym_BSLASHPnotecite] = ACTIONS(6163), + [anon_sym_BSLASHfnotecite] = ACTIONS(6163), + [anon_sym_BSLASHlabel] = ACTIONS(6163), + [anon_sym_BSLASHref] = ACTIONS(6163), + [anon_sym_BSLASHeqref] = ACTIONS(6163), + [anon_sym_BSLASHvref] = ACTIONS(6163), + [anon_sym_BSLASHVref] = ACTIONS(6163), + [anon_sym_BSLASHautoref] = ACTIONS(6163), + [anon_sym_BSLASHpageref] = ACTIONS(6163), + [anon_sym_BSLASHcref] = ACTIONS(6163), + [anon_sym_BSLASHCref] = ACTIONS(6163), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnameCref] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6163), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6163), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6163), + [anon_sym_BSLASHlabelcref] = ACTIONS(6163), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange] = ACTIONS(6163), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHCrefrange] = ACTIONS(6163), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6161), + [anon_sym_BSLASHnewlabel] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand] = ACTIONS(6163), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6163), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6163), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6161), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6163), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdef] = ACTIONS(6163), + [anon_sym_BSLASHlet] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6163), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6163), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6163), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6163), + [anon_sym_BSLASHgls] = ACTIONS(6163), + [anon_sym_BSLASHGls] = ACTIONS(6163), + [anon_sym_BSLASHGLS] = ACTIONS(6163), + [anon_sym_BSLASHglspl] = ACTIONS(6163), + [anon_sym_BSLASHGlspl] = ACTIONS(6163), + [anon_sym_BSLASHGLSpl] = ACTIONS(6163), + [anon_sym_BSLASHglsdisp] = ACTIONS(6163), + [anon_sym_BSLASHglslink] = ACTIONS(6163), + [anon_sym_BSLASHglstext] = ACTIONS(6163), + [anon_sym_BSLASHGlstext] = ACTIONS(6163), + [anon_sym_BSLASHGLStext] = ACTIONS(6163), + [anon_sym_BSLASHglsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6163), + [anon_sym_BSLASHglsplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSplural] = ACTIONS(6163), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6163), + [anon_sym_BSLASHglsname] = ACTIONS(6163), + [anon_sym_BSLASHGlsname] = ACTIONS(6163), + [anon_sym_BSLASHGLSname] = ACTIONS(6163), + [anon_sym_BSLASHglssymbol] = ACTIONS(6163), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6163), + [anon_sym_BSLASHglsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6163), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6163), + [anon_sym_BSLASHglsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6163), + [anon_sym_BSLASHglsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6163), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6163), + [anon_sym_BSLASHglsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6163), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6163), + [anon_sym_BSLASHglsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6163), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6163), + [anon_sym_BSLASHnewacronym] = ACTIONS(6163), + [anon_sym_BSLASHacrshort] = ACTIONS(6163), + [anon_sym_BSLASHAcrshort] = ACTIONS(6163), + [anon_sym_BSLASHACRshort] = ACTIONS(6163), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6163), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6163), + [anon_sym_BSLASHacrlong] = ACTIONS(6163), + [anon_sym_BSLASHAcrlong] = ACTIONS(6163), + [anon_sym_BSLASHACRlong] = ACTIONS(6163), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6163), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6163), + [anon_sym_BSLASHacrfull] = ACTIONS(6163), + [anon_sym_BSLASHAcrfull] = ACTIONS(6163), + [anon_sym_BSLASHACRfull] = ACTIONS(6163), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6163), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6163), + [anon_sym_BSLASHacs] = ACTIONS(6163), + [anon_sym_BSLASHAcs] = ACTIONS(6163), + [anon_sym_BSLASHacsp] = ACTIONS(6163), + [anon_sym_BSLASHAcsp] = ACTIONS(6163), + [anon_sym_BSLASHacl] = ACTIONS(6163), + [anon_sym_BSLASHAcl] = ACTIONS(6163), + [anon_sym_BSLASHaclp] = ACTIONS(6163), + [anon_sym_BSLASHAclp] = ACTIONS(6163), + [anon_sym_BSLASHacf] = ACTIONS(6163), + [anon_sym_BSLASHAcf] = ACTIONS(6163), + [anon_sym_BSLASHacfp] = ACTIONS(6163), + [anon_sym_BSLASHAcfp] = ACTIONS(6163), + [anon_sym_BSLASHac] = ACTIONS(6163), + [anon_sym_BSLASHAc] = ACTIONS(6163), + [anon_sym_BSLASHacp] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6163), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6163), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6163), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6163), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6163), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6163), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6163), + [anon_sym_BSLASHcolor] = ACTIONS(6163), + [anon_sym_BSLASHcolorbox] = ACTIONS(6163), + [anon_sym_BSLASHtextcolor] = ACTIONS(6163), + [anon_sym_BSLASHpagecolor] = ACTIONS(6163), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6163), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6163), + }, + [1734] = { + [sym_command_name] = ACTIONS(6171), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6169), + [anon_sym_COMMA] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym_word] = ACTIONS(6171), + [sym_placeholder] = ACTIONS(6169), + [anon_sym_PLUS] = ACTIONS(6171), + [anon_sym_DASH] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym__] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6171), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_SQUOTE] = ACTIONS(6171), + [anon_sym_BSLASHtitle] = ACTIONS(6171), + [anon_sym_BSLASHauthor] = ACTIONS(6171), + [anon_sym_BSLASHusepackage] = ACTIONS(6171), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6171), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6171), + [anon_sym_BSLASHinclude] = ACTIONS(6171), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6171), + [anon_sym_BSLASHinput] = ACTIONS(6171), + [anon_sym_BSLASHsubfile] = ACTIONS(6171), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6171), + [anon_sym_BSLASHbibliography] = ACTIONS(6171), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6171), + [anon_sym_BSLASHincludesvg] = ACTIONS(6171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6171), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6171), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6171), + [anon_sym_BSLASHimport] = ACTIONS(6171), + [anon_sym_BSLASHsubimport] = ACTIONS(6171), + [anon_sym_BSLASHinputfrom] = ACTIONS(6171), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6171), + [anon_sym_BSLASHincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6171), + [anon_sym_BSLASHcaption] = ACTIONS(6171), + [anon_sym_BSLASHcite] = ACTIONS(6171), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCite] = ACTIONS(6171), + [anon_sym_BSLASHnocite] = ACTIONS(6171), + [anon_sym_BSLASHcitet] = ACTIONS(6171), + [anon_sym_BSLASHcitep] = ACTIONS(6171), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteauthor] = ACTIONS(6171), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6171), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitetitle] = ACTIONS(6171), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteyear] = ACTIONS(6171), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6169), + [anon_sym_BSLASHcitedate] = ACTIONS(6171), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6169), + [anon_sym_BSLASHciteurl] = ACTIONS(6171), + [anon_sym_BSLASHfullcite] = ACTIONS(6171), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6171), + [anon_sym_BSLASHcitealt] = ACTIONS(6171), + [anon_sym_BSLASHcitealp] = ACTIONS(6171), + [anon_sym_BSLASHcitetext] = ACTIONS(6171), + [anon_sym_BSLASHparencite] = ACTIONS(6171), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHParencite] = ACTIONS(6171), + [anon_sym_BSLASHfootcite] = ACTIONS(6171), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6171), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6171), + [anon_sym_BSLASHtextcite] = ACTIONS(6171), + [anon_sym_BSLASHTextcite] = ACTIONS(6171), + [anon_sym_BSLASHsmartcite] = ACTIONS(6171), + [anon_sym_BSLASHSmartcite] = ACTIONS(6171), + [anon_sym_BSLASHsupercite] = ACTIONS(6171), + [anon_sym_BSLASHautocite] = ACTIONS(6171), + [anon_sym_BSLASHAutocite] = ACTIONS(6171), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6169), + [anon_sym_BSLASHvolcite] = ACTIONS(6171), + [anon_sym_BSLASHVolcite] = ACTIONS(6171), + [anon_sym_BSLASHpvolcite] = ACTIONS(6171), + [anon_sym_BSLASHPvolcite] = ACTIONS(6171), + [anon_sym_BSLASHfvolcite] = ACTIONS(6171), + [anon_sym_BSLASHftvolcite] = ACTIONS(6171), + [anon_sym_BSLASHsvolcite] = ACTIONS(6171), + [anon_sym_BSLASHSvolcite] = ACTIONS(6171), + [anon_sym_BSLASHtvolcite] = ACTIONS(6171), + [anon_sym_BSLASHTvolcite] = ACTIONS(6171), + [anon_sym_BSLASHavolcite] = ACTIONS(6171), + [anon_sym_BSLASHAvolcite] = ACTIONS(6171), + [anon_sym_BSLASHnotecite] = ACTIONS(6171), + [anon_sym_BSLASHNotecite] = ACTIONS(6171), + [anon_sym_BSLASHpnotecite] = ACTIONS(6171), + [anon_sym_BSLASHPnotecite] = ACTIONS(6171), + [anon_sym_BSLASHfnotecite] = ACTIONS(6171), + [anon_sym_BSLASHlabel] = ACTIONS(6171), + [anon_sym_BSLASHref] = ACTIONS(6171), + [anon_sym_BSLASHeqref] = ACTIONS(6171), + [anon_sym_BSLASHvref] = ACTIONS(6171), + [anon_sym_BSLASHVref] = ACTIONS(6171), + [anon_sym_BSLASHautoref] = ACTIONS(6171), + [anon_sym_BSLASHpageref] = ACTIONS(6171), + [anon_sym_BSLASHcref] = ACTIONS(6171), + [anon_sym_BSLASHCref] = ACTIONS(6171), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnameCref] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6171), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6171), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6171), + [anon_sym_BSLASHlabelcref] = ACTIONS(6171), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange] = ACTIONS(6171), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHCrefrange] = ACTIONS(6171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6169), + [anon_sym_BSLASHnewlabel] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand] = ACTIONS(6171), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6171), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6171), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6169), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6171), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdef] = ACTIONS(6171), + [anon_sym_BSLASHlet] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6171), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6171), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6171), + [anon_sym_BSLASHgls] = ACTIONS(6171), + [anon_sym_BSLASHGls] = ACTIONS(6171), + [anon_sym_BSLASHGLS] = ACTIONS(6171), + [anon_sym_BSLASHglspl] = ACTIONS(6171), + [anon_sym_BSLASHGlspl] = ACTIONS(6171), + [anon_sym_BSLASHGLSpl] = ACTIONS(6171), + [anon_sym_BSLASHglsdisp] = ACTIONS(6171), + [anon_sym_BSLASHglslink] = ACTIONS(6171), + [anon_sym_BSLASHglstext] = ACTIONS(6171), + [anon_sym_BSLASHGlstext] = ACTIONS(6171), + [anon_sym_BSLASHGLStext] = ACTIONS(6171), + [anon_sym_BSLASHglsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6171), + [anon_sym_BSLASHglsplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSplural] = ACTIONS(6171), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6171), + [anon_sym_BSLASHglsname] = ACTIONS(6171), + [anon_sym_BSLASHGlsname] = ACTIONS(6171), + [anon_sym_BSLASHGLSname] = ACTIONS(6171), + [anon_sym_BSLASHglssymbol] = ACTIONS(6171), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6171), + [anon_sym_BSLASHglsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6171), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6171), + [anon_sym_BSLASHglsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6171), + [anon_sym_BSLASHglsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6171), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6171), + [anon_sym_BSLASHglsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6171), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6171), + [anon_sym_BSLASHglsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6171), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6171), + [anon_sym_BSLASHnewacronym] = ACTIONS(6171), + [anon_sym_BSLASHacrshort] = ACTIONS(6171), + [anon_sym_BSLASHAcrshort] = ACTIONS(6171), + [anon_sym_BSLASHACRshort] = ACTIONS(6171), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6171), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6171), + [anon_sym_BSLASHacrlong] = ACTIONS(6171), + [anon_sym_BSLASHAcrlong] = ACTIONS(6171), + [anon_sym_BSLASHACRlong] = ACTIONS(6171), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6171), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6171), + [anon_sym_BSLASHacrfull] = ACTIONS(6171), + [anon_sym_BSLASHAcrfull] = ACTIONS(6171), + [anon_sym_BSLASHACRfull] = ACTIONS(6171), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6171), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6171), + [anon_sym_BSLASHacs] = ACTIONS(6171), + [anon_sym_BSLASHAcs] = ACTIONS(6171), + [anon_sym_BSLASHacsp] = ACTIONS(6171), + [anon_sym_BSLASHAcsp] = ACTIONS(6171), + [anon_sym_BSLASHacl] = ACTIONS(6171), + [anon_sym_BSLASHAcl] = ACTIONS(6171), + [anon_sym_BSLASHaclp] = ACTIONS(6171), + [anon_sym_BSLASHAclp] = ACTIONS(6171), + [anon_sym_BSLASHacf] = ACTIONS(6171), + [anon_sym_BSLASHAcf] = ACTIONS(6171), + [anon_sym_BSLASHacfp] = ACTIONS(6171), + [anon_sym_BSLASHAcfp] = ACTIONS(6171), + [anon_sym_BSLASHac] = ACTIONS(6171), + [anon_sym_BSLASHAc] = ACTIONS(6171), + [anon_sym_BSLASHacp] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6171), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6171), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6171), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6171), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6171), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6171), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6171), + [anon_sym_BSLASHcolor] = ACTIONS(6171), + [anon_sym_BSLASHcolorbox] = ACTIONS(6171), + [anon_sym_BSLASHtextcolor] = ACTIONS(6171), + [anon_sym_BSLASHpagecolor] = ACTIONS(6171), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6171), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6171), + }, + [1735] = { + [sym_command_name] = ACTIONS(6175), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6175), + [anon_sym_RBRACK] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6173), + [anon_sym_RBRACE] = ACTIONS(6173), + [sym_word] = ACTIONS(6175), + [sym_placeholder] = ACTIONS(6173), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym__] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_BANG] = ACTIONS(6175), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6175), + [anon_sym_SQUOTE] = ACTIONS(6175), + [anon_sym_BSLASHtitle] = ACTIONS(6175), + [anon_sym_BSLASHauthor] = ACTIONS(6175), + [anon_sym_BSLASHusepackage] = ACTIONS(6175), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6175), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6175), + [anon_sym_BSLASHinclude] = ACTIONS(6175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6175), + [anon_sym_BSLASHinput] = ACTIONS(6175), + [anon_sym_BSLASHsubfile] = ACTIONS(6175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6175), + [anon_sym_BSLASHbibliography] = ACTIONS(6175), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6175), + [anon_sym_BSLASHincludesvg] = ACTIONS(6175), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6175), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6175), + [anon_sym_BSLASHimport] = ACTIONS(6175), + [anon_sym_BSLASHsubimport] = ACTIONS(6175), + [anon_sym_BSLASHinputfrom] = ACTIONS(6175), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6175), + [anon_sym_BSLASHincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6175), + [anon_sym_BSLASHcaption] = ACTIONS(6175), + [anon_sym_BSLASHcite] = ACTIONS(6175), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCite] = ACTIONS(6175), + [anon_sym_BSLASHnocite] = ACTIONS(6175), + [anon_sym_BSLASHcitet] = ACTIONS(6175), + [anon_sym_BSLASHcitep] = ACTIONS(6175), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteauthor] = ACTIONS(6175), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6175), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitetitle] = ACTIONS(6175), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteyear] = ACTIONS(6175), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6173), + [anon_sym_BSLASHcitedate] = ACTIONS(6175), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6173), + [anon_sym_BSLASHciteurl] = ACTIONS(6175), + [anon_sym_BSLASHfullcite] = ACTIONS(6175), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6175), + [anon_sym_BSLASHcitealt] = ACTIONS(6175), + [anon_sym_BSLASHcitealp] = ACTIONS(6175), + [anon_sym_BSLASHcitetext] = ACTIONS(6175), + [anon_sym_BSLASHparencite] = ACTIONS(6175), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHParencite] = ACTIONS(6175), + [anon_sym_BSLASHfootcite] = ACTIONS(6175), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6175), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6175), + [anon_sym_BSLASHtextcite] = ACTIONS(6175), + [anon_sym_BSLASHTextcite] = ACTIONS(6175), + [anon_sym_BSLASHsmartcite] = ACTIONS(6175), + [anon_sym_BSLASHSmartcite] = ACTIONS(6175), + [anon_sym_BSLASHsupercite] = ACTIONS(6175), + [anon_sym_BSLASHautocite] = ACTIONS(6175), + [anon_sym_BSLASHAutocite] = ACTIONS(6175), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6173), + [anon_sym_BSLASHvolcite] = ACTIONS(6175), + [anon_sym_BSLASHVolcite] = ACTIONS(6175), + [anon_sym_BSLASHpvolcite] = ACTIONS(6175), + [anon_sym_BSLASHPvolcite] = ACTIONS(6175), + [anon_sym_BSLASHfvolcite] = ACTIONS(6175), + [anon_sym_BSLASHftvolcite] = ACTIONS(6175), + [anon_sym_BSLASHsvolcite] = ACTIONS(6175), + [anon_sym_BSLASHSvolcite] = ACTIONS(6175), + [anon_sym_BSLASHtvolcite] = ACTIONS(6175), + [anon_sym_BSLASHTvolcite] = ACTIONS(6175), + [anon_sym_BSLASHavolcite] = ACTIONS(6175), + [anon_sym_BSLASHAvolcite] = ACTIONS(6175), + [anon_sym_BSLASHnotecite] = ACTIONS(6175), + [anon_sym_BSLASHNotecite] = ACTIONS(6175), + [anon_sym_BSLASHpnotecite] = ACTIONS(6175), + [anon_sym_BSLASHPnotecite] = ACTIONS(6175), + [anon_sym_BSLASHfnotecite] = ACTIONS(6175), + [anon_sym_BSLASHlabel] = ACTIONS(6175), + [anon_sym_BSLASHref] = ACTIONS(6175), + [anon_sym_BSLASHeqref] = ACTIONS(6175), + [anon_sym_BSLASHvref] = ACTIONS(6175), + [anon_sym_BSLASHVref] = ACTIONS(6175), + [anon_sym_BSLASHautoref] = ACTIONS(6175), + [anon_sym_BSLASHpageref] = ACTIONS(6175), + [anon_sym_BSLASHcref] = ACTIONS(6175), + [anon_sym_BSLASHCref] = ACTIONS(6175), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnameCref] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6175), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6175), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6175), + [anon_sym_BSLASHlabelcref] = ACTIONS(6175), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange] = ACTIONS(6175), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHCrefrange] = ACTIONS(6175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6173), + [anon_sym_BSLASHnewlabel] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand] = ACTIONS(6175), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6175), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6175), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6175), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdef] = ACTIONS(6175), + [anon_sym_BSLASHlet] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6175), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6175), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6175), + [anon_sym_BSLASHgls] = ACTIONS(6175), + [anon_sym_BSLASHGls] = ACTIONS(6175), + [anon_sym_BSLASHGLS] = ACTIONS(6175), + [anon_sym_BSLASHglspl] = ACTIONS(6175), + [anon_sym_BSLASHGlspl] = ACTIONS(6175), + [anon_sym_BSLASHGLSpl] = ACTIONS(6175), + [anon_sym_BSLASHglsdisp] = ACTIONS(6175), + [anon_sym_BSLASHglslink] = ACTIONS(6175), + [anon_sym_BSLASHglstext] = ACTIONS(6175), + [anon_sym_BSLASHGlstext] = ACTIONS(6175), + [anon_sym_BSLASHGLStext] = ACTIONS(6175), + [anon_sym_BSLASHglsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6175), + [anon_sym_BSLASHglsplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSplural] = ACTIONS(6175), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6175), + [anon_sym_BSLASHglsname] = ACTIONS(6175), + [anon_sym_BSLASHGlsname] = ACTIONS(6175), + [anon_sym_BSLASHGLSname] = ACTIONS(6175), + [anon_sym_BSLASHglssymbol] = ACTIONS(6175), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6175), + [anon_sym_BSLASHglsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6175), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6175), + [anon_sym_BSLASHglsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6175), + [anon_sym_BSLASHglsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6175), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6175), + [anon_sym_BSLASHglsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6175), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6175), + [anon_sym_BSLASHglsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6175), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6175), + [anon_sym_BSLASHnewacronym] = ACTIONS(6175), + [anon_sym_BSLASHacrshort] = ACTIONS(6175), + [anon_sym_BSLASHAcrshort] = ACTIONS(6175), + [anon_sym_BSLASHACRshort] = ACTIONS(6175), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6175), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6175), + [anon_sym_BSLASHacrlong] = ACTIONS(6175), + [anon_sym_BSLASHAcrlong] = ACTIONS(6175), + [anon_sym_BSLASHACRlong] = ACTIONS(6175), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6175), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6175), + [anon_sym_BSLASHacrfull] = ACTIONS(6175), + [anon_sym_BSLASHAcrfull] = ACTIONS(6175), + [anon_sym_BSLASHACRfull] = ACTIONS(6175), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6175), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6175), + [anon_sym_BSLASHacs] = ACTIONS(6175), + [anon_sym_BSLASHAcs] = ACTIONS(6175), + [anon_sym_BSLASHacsp] = ACTIONS(6175), + [anon_sym_BSLASHAcsp] = ACTIONS(6175), + [anon_sym_BSLASHacl] = ACTIONS(6175), + [anon_sym_BSLASHAcl] = ACTIONS(6175), + [anon_sym_BSLASHaclp] = ACTIONS(6175), + [anon_sym_BSLASHAclp] = ACTIONS(6175), + [anon_sym_BSLASHacf] = ACTIONS(6175), + [anon_sym_BSLASHAcf] = ACTIONS(6175), + [anon_sym_BSLASHacfp] = ACTIONS(6175), + [anon_sym_BSLASHAcfp] = ACTIONS(6175), + [anon_sym_BSLASHac] = ACTIONS(6175), + [anon_sym_BSLASHAc] = ACTIONS(6175), + [anon_sym_BSLASHacp] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6175), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6175), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6175), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6175), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6175), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6175), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6175), + [anon_sym_BSLASHcolor] = ACTIONS(6175), + [anon_sym_BSLASHcolorbox] = ACTIONS(6175), + [anon_sym_BSLASHtextcolor] = ACTIONS(6175), + [anon_sym_BSLASHpagecolor] = ACTIONS(6175), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6175), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6175), + }, + [1736] = { + [sym_command_name] = ACTIONS(5995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5995), + [anon_sym_RBRACK] = ACTIONS(5993), + [anon_sym_COMMA] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_RBRACE] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), + [sym_placeholder] = ACTIONS(5993), + [anon_sym_PLUS] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_SLASH] = ACTIONS(5995), + [anon_sym_CARET] = ACTIONS(5995), + [anon_sym__] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5995), + [anon_sym_GT] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5995), + [anon_sym_PIPE] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_SQUOTE] = ACTIONS(5995), + [anon_sym_BSLASHtitle] = ACTIONS(5995), + [anon_sym_BSLASHauthor] = ACTIONS(5995), + [anon_sym_BSLASHusepackage] = ACTIONS(5995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5995), + [anon_sym_BSLASHinclude] = ACTIONS(5995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5995), + [anon_sym_BSLASHinput] = ACTIONS(5995), + [anon_sym_BSLASHsubfile] = ACTIONS(5995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5995), + [anon_sym_BSLASHbibliography] = ACTIONS(5995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5995), + [anon_sym_BSLASHincludesvg] = ACTIONS(5995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5995), + [anon_sym_BSLASHimport] = ACTIONS(5995), + [anon_sym_BSLASHsubimport] = ACTIONS(5995), + [anon_sym_BSLASHinputfrom] = ACTIONS(5995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5995), + [anon_sym_BSLASHincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5995), + [anon_sym_BSLASHcaption] = ACTIONS(5995), + [anon_sym_BSLASHcite] = ACTIONS(5995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCite] = ACTIONS(5995), + [anon_sym_BSLASHnocite] = ACTIONS(5995), + [anon_sym_BSLASHcitet] = ACTIONS(5995), + [anon_sym_BSLASHcitep] = ACTIONS(5995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteauthor] = ACTIONS(5995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitetitle] = ACTIONS(5995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteyear] = ACTIONS(5995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5993), + [anon_sym_BSLASHcitedate] = ACTIONS(5995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5993), + [anon_sym_BSLASHciteurl] = ACTIONS(5995), + [anon_sym_BSLASHfullcite] = ACTIONS(5995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5995), + [anon_sym_BSLASHcitealt] = ACTIONS(5995), + [anon_sym_BSLASHcitealp] = ACTIONS(5995), + [anon_sym_BSLASHcitetext] = ACTIONS(5995), + [anon_sym_BSLASHparencite] = ACTIONS(5995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHParencite] = ACTIONS(5995), + [anon_sym_BSLASHfootcite] = ACTIONS(5995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5995), + [anon_sym_BSLASHtextcite] = ACTIONS(5995), + [anon_sym_BSLASHTextcite] = ACTIONS(5995), + [anon_sym_BSLASHsmartcite] = ACTIONS(5995), + [anon_sym_BSLASHSmartcite] = ACTIONS(5995), + [anon_sym_BSLASHsupercite] = ACTIONS(5995), + [anon_sym_BSLASHautocite] = ACTIONS(5995), + [anon_sym_BSLASHAutocite] = ACTIONS(5995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5993), + [anon_sym_BSLASHvolcite] = ACTIONS(5995), + [anon_sym_BSLASHVolcite] = ACTIONS(5995), + [anon_sym_BSLASHpvolcite] = ACTIONS(5995), + [anon_sym_BSLASHPvolcite] = ACTIONS(5995), + [anon_sym_BSLASHfvolcite] = ACTIONS(5995), + [anon_sym_BSLASHftvolcite] = ACTIONS(5995), + [anon_sym_BSLASHsvolcite] = ACTIONS(5995), + [anon_sym_BSLASHSvolcite] = ACTIONS(5995), + [anon_sym_BSLASHtvolcite] = ACTIONS(5995), + [anon_sym_BSLASHTvolcite] = ACTIONS(5995), + [anon_sym_BSLASHavolcite] = ACTIONS(5995), + [anon_sym_BSLASHAvolcite] = ACTIONS(5995), + [anon_sym_BSLASHnotecite] = ACTIONS(5995), + [anon_sym_BSLASHNotecite] = ACTIONS(5995), + [anon_sym_BSLASHpnotecite] = ACTIONS(5995), + [anon_sym_BSLASHPnotecite] = ACTIONS(5995), + [anon_sym_BSLASHfnotecite] = ACTIONS(5995), + [anon_sym_BSLASHlabel] = ACTIONS(5995), + [anon_sym_BSLASHref] = ACTIONS(5995), + [anon_sym_BSLASHeqref] = ACTIONS(5995), + [anon_sym_BSLASHvref] = ACTIONS(5995), + [anon_sym_BSLASHVref] = ACTIONS(5995), + [anon_sym_BSLASHautoref] = ACTIONS(5995), + [anon_sym_BSLASHpageref] = ACTIONS(5995), + [anon_sym_BSLASHcref] = ACTIONS(5995), + [anon_sym_BSLASHCref] = ACTIONS(5995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnameCref] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5995), + [anon_sym_BSLASHlabelcref] = ACTIONS(5995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange] = ACTIONS(5995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHCrefrange] = ACTIONS(5995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5993), + [anon_sym_BSLASHnewlabel] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand] = ACTIONS(5995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdef] = ACTIONS(5995), + [anon_sym_BSLASHlet] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5995), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5995), + [anon_sym_BSLASHgls] = ACTIONS(5995), + [anon_sym_BSLASHGls] = ACTIONS(5995), + [anon_sym_BSLASHGLS] = ACTIONS(5995), + [anon_sym_BSLASHglspl] = ACTIONS(5995), + [anon_sym_BSLASHGlspl] = ACTIONS(5995), + [anon_sym_BSLASHGLSpl] = ACTIONS(5995), + [anon_sym_BSLASHglsdisp] = ACTIONS(5995), + [anon_sym_BSLASHglslink] = ACTIONS(5995), + [anon_sym_BSLASHglstext] = ACTIONS(5995), + [anon_sym_BSLASHGlstext] = ACTIONS(5995), + [anon_sym_BSLASHGLStext] = ACTIONS(5995), + [anon_sym_BSLASHglsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5995), + [anon_sym_BSLASHglsplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSplural] = ACTIONS(5995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5995), + [anon_sym_BSLASHglsname] = ACTIONS(5995), + [anon_sym_BSLASHGlsname] = ACTIONS(5995), + [anon_sym_BSLASHGLSname] = ACTIONS(5995), + [anon_sym_BSLASHglssymbol] = ACTIONS(5995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5995), + [anon_sym_BSLASHglsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5995), + [anon_sym_BSLASHglsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5995), + [anon_sym_BSLASHglsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5995), + [anon_sym_BSLASHglsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5995), + [anon_sym_BSLASHglsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5995), + [anon_sym_BSLASHnewacronym] = ACTIONS(5995), + [anon_sym_BSLASHacrshort] = ACTIONS(5995), + [anon_sym_BSLASHAcrshort] = ACTIONS(5995), + [anon_sym_BSLASHACRshort] = ACTIONS(5995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5995), + [anon_sym_BSLASHacrlong] = ACTIONS(5995), + [anon_sym_BSLASHAcrlong] = ACTIONS(5995), + [anon_sym_BSLASHACRlong] = ACTIONS(5995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5995), + [anon_sym_BSLASHacrfull] = ACTIONS(5995), + [anon_sym_BSLASHAcrfull] = ACTIONS(5995), + [anon_sym_BSLASHACRfull] = ACTIONS(5995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5995), + [anon_sym_BSLASHacs] = ACTIONS(5995), + [anon_sym_BSLASHAcs] = ACTIONS(5995), + [anon_sym_BSLASHacsp] = ACTIONS(5995), + [anon_sym_BSLASHAcsp] = ACTIONS(5995), + [anon_sym_BSLASHacl] = ACTIONS(5995), + [anon_sym_BSLASHAcl] = ACTIONS(5995), + [anon_sym_BSLASHaclp] = ACTIONS(5995), + [anon_sym_BSLASHAclp] = ACTIONS(5995), + [anon_sym_BSLASHacf] = ACTIONS(5995), + [anon_sym_BSLASHAcf] = ACTIONS(5995), + [anon_sym_BSLASHacfp] = ACTIONS(5995), + [anon_sym_BSLASHAcfp] = ACTIONS(5995), + [anon_sym_BSLASHac] = ACTIONS(5995), + [anon_sym_BSLASHAc] = ACTIONS(5995), + [anon_sym_BSLASHacp] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5995), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5995), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5993), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5995), + [anon_sym_BSLASHcolor] = ACTIONS(5995), + [anon_sym_BSLASHcolorbox] = ACTIONS(5995), + [anon_sym_BSLASHtextcolor] = ACTIONS(5995), + [anon_sym_BSLASHpagecolor] = ACTIONS(5995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5995), + }, + [1737] = { + [sym_command_name] = ACTIONS(6189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6189), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6187), + [anon_sym_RBRACE] = ACTIONS(6187), + [sym_word] = ACTIONS(6189), + [sym_placeholder] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_CARET] = ACTIONS(6189), + [anon_sym__] = ACTIONS(6189), + [anon_sym_LT] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6189), + [anon_sym_BANG] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_SQUOTE] = ACTIONS(6189), + [anon_sym_BSLASHtitle] = ACTIONS(6189), + [anon_sym_BSLASHauthor] = ACTIONS(6189), + [anon_sym_BSLASHusepackage] = ACTIONS(6189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), + [anon_sym_BSLASHinclude] = ACTIONS(6189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), + [anon_sym_BSLASHinput] = ACTIONS(6189), + [anon_sym_BSLASHsubfile] = ACTIONS(6189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), + [anon_sym_BSLASHbibliography] = ACTIONS(6189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), + [anon_sym_BSLASHincludesvg] = ACTIONS(6189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), + [anon_sym_BSLASHimport] = ACTIONS(6189), + [anon_sym_BSLASHsubimport] = ACTIONS(6189), + [anon_sym_BSLASHinputfrom] = ACTIONS(6189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), + [anon_sym_BSLASHincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), + [anon_sym_BSLASHcaption] = ACTIONS(6189), + [anon_sym_BSLASHcite] = ACTIONS(6189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCite] = ACTIONS(6189), + [anon_sym_BSLASHnocite] = ACTIONS(6189), + [anon_sym_BSLASHcitet] = ACTIONS(6189), + [anon_sym_BSLASHcitep] = ACTIONS(6189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteauthor] = ACTIONS(6189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitetitle] = ACTIONS(6189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteyear] = ACTIONS(6189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), + [anon_sym_BSLASHcitedate] = ACTIONS(6189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), + [anon_sym_BSLASHciteurl] = ACTIONS(6189), + [anon_sym_BSLASHfullcite] = ACTIONS(6189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), + [anon_sym_BSLASHcitealt] = ACTIONS(6189), + [anon_sym_BSLASHcitealp] = ACTIONS(6189), + [anon_sym_BSLASHcitetext] = ACTIONS(6189), + [anon_sym_BSLASHparencite] = ACTIONS(6189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHParencite] = ACTIONS(6189), + [anon_sym_BSLASHfootcite] = ACTIONS(6189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), + [anon_sym_BSLASHtextcite] = ACTIONS(6189), + [anon_sym_BSLASHTextcite] = ACTIONS(6189), + [anon_sym_BSLASHsmartcite] = ACTIONS(6189), + [anon_sym_BSLASHSmartcite] = ACTIONS(6189), + [anon_sym_BSLASHsupercite] = ACTIONS(6189), + [anon_sym_BSLASHautocite] = ACTIONS(6189), + [anon_sym_BSLASHAutocite] = ACTIONS(6189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), + [anon_sym_BSLASHvolcite] = ACTIONS(6189), + [anon_sym_BSLASHVolcite] = ACTIONS(6189), + [anon_sym_BSLASHpvolcite] = ACTIONS(6189), + [anon_sym_BSLASHPvolcite] = ACTIONS(6189), + [anon_sym_BSLASHfvolcite] = ACTIONS(6189), + [anon_sym_BSLASHftvolcite] = ACTIONS(6189), + [anon_sym_BSLASHsvolcite] = ACTIONS(6189), + [anon_sym_BSLASHSvolcite] = ACTIONS(6189), + [anon_sym_BSLASHtvolcite] = ACTIONS(6189), + [anon_sym_BSLASHTvolcite] = ACTIONS(6189), + [anon_sym_BSLASHavolcite] = ACTIONS(6189), + [anon_sym_BSLASHAvolcite] = ACTIONS(6189), + [anon_sym_BSLASHnotecite] = ACTIONS(6189), + [anon_sym_BSLASHNotecite] = ACTIONS(6189), + [anon_sym_BSLASHpnotecite] = ACTIONS(6189), + [anon_sym_BSLASHPnotecite] = ACTIONS(6189), + [anon_sym_BSLASHfnotecite] = ACTIONS(6189), + [anon_sym_BSLASHlabel] = ACTIONS(6189), + [anon_sym_BSLASHref] = ACTIONS(6189), + [anon_sym_BSLASHeqref] = ACTIONS(6189), + [anon_sym_BSLASHvref] = ACTIONS(6189), + [anon_sym_BSLASHVref] = ACTIONS(6189), + [anon_sym_BSLASHautoref] = ACTIONS(6189), + [anon_sym_BSLASHpageref] = ACTIONS(6189), + [anon_sym_BSLASHcref] = ACTIONS(6189), + [anon_sym_BSLASHCref] = ACTIONS(6189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnameCref] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), + [anon_sym_BSLASHlabelcref] = ACTIONS(6189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange] = ACTIONS(6189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHCrefrange] = ACTIONS(6189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), + [anon_sym_BSLASHnewlabel] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand] = ACTIONS(6189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdef] = ACTIONS(6189), + [anon_sym_BSLASHlet] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), + [anon_sym_BSLASHgls] = ACTIONS(6189), + [anon_sym_BSLASHGls] = ACTIONS(6189), + [anon_sym_BSLASHGLS] = ACTIONS(6189), + [anon_sym_BSLASHglspl] = ACTIONS(6189), + [anon_sym_BSLASHGlspl] = ACTIONS(6189), + [anon_sym_BSLASHGLSpl] = ACTIONS(6189), + [anon_sym_BSLASHglsdisp] = ACTIONS(6189), + [anon_sym_BSLASHglslink] = ACTIONS(6189), + [anon_sym_BSLASHglstext] = ACTIONS(6189), + [anon_sym_BSLASHGlstext] = ACTIONS(6189), + [anon_sym_BSLASHGLStext] = ACTIONS(6189), + [anon_sym_BSLASHglsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), + [anon_sym_BSLASHglsplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSplural] = ACTIONS(6189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), + [anon_sym_BSLASHglsname] = ACTIONS(6189), + [anon_sym_BSLASHGlsname] = ACTIONS(6189), + [anon_sym_BSLASHGLSname] = ACTIONS(6189), + [anon_sym_BSLASHglssymbol] = ACTIONS(6189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), + [anon_sym_BSLASHglsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), + [anon_sym_BSLASHglsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), + [anon_sym_BSLASHglsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), + [anon_sym_BSLASHglsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), + [anon_sym_BSLASHglsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), + [anon_sym_BSLASHnewacronym] = ACTIONS(6189), + [anon_sym_BSLASHacrshort] = ACTIONS(6189), + [anon_sym_BSLASHAcrshort] = ACTIONS(6189), + [anon_sym_BSLASHACRshort] = ACTIONS(6189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), + [anon_sym_BSLASHacrlong] = ACTIONS(6189), + [anon_sym_BSLASHAcrlong] = ACTIONS(6189), + [anon_sym_BSLASHACRlong] = ACTIONS(6189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), + [anon_sym_BSLASHacrfull] = ACTIONS(6189), + [anon_sym_BSLASHAcrfull] = ACTIONS(6189), + [anon_sym_BSLASHACRfull] = ACTIONS(6189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), + [anon_sym_BSLASHacs] = ACTIONS(6189), + [anon_sym_BSLASHAcs] = ACTIONS(6189), + [anon_sym_BSLASHacsp] = ACTIONS(6189), + [anon_sym_BSLASHAcsp] = ACTIONS(6189), + [anon_sym_BSLASHacl] = ACTIONS(6189), + [anon_sym_BSLASHAcl] = ACTIONS(6189), + [anon_sym_BSLASHaclp] = ACTIONS(6189), + [anon_sym_BSLASHAclp] = ACTIONS(6189), + [anon_sym_BSLASHacf] = ACTIONS(6189), + [anon_sym_BSLASHAcf] = ACTIONS(6189), + [anon_sym_BSLASHacfp] = ACTIONS(6189), + [anon_sym_BSLASHAcfp] = ACTIONS(6189), + [anon_sym_BSLASHac] = ACTIONS(6189), + [anon_sym_BSLASHAc] = ACTIONS(6189), + [anon_sym_BSLASHacp] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), + [anon_sym_BSLASHcolor] = ACTIONS(6189), + [anon_sym_BSLASHcolorbox] = ACTIONS(6189), + [anon_sym_BSLASHtextcolor] = ACTIONS(6189), + [anon_sym_BSLASHpagecolor] = ACTIONS(6189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), + }, + [1738] = { + [sym_command_name] = ACTIONS(6011), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6011), + [anon_sym_RBRACK] = ACTIONS(6009), + [anon_sym_COMMA] = ACTIONS(6009), + [anon_sym_EQ] = ACTIONS(6009), + [anon_sym_RBRACE] = ACTIONS(6009), + [sym_word] = ACTIONS(6011), + [sym_placeholder] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(6011), + [anon_sym_DASH] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_SLASH] = ACTIONS(6011), + [anon_sym_CARET] = ACTIONS(6011), + [anon_sym__] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6011), + [anon_sym_PIPE] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_SQUOTE] = ACTIONS(6011), + [anon_sym_BSLASHtitle] = ACTIONS(6011), + [anon_sym_BSLASHauthor] = ACTIONS(6011), + [anon_sym_BSLASHusepackage] = ACTIONS(6011), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6011), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6011), + [anon_sym_BSLASHinclude] = ACTIONS(6011), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6011), + [anon_sym_BSLASHinput] = ACTIONS(6011), + [anon_sym_BSLASHsubfile] = ACTIONS(6011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6011), + [anon_sym_BSLASHbibliography] = ACTIONS(6011), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6011), + [anon_sym_BSLASHincludesvg] = ACTIONS(6011), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6011), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6011), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6011), + [anon_sym_BSLASHimport] = ACTIONS(6011), + [anon_sym_BSLASHsubimport] = ACTIONS(6011), + [anon_sym_BSLASHinputfrom] = ACTIONS(6011), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6011), + [anon_sym_BSLASHincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6011), + [anon_sym_BSLASHcaption] = ACTIONS(6011), + [anon_sym_BSLASHcite] = ACTIONS(6011), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCite] = ACTIONS(6011), + [anon_sym_BSLASHnocite] = ACTIONS(6011), + [anon_sym_BSLASHcitet] = ACTIONS(6011), + [anon_sym_BSLASHcitep] = ACTIONS(6011), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteauthor] = ACTIONS(6011), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6011), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitetitle] = ACTIONS(6011), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteyear] = ACTIONS(6011), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6009), + [anon_sym_BSLASHcitedate] = ACTIONS(6011), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6009), + [anon_sym_BSLASHciteurl] = ACTIONS(6011), + [anon_sym_BSLASHfullcite] = ACTIONS(6011), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6011), + [anon_sym_BSLASHcitealt] = ACTIONS(6011), + [anon_sym_BSLASHcitealp] = ACTIONS(6011), + [anon_sym_BSLASHcitetext] = ACTIONS(6011), + [anon_sym_BSLASHparencite] = ACTIONS(6011), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHParencite] = ACTIONS(6011), + [anon_sym_BSLASHfootcite] = ACTIONS(6011), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6011), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6011), + [anon_sym_BSLASHtextcite] = ACTIONS(6011), + [anon_sym_BSLASHTextcite] = ACTIONS(6011), + [anon_sym_BSLASHsmartcite] = ACTIONS(6011), + [anon_sym_BSLASHSmartcite] = ACTIONS(6011), + [anon_sym_BSLASHsupercite] = ACTIONS(6011), + [anon_sym_BSLASHautocite] = ACTIONS(6011), + [anon_sym_BSLASHAutocite] = ACTIONS(6011), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6009), + [anon_sym_BSLASHvolcite] = ACTIONS(6011), + [anon_sym_BSLASHVolcite] = ACTIONS(6011), + [anon_sym_BSLASHpvolcite] = ACTIONS(6011), + [anon_sym_BSLASHPvolcite] = ACTIONS(6011), + [anon_sym_BSLASHfvolcite] = ACTIONS(6011), + [anon_sym_BSLASHftvolcite] = ACTIONS(6011), + [anon_sym_BSLASHsvolcite] = ACTIONS(6011), + [anon_sym_BSLASHSvolcite] = ACTIONS(6011), + [anon_sym_BSLASHtvolcite] = ACTIONS(6011), + [anon_sym_BSLASHTvolcite] = ACTIONS(6011), + [anon_sym_BSLASHavolcite] = ACTIONS(6011), + [anon_sym_BSLASHAvolcite] = ACTIONS(6011), + [anon_sym_BSLASHnotecite] = ACTIONS(6011), + [anon_sym_BSLASHNotecite] = ACTIONS(6011), + [anon_sym_BSLASHpnotecite] = ACTIONS(6011), + [anon_sym_BSLASHPnotecite] = ACTIONS(6011), + [anon_sym_BSLASHfnotecite] = ACTIONS(6011), + [anon_sym_BSLASHlabel] = ACTIONS(6011), + [anon_sym_BSLASHref] = ACTIONS(6011), + [anon_sym_BSLASHeqref] = ACTIONS(6011), + [anon_sym_BSLASHvref] = ACTIONS(6011), + [anon_sym_BSLASHVref] = ACTIONS(6011), + [anon_sym_BSLASHautoref] = ACTIONS(6011), + [anon_sym_BSLASHpageref] = ACTIONS(6011), + [anon_sym_BSLASHcref] = ACTIONS(6011), + [anon_sym_BSLASHCref] = ACTIONS(6011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnameCref] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6011), + [anon_sym_BSLASHlabelcref] = ACTIONS(6011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange] = ACTIONS(6011), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHCrefrange] = ACTIONS(6011), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6009), + [anon_sym_BSLASHnewlabel] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand] = ACTIONS(6011), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6011), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6011), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6009), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6011), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdef] = ACTIONS(6011), + [anon_sym_BSLASHlet] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6011), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6011), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6011), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6011), + [anon_sym_BSLASHgls] = ACTIONS(6011), + [anon_sym_BSLASHGls] = ACTIONS(6011), + [anon_sym_BSLASHGLS] = ACTIONS(6011), + [anon_sym_BSLASHglspl] = ACTIONS(6011), + [anon_sym_BSLASHGlspl] = ACTIONS(6011), + [anon_sym_BSLASHGLSpl] = ACTIONS(6011), + [anon_sym_BSLASHglsdisp] = ACTIONS(6011), + [anon_sym_BSLASHglslink] = ACTIONS(6011), + [anon_sym_BSLASHglstext] = ACTIONS(6011), + [anon_sym_BSLASHGlstext] = ACTIONS(6011), + [anon_sym_BSLASHGLStext] = ACTIONS(6011), + [anon_sym_BSLASHglsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6011), + [anon_sym_BSLASHglsplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSplural] = ACTIONS(6011), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6011), + [anon_sym_BSLASHglsname] = ACTIONS(6011), + [anon_sym_BSLASHGlsname] = ACTIONS(6011), + [anon_sym_BSLASHGLSname] = ACTIONS(6011), + [anon_sym_BSLASHglssymbol] = ACTIONS(6011), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6011), + [anon_sym_BSLASHglsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6011), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6011), + [anon_sym_BSLASHglsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6011), + [anon_sym_BSLASHglsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6011), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6011), + [anon_sym_BSLASHglsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6011), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6011), + [anon_sym_BSLASHglsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6011), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6011), + [anon_sym_BSLASHnewacronym] = ACTIONS(6011), + [anon_sym_BSLASHacrshort] = ACTIONS(6011), + [anon_sym_BSLASHAcrshort] = ACTIONS(6011), + [anon_sym_BSLASHACRshort] = ACTIONS(6011), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6011), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6011), + [anon_sym_BSLASHacrlong] = ACTIONS(6011), + [anon_sym_BSLASHAcrlong] = ACTIONS(6011), + [anon_sym_BSLASHACRlong] = ACTIONS(6011), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6011), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6011), + [anon_sym_BSLASHacrfull] = ACTIONS(6011), + [anon_sym_BSLASHAcrfull] = ACTIONS(6011), + [anon_sym_BSLASHACRfull] = ACTIONS(6011), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6011), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6011), + [anon_sym_BSLASHacs] = ACTIONS(6011), + [anon_sym_BSLASHAcs] = ACTIONS(6011), + [anon_sym_BSLASHacsp] = ACTIONS(6011), + [anon_sym_BSLASHAcsp] = ACTIONS(6011), + [anon_sym_BSLASHacl] = ACTIONS(6011), + [anon_sym_BSLASHAcl] = ACTIONS(6011), + [anon_sym_BSLASHaclp] = ACTIONS(6011), + [anon_sym_BSLASHAclp] = ACTIONS(6011), + [anon_sym_BSLASHacf] = ACTIONS(6011), + [anon_sym_BSLASHAcf] = ACTIONS(6011), + [anon_sym_BSLASHacfp] = ACTIONS(6011), + [anon_sym_BSLASHAcfp] = ACTIONS(6011), + [anon_sym_BSLASHac] = ACTIONS(6011), + [anon_sym_BSLASHAc] = ACTIONS(6011), + [anon_sym_BSLASHacp] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6011), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6011), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6011), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6011), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6011), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6011), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6011), + [anon_sym_BSLASHcolor] = ACTIONS(6011), + [anon_sym_BSLASHcolorbox] = ACTIONS(6011), + [anon_sym_BSLASHtextcolor] = ACTIONS(6011), + [anon_sym_BSLASHpagecolor] = ACTIONS(6011), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6011), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6011), + }, + [1739] = { + [sym_command_name] = ACTIONS(6201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6201), + [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6199), + [sym_word] = ACTIONS(6201), + [sym_placeholder] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym__] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_SQUOTE] = ACTIONS(6201), + [anon_sym_BSLASHtitle] = ACTIONS(6201), + [anon_sym_BSLASHauthor] = ACTIONS(6201), + [anon_sym_BSLASHusepackage] = ACTIONS(6201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), + [anon_sym_BSLASHinclude] = ACTIONS(6201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), + [anon_sym_BSLASHinput] = ACTIONS(6201), + [anon_sym_BSLASHsubfile] = ACTIONS(6201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), + [anon_sym_BSLASHbibliography] = ACTIONS(6201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), + [anon_sym_BSLASHincludesvg] = ACTIONS(6201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), + [anon_sym_BSLASHimport] = ACTIONS(6201), + [anon_sym_BSLASHsubimport] = ACTIONS(6201), + [anon_sym_BSLASHinputfrom] = ACTIONS(6201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), + [anon_sym_BSLASHincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), + [anon_sym_BSLASHcaption] = ACTIONS(6201), + [anon_sym_BSLASHcite] = ACTIONS(6201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCite] = ACTIONS(6201), + [anon_sym_BSLASHnocite] = ACTIONS(6201), + [anon_sym_BSLASHcitet] = ACTIONS(6201), + [anon_sym_BSLASHcitep] = ACTIONS(6201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteauthor] = ACTIONS(6201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitetitle] = ACTIONS(6201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteyear] = ACTIONS(6201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), + [anon_sym_BSLASHcitedate] = ACTIONS(6201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), + [anon_sym_BSLASHciteurl] = ACTIONS(6201), + [anon_sym_BSLASHfullcite] = ACTIONS(6201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), + [anon_sym_BSLASHcitealt] = ACTIONS(6201), + [anon_sym_BSLASHcitealp] = ACTIONS(6201), + [anon_sym_BSLASHcitetext] = ACTIONS(6201), + [anon_sym_BSLASHparencite] = ACTIONS(6201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHParencite] = ACTIONS(6201), + [anon_sym_BSLASHfootcite] = ACTIONS(6201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), + [anon_sym_BSLASHtextcite] = ACTIONS(6201), + [anon_sym_BSLASHTextcite] = ACTIONS(6201), + [anon_sym_BSLASHsmartcite] = ACTIONS(6201), + [anon_sym_BSLASHSmartcite] = ACTIONS(6201), + [anon_sym_BSLASHsupercite] = ACTIONS(6201), + [anon_sym_BSLASHautocite] = ACTIONS(6201), + [anon_sym_BSLASHAutocite] = ACTIONS(6201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), + [anon_sym_BSLASHvolcite] = ACTIONS(6201), + [anon_sym_BSLASHVolcite] = ACTIONS(6201), + [anon_sym_BSLASHpvolcite] = ACTIONS(6201), + [anon_sym_BSLASHPvolcite] = ACTIONS(6201), + [anon_sym_BSLASHfvolcite] = ACTIONS(6201), + [anon_sym_BSLASHftvolcite] = ACTIONS(6201), + [anon_sym_BSLASHsvolcite] = ACTIONS(6201), + [anon_sym_BSLASHSvolcite] = ACTIONS(6201), + [anon_sym_BSLASHtvolcite] = ACTIONS(6201), + [anon_sym_BSLASHTvolcite] = ACTIONS(6201), + [anon_sym_BSLASHavolcite] = ACTIONS(6201), + [anon_sym_BSLASHAvolcite] = ACTIONS(6201), + [anon_sym_BSLASHnotecite] = ACTIONS(6201), + [anon_sym_BSLASHNotecite] = ACTIONS(6201), + [anon_sym_BSLASHpnotecite] = ACTIONS(6201), + [anon_sym_BSLASHPnotecite] = ACTIONS(6201), + [anon_sym_BSLASHfnotecite] = ACTIONS(6201), + [anon_sym_BSLASHlabel] = ACTIONS(6201), + [anon_sym_BSLASHref] = ACTIONS(6201), + [anon_sym_BSLASHeqref] = ACTIONS(6201), + [anon_sym_BSLASHvref] = ACTIONS(6201), + [anon_sym_BSLASHVref] = ACTIONS(6201), + [anon_sym_BSLASHautoref] = ACTIONS(6201), + [anon_sym_BSLASHpageref] = ACTIONS(6201), + [anon_sym_BSLASHcref] = ACTIONS(6201), + [anon_sym_BSLASHCref] = ACTIONS(6201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnameCref] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), + [anon_sym_BSLASHlabelcref] = ACTIONS(6201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange] = ACTIONS(6201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHCrefrange] = ACTIONS(6201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), + [anon_sym_BSLASHnewlabel] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand] = ACTIONS(6201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdef] = ACTIONS(6201), + [anon_sym_BSLASHlet] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), + [anon_sym_BSLASHgls] = ACTIONS(6201), + [anon_sym_BSLASHGls] = ACTIONS(6201), + [anon_sym_BSLASHGLS] = ACTIONS(6201), + [anon_sym_BSLASHglspl] = ACTIONS(6201), + [anon_sym_BSLASHGlspl] = ACTIONS(6201), + [anon_sym_BSLASHGLSpl] = ACTIONS(6201), + [anon_sym_BSLASHglsdisp] = ACTIONS(6201), + [anon_sym_BSLASHglslink] = ACTIONS(6201), + [anon_sym_BSLASHglstext] = ACTIONS(6201), + [anon_sym_BSLASHGlstext] = ACTIONS(6201), + [anon_sym_BSLASHGLStext] = ACTIONS(6201), + [anon_sym_BSLASHglsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), + [anon_sym_BSLASHglsplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSplural] = ACTIONS(6201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), + [anon_sym_BSLASHglsname] = ACTIONS(6201), + [anon_sym_BSLASHGlsname] = ACTIONS(6201), + [anon_sym_BSLASHGLSname] = ACTIONS(6201), + [anon_sym_BSLASHglssymbol] = ACTIONS(6201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), + [anon_sym_BSLASHglsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), + [anon_sym_BSLASHglsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), + [anon_sym_BSLASHglsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), + [anon_sym_BSLASHglsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), + [anon_sym_BSLASHglsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), + [anon_sym_BSLASHnewacronym] = ACTIONS(6201), + [anon_sym_BSLASHacrshort] = ACTIONS(6201), + [anon_sym_BSLASHAcrshort] = ACTIONS(6201), + [anon_sym_BSLASHACRshort] = ACTIONS(6201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), + [anon_sym_BSLASHacrlong] = ACTIONS(6201), + [anon_sym_BSLASHAcrlong] = ACTIONS(6201), + [anon_sym_BSLASHACRlong] = ACTIONS(6201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), + [anon_sym_BSLASHacrfull] = ACTIONS(6201), + [anon_sym_BSLASHAcrfull] = ACTIONS(6201), + [anon_sym_BSLASHACRfull] = ACTIONS(6201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), + [anon_sym_BSLASHacs] = ACTIONS(6201), + [anon_sym_BSLASHAcs] = ACTIONS(6201), + [anon_sym_BSLASHacsp] = ACTIONS(6201), + [anon_sym_BSLASHAcsp] = ACTIONS(6201), + [anon_sym_BSLASHacl] = ACTIONS(6201), + [anon_sym_BSLASHAcl] = ACTIONS(6201), + [anon_sym_BSLASHaclp] = ACTIONS(6201), + [anon_sym_BSLASHAclp] = ACTIONS(6201), + [anon_sym_BSLASHacf] = ACTIONS(6201), + [anon_sym_BSLASHAcf] = ACTIONS(6201), + [anon_sym_BSLASHacfp] = ACTIONS(6201), + [anon_sym_BSLASHAcfp] = ACTIONS(6201), + [anon_sym_BSLASHac] = ACTIONS(6201), + [anon_sym_BSLASHAc] = ACTIONS(6201), + [anon_sym_BSLASHacp] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), + [anon_sym_BSLASHcolor] = ACTIONS(6201), + [anon_sym_BSLASHcolorbox] = ACTIONS(6201), + [anon_sym_BSLASHtextcolor] = ACTIONS(6201), + [anon_sym_BSLASHpagecolor] = ACTIONS(6201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), + }, + [1740] = { + [sym_command_name] = ACTIONS(6219), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6219), + [anon_sym_RBRACK] = ACTIONS(6217), + [anon_sym_COMMA] = ACTIONS(6217), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_RBRACE] = ACTIONS(6217), + [sym_word] = ACTIONS(6219), + [sym_placeholder] = ACTIONS(6217), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6219), + [anon_sym_SLASH] = ACTIONS(6219), + [anon_sym_CARET] = ACTIONS(6219), + [anon_sym__] = ACTIONS(6219), + [anon_sym_LT] = ACTIONS(6219), + [anon_sym_GT] = ACTIONS(6219), + [anon_sym_BANG] = ACTIONS(6219), + [anon_sym_PIPE] = ACTIONS(6219), + [anon_sym_COLON] = ACTIONS(6219), + [anon_sym_SQUOTE] = ACTIONS(6219), + [anon_sym_BSLASHtitle] = ACTIONS(6219), + [anon_sym_BSLASHauthor] = ACTIONS(6219), + [anon_sym_BSLASHusepackage] = ACTIONS(6219), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6219), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6219), + [anon_sym_BSLASHinclude] = ACTIONS(6219), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6219), + [anon_sym_BSLASHinput] = ACTIONS(6219), + [anon_sym_BSLASHsubfile] = ACTIONS(6219), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6219), + [anon_sym_BSLASHbibliography] = ACTIONS(6219), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6219), + [anon_sym_BSLASHincludesvg] = ACTIONS(6219), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6219), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6219), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6219), + [anon_sym_BSLASHimport] = ACTIONS(6219), + [anon_sym_BSLASHsubimport] = ACTIONS(6219), + [anon_sym_BSLASHinputfrom] = ACTIONS(6219), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6219), + [anon_sym_BSLASHincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6219), + [anon_sym_BSLASHcaption] = ACTIONS(6219), + [anon_sym_BSLASHcite] = ACTIONS(6219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCite] = ACTIONS(6219), + [anon_sym_BSLASHnocite] = ACTIONS(6219), + [anon_sym_BSLASHcitet] = ACTIONS(6219), + [anon_sym_BSLASHcitep] = ACTIONS(6219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteauthor] = ACTIONS(6219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitetitle] = ACTIONS(6219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteyear] = ACTIONS(6219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6217), + [anon_sym_BSLASHcitedate] = ACTIONS(6219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6217), + [anon_sym_BSLASHciteurl] = ACTIONS(6219), + [anon_sym_BSLASHfullcite] = ACTIONS(6219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6219), + [anon_sym_BSLASHcitealt] = ACTIONS(6219), + [anon_sym_BSLASHcitealp] = ACTIONS(6219), + [anon_sym_BSLASHcitetext] = ACTIONS(6219), + [anon_sym_BSLASHparencite] = ACTIONS(6219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHParencite] = ACTIONS(6219), + [anon_sym_BSLASHfootcite] = ACTIONS(6219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6219), + [anon_sym_BSLASHtextcite] = ACTIONS(6219), + [anon_sym_BSLASHTextcite] = ACTIONS(6219), + [anon_sym_BSLASHsmartcite] = ACTIONS(6219), + [anon_sym_BSLASHSmartcite] = ACTIONS(6219), + [anon_sym_BSLASHsupercite] = ACTIONS(6219), + [anon_sym_BSLASHautocite] = ACTIONS(6219), + [anon_sym_BSLASHAutocite] = ACTIONS(6219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6217), + [anon_sym_BSLASHvolcite] = ACTIONS(6219), + [anon_sym_BSLASHVolcite] = ACTIONS(6219), + [anon_sym_BSLASHpvolcite] = ACTIONS(6219), + [anon_sym_BSLASHPvolcite] = ACTIONS(6219), + [anon_sym_BSLASHfvolcite] = ACTIONS(6219), + [anon_sym_BSLASHftvolcite] = ACTIONS(6219), + [anon_sym_BSLASHsvolcite] = ACTIONS(6219), + [anon_sym_BSLASHSvolcite] = ACTIONS(6219), + [anon_sym_BSLASHtvolcite] = ACTIONS(6219), + [anon_sym_BSLASHTvolcite] = ACTIONS(6219), + [anon_sym_BSLASHavolcite] = ACTIONS(6219), + [anon_sym_BSLASHAvolcite] = ACTIONS(6219), + [anon_sym_BSLASHnotecite] = ACTIONS(6219), + [anon_sym_BSLASHNotecite] = ACTIONS(6219), + [anon_sym_BSLASHpnotecite] = ACTIONS(6219), + [anon_sym_BSLASHPnotecite] = ACTIONS(6219), + [anon_sym_BSLASHfnotecite] = ACTIONS(6219), + [anon_sym_BSLASHlabel] = ACTIONS(6219), + [anon_sym_BSLASHref] = ACTIONS(6219), + [anon_sym_BSLASHeqref] = ACTIONS(6219), + [anon_sym_BSLASHvref] = ACTIONS(6219), + [anon_sym_BSLASHVref] = ACTIONS(6219), + [anon_sym_BSLASHautoref] = ACTIONS(6219), + [anon_sym_BSLASHpageref] = ACTIONS(6219), + [anon_sym_BSLASHcref] = ACTIONS(6219), + [anon_sym_BSLASHCref] = ACTIONS(6219), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnameCref] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6219), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6219), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6219), + [anon_sym_BSLASHlabelcref] = ACTIONS(6219), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange] = ACTIONS(6219), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHCrefrange] = ACTIONS(6219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6217), + [anon_sym_BSLASHnewlabel] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand] = ACTIONS(6219), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6219), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6219), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6219), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdef] = ACTIONS(6219), + [anon_sym_BSLASHlet] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6219), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6219), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6219), + [anon_sym_BSLASHgls] = ACTIONS(6219), + [anon_sym_BSLASHGls] = ACTIONS(6219), + [anon_sym_BSLASHGLS] = ACTIONS(6219), + [anon_sym_BSLASHglspl] = ACTIONS(6219), + [anon_sym_BSLASHGlspl] = ACTIONS(6219), + [anon_sym_BSLASHGLSpl] = ACTIONS(6219), + [anon_sym_BSLASHglsdisp] = ACTIONS(6219), + [anon_sym_BSLASHglslink] = ACTIONS(6219), + [anon_sym_BSLASHglstext] = ACTIONS(6219), + [anon_sym_BSLASHGlstext] = ACTIONS(6219), + [anon_sym_BSLASHGLStext] = ACTIONS(6219), + [anon_sym_BSLASHglsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6219), + [anon_sym_BSLASHglsplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSplural] = ACTIONS(6219), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6219), + [anon_sym_BSLASHglsname] = ACTIONS(6219), + [anon_sym_BSLASHGlsname] = ACTIONS(6219), + [anon_sym_BSLASHGLSname] = ACTIONS(6219), + [anon_sym_BSLASHglssymbol] = ACTIONS(6219), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6219), + [anon_sym_BSLASHglsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6219), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6219), + [anon_sym_BSLASHglsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6219), + [anon_sym_BSLASHglsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6219), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6219), + [anon_sym_BSLASHglsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6219), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6219), + [anon_sym_BSLASHglsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6219), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6219), + [anon_sym_BSLASHnewacronym] = ACTIONS(6219), + [anon_sym_BSLASHacrshort] = ACTIONS(6219), + [anon_sym_BSLASHAcrshort] = ACTIONS(6219), + [anon_sym_BSLASHACRshort] = ACTIONS(6219), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6219), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6219), + [anon_sym_BSLASHacrlong] = ACTIONS(6219), + [anon_sym_BSLASHAcrlong] = ACTIONS(6219), + [anon_sym_BSLASHACRlong] = ACTIONS(6219), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6219), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6219), + [anon_sym_BSLASHacrfull] = ACTIONS(6219), + [anon_sym_BSLASHAcrfull] = ACTIONS(6219), + [anon_sym_BSLASHACRfull] = ACTIONS(6219), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6219), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6219), + [anon_sym_BSLASHacs] = ACTIONS(6219), + [anon_sym_BSLASHAcs] = ACTIONS(6219), + [anon_sym_BSLASHacsp] = ACTIONS(6219), + [anon_sym_BSLASHAcsp] = ACTIONS(6219), + [anon_sym_BSLASHacl] = ACTIONS(6219), + [anon_sym_BSLASHAcl] = ACTIONS(6219), + [anon_sym_BSLASHaclp] = ACTIONS(6219), + [anon_sym_BSLASHAclp] = ACTIONS(6219), + [anon_sym_BSLASHacf] = ACTIONS(6219), + [anon_sym_BSLASHAcf] = ACTIONS(6219), + [anon_sym_BSLASHacfp] = ACTIONS(6219), + [anon_sym_BSLASHAcfp] = ACTIONS(6219), + [anon_sym_BSLASHac] = ACTIONS(6219), + [anon_sym_BSLASHAc] = ACTIONS(6219), + [anon_sym_BSLASHacp] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6219), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6219), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6219), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6219), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6219), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6219), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6219), + [anon_sym_BSLASHcolor] = ACTIONS(6219), + [anon_sym_BSLASHcolorbox] = ACTIONS(6219), + [anon_sym_BSLASHtextcolor] = ACTIONS(6219), + [anon_sym_BSLASHpagecolor] = ACTIONS(6219), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6219), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6219), + }, + [1741] = { + [sym_command_name] = ACTIONS(6227), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6227), + [anon_sym_RBRACK] = ACTIONS(6225), + [anon_sym_COMMA] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_RBRACE] = ACTIONS(6225), + [sym_word] = ACTIONS(6227), + [sym_placeholder] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6227), + [anon_sym_SLASH] = ACTIONS(6227), + [anon_sym_CARET] = ACTIONS(6227), + [anon_sym__] = ACTIONS(6227), + [anon_sym_LT] = ACTIONS(6227), + [anon_sym_GT] = ACTIONS(6227), + [anon_sym_BANG] = ACTIONS(6227), + [anon_sym_PIPE] = ACTIONS(6227), + [anon_sym_COLON] = ACTIONS(6227), + [anon_sym_SQUOTE] = ACTIONS(6227), + [anon_sym_BSLASHtitle] = ACTIONS(6227), + [anon_sym_BSLASHauthor] = ACTIONS(6227), + [anon_sym_BSLASHusepackage] = ACTIONS(6227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6227), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6227), + [anon_sym_BSLASHsubfile] = ACTIONS(6227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6227), + [anon_sym_BSLASHbibliography] = ACTIONS(6227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6227), + [anon_sym_BSLASHincludesvg] = ACTIONS(6227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6227), + [anon_sym_BSLASHimport] = ACTIONS(6227), + [anon_sym_BSLASHsubimport] = ACTIONS(6227), + [anon_sym_BSLASHinputfrom] = ACTIONS(6227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6227), + [anon_sym_BSLASHincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6227), + [anon_sym_BSLASHcaption] = ACTIONS(6227), + [anon_sym_BSLASHcite] = ACTIONS(6227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCite] = ACTIONS(6227), + [anon_sym_BSLASHnocite] = ACTIONS(6227), + [anon_sym_BSLASHcitet] = ACTIONS(6227), + [anon_sym_BSLASHcitep] = ACTIONS(6227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteauthor] = ACTIONS(6227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitetitle] = ACTIONS(6227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteyear] = ACTIONS(6227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6225), + [anon_sym_BSLASHcitedate] = ACTIONS(6227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6225), + [anon_sym_BSLASHciteurl] = ACTIONS(6227), + [anon_sym_BSLASHfullcite] = ACTIONS(6227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6227), + [anon_sym_BSLASHcitealt] = ACTIONS(6227), + [anon_sym_BSLASHcitealp] = ACTIONS(6227), + [anon_sym_BSLASHcitetext] = ACTIONS(6227), + [anon_sym_BSLASHparencite] = ACTIONS(6227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHParencite] = ACTIONS(6227), + [anon_sym_BSLASHfootcite] = ACTIONS(6227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6227), + [anon_sym_BSLASHtextcite] = ACTIONS(6227), + [anon_sym_BSLASHTextcite] = ACTIONS(6227), + [anon_sym_BSLASHsmartcite] = ACTIONS(6227), + [anon_sym_BSLASHSmartcite] = ACTIONS(6227), + [anon_sym_BSLASHsupercite] = ACTIONS(6227), + [anon_sym_BSLASHautocite] = ACTIONS(6227), + [anon_sym_BSLASHAutocite] = ACTIONS(6227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6225), + [anon_sym_BSLASHvolcite] = ACTIONS(6227), + [anon_sym_BSLASHVolcite] = ACTIONS(6227), + [anon_sym_BSLASHpvolcite] = ACTIONS(6227), + [anon_sym_BSLASHPvolcite] = ACTIONS(6227), + [anon_sym_BSLASHfvolcite] = ACTIONS(6227), + [anon_sym_BSLASHftvolcite] = ACTIONS(6227), + [anon_sym_BSLASHsvolcite] = ACTIONS(6227), + [anon_sym_BSLASHSvolcite] = ACTIONS(6227), + [anon_sym_BSLASHtvolcite] = ACTIONS(6227), + [anon_sym_BSLASHTvolcite] = ACTIONS(6227), + [anon_sym_BSLASHavolcite] = ACTIONS(6227), + [anon_sym_BSLASHAvolcite] = ACTIONS(6227), + [anon_sym_BSLASHnotecite] = ACTIONS(6227), + [anon_sym_BSLASHNotecite] = ACTIONS(6227), + [anon_sym_BSLASHpnotecite] = ACTIONS(6227), + [anon_sym_BSLASHPnotecite] = ACTIONS(6227), + [anon_sym_BSLASHfnotecite] = ACTIONS(6227), + [anon_sym_BSLASHlabel] = ACTIONS(6227), + [anon_sym_BSLASHref] = ACTIONS(6227), + [anon_sym_BSLASHeqref] = ACTIONS(6227), + [anon_sym_BSLASHvref] = ACTIONS(6227), + [anon_sym_BSLASHVref] = ACTIONS(6227), + [anon_sym_BSLASHautoref] = ACTIONS(6227), + [anon_sym_BSLASHpageref] = ACTIONS(6227), + [anon_sym_BSLASHcref] = ACTIONS(6227), + [anon_sym_BSLASHCref] = ACTIONS(6227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnameCref] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6227), + [anon_sym_BSLASHlabelcref] = ACTIONS(6227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange] = ACTIONS(6227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHCrefrange] = ACTIONS(6227), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6225), + [anon_sym_BSLASHnewlabel] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand] = ACTIONS(6227), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6227), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6227), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6225), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdef] = ACTIONS(6227), + [anon_sym_BSLASHlet] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6227), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6227), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6227), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6227), + [anon_sym_BSLASHgls] = ACTIONS(6227), + [anon_sym_BSLASHGls] = ACTIONS(6227), + [anon_sym_BSLASHGLS] = ACTIONS(6227), + [anon_sym_BSLASHglspl] = ACTIONS(6227), + [anon_sym_BSLASHGlspl] = ACTIONS(6227), + [anon_sym_BSLASHGLSpl] = ACTIONS(6227), + [anon_sym_BSLASHglsdisp] = ACTIONS(6227), + [anon_sym_BSLASHglslink] = ACTIONS(6227), + [anon_sym_BSLASHglstext] = ACTIONS(6227), + [anon_sym_BSLASHGlstext] = ACTIONS(6227), + [anon_sym_BSLASHGLStext] = ACTIONS(6227), + [anon_sym_BSLASHglsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6227), + [anon_sym_BSLASHglsplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSplural] = ACTIONS(6227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6227), + [anon_sym_BSLASHglsname] = ACTIONS(6227), + [anon_sym_BSLASHGlsname] = ACTIONS(6227), + [anon_sym_BSLASHGLSname] = ACTIONS(6227), + [anon_sym_BSLASHglssymbol] = ACTIONS(6227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6227), + [anon_sym_BSLASHglsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6227), + [anon_sym_BSLASHglsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6227), + [anon_sym_BSLASHglsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6227), + [anon_sym_BSLASHglsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6227), + [anon_sym_BSLASHglsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6227), + [anon_sym_BSLASHnewacronym] = ACTIONS(6227), + [anon_sym_BSLASHacrshort] = ACTIONS(6227), + [anon_sym_BSLASHAcrshort] = ACTIONS(6227), + [anon_sym_BSLASHACRshort] = ACTIONS(6227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6227), + [anon_sym_BSLASHacrlong] = ACTIONS(6227), + [anon_sym_BSLASHAcrlong] = ACTIONS(6227), + [anon_sym_BSLASHACRlong] = ACTIONS(6227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6227), + [anon_sym_BSLASHacrfull] = ACTIONS(6227), + [anon_sym_BSLASHAcrfull] = ACTIONS(6227), + [anon_sym_BSLASHACRfull] = ACTIONS(6227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6227), + [anon_sym_BSLASHacs] = ACTIONS(6227), + [anon_sym_BSLASHAcs] = ACTIONS(6227), + [anon_sym_BSLASHacsp] = ACTIONS(6227), + [anon_sym_BSLASHAcsp] = ACTIONS(6227), + [anon_sym_BSLASHacl] = ACTIONS(6227), + [anon_sym_BSLASHAcl] = ACTIONS(6227), + [anon_sym_BSLASHaclp] = ACTIONS(6227), + [anon_sym_BSLASHAclp] = ACTIONS(6227), + [anon_sym_BSLASHacf] = ACTIONS(6227), + [anon_sym_BSLASHAcf] = ACTIONS(6227), + [anon_sym_BSLASHacfp] = ACTIONS(6227), + [anon_sym_BSLASHAcfp] = ACTIONS(6227), + [anon_sym_BSLASHac] = ACTIONS(6227), + [anon_sym_BSLASHAc] = ACTIONS(6227), + [anon_sym_BSLASHacp] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6227), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6227), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6227), + [anon_sym_BSLASHcolor] = ACTIONS(6227), + [anon_sym_BSLASHcolorbox] = ACTIONS(6227), + [anon_sym_BSLASHtextcolor] = ACTIONS(6227), + [anon_sym_BSLASHpagecolor] = ACTIONS(6227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6227), + }, + [1742] = { + [sym_command_name] = ACTIONS(5837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5837), + [anon_sym_RBRACK] = ACTIONS(5835), + [anon_sym_COMMA] = ACTIONS(5835), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_RBRACE] = ACTIONS(5835), + [sym_word] = ACTIONS(5837), + [sym_placeholder] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5837), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym__] = ACTIONS(5837), + [anon_sym_LT] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5837), + [anon_sym_BANG] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_SQUOTE] = ACTIONS(5837), + [anon_sym_BSLASHtitle] = ACTIONS(5837), + [anon_sym_BSLASHauthor] = ACTIONS(5837), + [anon_sym_BSLASHusepackage] = ACTIONS(5837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5837), + [anon_sym_BSLASHinclude] = ACTIONS(5837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5837), + [anon_sym_BSLASHinput] = ACTIONS(5837), + [anon_sym_BSLASHsubfile] = ACTIONS(5837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5837), + [anon_sym_BSLASHbibliography] = ACTIONS(5837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5837), + [anon_sym_BSLASHincludesvg] = ACTIONS(5837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5837), + [anon_sym_BSLASHimport] = ACTIONS(5837), + [anon_sym_BSLASHsubimport] = ACTIONS(5837), + [anon_sym_BSLASHinputfrom] = ACTIONS(5837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5837), + [anon_sym_BSLASHincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5837), + [anon_sym_BSLASHcaption] = ACTIONS(5837), + [anon_sym_BSLASHcite] = ACTIONS(5837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCite] = ACTIONS(5837), + [anon_sym_BSLASHnocite] = ACTIONS(5837), + [anon_sym_BSLASHcitet] = ACTIONS(5837), + [anon_sym_BSLASHcitep] = ACTIONS(5837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteauthor] = ACTIONS(5837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitetitle] = ACTIONS(5837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteyear] = ACTIONS(5837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5835), + [anon_sym_BSLASHcitedate] = ACTIONS(5837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5835), + [anon_sym_BSLASHciteurl] = ACTIONS(5837), + [anon_sym_BSLASHfullcite] = ACTIONS(5837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5837), + [anon_sym_BSLASHcitealt] = ACTIONS(5837), + [anon_sym_BSLASHcitealp] = ACTIONS(5837), + [anon_sym_BSLASHcitetext] = ACTIONS(5837), + [anon_sym_BSLASHparencite] = ACTIONS(5837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHParencite] = ACTIONS(5837), + [anon_sym_BSLASHfootcite] = ACTIONS(5837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5837), + [anon_sym_BSLASHtextcite] = ACTIONS(5837), + [anon_sym_BSLASHTextcite] = ACTIONS(5837), + [anon_sym_BSLASHsmartcite] = ACTIONS(5837), + [anon_sym_BSLASHSmartcite] = ACTIONS(5837), + [anon_sym_BSLASHsupercite] = ACTIONS(5837), + [anon_sym_BSLASHautocite] = ACTIONS(5837), + [anon_sym_BSLASHAutocite] = ACTIONS(5837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5835), + [anon_sym_BSLASHvolcite] = ACTIONS(5837), + [anon_sym_BSLASHVolcite] = ACTIONS(5837), + [anon_sym_BSLASHpvolcite] = ACTIONS(5837), + [anon_sym_BSLASHPvolcite] = ACTIONS(5837), + [anon_sym_BSLASHfvolcite] = ACTIONS(5837), + [anon_sym_BSLASHftvolcite] = ACTIONS(5837), + [anon_sym_BSLASHsvolcite] = ACTIONS(5837), + [anon_sym_BSLASHSvolcite] = ACTIONS(5837), + [anon_sym_BSLASHtvolcite] = ACTIONS(5837), + [anon_sym_BSLASHTvolcite] = ACTIONS(5837), + [anon_sym_BSLASHavolcite] = ACTIONS(5837), + [anon_sym_BSLASHAvolcite] = ACTIONS(5837), + [anon_sym_BSLASHnotecite] = ACTIONS(5837), + [anon_sym_BSLASHNotecite] = ACTIONS(5837), + [anon_sym_BSLASHpnotecite] = ACTIONS(5837), + [anon_sym_BSLASHPnotecite] = ACTIONS(5837), + [anon_sym_BSLASHfnotecite] = ACTIONS(5837), + [anon_sym_BSLASHlabel] = ACTIONS(5837), + [anon_sym_BSLASHref] = ACTIONS(5837), + [anon_sym_BSLASHeqref] = ACTIONS(5837), + [anon_sym_BSLASHvref] = ACTIONS(5837), + [anon_sym_BSLASHVref] = ACTIONS(5837), + [anon_sym_BSLASHautoref] = ACTIONS(5837), + [anon_sym_BSLASHpageref] = ACTIONS(5837), + [anon_sym_BSLASHcref] = ACTIONS(5837), + [anon_sym_BSLASHCref] = ACTIONS(5837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnameCref] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5837), + [anon_sym_BSLASHlabelcref] = ACTIONS(5837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange] = ACTIONS(5837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHCrefrange] = ACTIONS(5837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5835), + [anon_sym_BSLASHnewlabel] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand] = ACTIONS(5837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdef] = ACTIONS(5837), + [anon_sym_BSLASHlet] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5837), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5837), + [anon_sym_BSLASHgls] = ACTIONS(5837), + [anon_sym_BSLASHGls] = ACTIONS(5837), + [anon_sym_BSLASHGLS] = ACTIONS(5837), + [anon_sym_BSLASHglspl] = ACTIONS(5837), + [anon_sym_BSLASHGlspl] = ACTIONS(5837), + [anon_sym_BSLASHGLSpl] = ACTIONS(5837), + [anon_sym_BSLASHglsdisp] = ACTIONS(5837), + [anon_sym_BSLASHglslink] = ACTIONS(5837), + [anon_sym_BSLASHglstext] = ACTIONS(5837), + [anon_sym_BSLASHGlstext] = ACTIONS(5837), + [anon_sym_BSLASHGLStext] = ACTIONS(5837), + [anon_sym_BSLASHglsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5837), + [anon_sym_BSLASHglsplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSplural] = ACTIONS(5837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5837), + [anon_sym_BSLASHglsname] = ACTIONS(5837), + [anon_sym_BSLASHGlsname] = ACTIONS(5837), + [anon_sym_BSLASHGLSname] = ACTIONS(5837), + [anon_sym_BSLASHglssymbol] = ACTIONS(5837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5837), + [anon_sym_BSLASHglsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5837), + [anon_sym_BSLASHglsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5837), + [anon_sym_BSLASHglsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5837), + [anon_sym_BSLASHglsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5837), + [anon_sym_BSLASHglsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5837), + [anon_sym_BSLASHnewacronym] = ACTIONS(5837), + [anon_sym_BSLASHacrshort] = ACTIONS(5837), + [anon_sym_BSLASHAcrshort] = ACTIONS(5837), + [anon_sym_BSLASHACRshort] = ACTIONS(5837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5837), + [anon_sym_BSLASHacrlong] = ACTIONS(5837), + [anon_sym_BSLASHAcrlong] = ACTIONS(5837), + [anon_sym_BSLASHACRlong] = ACTIONS(5837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5837), + [anon_sym_BSLASHacrfull] = ACTIONS(5837), + [anon_sym_BSLASHAcrfull] = ACTIONS(5837), + [anon_sym_BSLASHACRfull] = ACTIONS(5837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5837), + [anon_sym_BSLASHacs] = ACTIONS(5837), + [anon_sym_BSLASHAcs] = ACTIONS(5837), + [anon_sym_BSLASHacsp] = ACTIONS(5837), + [anon_sym_BSLASHAcsp] = ACTIONS(5837), + [anon_sym_BSLASHacl] = ACTIONS(5837), + [anon_sym_BSLASHAcl] = ACTIONS(5837), + [anon_sym_BSLASHaclp] = ACTIONS(5837), + [anon_sym_BSLASHAclp] = ACTIONS(5837), + [anon_sym_BSLASHacf] = ACTIONS(5837), + [anon_sym_BSLASHAcf] = ACTIONS(5837), + [anon_sym_BSLASHacfp] = ACTIONS(5837), + [anon_sym_BSLASHAcfp] = ACTIONS(5837), + [anon_sym_BSLASHac] = ACTIONS(5837), + [anon_sym_BSLASHAc] = ACTIONS(5837), + [anon_sym_BSLASHacp] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5837), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5837), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5837), + [anon_sym_BSLASHcolor] = ACTIONS(5837), + [anon_sym_BSLASHcolorbox] = ACTIONS(5837), + [anon_sym_BSLASHtextcolor] = ACTIONS(5837), + [anon_sym_BSLASHpagecolor] = ACTIONS(5837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5837), + }, + [1743] = { + [sym_command_name] = ACTIONS(5911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5909), + [anon_sym_COMMA] = ACTIONS(5909), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [sym_word] = ACTIONS(5911), + [sym_placeholder] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym__] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_SQUOTE] = ACTIONS(5911), + [anon_sym_BSLASHtitle] = ACTIONS(5911), + [anon_sym_BSLASHauthor] = ACTIONS(5911), + [anon_sym_BSLASHusepackage] = ACTIONS(5911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5911), + [anon_sym_BSLASHinclude] = ACTIONS(5911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5911), + [anon_sym_BSLASHinput] = ACTIONS(5911), + [anon_sym_BSLASHsubfile] = ACTIONS(5911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5911), + [anon_sym_BSLASHbibliography] = ACTIONS(5911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5911), + [anon_sym_BSLASHincludesvg] = ACTIONS(5911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5911), + [anon_sym_BSLASHimport] = ACTIONS(5911), + [anon_sym_BSLASHsubimport] = ACTIONS(5911), + [anon_sym_BSLASHinputfrom] = ACTIONS(5911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5911), + [anon_sym_BSLASHincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5911), + [anon_sym_BSLASHcaption] = ACTIONS(5911), + [anon_sym_BSLASHcite] = ACTIONS(5911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCite] = ACTIONS(5911), + [anon_sym_BSLASHnocite] = ACTIONS(5911), + [anon_sym_BSLASHcitet] = ACTIONS(5911), + [anon_sym_BSLASHcitep] = ACTIONS(5911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteauthor] = ACTIONS(5911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitetitle] = ACTIONS(5911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteyear] = ACTIONS(5911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5909), + [anon_sym_BSLASHcitedate] = ACTIONS(5911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5909), + [anon_sym_BSLASHciteurl] = ACTIONS(5911), + [anon_sym_BSLASHfullcite] = ACTIONS(5911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5911), + [anon_sym_BSLASHcitealt] = ACTIONS(5911), + [anon_sym_BSLASHcitealp] = ACTIONS(5911), + [anon_sym_BSLASHcitetext] = ACTIONS(5911), + [anon_sym_BSLASHparencite] = ACTIONS(5911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHParencite] = ACTIONS(5911), + [anon_sym_BSLASHfootcite] = ACTIONS(5911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5911), + [anon_sym_BSLASHtextcite] = ACTIONS(5911), + [anon_sym_BSLASHTextcite] = ACTIONS(5911), + [anon_sym_BSLASHsmartcite] = ACTIONS(5911), + [anon_sym_BSLASHSmartcite] = ACTIONS(5911), + [anon_sym_BSLASHsupercite] = ACTIONS(5911), + [anon_sym_BSLASHautocite] = ACTIONS(5911), + [anon_sym_BSLASHAutocite] = ACTIONS(5911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5909), + [anon_sym_BSLASHvolcite] = ACTIONS(5911), + [anon_sym_BSLASHVolcite] = ACTIONS(5911), + [anon_sym_BSLASHpvolcite] = ACTIONS(5911), + [anon_sym_BSLASHPvolcite] = ACTIONS(5911), + [anon_sym_BSLASHfvolcite] = ACTIONS(5911), + [anon_sym_BSLASHftvolcite] = ACTIONS(5911), + [anon_sym_BSLASHsvolcite] = ACTIONS(5911), + [anon_sym_BSLASHSvolcite] = ACTIONS(5911), + [anon_sym_BSLASHtvolcite] = ACTIONS(5911), + [anon_sym_BSLASHTvolcite] = ACTIONS(5911), + [anon_sym_BSLASHavolcite] = ACTIONS(5911), + [anon_sym_BSLASHAvolcite] = ACTIONS(5911), + [anon_sym_BSLASHnotecite] = ACTIONS(5911), + [anon_sym_BSLASHNotecite] = ACTIONS(5911), + [anon_sym_BSLASHpnotecite] = ACTIONS(5911), + [anon_sym_BSLASHPnotecite] = ACTIONS(5911), + [anon_sym_BSLASHfnotecite] = ACTIONS(5911), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [anon_sym_BSLASHref] = ACTIONS(5911), + [anon_sym_BSLASHeqref] = ACTIONS(5911), + [anon_sym_BSLASHvref] = ACTIONS(5911), + [anon_sym_BSLASHVref] = ACTIONS(5911), + [anon_sym_BSLASHautoref] = ACTIONS(5911), + [anon_sym_BSLASHpageref] = ACTIONS(5911), + [anon_sym_BSLASHcref] = ACTIONS(5911), + [anon_sym_BSLASHCref] = ACTIONS(5911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnameCref] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5911), + [anon_sym_BSLASHlabelcref] = ACTIONS(5911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange] = ACTIONS(5911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHCrefrange] = ACTIONS(5911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5909), + [anon_sym_BSLASHnewlabel] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand] = ACTIONS(5911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdef] = ACTIONS(5911), + [anon_sym_BSLASHlet] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5911), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5911), + [anon_sym_BSLASHgls] = ACTIONS(5911), + [anon_sym_BSLASHGls] = ACTIONS(5911), + [anon_sym_BSLASHGLS] = ACTIONS(5911), + [anon_sym_BSLASHglspl] = ACTIONS(5911), + [anon_sym_BSLASHGlspl] = ACTIONS(5911), + [anon_sym_BSLASHGLSpl] = ACTIONS(5911), + [anon_sym_BSLASHglsdisp] = ACTIONS(5911), + [anon_sym_BSLASHglslink] = ACTIONS(5911), + [anon_sym_BSLASHglstext] = ACTIONS(5911), + [anon_sym_BSLASHGlstext] = ACTIONS(5911), + [anon_sym_BSLASHGLStext] = ACTIONS(5911), + [anon_sym_BSLASHglsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5911), + [anon_sym_BSLASHglsplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSplural] = ACTIONS(5911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5911), + [anon_sym_BSLASHglsname] = ACTIONS(5911), + [anon_sym_BSLASHGlsname] = ACTIONS(5911), + [anon_sym_BSLASHGLSname] = ACTIONS(5911), + [anon_sym_BSLASHglssymbol] = ACTIONS(5911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5911), + [anon_sym_BSLASHglsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5911), + [anon_sym_BSLASHglsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5911), + [anon_sym_BSLASHglsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5911), + [anon_sym_BSLASHglsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5911), + [anon_sym_BSLASHglsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5911), + [anon_sym_BSLASHnewacronym] = ACTIONS(5911), + [anon_sym_BSLASHacrshort] = ACTIONS(5911), + [anon_sym_BSLASHAcrshort] = ACTIONS(5911), + [anon_sym_BSLASHACRshort] = ACTIONS(5911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5911), + [anon_sym_BSLASHacrlong] = ACTIONS(5911), + [anon_sym_BSLASHAcrlong] = ACTIONS(5911), + [anon_sym_BSLASHACRlong] = ACTIONS(5911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5911), + [anon_sym_BSLASHacrfull] = ACTIONS(5911), + [anon_sym_BSLASHAcrfull] = ACTIONS(5911), + [anon_sym_BSLASHACRfull] = ACTIONS(5911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5911), + [anon_sym_BSLASHacs] = ACTIONS(5911), + [anon_sym_BSLASHAcs] = ACTIONS(5911), + [anon_sym_BSLASHacsp] = ACTIONS(5911), + [anon_sym_BSLASHAcsp] = ACTIONS(5911), + [anon_sym_BSLASHacl] = ACTIONS(5911), + [anon_sym_BSLASHAcl] = ACTIONS(5911), + [anon_sym_BSLASHaclp] = ACTIONS(5911), + [anon_sym_BSLASHAclp] = ACTIONS(5911), + [anon_sym_BSLASHacf] = ACTIONS(5911), + [anon_sym_BSLASHAcf] = ACTIONS(5911), + [anon_sym_BSLASHacfp] = ACTIONS(5911), + [anon_sym_BSLASHAcfp] = ACTIONS(5911), + [anon_sym_BSLASHac] = ACTIONS(5911), + [anon_sym_BSLASHAc] = ACTIONS(5911), + [anon_sym_BSLASHacp] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5911), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5911), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5911), + [anon_sym_BSLASHcolor] = ACTIONS(5911), + [anon_sym_BSLASHcolorbox] = ACTIONS(5911), + [anon_sym_BSLASHtextcolor] = ACTIONS(5911), + [anon_sym_BSLASHpagecolor] = ACTIONS(5911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5911), + }, + [1744] = { + [sym_command_name] = ACTIONS(6021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6021), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [sym_placeholder] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6021), + [anon_sym_SLASH] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym__] = ACTIONS(6021), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PIPE] = ACTIONS(6021), + [anon_sym_COLON] = ACTIONS(6021), + [anon_sym_SQUOTE] = ACTIONS(6021), + [anon_sym_BSLASHtitle] = ACTIONS(6021), + [anon_sym_BSLASHauthor] = ACTIONS(6021), + [anon_sym_BSLASHusepackage] = ACTIONS(6021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), + [anon_sym_BSLASHinclude] = ACTIONS(6021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), + [anon_sym_BSLASHinput] = ACTIONS(6021), + [anon_sym_BSLASHsubfile] = ACTIONS(6021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), + [anon_sym_BSLASHbibliography] = ACTIONS(6021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), + [anon_sym_BSLASHincludesvg] = ACTIONS(6021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), + [anon_sym_BSLASHimport] = ACTIONS(6021), + [anon_sym_BSLASHsubimport] = ACTIONS(6021), + [anon_sym_BSLASHinputfrom] = ACTIONS(6021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), + [anon_sym_BSLASHincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), + [anon_sym_BSLASHcaption] = ACTIONS(6021), + [anon_sym_BSLASHcite] = ACTIONS(6021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCite] = ACTIONS(6021), + [anon_sym_BSLASHnocite] = ACTIONS(6021), + [anon_sym_BSLASHcitet] = ACTIONS(6021), + [anon_sym_BSLASHcitep] = ACTIONS(6021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteauthor] = ACTIONS(6021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitetitle] = ACTIONS(6021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteyear] = ACTIONS(6021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), + [anon_sym_BSLASHcitedate] = ACTIONS(6021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), + [anon_sym_BSLASHciteurl] = ACTIONS(6021), + [anon_sym_BSLASHfullcite] = ACTIONS(6021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), + [anon_sym_BSLASHcitealt] = ACTIONS(6021), + [anon_sym_BSLASHcitealp] = ACTIONS(6021), + [anon_sym_BSLASHcitetext] = ACTIONS(6021), + [anon_sym_BSLASHparencite] = ACTIONS(6021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHParencite] = ACTIONS(6021), + [anon_sym_BSLASHfootcite] = ACTIONS(6021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), + [anon_sym_BSLASHtextcite] = ACTIONS(6021), + [anon_sym_BSLASHTextcite] = ACTIONS(6021), + [anon_sym_BSLASHsmartcite] = ACTIONS(6021), + [anon_sym_BSLASHSmartcite] = ACTIONS(6021), + [anon_sym_BSLASHsupercite] = ACTIONS(6021), + [anon_sym_BSLASHautocite] = ACTIONS(6021), + [anon_sym_BSLASHAutocite] = ACTIONS(6021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), + [anon_sym_BSLASHvolcite] = ACTIONS(6021), + [anon_sym_BSLASHVolcite] = ACTIONS(6021), + [anon_sym_BSLASHpvolcite] = ACTIONS(6021), + [anon_sym_BSLASHPvolcite] = ACTIONS(6021), + [anon_sym_BSLASHfvolcite] = ACTIONS(6021), + [anon_sym_BSLASHftvolcite] = ACTIONS(6021), + [anon_sym_BSLASHsvolcite] = ACTIONS(6021), + [anon_sym_BSLASHSvolcite] = ACTIONS(6021), + [anon_sym_BSLASHtvolcite] = ACTIONS(6021), + [anon_sym_BSLASHTvolcite] = ACTIONS(6021), + [anon_sym_BSLASHavolcite] = ACTIONS(6021), + [anon_sym_BSLASHAvolcite] = ACTIONS(6021), + [anon_sym_BSLASHnotecite] = ACTIONS(6021), + [anon_sym_BSLASHNotecite] = ACTIONS(6021), + [anon_sym_BSLASHpnotecite] = ACTIONS(6021), + [anon_sym_BSLASHPnotecite] = ACTIONS(6021), + [anon_sym_BSLASHfnotecite] = ACTIONS(6021), + [anon_sym_BSLASHlabel] = ACTIONS(6021), + [anon_sym_BSLASHref] = ACTIONS(6021), + [anon_sym_BSLASHeqref] = ACTIONS(6021), + [anon_sym_BSLASHvref] = ACTIONS(6021), + [anon_sym_BSLASHVref] = ACTIONS(6021), + [anon_sym_BSLASHautoref] = ACTIONS(6021), + [anon_sym_BSLASHpageref] = ACTIONS(6021), + [anon_sym_BSLASHcref] = ACTIONS(6021), + [anon_sym_BSLASHCref] = ACTIONS(6021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnameCref] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), + [anon_sym_BSLASHlabelcref] = ACTIONS(6021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange] = ACTIONS(6021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHCrefrange] = ACTIONS(6021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), + [anon_sym_BSLASHnewlabel] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand] = ACTIONS(6021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdef] = ACTIONS(6021), + [anon_sym_BSLASHlet] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), + [anon_sym_BSLASHgls] = ACTIONS(6021), + [anon_sym_BSLASHGls] = ACTIONS(6021), + [anon_sym_BSLASHGLS] = ACTIONS(6021), + [anon_sym_BSLASHglspl] = ACTIONS(6021), + [anon_sym_BSLASHGlspl] = ACTIONS(6021), + [anon_sym_BSLASHGLSpl] = ACTIONS(6021), + [anon_sym_BSLASHglsdisp] = ACTIONS(6021), + [anon_sym_BSLASHglslink] = ACTIONS(6021), + [anon_sym_BSLASHglstext] = ACTIONS(6021), + [anon_sym_BSLASHGlstext] = ACTIONS(6021), + [anon_sym_BSLASHGLStext] = ACTIONS(6021), + [anon_sym_BSLASHglsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), + [anon_sym_BSLASHglsplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSplural] = ACTIONS(6021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), + [anon_sym_BSLASHglsname] = ACTIONS(6021), + [anon_sym_BSLASHGlsname] = ACTIONS(6021), + [anon_sym_BSLASHGLSname] = ACTIONS(6021), + [anon_sym_BSLASHglssymbol] = ACTIONS(6021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), + [anon_sym_BSLASHglsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), + [anon_sym_BSLASHglsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), + [anon_sym_BSLASHglsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), + [anon_sym_BSLASHglsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), + [anon_sym_BSLASHglsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), + [anon_sym_BSLASHnewacronym] = ACTIONS(6021), + [anon_sym_BSLASHacrshort] = ACTIONS(6021), + [anon_sym_BSLASHAcrshort] = ACTIONS(6021), + [anon_sym_BSLASHACRshort] = ACTIONS(6021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), + [anon_sym_BSLASHacrlong] = ACTIONS(6021), + [anon_sym_BSLASHAcrlong] = ACTIONS(6021), + [anon_sym_BSLASHACRlong] = ACTIONS(6021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), + [anon_sym_BSLASHacrfull] = ACTIONS(6021), + [anon_sym_BSLASHAcrfull] = ACTIONS(6021), + [anon_sym_BSLASHACRfull] = ACTIONS(6021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), + [anon_sym_BSLASHacs] = ACTIONS(6021), + [anon_sym_BSLASHAcs] = ACTIONS(6021), + [anon_sym_BSLASHacsp] = ACTIONS(6021), + [anon_sym_BSLASHAcsp] = ACTIONS(6021), + [anon_sym_BSLASHacl] = ACTIONS(6021), + [anon_sym_BSLASHAcl] = ACTIONS(6021), + [anon_sym_BSLASHaclp] = ACTIONS(6021), + [anon_sym_BSLASHAclp] = ACTIONS(6021), + [anon_sym_BSLASHacf] = ACTIONS(6021), + [anon_sym_BSLASHAcf] = ACTIONS(6021), + [anon_sym_BSLASHacfp] = ACTIONS(6021), + [anon_sym_BSLASHAcfp] = ACTIONS(6021), + [anon_sym_BSLASHac] = ACTIONS(6021), + [anon_sym_BSLASHAc] = ACTIONS(6021), + [anon_sym_BSLASHacp] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), + [anon_sym_BSLASHcolor] = ACTIONS(6021), + [anon_sym_BSLASHcolorbox] = ACTIONS(6021), + [anon_sym_BSLASHtextcolor] = ACTIONS(6021), + [anon_sym_BSLASHpagecolor] = ACTIONS(6021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), + }, + [1745] = { + [sym_command_name] = ACTIONS(5987), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5985), + [anon_sym_COMMA] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5985), + [sym_word] = ACTIONS(5987), + [sym_placeholder] = ACTIONS(5985), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_CARET] = ACTIONS(5987), + [anon_sym__] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_SQUOTE] = ACTIONS(5987), + [anon_sym_BSLASHtitle] = ACTIONS(5987), + [anon_sym_BSLASHauthor] = ACTIONS(5987), + [anon_sym_BSLASHusepackage] = ACTIONS(5987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), + [anon_sym_BSLASHinclude] = ACTIONS(5987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), + [anon_sym_BSLASHinput] = ACTIONS(5987), + [anon_sym_BSLASHsubfile] = ACTIONS(5987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), + [anon_sym_BSLASHbibliography] = ACTIONS(5987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), + [anon_sym_BSLASHincludesvg] = ACTIONS(5987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), + [anon_sym_BSLASHimport] = ACTIONS(5987), + [anon_sym_BSLASHsubimport] = ACTIONS(5987), + [anon_sym_BSLASHinputfrom] = ACTIONS(5987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), + [anon_sym_BSLASHincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), + [anon_sym_BSLASHcaption] = ACTIONS(5987), + [anon_sym_BSLASHcite] = ACTIONS(5987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCite] = ACTIONS(5987), + [anon_sym_BSLASHnocite] = ACTIONS(5987), + [anon_sym_BSLASHcitet] = ACTIONS(5987), + [anon_sym_BSLASHcitep] = ACTIONS(5987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteauthor] = ACTIONS(5987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitetitle] = ACTIONS(5987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteyear] = ACTIONS(5987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), + [anon_sym_BSLASHcitedate] = ACTIONS(5987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), + [anon_sym_BSLASHciteurl] = ACTIONS(5987), + [anon_sym_BSLASHfullcite] = ACTIONS(5987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), + [anon_sym_BSLASHcitealt] = ACTIONS(5987), + [anon_sym_BSLASHcitealp] = ACTIONS(5987), + [anon_sym_BSLASHcitetext] = ACTIONS(5987), + [anon_sym_BSLASHparencite] = ACTIONS(5987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHParencite] = ACTIONS(5987), + [anon_sym_BSLASHfootcite] = ACTIONS(5987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), + [anon_sym_BSLASHtextcite] = ACTIONS(5987), + [anon_sym_BSLASHTextcite] = ACTIONS(5987), + [anon_sym_BSLASHsmartcite] = ACTIONS(5987), + [anon_sym_BSLASHSmartcite] = ACTIONS(5987), + [anon_sym_BSLASHsupercite] = ACTIONS(5987), + [anon_sym_BSLASHautocite] = ACTIONS(5987), + [anon_sym_BSLASHAutocite] = ACTIONS(5987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), + [anon_sym_BSLASHvolcite] = ACTIONS(5987), + [anon_sym_BSLASHVolcite] = ACTIONS(5987), + [anon_sym_BSLASHpvolcite] = ACTIONS(5987), + [anon_sym_BSLASHPvolcite] = ACTIONS(5987), + [anon_sym_BSLASHfvolcite] = ACTIONS(5987), + [anon_sym_BSLASHftvolcite] = ACTIONS(5987), + [anon_sym_BSLASHsvolcite] = ACTIONS(5987), + [anon_sym_BSLASHSvolcite] = ACTIONS(5987), + [anon_sym_BSLASHtvolcite] = ACTIONS(5987), + [anon_sym_BSLASHTvolcite] = ACTIONS(5987), + [anon_sym_BSLASHavolcite] = ACTIONS(5987), + [anon_sym_BSLASHAvolcite] = ACTIONS(5987), + [anon_sym_BSLASHnotecite] = ACTIONS(5987), + [anon_sym_BSLASHNotecite] = ACTIONS(5987), + [anon_sym_BSLASHpnotecite] = ACTIONS(5987), + [anon_sym_BSLASHPnotecite] = ACTIONS(5987), + [anon_sym_BSLASHfnotecite] = ACTIONS(5987), + [anon_sym_BSLASHlabel] = ACTIONS(5987), + [anon_sym_BSLASHref] = ACTIONS(5987), + [anon_sym_BSLASHeqref] = ACTIONS(5987), + [anon_sym_BSLASHvref] = ACTIONS(5987), + [anon_sym_BSLASHVref] = ACTIONS(5987), + [anon_sym_BSLASHautoref] = ACTIONS(5987), + [anon_sym_BSLASHpageref] = ACTIONS(5987), + [anon_sym_BSLASHcref] = ACTIONS(5987), + [anon_sym_BSLASHCref] = ACTIONS(5987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnameCref] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), + [anon_sym_BSLASHlabelcref] = ACTIONS(5987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange] = ACTIONS(5987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHCrefrange] = ACTIONS(5987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), + [anon_sym_BSLASHnewlabel] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand] = ACTIONS(5987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdef] = ACTIONS(5987), + [anon_sym_BSLASHlet] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), + [anon_sym_BSLASHgls] = ACTIONS(5987), + [anon_sym_BSLASHGls] = ACTIONS(5987), + [anon_sym_BSLASHGLS] = ACTIONS(5987), + [anon_sym_BSLASHglspl] = ACTIONS(5987), + [anon_sym_BSLASHGlspl] = ACTIONS(5987), + [anon_sym_BSLASHGLSpl] = ACTIONS(5987), + [anon_sym_BSLASHglsdisp] = ACTIONS(5987), + [anon_sym_BSLASHglslink] = ACTIONS(5987), + [anon_sym_BSLASHglstext] = ACTIONS(5987), + [anon_sym_BSLASHGlstext] = ACTIONS(5987), + [anon_sym_BSLASHGLStext] = ACTIONS(5987), + [anon_sym_BSLASHglsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), + [anon_sym_BSLASHglsplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSplural] = ACTIONS(5987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), + [anon_sym_BSLASHglsname] = ACTIONS(5987), + [anon_sym_BSLASHGlsname] = ACTIONS(5987), + [anon_sym_BSLASHGLSname] = ACTIONS(5987), + [anon_sym_BSLASHglssymbol] = ACTIONS(5987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), + [anon_sym_BSLASHglsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), + [anon_sym_BSLASHglsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), + [anon_sym_BSLASHglsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), + [anon_sym_BSLASHglsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), + [anon_sym_BSLASHglsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), + [anon_sym_BSLASHnewacronym] = ACTIONS(5987), + [anon_sym_BSLASHacrshort] = ACTIONS(5987), + [anon_sym_BSLASHAcrshort] = ACTIONS(5987), + [anon_sym_BSLASHACRshort] = ACTIONS(5987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), + [anon_sym_BSLASHacrlong] = ACTIONS(5987), + [anon_sym_BSLASHAcrlong] = ACTIONS(5987), + [anon_sym_BSLASHACRlong] = ACTIONS(5987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), + [anon_sym_BSLASHacrfull] = ACTIONS(5987), + [anon_sym_BSLASHAcrfull] = ACTIONS(5987), + [anon_sym_BSLASHACRfull] = ACTIONS(5987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), + [anon_sym_BSLASHacs] = ACTIONS(5987), + [anon_sym_BSLASHAcs] = ACTIONS(5987), + [anon_sym_BSLASHacsp] = ACTIONS(5987), + [anon_sym_BSLASHAcsp] = ACTIONS(5987), + [anon_sym_BSLASHacl] = ACTIONS(5987), + [anon_sym_BSLASHAcl] = ACTIONS(5987), + [anon_sym_BSLASHaclp] = ACTIONS(5987), + [anon_sym_BSLASHAclp] = ACTIONS(5987), + [anon_sym_BSLASHacf] = ACTIONS(5987), + [anon_sym_BSLASHAcf] = ACTIONS(5987), + [anon_sym_BSLASHacfp] = ACTIONS(5987), + [anon_sym_BSLASHAcfp] = ACTIONS(5987), + [anon_sym_BSLASHac] = ACTIONS(5987), + [anon_sym_BSLASHAc] = ACTIONS(5987), + [anon_sym_BSLASHacp] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), + [anon_sym_BSLASHcolor] = ACTIONS(5987), + [anon_sym_BSLASHcolorbox] = ACTIONS(5987), + [anon_sym_BSLASHtextcolor] = ACTIONS(5987), + [anon_sym_BSLASHpagecolor] = ACTIONS(5987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), + }, + [1746] = { + [sym_command_name] = ACTIONS(6241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6241), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_COMMA] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6239), + [sym_word] = ACTIONS(6241), + [sym_placeholder] = ACTIONS(6239), + [anon_sym_PLUS] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_STAR] = ACTIONS(6241), + [anon_sym_SLASH] = ACTIONS(6241), + [anon_sym_CARET] = ACTIONS(6241), + [anon_sym__] = ACTIONS(6241), + [anon_sym_LT] = ACTIONS(6241), + [anon_sym_GT] = ACTIONS(6241), + [anon_sym_BANG] = ACTIONS(6241), + [anon_sym_PIPE] = ACTIONS(6241), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_SQUOTE] = ACTIONS(6241), + [anon_sym_BSLASHtitle] = ACTIONS(6241), + [anon_sym_BSLASHauthor] = ACTIONS(6241), + [anon_sym_BSLASHusepackage] = ACTIONS(6241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), + [anon_sym_BSLASHinclude] = ACTIONS(6241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), + [anon_sym_BSLASHinput] = ACTIONS(6241), + [anon_sym_BSLASHsubfile] = ACTIONS(6241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), + [anon_sym_BSLASHbibliography] = ACTIONS(6241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), + [anon_sym_BSLASHincludesvg] = ACTIONS(6241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), + [anon_sym_BSLASHimport] = ACTIONS(6241), + [anon_sym_BSLASHsubimport] = ACTIONS(6241), + [anon_sym_BSLASHinputfrom] = ACTIONS(6241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), + [anon_sym_BSLASHincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), + [anon_sym_BSLASHcaption] = ACTIONS(6241), + [anon_sym_BSLASHcite] = ACTIONS(6241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCite] = ACTIONS(6241), + [anon_sym_BSLASHnocite] = ACTIONS(6241), + [anon_sym_BSLASHcitet] = ACTIONS(6241), + [anon_sym_BSLASHcitep] = ACTIONS(6241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteauthor] = ACTIONS(6241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitetitle] = ACTIONS(6241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteyear] = ACTIONS(6241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), + [anon_sym_BSLASHcitedate] = ACTIONS(6241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), + [anon_sym_BSLASHciteurl] = ACTIONS(6241), + [anon_sym_BSLASHfullcite] = ACTIONS(6241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), + [anon_sym_BSLASHcitealt] = ACTIONS(6241), + [anon_sym_BSLASHcitealp] = ACTIONS(6241), + [anon_sym_BSLASHcitetext] = ACTIONS(6241), + [anon_sym_BSLASHparencite] = ACTIONS(6241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHParencite] = ACTIONS(6241), + [anon_sym_BSLASHfootcite] = ACTIONS(6241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), + [anon_sym_BSLASHtextcite] = ACTIONS(6241), + [anon_sym_BSLASHTextcite] = ACTIONS(6241), + [anon_sym_BSLASHsmartcite] = ACTIONS(6241), + [anon_sym_BSLASHSmartcite] = ACTIONS(6241), + [anon_sym_BSLASHsupercite] = ACTIONS(6241), + [anon_sym_BSLASHautocite] = ACTIONS(6241), + [anon_sym_BSLASHAutocite] = ACTIONS(6241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), + [anon_sym_BSLASHvolcite] = ACTIONS(6241), + [anon_sym_BSLASHVolcite] = ACTIONS(6241), + [anon_sym_BSLASHpvolcite] = ACTIONS(6241), + [anon_sym_BSLASHPvolcite] = ACTIONS(6241), + [anon_sym_BSLASHfvolcite] = ACTIONS(6241), + [anon_sym_BSLASHftvolcite] = ACTIONS(6241), + [anon_sym_BSLASHsvolcite] = ACTIONS(6241), + [anon_sym_BSLASHSvolcite] = ACTIONS(6241), + [anon_sym_BSLASHtvolcite] = ACTIONS(6241), + [anon_sym_BSLASHTvolcite] = ACTIONS(6241), + [anon_sym_BSLASHavolcite] = ACTIONS(6241), + [anon_sym_BSLASHAvolcite] = ACTIONS(6241), + [anon_sym_BSLASHnotecite] = ACTIONS(6241), + [anon_sym_BSLASHNotecite] = ACTIONS(6241), + [anon_sym_BSLASHpnotecite] = ACTIONS(6241), + [anon_sym_BSLASHPnotecite] = ACTIONS(6241), + [anon_sym_BSLASHfnotecite] = ACTIONS(6241), + [anon_sym_BSLASHlabel] = ACTIONS(6241), + [anon_sym_BSLASHref] = ACTIONS(6241), + [anon_sym_BSLASHeqref] = ACTIONS(6241), + [anon_sym_BSLASHvref] = ACTIONS(6241), + [anon_sym_BSLASHVref] = ACTIONS(6241), + [anon_sym_BSLASHautoref] = ACTIONS(6241), + [anon_sym_BSLASHpageref] = ACTIONS(6241), + [anon_sym_BSLASHcref] = ACTIONS(6241), + [anon_sym_BSLASHCref] = ACTIONS(6241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnameCref] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), + [anon_sym_BSLASHlabelcref] = ACTIONS(6241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange] = ACTIONS(6241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHCrefrange] = ACTIONS(6241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), + [anon_sym_BSLASHnewlabel] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand] = ACTIONS(6241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdef] = ACTIONS(6241), + [anon_sym_BSLASHlet] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), + [anon_sym_BSLASHgls] = ACTIONS(6241), + [anon_sym_BSLASHGls] = ACTIONS(6241), + [anon_sym_BSLASHGLS] = ACTIONS(6241), + [anon_sym_BSLASHglspl] = ACTIONS(6241), + [anon_sym_BSLASHGlspl] = ACTIONS(6241), + [anon_sym_BSLASHGLSpl] = ACTIONS(6241), + [anon_sym_BSLASHglsdisp] = ACTIONS(6241), + [anon_sym_BSLASHglslink] = ACTIONS(6241), + [anon_sym_BSLASHglstext] = ACTIONS(6241), + [anon_sym_BSLASHGlstext] = ACTIONS(6241), + [anon_sym_BSLASHGLStext] = ACTIONS(6241), + [anon_sym_BSLASHglsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), + [anon_sym_BSLASHglsplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSplural] = ACTIONS(6241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), + [anon_sym_BSLASHglsname] = ACTIONS(6241), + [anon_sym_BSLASHGlsname] = ACTIONS(6241), + [anon_sym_BSLASHGLSname] = ACTIONS(6241), + [anon_sym_BSLASHglssymbol] = ACTIONS(6241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), + [anon_sym_BSLASHglsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), + [anon_sym_BSLASHglsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), + [anon_sym_BSLASHglsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), + [anon_sym_BSLASHglsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), + [anon_sym_BSLASHglsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), + [anon_sym_BSLASHnewacronym] = ACTIONS(6241), + [anon_sym_BSLASHacrshort] = ACTIONS(6241), + [anon_sym_BSLASHAcrshort] = ACTIONS(6241), + [anon_sym_BSLASHACRshort] = ACTIONS(6241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), + [anon_sym_BSLASHacrlong] = ACTIONS(6241), + [anon_sym_BSLASHAcrlong] = ACTIONS(6241), + [anon_sym_BSLASHACRlong] = ACTIONS(6241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), + [anon_sym_BSLASHacrfull] = ACTIONS(6241), + [anon_sym_BSLASHAcrfull] = ACTIONS(6241), + [anon_sym_BSLASHACRfull] = ACTIONS(6241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), + [anon_sym_BSLASHacs] = ACTIONS(6241), + [anon_sym_BSLASHAcs] = ACTIONS(6241), + [anon_sym_BSLASHacsp] = ACTIONS(6241), + [anon_sym_BSLASHAcsp] = ACTIONS(6241), + [anon_sym_BSLASHacl] = ACTIONS(6241), + [anon_sym_BSLASHAcl] = ACTIONS(6241), + [anon_sym_BSLASHaclp] = ACTIONS(6241), + [anon_sym_BSLASHAclp] = ACTIONS(6241), + [anon_sym_BSLASHacf] = ACTIONS(6241), + [anon_sym_BSLASHAcf] = ACTIONS(6241), + [anon_sym_BSLASHacfp] = ACTIONS(6241), + [anon_sym_BSLASHAcfp] = ACTIONS(6241), + [anon_sym_BSLASHac] = ACTIONS(6241), + [anon_sym_BSLASHAc] = ACTIONS(6241), + [anon_sym_BSLASHacp] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), + [anon_sym_BSLASHcolor] = ACTIONS(6241), + [anon_sym_BSLASHcolorbox] = ACTIONS(6241), + [anon_sym_BSLASHtextcolor] = ACTIONS(6241), + [anon_sym_BSLASHpagecolor] = ACTIONS(6241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), + }, + [1747] = { + [sym_command_name] = ACTIONS(6185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6185), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [sym_word] = ACTIONS(6185), + [sym_placeholder] = ACTIONS(6183), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym__] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_SQUOTE] = ACTIONS(6185), + [anon_sym_BSLASHtitle] = ACTIONS(6185), + [anon_sym_BSLASHauthor] = ACTIONS(6185), + [anon_sym_BSLASHusepackage] = ACTIONS(6185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), + [anon_sym_BSLASHinclude] = ACTIONS(6185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), + [anon_sym_BSLASHinput] = ACTIONS(6185), + [anon_sym_BSLASHsubfile] = ACTIONS(6185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), + [anon_sym_BSLASHbibliography] = ACTIONS(6185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), + [anon_sym_BSLASHincludesvg] = ACTIONS(6185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), + [anon_sym_BSLASHimport] = ACTIONS(6185), + [anon_sym_BSLASHsubimport] = ACTIONS(6185), + [anon_sym_BSLASHinputfrom] = ACTIONS(6185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), + [anon_sym_BSLASHincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), + [anon_sym_BSLASHcaption] = ACTIONS(6185), + [anon_sym_BSLASHcite] = ACTIONS(6185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCite] = ACTIONS(6185), + [anon_sym_BSLASHnocite] = ACTIONS(6185), + [anon_sym_BSLASHcitet] = ACTIONS(6185), + [anon_sym_BSLASHcitep] = ACTIONS(6185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteauthor] = ACTIONS(6185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitetitle] = ACTIONS(6185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteyear] = ACTIONS(6185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), + [anon_sym_BSLASHcitedate] = ACTIONS(6185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), + [anon_sym_BSLASHciteurl] = ACTIONS(6185), + [anon_sym_BSLASHfullcite] = ACTIONS(6185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), + [anon_sym_BSLASHcitealt] = ACTIONS(6185), + [anon_sym_BSLASHcitealp] = ACTIONS(6185), + [anon_sym_BSLASHcitetext] = ACTIONS(6185), + [anon_sym_BSLASHparencite] = ACTIONS(6185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHParencite] = ACTIONS(6185), + [anon_sym_BSLASHfootcite] = ACTIONS(6185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), + [anon_sym_BSLASHtextcite] = ACTIONS(6185), + [anon_sym_BSLASHTextcite] = ACTIONS(6185), + [anon_sym_BSLASHsmartcite] = ACTIONS(6185), + [anon_sym_BSLASHSmartcite] = ACTIONS(6185), + [anon_sym_BSLASHsupercite] = ACTIONS(6185), + [anon_sym_BSLASHautocite] = ACTIONS(6185), + [anon_sym_BSLASHAutocite] = ACTIONS(6185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), + [anon_sym_BSLASHvolcite] = ACTIONS(6185), + [anon_sym_BSLASHVolcite] = ACTIONS(6185), + [anon_sym_BSLASHpvolcite] = ACTIONS(6185), + [anon_sym_BSLASHPvolcite] = ACTIONS(6185), + [anon_sym_BSLASHfvolcite] = ACTIONS(6185), + [anon_sym_BSLASHftvolcite] = ACTIONS(6185), + [anon_sym_BSLASHsvolcite] = ACTIONS(6185), + [anon_sym_BSLASHSvolcite] = ACTIONS(6185), + [anon_sym_BSLASHtvolcite] = ACTIONS(6185), + [anon_sym_BSLASHTvolcite] = ACTIONS(6185), + [anon_sym_BSLASHavolcite] = ACTIONS(6185), + [anon_sym_BSLASHAvolcite] = ACTIONS(6185), + [anon_sym_BSLASHnotecite] = ACTIONS(6185), + [anon_sym_BSLASHNotecite] = ACTIONS(6185), + [anon_sym_BSLASHpnotecite] = ACTIONS(6185), + [anon_sym_BSLASHPnotecite] = ACTIONS(6185), + [anon_sym_BSLASHfnotecite] = ACTIONS(6185), + [anon_sym_BSLASHlabel] = ACTIONS(6185), + [anon_sym_BSLASHref] = ACTIONS(6185), + [anon_sym_BSLASHeqref] = ACTIONS(6185), + [anon_sym_BSLASHvref] = ACTIONS(6185), + [anon_sym_BSLASHVref] = ACTIONS(6185), + [anon_sym_BSLASHautoref] = ACTIONS(6185), + [anon_sym_BSLASHpageref] = ACTIONS(6185), + [anon_sym_BSLASHcref] = ACTIONS(6185), + [anon_sym_BSLASHCref] = ACTIONS(6185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnameCref] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), + [anon_sym_BSLASHlabelcref] = ACTIONS(6185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange] = ACTIONS(6185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHCrefrange] = ACTIONS(6185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), + [anon_sym_BSLASHnewlabel] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand] = ACTIONS(6185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdef] = ACTIONS(6185), + [anon_sym_BSLASHlet] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), + [anon_sym_BSLASHgls] = ACTIONS(6185), + [anon_sym_BSLASHGls] = ACTIONS(6185), + [anon_sym_BSLASHGLS] = ACTIONS(6185), + [anon_sym_BSLASHglspl] = ACTIONS(6185), + [anon_sym_BSLASHGlspl] = ACTIONS(6185), + [anon_sym_BSLASHGLSpl] = ACTIONS(6185), + [anon_sym_BSLASHglsdisp] = ACTIONS(6185), + [anon_sym_BSLASHglslink] = ACTIONS(6185), + [anon_sym_BSLASHglstext] = ACTIONS(6185), + [anon_sym_BSLASHGlstext] = ACTIONS(6185), + [anon_sym_BSLASHGLStext] = ACTIONS(6185), + [anon_sym_BSLASHglsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), + [anon_sym_BSLASHglsplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSplural] = ACTIONS(6185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), + [anon_sym_BSLASHglsname] = ACTIONS(6185), + [anon_sym_BSLASHGlsname] = ACTIONS(6185), + [anon_sym_BSLASHGLSname] = ACTIONS(6185), + [anon_sym_BSLASHglssymbol] = ACTIONS(6185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), + [anon_sym_BSLASHglsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), + [anon_sym_BSLASHglsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), + [anon_sym_BSLASHglsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), + [anon_sym_BSLASHglsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), + [anon_sym_BSLASHglsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), + [anon_sym_BSLASHnewacronym] = ACTIONS(6185), + [anon_sym_BSLASHacrshort] = ACTIONS(6185), + [anon_sym_BSLASHAcrshort] = ACTIONS(6185), + [anon_sym_BSLASHACRshort] = ACTIONS(6185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), + [anon_sym_BSLASHacrlong] = ACTIONS(6185), + [anon_sym_BSLASHAcrlong] = ACTIONS(6185), + [anon_sym_BSLASHACRlong] = ACTIONS(6185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), + [anon_sym_BSLASHacrfull] = ACTIONS(6185), + [anon_sym_BSLASHAcrfull] = ACTIONS(6185), + [anon_sym_BSLASHACRfull] = ACTIONS(6185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), + [anon_sym_BSLASHacs] = ACTIONS(6185), + [anon_sym_BSLASHAcs] = ACTIONS(6185), + [anon_sym_BSLASHacsp] = ACTIONS(6185), + [anon_sym_BSLASHAcsp] = ACTIONS(6185), + [anon_sym_BSLASHacl] = ACTIONS(6185), + [anon_sym_BSLASHAcl] = ACTIONS(6185), + [anon_sym_BSLASHaclp] = ACTIONS(6185), + [anon_sym_BSLASHAclp] = ACTIONS(6185), + [anon_sym_BSLASHacf] = ACTIONS(6185), + [anon_sym_BSLASHAcf] = ACTIONS(6185), + [anon_sym_BSLASHacfp] = ACTIONS(6185), + [anon_sym_BSLASHAcfp] = ACTIONS(6185), + [anon_sym_BSLASHac] = ACTIONS(6185), + [anon_sym_BSLASHAc] = ACTIONS(6185), + [anon_sym_BSLASHacp] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), + [anon_sym_BSLASHcolor] = ACTIONS(6185), + [anon_sym_BSLASHcolorbox] = ACTIONS(6185), + [anon_sym_BSLASHtextcolor] = ACTIONS(6185), + [anon_sym_BSLASHpagecolor] = ACTIONS(6185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), + }, + [1748] = { + [sym_command_name] = ACTIONS(6155), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6155), + [anon_sym_RBRACK] = ACTIONS(6153), + [anon_sym_COMMA] = ACTIONS(6153), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_RBRACE] = ACTIONS(6153), + [sym_word] = ACTIONS(6155), + [sym_placeholder] = ACTIONS(6153), + [anon_sym_PLUS] = ACTIONS(6155), + [anon_sym_DASH] = ACTIONS(6155), + [anon_sym_STAR] = ACTIONS(6155), + [anon_sym_SLASH] = ACTIONS(6155), + [anon_sym_CARET] = ACTIONS(6155), + [anon_sym__] = ACTIONS(6155), + [anon_sym_LT] = ACTIONS(6155), + [anon_sym_GT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(6155), + [anon_sym_PIPE] = ACTIONS(6155), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_SQUOTE] = ACTIONS(6155), + [anon_sym_BSLASHtitle] = ACTIONS(6155), + [anon_sym_BSLASHauthor] = ACTIONS(6155), + [anon_sym_BSLASHusepackage] = ACTIONS(6155), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6155), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6155), + [anon_sym_BSLASHinclude] = ACTIONS(6155), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6155), + [anon_sym_BSLASHinput] = ACTIONS(6155), + [anon_sym_BSLASHsubfile] = ACTIONS(6155), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6155), + [anon_sym_BSLASHbibliography] = ACTIONS(6155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6155), + [anon_sym_BSLASHincludesvg] = ACTIONS(6155), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6155), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6155), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6155), + [anon_sym_BSLASHimport] = ACTIONS(6155), + [anon_sym_BSLASHsubimport] = ACTIONS(6155), + [anon_sym_BSLASHinputfrom] = ACTIONS(6155), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6155), + [anon_sym_BSLASHincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6155), + [anon_sym_BSLASHcaption] = ACTIONS(6155), + [anon_sym_BSLASHcite] = ACTIONS(6155), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCite] = ACTIONS(6155), + [anon_sym_BSLASHnocite] = ACTIONS(6155), + [anon_sym_BSLASHcitet] = ACTIONS(6155), + [anon_sym_BSLASHcitep] = ACTIONS(6155), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteauthor] = ACTIONS(6155), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6155), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitetitle] = ACTIONS(6155), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteyear] = ACTIONS(6155), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6153), + [anon_sym_BSLASHcitedate] = ACTIONS(6155), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6153), + [anon_sym_BSLASHciteurl] = ACTIONS(6155), + [anon_sym_BSLASHfullcite] = ACTIONS(6155), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6155), + [anon_sym_BSLASHcitealt] = ACTIONS(6155), + [anon_sym_BSLASHcitealp] = ACTIONS(6155), + [anon_sym_BSLASHcitetext] = ACTIONS(6155), + [anon_sym_BSLASHparencite] = ACTIONS(6155), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHParencite] = ACTIONS(6155), + [anon_sym_BSLASHfootcite] = ACTIONS(6155), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6155), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6155), + [anon_sym_BSLASHtextcite] = ACTIONS(6155), + [anon_sym_BSLASHTextcite] = ACTIONS(6155), + [anon_sym_BSLASHsmartcite] = ACTIONS(6155), + [anon_sym_BSLASHSmartcite] = ACTIONS(6155), + [anon_sym_BSLASHsupercite] = ACTIONS(6155), + [anon_sym_BSLASHautocite] = ACTIONS(6155), + [anon_sym_BSLASHAutocite] = ACTIONS(6155), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6153), + [anon_sym_BSLASHvolcite] = ACTIONS(6155), + [anon_sym_BSLASHVolcite] = ACTIONS(6155), + [anon_sym_BSLASHpvolcite] = ACTIONS(6155), + [anon_sym_BSLASHPvolcite] = ACTIONS(6155), + [anon_sym_BSLASHfvolcite] = ACTIONS(6155), + [anon_sym_BSLASHftvolcite] = ACTIONS(6155), + [anon_sym_BSLASHsvolcite] = ACTIONS(6155), + [anon_sym_BSLASHSvolcite] = ACTIONS(6155), + [anon_sym_BSLASHtvolcite] = ACTIONS(6155), + [anon_sym_BSLASHTvolcite] = ACTIONS(6155), + [anon_sym_BSLASHavolcite] = ACTIONS(6155), + [anon_sym_BSLASHAvolcite] = ACTIONS(6155), + [anon_sym_BSLASHnotecite] = ACTIONS(6155), + [anon_sym_BSLASHNotecite] = ACTIONS(6155), + [anon_sym_BSLASHpnotecite] = ACTIONS(6155), + [anon_sym_BSLASHPnotecite] = ACTIONS(6155), + [anon_sym_BSLASHfnotecite] = ACTIONS(6155), + [anon_sym_BSLASHlabel] = ACTIONS(6155), + [anon_sym_BSLASHref] = ACTIONS(6155), + [anon_sym_BSLASHeqref] = ACTIONS(6155), + [anon_sym_BSLASHvref] = ACTIONS(6155), + [anon_sym_BSLASHVref] = ACTIONS(6155), + [anon_sym_BSLASHautoref] = ACTIONS(6155), + [anon_sym_BSLASHpageref] = ACTIONS(6155), + [anon_sym_BSLASHcref] = ACTIONS(6155), + [anon_sym_BSLASHCref] = ACTIONS(6155), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnameCref] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6155), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6155), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6155), + [anon_sym_BSLASHlabelcref] = ACTIONS(6155), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange] = ACTIONS(6155), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHCrefrange] = ACTIONS(6155), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6153), + [anon_sym_BSLASHnewlabel] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand] = ACTIONS(6155), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6155), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6155), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6153), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6155), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdef] = ACTIONS(6155), + [anon_sym_BSLASHlet] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6155), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6155), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6155), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6155), + [anon_sym_BSLASHgls] = ACTIONS(6155), + [anon_sym_BSLASHGls] = ACTIONS(6155), + [anon_sym_BSLASHGLS] = ACTIONS(6155), + [anon_sym_BSLASHglspl] = ACTIONS(6155), + [anon_sym_BSLASHGlspl] = ACTIONS(6155), + [anon_sym_BSLASHGLSpl] = ACTIONS(6155), + [anon_sym_BSLASHglsdisp] = ACTIONS(6155), + [anon_sym_BSLASHglslink] = ACTIONS(6155), + [anon_sym_BSLASHglstext] = ACTIONS(6155), + [anon_sym_BSLASHGlstext] = ACTIONS(6155), + [anon_sym_BSLASHGLStext] = ACTIONS(6155), + [anon_sym_BSLASHglsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6155), + [anon_sym_BSLASHglsplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSplural] = ACTIONS(6155), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6155), + [anon_sym_BSLASHglsname] = ACTIONS(6155), + [anon_sym_BSLASHGlsname] = ACTIONS(6155), + [anon_sym_BSLASHGLSname] = ACTIONS(6155), + [anon_sym_BSLASHglssymbol] = ACTIONS(6155), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6155), + [anon_sym_BSLASHglsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6155), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6155), + [anon_sym_BSLASHglsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6155), + [anon_sym_BSLASHglsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6155), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6155), + [anon_sym_BSLASHglsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6155), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6155), + [anon_sym_BSLASHglsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6155), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6155), + [anon_sym_BSLASHnewacronym] = ACTIONS(6155), + [anon_sym_BSLASHacrshort] = ACTIONS(6155), + [anon_sym_BSLASHAcrshort] = ACTIONS(6155), + [anon_sym_BSLASHACRshort] = ACTIONS(6155), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6155), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6155), + [anon_sym_BSLASHacrlong] = ACTIONS(6155), + [anon_sym_BSLASHAcrlong] = ACTIONS(6155), + [anon_sym_BSLASHACRlong] = ACTIONS(6155), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6155), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6155), + [anon_sym_BSLASHacrfull] = ACTIONS(6155), + [anon_sym_BSLASHAcrfull] = ACTIONS(6155), + [anon_sym_BSLASHACRfull] = ACTIONS(6155), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6155), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6155), + [anon_sym_BSLASHacs] = ACTIONS(6155), + [anon_sym_BSLASHAcs] = ACTIONS(6155), + [anon_sym_BSLASHacsp] = ACTIONS(6155), + [anon_sym_BSLASHAcsp] = ACTIONS(6155), + [anon_sym_BSLASHacl] = ACTIONS(6155), + [anon_sym_BSLASHAcl] = ACTIONS(6155), + [anon_sym_BSLASHaclp] = ACTIONS(6155), + [anon_sym_BSLASHAclp] = ACTIONS(6155), + [anon_sym_BSLASHacf] = ACTIONS(6155), + [anon_sym_BSLASHAcf] = ACTIONS(6155), + [anon_sym_BSLASHacfp] = ACTIONS(6155), + [anon_sym_BSLASHAcfp] = ACTIONS(6155), + [anon_sym_BSLASHac] = ACTIONS(6155), + [anon_sym_BSLASHAc] = ACTIONS(6155), + [anon_sym_BSLASHacp] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6155), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6155), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6155), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6155), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6155), + [anon_sym_BSLASHcolorbox] = ACTIONS(6155), + [anon_sym_BSLASHtextcolor] = ACTIONS(6155), + [anon_sym_BSLASHpagecolor] = ACTIONS(6155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6155), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6155), + }, + [1749] = { + [sym_command_name] = ACTIONS(6143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6143), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6141), + [anon_sym_RBRACE] = ACTIONS(6141), + [sym_word] = ACTIONS(6143), + [sym_placeholder] = ACTIONS(6141), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym__] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_BANG] = ACTIONS(6143), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6143), + [anon_sym_SQUOTE] = ACTIONS(6143), + [anon_sym_BSLASHtitle] = ACTIONS(6143), + [anon_sym_BSLASHauthor] = ACTIONS(6143), + [anon_sym_BSLASHusepackage] = ACTIONS(6143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6143), + [anon_sym_BSLASHinclude] = ACTIONS(6143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6143), + [anon_sym_BSLASHinput] = ACTIONS(6143), + [anon_sym_BSLASHsubfile] = ACTIONS(6143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6143), + [anon_sym_BSLASHbibliography] = ACTIONS(6143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6143), + [anon_sym_BSLASHincludesvg] = ACTIONS(6143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6143), + [anon_sym_BSLASHimport] = ACTIONS(6143), + [anon_sym_BSLASHsubimport] = ACTIONS(6143), + [anon_sym_BSLASHinputfrom] = ACTIONS(6143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6143), + [anon_sym_BSLASHincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6143), + [anon_sym_BSLASHcaption] = ACTIONS(6143), + [anon_sym_BSLASHcite] = ACTIONS(6143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCite] = ACTIONS(6143), + [anon_sym_BSLASHnocite] = ACTIONS(6143), + [anon_sym_BSLASHcitet] = ACTIONS(6143), + [anon_sym_BSLASHcitep] = ACTIONS(6143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteauthor] = ACTIONS(6143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitetitle] = ACTIONS(6143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteyear] = ACTIONS(6143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6141), + [anon_sym_BSLASHcitedate] = ACTIONS(6143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6141), + [anon_sym_BSLASHciteurl] = ACTIONS(6143), + [anon_sym_BSLASHfullcite] = ACTIONS(6143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6143), + [anon_sym_BSLASHcitealt] = ACTIONS(6143), + [anon_sym_BSLASHcitealp] = ACTIONS(6143), + [anon_sym_BSLASHcitetext] = ACTIONS(6143), + [anon_sym_BSLASHparencite] = ACTIONS(6143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHParencite] = ACTIONS(6143), + [anon_sym_BSLASHfootcite] = ACTIONS(6143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6143), + [anon_sym_BSLASHtextcite] = ACTIONS(6143), + [anon_sym_BSLASHTextcite] = ACTIONS(6143), + [anon_sym_BSLASHsmartcite] = ACTIONS(6143), + [anon_sym_BSLASHSmartcite] = ACTIONS(6143), + [anon_sym_BSLASHsupercite] = ACTIONS(6143), + [anon_sym_BSLASHautocite] = ACTIONS(6143), + [anon_sym_BSLASHAutocite] = ACTIONS(6143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6141), + [anon_sym_BSLASHvolcite] = ACTIONS(6143), + [anon_sym_BSLASHVolcite] = ACTIONS(6143), + [anon_sym_BSLASHpvolcite] = ACTIONS(6143), + [anon_sym_BSLASHPvolcite] = ACTIONS(6143), + [anon_sym_BSLASHfvolcite] = ACTIONS(6143), + [anon_sym_BSLASHftvolcite] = ACTIONS(6143), + [anon_sym_BSLASHsvolcite] = ACTIONS(6143), + [anon_sym_BSLASHSvolcite] = ACTIONS(6143), + [anon_sym_BSLASHtvolcite] = ACTIONS(6143), + [anon_sym_BSLASHTvolcite] = ACTIONS(6143), + [anon_sym_BSLASHavolcite] = ACTIONS(6143), + [anon_sym_BSLASHAvolcite] = ACTIONS(6143), + [anon_sym_BSLASHnotecite] = ACTIONS(6143), + [anon_sym_BSLASHNotecite] = ACTIONS(6143), + [anon_sym_BSLASHpnotecite] = ACTIONS(6143), + [anon_sym_BSLASHPnotecite] = ACTIONS(6143), + [anon_sym_BSLASHfnotecite] = ACTIONS(6143), + [anon_sym_BSLASHlabel] = ACTIONS(6143), + [anon_sym_BSLASHref] = ACTIONS(6143), + [anon_sym_BSLASHeqref] = ACTIONS(6143), + [anon_sym_BSLASHvref] = ACTIONS(6143), + [anon_sym_BSLASHVref] = ACTIONS(6143), + [anon_sym_BSLASHautoref] = ACTIONS(6143), + [anon_sym_BSLASHpageref] = ACTIONS(6143), + [anon_sym_BSLASHcref] = ACTIONS(6143), + [anon_sym_BSLASHCref] = ACTIONS(6143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnameCref] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6143), + [anon_sym_BSLASHlabelcref] = ACTIONS(6143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange] = ACTIONS(6143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHCrefrange] = ACTIONS(6143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6141), + [anon_sym_BSLASHnewlabel] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand] = ACTIONS(6143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdef] = ACTIONS(6143), + [anon_sym_BSLASHlet] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6143), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6143), + [anon_sym_BSLASHGls] = ACTIONS(6143), + [anon_sym_BSLASHGLS] = ACTIONS(6143), + [anon_sym_BSLASHglspl] = ACTIONS(6143), + [anon_sym_BSLASHGlspl] = ACTIONS(6143), + [anon_sym_BSLASHGLSpl] = ACTIONS(6143), + [anon_sym_BSLASHglsdisp] = ACTIONS(6143), + [anon_sym_BSLASHglslink] = ACTIONS(6143), + [anon_sym_BSLASHglstext] = ACTIONS(6143), + [anon_sym_BSLASHGlstext] = ACTIONS(6143), + [anon_sym_BSLASHGLStext] = ACTIONS(6143), + [anon_sym_BSLASHglsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6143), + [anon_sym_BSLASHglsplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSplural] = ACTIONS(6143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6143), + [anon_sym_BSLASHglsname] = ACTIONS(6143), + [anon_sym_BSLASHGlsname] = ACTIONS(6143), + [anon_sym_BSLASHGLSname] = ACTIONS(6143), + [anon_sym_BSLASHglssymbol] = ACTIONS(6143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6143), + [anon_sym_BSLASHglsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6143), + [anon_sym_BSLASHglsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6143), + [anon_sym_BSLASHglsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6143), + [anon_sym_BSLASHglsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6143), + [anon_sym_BSLASHglsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6143), + [anon_sym_BSLASHnewacronym] = ACTIONS(6143), + [anon_sym_BSLASHacrshort] = ACTIONS(6143), + [anon_sym_BSLASHAcrshort] = ACTIONS(6143), + [anon_sym_BSLASHACRshort] = ACTIONS(6143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6143), + [anon_sym_BSLASHacrlong] = ACTIONS(6143), + [anon_sym_BSLASHAcrlong] = ACTIONS(6143), + [anon_sym_BSLASHACRlong] = ACTIONS(6143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6143), + [anon_sym_BSLASHacrfull] = ACTIONS(6143), + [anon_sym_BSLASHAcrfull] = ACTIONS(6143), + [anon_sym_BSLASHACRfull] = ACTIONS(6143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6143), + [anon_sym_BSLASHacs] = ACTIONS(6143), + [anon_sym_BSLASHAcs] = ACTIONS(6143), + [anon_sym_BSLASHacsp] = ACTIONS(6143), + [anon_sym_BSLASHAcsp] = ACTIONS(6143), + [anon_sym_BSLASHacl] = ACTIONS(6143), + [anon_sym_BSLASHAcl] = ACTIONS(6143), + [anon_sym_BSLASHaclp] = ACTIONS(6143), + [anon_sym_BSLASHAclp] = ACTIONS(6143), + [anon_sym_BSLASHacf] = ACTIONS(6143), + [anon_sym_BSLASHAcf] = ACTIONS(6143), + [anon_sym_BSLASHacfp] = ACTIONS(6143), + [anon_sym_BSLASHAcfp] = ACTIONS(6143), + [anon_sym_BSLASHac] = ACTIONS(6143), + [anon_sym_BSLASHAc] = ACTIONS(6143), + [anon_sym_BSLASHacp] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6143), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6143), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6141), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6143), + [anon_sym_BSLASHcolor] = ACTIONS(6143), + [anon_sym_BSLASHcolorbox] = ACTIONS(6143), + [anon_sym_BSLASHtextcolor] = ACTIONS(6143), + [anon_sym_BSLASHpagecolor] = ACTIONS(6143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6143), + }, + [1750] = { + [sym_command_name] = ACTIONS(5897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5897), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [sym_word] = ACTIONS(5897), + [sym_placeholder] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym__] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_SQUOTE] = ACTIONS(5897), + [anon_sym_BSLASHtitle] = ACTIONS(5897), + [anon_sym_BSLASHauthor] = ACTIONS(5897), + [anon_sym_BSLASHusepackage] = ACTIONS(5897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5897), + [anon_sym_BSLASHinclude] = ACTIONS(5897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5897), + [anon_sym_BSLASHinput] = ACTIONS(5897), + [anon_sym_BSLASHsubfile] = ACTIONS(5897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5897), + [anon_sym_BSLASHbibliography] = ACTIONS(5897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5897), + [anon_sym_BSLASHincludesvg] = ACTIONS(5897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5897), + [anon_sym_BSLASHimport] = ACTIONS(5897), + [anon_sym_BSLASHsubimport] = ACTIONS(5897), + [anon_sym_BSLASHinputfrom] = ACTIONS(5897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5897), + [anon_sym_BSLASHincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5897), + [anon_sym_BSLASHcaption] = ACTIONS(5897), + [anon_sym_BSLASHcite] = ACTIONS(5897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCite] = ACTIONS(5897), + [anon_sym_BSLASHnocite] = ACTIONS(5897), + [anon_sym_BSLASHcitet] = ACTIONS(5897), + [anon_sym_BSLASHcitep] = ACTIONS(5897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteauthor] = ACTIONS(5897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitetitle] = ACTIONS(5897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteyear] = ACTIONS(5897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5895), + [anon_sym_BSLASHcitedate] = ACTIONS(5897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5895), + [anon_sym_BSLASHciteurl] = ACTIONS(5897), + [anon_sym_BSLASHfullcite] = ACTIONS(5897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5897), + [anon_sym_BSLASHcitealt] = ACTIONS(5897), + [anon_sym_BSLASHcitealp] = ACTIONS(5897), + [anon_sym_BSLASHcitetext] = ACTIONS(5897), + [anon_sym_BSLASHparencite] = ACTIONS(5897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHParencite] = ACTIONS(5897), + [anon_sym_BSLASHfootcite] = ACTIONS(5897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5897), + [anon_sym_BSLASHtextcite] = ACTIONS(5897), + [anon_sym_BSLASHTextcite] = ACTIONS(5897), + [anon_sym_BSLASHsmartcite] = ACTIONS(5897), + [anon_sym_BSLASHSmartcite] = ACTIONS(5897), + [anon_sym_BSLASHsupercite] = ACTIONS(5897), + [anon_sym_BSLASHautocite] = ACTIONS(5897), + [anon_sym_BSLASHAutocite] = ACTIONS(5897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5895), + [anon_sym_BSLASHvolcite] = ACTIONS(5897), + [anon_sym_BSLASHVolcite] = ACTIONS(5897), + [anon_sym_BSLASHpvolcite] = ACTIONS(5897), + [anon_sym_BSLASHPvolcite] = ACTIONS(5897), + [anon_sym_BSLASHfvolcite] = ACTIONS(5897), + [anon_sym_BSLASHftvolcite] = ACTIONS(5897), + [anon_sym_BSLASHsvolcite] = ACTIONS(5897), + [anon_sym_BSLASHSvolcite] = ACTIONS(5897), + [anon_sym_BSLASHtvolcite] = ACTIONS(5897), + [anon_sym_BSLASHTvolcite] = ACTIONS(5897), + [anon_sym_BSLASHavolcite] = ACTIONS(5897), + [anon_sym_BSLASHAvolcite] = ACTIONS(5897), + [anon_sym_BSLASHnotecite] = ACTIONS(5897), + [anon_sym_BSLASHNotecite] = ACTIONS(5897), + [anon_sym_BSLASHpnotecite] = ACTIONS(5897), + [anon_sym_BSLASHPnotecite] = ACTIONS(5897), + [anon_sym_BSLASHfnotecite] = ACTIONS(5897), + [anon_sym_BSLASHlabel] = ACTIONS(5897), + [anon_sym_BSLASHref] = ACTIONS(5897), + [anon_sym_BSLASHeqref] = ACTIONS(5897), + [anon_sym_BSLASHvref] = ACTIONS(5897), + [anon_sym_BSLASHVref] = ACTIONS(5897), + [anon_sym_BSLASHautoref] = ACTIONS(5897), + [anon_sym_BSLASHpageref] = ACTIONS(5897), + [anon_sym_BSLASHcref] = ACTIONS(5897), + [anon_sym_BSLASHCref] = ACTIONS(5897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnameCref] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5897), + [anon_sym_BSLASHlabelcref] = ACTIONS(5897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange] = ACTIONS(5897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHCrefrange] = ACTIONS(5897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5895), + [anon_sym_BSLASHnewlabel] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand] = ACTIONS(5897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdef] = ACTIONS(5897), + [anon_sym_BSLASHlet] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5897), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5897), + [anon_sym_BSLASHgls] = ACTIONS(5897), + [anon_sym_BSLASHGls] = ACTIONS(5897), + [anon_sym_BSLASHGLS] = ACTIONS(5897), + [anon_sym_BSLASHglspl] = ACTIONS(5897), + [anon_sym_BSLASHGlspl] = ACTIONS(5897), + [anon_sym_BSLASHGLSpl] = ACTIONS(5897), + [anon_sym_BSLASHglsdisp] = ACTIONS(5897), + [anon_sym_BSLASHglslink] = ACTIONS(5897), + [anon_sym_BSLASHglstext] = ACTIONS(5897), + [anon_sym_BSLASHGlstext] = ACTIONS(5897), + [anon_sym_BSLASHGLStext] = ACTIONS(5897), + [anon_sym_BSLASHglsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5897), + [anon_sym_BSLASHglsplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSplural] = ACTIONS(5897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5897), + [anon_sym_BSLASHglsname] = ACTIONS(5897), + [anon_sym_BSLASHGlsname] = ACTIONS(5897), + [anon_sym_BSLASHGLSname] = ACTIONS(5897), + [anon_sym_BSLASHglssymbol] = ACTIONS(5897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5897), + [anon_sym_BSLASHglsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5897), + [anon_sym_BSLASHglsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5897), + [anon_sym_BSLASHglsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5897), + [anon_sym_BSLASHglsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5897), + [anon_sym_BSLASHglsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5897), + [anon_sym_BSLASHnewacronym] = ACTIONS(5897), + [anon_sym_BSLASHacrshort] = ACTIONS(5897), + [anon_sym_BSLASHAcrshort] = ACTIONS(5897), + [anon_sym_BSLASHACRshort] = ACTIONS(5897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5897), + [anon_sym_BSLASHacrlong] = ACTIONS(5897), + [anon_sym_BSLASHAcrlong] = ACTIONS(5897), + [anon_sym_BSLASHACRlong] = ACTIONS(5897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5897), + [anon_sym_BSLASHacrfull] = ACTIONS(5897), + [anon_sym_BSLASHAcrfull] = ACTIONS(5897), + [anon_sym_BSLASHACRfull] = ACTIONS(5897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5897), + [anon_sym_BSLASHacs] = ACTIONS(5897), + [anon_sym_BSLASHAcs] = ACTIONS(5897), + [anon_sym_BSLASHacsp] = ACTIONS(5897), + [anon_sym_BSLASHAcsp] = ACTIONS(5897), + [anon_sym_BSLASHacl] = ACTIONS(5897), + [anon_sym_BSLASHAcl] = ACTIONS(5897), + [anon_sym_BSLASHaclp] = ACTIONS(5897), + [anon_sym_BSLASHAclp] = ACTIONS(5897), + [anon_sym_BSLASHacf] = ACTIONS(5897), + [anon_sym_BSLASHAcf] = ACTIONS(5897), + [anon_sym_BSLASHacfp] = ACTIONS(5897), + [anon_sym_BSLASHAcfp] = ACTIONS(5897), + [anon_sym_BSLASHac] = ACTIONS(5897), + [anon_sym_BSLASHAc] = ACTIONS(5897), + [anon_sym_BSLASHacp] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5897), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5897), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5895), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5897), + [anon_sym_BSLASHcolor] = ACTIONS(5897), + [anon_sym_BSLASHcolorbox] = ACTIONS(5897), + [anon_sym_BSLASHtextcolor] = ACTIONS(5897), + [anon_sym_BSLASHpagecolor] = ACTIONS(5897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5897), + }, + [1751] = { + [sym_command_name] = ACTIONS(6131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6131), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [sym_word] = ACTIONS(6131), + [sym_placeholder] = ACTIONS(6129), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym__] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_BANG] = ACTIONS(6131), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_COLON] = ACTIONS(6131), + [anon_sym_SQUOTE] = ACTIONS(6131), + [anon_sym_BSLASHtitle] = ACTIONS(6131), + [anon_sym_BSLASHauthor] = ACTIONS(6131), + [anon_sym_BSLASHusepackage] = ACTIONS(6131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6131), + [anon_sym_BSLASHinclude] = ACTIONS(6131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6131), + [anon_sym_BSLASHinput] = ACTIONS(6131), + [anon_sym_BSLASHsubfile] = ACTIONS(6131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6131), + [anon_sym_BSLASHbibliography] = ACTIONS(6131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6131), + [anon_sym_BSLASHincludesvg] = ACTIONS(6131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6131), + [anon_sym_BSLASHimport] = ACTIONS(6131), + [anon_sym_BSLASHsubimport] = ACTIONS(6131), + [anon_sym_BSLASHinputfrom] = ACTIONS(6131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6131), + [anon_sym_BSLASHincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6131), + [anon_sym_BSLASHcaption] = ACTIONS(6131), + [anon_sym_BSLASHcite] = ACTIONS(6131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCite] = ACTIONS(6131), + [anon_sym_BSLASHnocite] = ACTIONS(6131), + [anon_sym_BSLASHcitet] = ACTIONS(6131), + [anon_sym_BSLASHcitep] = ACTIONS(6131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteauthor] = ACTIONS(6131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitetitle] = ACTIONS(6131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteyear] = ACTIONS(6131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6129), + [anon_sym_BSLASHcitedate] = ACTIONS(6131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6129), + [anon_sym_BSLASHciteurl] = ACTIONS(6131), + [anon_sym_BSLASHfullcite] = ACTIONS(6131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6131), + [anon_sym_BSLASHcitealt] = ACTIONS(6131), + [anon_sym_BSLASHcitealp] = ACTIONS(6131), + [anon_sym_BSLASHcitetext] = ACTIONS(6131), + [anon_sym_BSLASHparencite] = ACTIONS(6131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHParencite] = ACTIONS(6131), + [anon_sym_BSLASHfootcite] = ACTIONS(6131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6131), + [anon_sym_BSLASHtextcite] = ACTIONS(6131), + [anon_sym_BSLASHTextcite] = ACTIONS(6131), + [anon_sym_BSLASHsmartcite] = ACTIONS(6131), + [anon_sym_BSLASHSmartcite] = ACTIONS(6131), + [anon_sym_BSLASHsupercite] = ACTIONS(6131), + [anon_sym_BSLASHautocite] = ACTIONS(6131), + [anon_sym_BSLASHAutocite] = ACTIONS(6131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6129), + [anon_sym_BSLASHvolcite] = ACTIONS(6131), + [anon_sym_BSLASHVolcite] = ACTIONS(6131), + [anon_sym_BSLASHpvolcite] = ACTIONS(6131), + [anon_sym_BSLASHPvolcite] = ACTIONS(6131), + [anon_sym_BSLASHfvolcite] = ACTIONS(6131), + [anon_sym_BSLASHftvolcite] = ACTIONS(6131), + [anon_sym_BSLASHsvolcite] = ACTIONS(6131), + [anon_sym_BSLASHSvolcite] = ACTIONS(6131), + [anon_sym_BSLASHtvolcite] = ACTIONS(6131), + [anon_sym_BSLASHTvolcite] = ACTIONS(6131), + [anon_sym_BSLASHavolcite] = ACTIONS(6131), + [anon_sym_BSLASHAvolcite] = ACTIONS(6131), + [anon_sym_BSLASHnotecite] = ACTIONS(6131), + [anon_sym_BSLASHNotecite] = ACTIONS(6131), + [anon_sym_BSLASHpnotecite] = ACTIONS(6131), + [anon_sym_BSLASHPnotecite] = ACTIONS(6131), + [anon_sym_BSLASHfnotecite] = ACTIONS(6131), + [anon_sym_BSLASHlabel] = ACTIONS(6131), + [anon_sym_BSLASHref] = ACTIONS(6131), + [anon_sym_BSLASHeqref] = ACTIONS(6131), + [anon_sym_BSLASHvref] = ACTIONS(6131), + [anon_sym_BSLASHVref] = ACTIONS(6131), + [anon_sym_BSLASHautoref] = ACTIONS(6131), + [anon_sym_BSLASHpageref] = ACTIONS(6131), + [anon_sym_BSLASHcref] = ACTIONS(6131), + [anon_sym_BSLASHCref] = ACTIONS(6131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnameCref] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6131), + [anon_sym_BSLASHlabelcref] = ACTIONS(6131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange] = ACTIONS(6131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHCrefrange] = ACTIONS(6131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6129), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdef] = ACTIONS(6131), + [anon_sym_BSLASHlet] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6131), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6131), + [anon_sym_BSLASHgls] = ACTIONS(6131), + [anon_sym_BSLASHGls] = ACTIONS(6131), + [anon_sym_BSLASHGLS] = ACTIONS(6131), + [anon_sym_BSLASHglspl] = ACTIONS(6131), + [anon_sym_BSLASHGlspl] = ACTIONS(6131), + [anon_sym_BSLASHGLSpl] = ACTIONS(6131), + [anon_sym_BSLASHglsdisp] = ACTIONS(6131), + [anon_sym_BSLASHglslink] = ACTIONS(6131), + [anon_sym_BSLASHglstext] = ACTIONS(6131), + [anon_sym_BSLASHGlstext] = ACTIONS(6131), + [anon_sym_BSLASHGLStext] = ACTIONS(6131), + [anon_sym_BSLASHglsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6131), + [anon_sym_BSLASHglsplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSplural] = ACTIONS(6131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6131), + [anon_sym_BSLASHglsname] = ACTIONS(6131), + [anon_sym_BSLASHGlsname] = ACTIONS(6131), + [anon_sym_BSLASHGLSname] = ACTIONS(6131), + [anon_sym_BSLASHglssymbol] = ACTIONS(6131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6131), + [anon_sym_BSLASHglsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6131), + [anon_sym_BSLASHglsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6131), + [anon_sym_BSLASHglsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6131), + [anon_sym_BSLASHglsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6131), + [anon_sym_BSLASHglsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6131), + [anon_sym_BSLASHnewacronym] = ACTIONS(6131), + [anon_sym_BSLASHacrshort] = ACTIONS(6131), + [anon_sym_BSLASHAcrshort] = ACTIONS(6131), + [anon_sym_BSLASHACRshort] = ACTIONS(6131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6131), + [anon_sym_BSLASHacrlong] = ACTIONS(6131), + [anon_sym_BSLASHAcrlong] = ACTIONS(6131), + [anon_sym_BSLASHACRlong] = ACTIONS(6131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6131), + [anon_sym_BSLASHacrfull] = ACTIONS(6131), + [anon_sym_BSLASHAcrfull] = ACTIONS(6131), + [anon_sym_BSLASHACRfull] = ACTIONS(6131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6131), + [anon_sym_BSLASHacs] = ACTIONS(6131), + [anon_sym_BSLASHAcs] = ACTIONS(6131), + [anon_sym_BSLASHacsp] = ACTIONS(6131), + [anon_sym_BSLASHAcsp] = ACTIONS(6131), + [anon_sym_BSLASHacl] = ACTIONS(6131), + [anon_sym_BSLASHAcl] = ACTIONS(6131), + [anon_sym_BSLASHaclp] = ACTIONS(6131), + [anon_sym_BSLASHAclp] = ACTIONS(6131), + [anon_sym_BSLASHacf] = ACTIONS(6131), + [anon_sym_BSLASHAcf] = ACTIONS(6131), + [anon_sym_BSLASHacfp] = ACTIONS(6131), + [anon_sym_BSLASHAcfp] = ACTIONS(6131), + [anon_sym_BSLASHac] = ACTIONS(6131), + [anon_sym_BSLASHAc] = ACTIONS(6131), + [anon_sym_BSLASHacp] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6131), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6131), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6129), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6131), + [anon_sym_BSLASHcolor] = ACTIONS(6131), + [anon_sym_BSLASHcolorbox] = ACTIONS(6131), + [anon_sym_BSLASHtextcolor] = ACTIONS(6131), + [anon_sym_BSLASHpagecolor] = ACTIONS(6131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6131), + }, + [1752] = { + [sym_command_name] = ACTIONS(5965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5965), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [sym_word] = ACTIONS(5965), + [sym_placeholder] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym__] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_SQUOTE] = ACTIONS(5965), + [anon_sym_BSLASHtitle] = ACTIONS(5965), + [anon_sym_BSLASHauthor] = ACTIONS(5965), + [anon_sym_BSLASHusepackage] = ACTIONS(5965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5965), + [anon_sym_BSLASHinclude] = ACTIONS(5965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5965), + [anon_sym_BSLASHinput] = ACTIONS(5965), + [anon_sym_BSLASHsubfile] = ACTIONS(5965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5965), + [anon_sym_BSLASHbibliography] = ACTIONS(5965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5965), + [anon_sym_BSLASHincludesvg] = ACTIONS(5965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5965), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHcaption] = ACTIONS(5965), + [anon_sym_BSLASHcite] = ACTIONS(5965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCite] = ACTIONS(5965), + [anon_sym_BSLASHnocite] = ACTIONS(5965), + [anon_sym_BSLASHcitet] = ACTIONS(5965), + [anon_sym_BSLASHcitep] = ACTIONS(5965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteauthor] = ACTIONS(5965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitetitle] = ACTIONS(5965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteyear] = ACTIONS(5965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5963), + [anon_sym_BSLASHcitedate] = ACTIONS(5965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5963), + [anon_sym_BSLASHciteurl] = ACTIONS(5965), + [anon_sym_BSLASHfullcite] = ACTIONS(5965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5965), + [anon_sym_BSLASHcitealt] = ACTIONS(5965), + [anon_sym_BSLASHcitealp] = ACTIONS(5965), + [anon_sym_BSLASHcitetext] = ACTIONS(5965), + [anon_sym_BSLASHparencite] = ACTIONS(5965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHParencite] = ACTIONS(5965), + [anon_sym_BSLASHfootcite] = ACTIONS(5965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5965), + [anon_sym_BSLASHtextcite] = ACTIONS(5965), + [anon_sym_BSLASHTextcite] = ACTIONS(5965), + [anon_sym_BSLASHsmartcite] = ACTIONS(5965), + [anon_sym_BSLASHSmartcite] = ACTIONS(5965), + [anon_sym_BSLASHsupercite] = ACTIONS(5965), + [anon_sym_BSLASHautocite] = ACTIONS(5965), + [anon_sym_BSLASHAutocite] = ACTIONS(5965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5963), + [anon_sym_BSLASHvolcite] = ACTIONS(5965), + [anon_sym_BSLASHVolcite] = ACTIONS(5965), + [anon_sym_BSLASHpvolcite] = ACTIONS(5965), + [anon_sym_BSLASHPvolcite] = ACTIONS(5965), + [anon_sym_BSLASHfvolcite] = ACTIONS(5965), + [anon_sym_BSLASHftvolcite] = ACTIONS(5965), + [anon_sym_BSLASHsvolcite] = ACTIONS(5965), + [anon_sym_BSLASHSvolcite] = ACTIONS(5965), + [anon_sym_BSLASHtvolcite] = ACTIONS(5965), + [anon_sym_BSLASHTvolcite] = ACTIONS(5965), + [anon_sym_BSLASHavolcite] = ACTIONS(5965), + [anon_sym_BSLASHAvolcite] = ACTIONS(5965), + [anon_sym_BSLASHnotecite] = ACTIONS(5965), + [anon_sym_BSLASHNotecite] = ACTIONS(5965), + [anon_sym_BSLASHpnotecite] = ACTIONS(5965), + [anon_sym_BSLASHPnotecite] = ACTIONS(5965), + [anon_sym_BSLASHfnotecite] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5965), + [anon_sym_BSLASHref] = ACTIONS(5965), + [anon_sym_BSLASHeqref] = ACTIONS(5965), + [anon_sym_BSLASHvref] = ACTIONS(5965), + [anon_sym_BSLASHVref] = ACTIONS(5965), + [anon_sym_BSLASHautoref] = ACTIONS(5965), + [anon_sym_BSLASHpageref] = ACTIONS(5965), + [anon_sym_BSLASHcref] = ACTIONS(5965), + [anon_sym_BSLASHCref] = ACTIONS(5965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnameCref] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5965), + [anon_sym_BSLASHlabelcref] = ACTIONS(5965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange] = ACTIONS(5965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHCrefrange] = ACTIONS(5965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5963), + [anon_sym_BSLASHnewlabel] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand] = ACTIONS(5965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdef] = ACTIONS(5965), + [anon_sym_BSLASHlet] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5965), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5965), + [anon_sym_BSLASHgls] = ACTIONS(5965), + [anon_sym_BSLASHGls] = ACTIONS(5965), + [anon_sym_BSLASHGLS] = ACTIONS(5965), + [anon_sym_BSLASHglspl] = ACTIONS(5965), + [anon_sym_BSLASHGlspl] = ACTIONS(5965), + [anon_sym_BSLASHGLSpl] = ACTIONS(5965), + [anon_sym_BSLASHglsdisp] = ACTIONS(5965), + [anon_sym_BSLASHglslink] = ACTIONS(5965), + [anon_sym_BSLASHglstext] = ACTIONS(5965), + [anon_sym_BSLASHGlstext] = ACTIONS(5965), + [anon_sym_BSLASHGLStext] = ACTIONS(5965), + [anon_sym_BSLASHglsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5965), + [anon_sym_BSLASHglsplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSplural] = ACTIONS(5965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5965), + [anon_sym_BSLASHglsname] = ACTIONS(5965), + [anon_sym_BSLASHGlsname] = ACTIONS(5965), + [anon_sym_BSLASHGLSname] = ACTIONS(5965), + [anon_sym_BSLASHglssymbol] = ACTIONS(5965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5965), + [anon_sym_BSLASHglsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5965), + [anon_sym_BSLASHglsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5965), + [anon_sym_BSLASHglsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5965), + [anon_sym_BSLASHglsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5965), + [anon_sym_BSLASHglsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5965), + [anon_sym_BSLASHnewacronym] = ACTIONS(5965), + [anon_sym_BSLASHacrshort] = ACTIONS(5965), + [anon_sym_BSLASHAcrshort] = ACTIONS(5965), + [anon_sym_BSLASHACRshort] = ACTIONS(5965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5965), + [anon_sym_BSLASHacrlong] = ACTIONS(5965), + [anon_sym_BSLASHAcrlong] = ACTIONS(5965), + [anon_sym_BSLASHACRlong] = ACTIONS(5965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5965), + [anon_sym_BSLASHacrfull] = ACTIONS(5965), + [anon_sym_BSLASHAcrfull] = ACTIONS(5965), + [anon_sym_BSLASHACRfull] = ACTIONS(5965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5965), + [anon_sym_BSLASHacs] = ACTIONS(5965), + [anon_sym_BSLASHAcs] = ACTIONS(5965), + [anon_sym_BSLASHacsp] = ACTIONS(5965), + [anon_sym_BSLASHAcsp] = ACTIONS(5965), + [anon_sym_BSLASHacl] = ACTIONS(5965), + [anon_sym_BSLASHAcl] = ACTIONS(5965), + [anon_sym_BSLASHaclp] = ACTIONS(5965), + [anon_sym_BSLASHAclp] = ACTIONS(5965), + [anon_sym_BSLASHacf] = ACTIONS(5965), + [anon_sym_BSLASHAcf] = ACTIONS(5965), + [anon_sym_BSLASHacfp] = ACTIONS(5965), + [anon_sym_BSLASHAcfp] = ACTIONS(5965), + [anon_sym_BSLASHac] = ACTIONS(5965), + [anon_sym_BSLASHAc] = ACTIONS(5965), + [anon_sym_BSLASHacp] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5965), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5965), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5965), + [anon_sym_BSLASHcolor] = ACTIONS(5965), + [anon_sym_BSLASHcolorbox] = ACTIONS(5965), + [anon_sym_BSLASHtextcolor] = ACTIONS(5965), + [anon_sym_BSLASHpagecolor] = ACTIONS(5965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5965), + }, + [1753] = { + [sym_command_name] = ACTIONS(6127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6127), + [anon_sym_RBRACK] = ACTIONS(6125), + [anon_sym_COMMA] = ACTIONS(6125), + [anon_sym_EQ] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_word] = ACTIONS(6127), + [sym_placeholder] = ACTIONS(6125), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym__] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(6127), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_COLON] = ACTIONS(6127), + [anon_sym_SQUOTE] = ACTIONS(6127), + [anon_sym_BSLASHtitle] = ACTIONS(6127), + [anon_sym_BSLASHauthor] = ACTIONS(6127), + [anon_sym_BSLASHusepackage] = ACTIONS(6127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6127), + [anon_sym_BSLASHinclude] = ACTIONS(6127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6127), + [anon_sym_BSLASHinput] = ACTIONS(6127), + [anon_sym_BSLASHsubfile] = ACTIONS(6127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6127), + [anon_sym_BSLASHbibliography] = ACTIONS(6127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6127), + [anon_sym_BSLASHincludesvg] = ACTIONS(6127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6127), + [anon_sym_BSLASHimport] = ACTIONS(6127), + [anon_sym_BSLASHsubimport] = ACTIONS(6127), + [anon_sym_BSLASHinputfrom] = ACTIONS(6127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6127), + [anon_sym_BSLASHincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6127), + [anon_sym_BSLASHcaption] = ACTIONS(6127), + [anon_sym_BSLASHcite] = ACTIONS(6127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCite] = ACTIONS(6127), + [anon_sym_BSLASHnocite] = ACTIONS(6127), + [anon_sym_BSLASHcitet] = ACTIONS(6127), + [anon_sym_BSLASHcitep] = ACTIONS(6127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteauthor] = ACTIONS(6127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitetitle] = ACTIONS(6127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteyear] = ACTIONS(6127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6125), + [anon_sym_BSLASHcitedate] = ACTIONS(6127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6125), + [anon_sym_BSLASHciteurl] = ACTIONS(6127), + [anon_sym_BSLASHfullcite] = ACTIONS(6127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6127), + [anon_sym_BSLASHcitealt] = ACTIONS(6127), + [anon_sym_BSLASHcitealp] = ACTIONS(6127), + [anon_sym_BSLASHcitetext] = ACTIONS(6127), + [anon_sym_BSLASHparencite] = ACTIONS(6127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHParencite] = ACTIONS(6127), + [anon_sym_BSLASHfootcite] = ACTIONS(6127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6127), + [anon_sym_BSLASHtextcite] = ACTIONS(6127), + [anon_sym_BSLASHTextcite] = ACTIONS(6127), + [anon_sym_BSLASHsmartcite] = ACTIONS(6127), + [anon_sym_BSLASHSmartcite] = ACTIONS(6127), + [anon_sym_BSLASHsupercite] = ACTIONS(6127), + [anon_sym_BSLASHautocite] = ACTIONS(6127), + [anon_sym_BSLASHAutocite] = ACTIONS(6127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6125), + [anon_sym_BSLASHvolcite] = ACTIONS(6127), + [anon_sym_BSLASHVolcite] = ACTIONS(6127), + [anon_sym_BSLASHpvolcite] = ACTIONS(6127), + [anon_sym_BSLASHPvolcite] = ACTIONS(6127), + [anon_sym_BSLASHfvolcite] = ACTIONS(6127), + [anon_sym_BSLASHftvolcite] = ACTIONS(6127), + [anon_sym_BSLASHsvolcite] = ACTIONS(6127), + [anon_sym_BSLASHSvolcite] = ACTIONS(6127), + [anon_sym_BSLASHtvolcite] = ACTIONS(6127), + [anon_sym_BSLASHTvolcite] = ACTIONS(6127), + [anon_sym_BSLASHavolcite] = ACTIONS(6127), + [anon_sym_BSLASHAvolcite] = ACTIONS(6127), + [anon_sym_BSLASHnotecite] = ACTIONS(6127), + [anon_sym_BSLASHNotecite] = ACTIONS(6127), + [anon_sym_BSLASHpnotecite] = ACTIONS(6127), + [anon_sym_BSLASHPnotecite] = ACTIONS(6127), + [anon_sym_BSLASHfnotecite] = ACTIONS(6127), + [anon_sym_BSLASHlabel] = ACTIONS(6127), + [anon_sym_BSLASHref] = ACTIONS(6127), + [anon_sym_BSLASHeqref] = ACTIONS(6127), + [anon_sym_BSLASHvref] = ACTIONS(6127), + [anon_sym_BSLASHVref] = ACTIONS(6127), + [anon_sym_BSLASHautoref] = ACTIONS(6127), + [anon_sym_BSLASHpageref] = ACTIONS(6127), + [anon_sym_BSLASHcref] = ACTIONS(6127), + [anon_sym_BSLASHCref] = ACTIONS(6127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnameCref] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6127), + [anon_sym_BSLASHlabelcref] = ACTIONS(6127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange] = ACTIONS(6127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6125), + [anon_sym_BSLASHnewlabel] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand] = ACTIONS(6127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdef] = ACTIONS(6127), + [anon_sym_BSLASHlet] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6127), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6127), + [anon_sym_BSLASHgls] = ACTIONS(6127), + [anon_sym_BSLASHGls] = ACTIONS(6127), + [anon_sym_BSLASHGLS] = ACTIONS(6127), + [anon_sym_BSLASHglspl] = ACTIONS(6127), + [anon_sym_BSLASHGlspl] = ACTIONS(6127), + [anon_sym_BSLASHGLSpl] = ACTIONS(6127), + [anon_sym_BSLASHglsdisp] = ACTIONS(6127), + [anon_sym_BSLASHglslink] = ACTIONS(6127), + [anon_sym_BSLASHglstext] = ACTIONS(6127), + [anon_sym_BSLASHGlstext] = ACTIONS(6127), + [anon_sym_BSLASHGLStext] = ACTIONS(6127), + [anon_sym_BSLASHglsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6127), + [anon_sym_BSLASHglsplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSplural] = ACTIONS(6127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6127), + [anon_sym_BSLASHglsname] = ACTIONS(6127), + [anon_sym_BSLASHGlsname] = ACTIONS(6127), + [anon_sym_BSLASHGLSname] = ACTIONS(6127), + [anon_sym_BSLASHglssymbol] = ACTIONS(6127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6127), + [anon_sym_BSLASHglsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6127), + [anon_sym_BSLASHglsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6127), + [anon_sym_BSLASHglsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6127), + [anon_sym_BSLASHglsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6127), + [anon_sym_BSLASHglsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6127), + [anon_sym_BSLASHnewacronym] = ACTIONS(6127), + [anon_sym_BSLASHacrshort] = ACTIONS(6127), + [anon_sym_BSLASHAcrshort] = ACTIONS(6127), + [anon_sym_BSLASHACRshort] = ACTIONS(6127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6127), + [anon_sym_BSLASHacrlong] = ACTIONS(6127), + [anon_sym_BSLASHAcrlong] = ACTIONS(6127), + [anon_sym_BSLASHACRlong] = ACTIONS(6127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6127), + [anon_sym_BSLASHacrfull] = ACTIONS(6127), + [anon_sym_BSLASHAcrfull] = ACTIONS(6127), + [anon_sym_BSLASHACRfull] = ACTIONS(6127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6127), + [anon_sym_BSLASHacs] = ACTIONS(6127), + [anon_sym_BSLASHAcs] = ACTIONS(6127), + [anon_sym_BSLASHacsp] = ACTIONS(6127), + [anon_sym_BSLASHAcsp] = ACTIONS(6127), + [anon_sym_BSLASHacl] = ACTIONS(6127), + [anon_sym_BSLASHAcl] = ACTIONS(6127), + [anon_sym_BSLASHaclp] = ACTIONS(6127), + [anon_sym_BSLASHAclp] = ACTIONS(6127), + [anon_sym_BSLASHacf] = ACTIONS(6127), + [anon_sym_BSLASHAcf] = ACTIONS(6127), + [anon_sym_BSLASHacfp] = ACTIONS(6127), + [anon_sym_BSLASHAcfp] = ACTIONS(6127), + [anon_sym_BSLASHac] = ACTIONS(6127), + [anon_sym_BSLASHAc] = ACTIONS(6127), + [anon_sym_BSLASHacp] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6127), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6127), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6125), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6127), + [anon_sym_BSLASHcolor] = ACTIONS(6127), + [anon_sym_BSLASHcolorbox] = ACTIONS(6127), + [anon_sym_BSLASHtextcolor] = ACTIONS(6127), + [anon_sym_BSLASHpagecolor] = ACTIONS(6127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6127), + }, + [1754] = { + [sym_command_name] = ACTIONS(6047), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6047), + [anon_sym_RBRACK] = ACTIONS(6045), + [anon_sym_COMMA] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [sym_placeholder] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_CARET] = ACTIONS(6047), + [anon_sym__] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_SQUOTE] = ACTIONS(6047), + [anon_sym_BSLASHtitle] = ACTIONS(6047), + [anon_sym_BSLASHauthor] = ACTIONS(6047), + [anon_sym_BSLASHusepackage] = ACTIONS(6047), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6047), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6047), + [anon_sym_BSLASHinclude] = ACTIONS(6047), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6047), + [anon_sym_BSLASHinput] = ACTIONS(6047), + [anon_sym_BSLASHsubfile] = ACTIONS(6047), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6047), + [anon_sym_BSLASHbibliography] = ACTIONS(6047), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6047), + [anon_sym_BSLASHincludesvg] = ACTIONS(6047), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6047), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6047), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6047), + [anon_sym_BSLASHimport] = ACTIONS(6047), + [anon_sym_BSLASHsubimport] = ACTIONS(6047), + [anon_sym_BSLASHinputfrom] = ACTIONS(6047), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6047), + [anon_sym_BSLASHincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6047), + [anon_sym_BSLASHcaption] = ACTIONS(6047), + [anon_sym_BSLASHcite] = ACTIONS(6047), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCite] = ACTIONS(6047), + [anon_sym_BSLASHnocite] = ACTIONS(6047), + [anon_sym_BSLASHcitet] = ACTIONS(6047), + [anon_sym_BSLASHcitep] = ACTIONS(6047), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteauthor] = ACTIONS(6047), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6047), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitetitle] = ACTIONS(6047), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteyear] = ACTIONS(6047), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6045), + [anon_sym_BSLASHcitedate] = ACTIONS(6047), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6045), + [anon_sym_BSLASHciteurl] = ACTIONS(6047), + [anon_sym_BSLASHfullcite] = ACTIONS(6047), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6047), + [anon_sym_BSLASHcitealt] = ACTIONS(6047), + [anon_sym_BSLASHcitealp] = ACTIONS(6047), + [anon_sym_BSLASHcitetext] = ACTIONS(6047), + [anon_sym_BSLASHparencite] = ACTIONS(6047), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHParencite] = ACTIONS(6047), + [anon_sym_BSLASHfootcite] = ACTIONS(6047), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6047), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6047), + [anon_sym_BSLASHtextcite] = ACTIONS(6047), + [anon_sym_BSLASHTextcite] = ACTIONS(6047), + [anon_sym_BSLASHsmartcite] = ACTIONS(6047), + [anon_sym_BSLASHSmartcite] = ACTIONS(6047), + [anon_sym_BSLASHsupercite] = ACTIONS(6047), + [anon_sym_BSLASHautocite] = ACTIONS(6047), + [anon_sym_BSLASHAutocite] = ACTIONS(6047), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6045), + [anon_sym_BSLASHvolcite] = ACTIONS(6047), + [anon_sym_BSLASHVolcite] = ACTIONS(6047), + [anon_sym_BSLASHpvolcite] = ACTIONS(6047), + [anon_sym_BSLASHPvolcite] = ACTIONS(6047), + [anon_sym_BSLASHfvolcite] = ACTIONS(6047), + [anon_sym_BSLASHftvolcite] = ACTIONS(6047), + [anon_sym_BSLASHsvolcite] = ACTIONS(6047), + [anon_sym_BSLASHSvolcite] = ACTIONS(6047), + [anon_sym_BSLASHtvolcite] = ACTIONS(6047), + [anon_sym_BSLASHTvolcite] = ACTIONS(6047), + [anon_sym_BSLASHavolcite] = ACTIONS(6047), + [anon_sym_BSLASHAvolcite] = ACTIONS(6047), + [anon_sym_BSLASHnotecite] = ACTIONS(6047), + [anon_sym_BSLASHNotecite] = ACTIONS(6047), + [anon_sym_BSLASHpnotecite] = ACTIONS(6047), + [anon_sym_BSLASHPnotecite] = ACTIONS(6047), + [anon_sym_BSLASHfnotecite] = ACTIONS(6047), + [anon_sym_BSLASHlabel] = ACTIONS(6047), + [anon_sym_BSLASHref] = ACTIONS(6047), + [anon_sym_BSLASHeqref] = ACTIONS(6047), + [anon_sym_BSLASHvref] = ACTIONS(6047), + [anon_sym_BSLASHVref] = ACTIONS(6047), + [anon_sym_BSLASHautoref] = ACTIONS(6047), + [anon_sym_BSLASHpageref] = ACTIONS(6047), + [anon_sym_BSLASHcref] = ACTIONS(6047), + [anon_sym_BSLASHCref] = ACTIONS(6047), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnameCref] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6047), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6047), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6047), + [anon_sym_BSLASHlabelcref] = ACTIONS(6047), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange] = ACTIONS(6047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHCrefrange] = ACTIONS(6047), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6045), + [anon_sym_BSLASHnewlabel] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand] = ACTIONS(6047), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6047), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6047), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6045), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6047), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdef] = ACTIONS(6047), + [anon_sym_BSLASHlet] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6047), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6047), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6047), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6047), + [anon_sym_BSLASHgls] = ACTIONS(6047), + [anon_sym_BSLASHGls] = ACTIONS(6047), + [anon_sym_BSLASHGLS] = ACTIONS(6047), + [anon_sym_BSLASHglspl] = ACTIONS(6047), + [anon_sym_BSLASHGlspl] = ACTIONS(6047), + [anon_sym_BSLASHGLSpl] = ACTIONS(6047), + [anon_sym_BSLASHglsdisp] = ACTIONS(6047), + [anon_sym_BSLASHglslink] = ACTIONS(6047), + [anon_sym_BSLASHglstext] = ACTIONS(6047), + [anon_sym_BSLASHGlstext] = ACTIONS(6047), + [anon_sym_BSLASHGLStext] = ACTIONS(6047), + [anon_sym_BSLASHglsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6047), + [anon_sym_BSLASHglsplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSplural] = ACTIONS(6047), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6047), + [anon_sym_BSLASHglsname] = ACTIONS(6047), + [anon_sym_BSLASHGlsname] = ACTIONS(6047), + [anon_sym_BSLASHGLSname] = ACTIONS(6047), + [anon_sym_BSLASHglssymbol] = ACTIONS(6047), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6047), + [anon_sym_BSLASHglsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6047), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6047), + [anon_sym_BSLASHglsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6047), + [anon_sym_BSLASHglsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6047), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6047), + [anon_sym_BSLASHglsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6047), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6047), + [anon_sym_BSLASHglsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6047), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6047), + [anon_sym_BSLASHnewacronym] = ACTIONS(6047), + [anon_sym_BSLASHacrshort] = ACTIONS(6047), + [anon_sym_BSLASHAcrshort] = ACTIONS(6047), + [anon_sym_BSLASHACRshort] = ACTIONS(6047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6047), + [anon_sym_BSLASHacrlong] = ACTIONS(6047), + [anon_sym_BSLASHAcrlong] = ACTIONS(6047), + [anon_sym_BSLASHACRlong] = ACTIONS(6047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6047), + [anon_sym_BSLASHacrfull] = ACTIONS(6047), + [anon_sym_BSLASHAcrfull] = ACTIONS(6047), + [anon_sym_BSLASHACRfull] = ACTIONS(6047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6047), + [anon_sym_BSLASHacs] = ACTIONS(6047), + [anon_sym_BSLASHAcs] = ACTIONS(6047), + [anon_sym_BSLASHacsp] = ACTIONS(6047), + [anon_sym_BSLASHAcsp] = ACTIONS(6047), + [anon_sym_BSLASHacl] = ACTIONS(6047), + [anon_sym_BSLASHAcl] = ACTIONS(6047), + [anon_sym_BSLASHaclp] = ACTIONS(6047), + [anon_sym_BSLASHAclp] = ACTIONS(6047), + [anon_sym_BSLASHacf] = ACTIONS(6047), + [anon_sym_BSLASHAcf] = ACTIONS(6047), + [anon_sym_BSLASHacfp] = ACTIONS(6047), + [anon_sym_BSLASHAcfp] = ACTIONS(6047), + [anon_sym_BSLASHac] = ACTIONS(6047), + [anon_sym_BSLASHAc] = ACTIONS(6047), + [anon_sym_BSLASHacp] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6047), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6047), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6047), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6047), + [anon_sym_BSLASHcolor] = ACTIONS(6047), + [anon_sym_BSLASHcolorbox] = ACTIONS(6047), + [anon_sym_BSLASHtextcolor] = ACTIONS(6047), + [anon_sym_BSLASHpagecolor] = ACTIONS(6047), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6047), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6047), + }, + [1755] = { + [sym_command_name] = ACTIONS(5961), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5961), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [sym_word] = ACTIONS(5961), + [sym_placeholder] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5961), + [anon_sym_SLASH] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_COLON] = ACTIONS(5961), + [anon_sym_SQUOTE] = ACTIONS(5961), + [anon_sym_BSLASHtitle] = ACTIONS(5961), + [anon_sym_BSLASHauthor] = ACTIONS(5961), + [anon_sym_BSLASHusepackage] = ACTIONS(5961), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5961), + [anon_sym_BSLASHinclude] = ACTIONS(5961), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5961), + [anon_sym_BSLASHinput] = ACTIONS(5961), + [anon_sym_BSLASHsubfile] = ACTIONS(5961), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5961), + [anon_sym_BSLASHbibliography] = ACTIONS(5961), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5961), + [anon_sym_BSLASHincludesvg] = ACTIONS(5961), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5961), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5961), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5961), + [anon_sym_BSLASHimport] = ACTIONS(5961), + [anon_sym_BSLASHsubimport] = ACTIONS(5961), + [anon_sym_BSLASHinputfrom] = ACTIONS(5961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5961), + [anon_sym_BSLASHincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5961), + [anon_sym_BSLASHcaption] = ACTIONS(5961), + [anon_sym_BSLASHcite] = ACTIONS(5961), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCite] = ACTIONS(5961), + [anon_sym_BSLASHnocite] = ACTIONS(5961), + [anon_sym_BSLASHcitet] = ACTIONS(5961), + [anon_sym_BSLASHcitep] = ACTIONS(5961), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteauthor] = ACTIONS(5961), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5961), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitetitle] = ACTIONS(5961), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteyear] = ACTIONS(5961), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5959), + [anon_sym_BSLASHcitedate] = ACTIONS(5961), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5959), + [anon_sym_BSLASHciteurl] = ACTIONS(5961), + [anon_sym_BSLASHfullcite] = ACTIONS(5961), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5961), + [anon_sym_BSLASHcitealt] = ACTIONS(5961), + [anon_sym_BSLASHcitealp] = ACTIONS(5961), + [anon_sym_BSLASHcitetext] = ACTIONS(5961), + [anon_sym_BSLASHparencite] = ACTIONS(5961), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHParencite] = ACTIONS(5961), + [anon_sym_BSLASHfootcite] = ACTIONS(5961), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5961), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5961), + [anon_sym_BSLASHtextcite] = ACTIONS(5961), + [anon_sym_BSLASHTextcite] = ACTIONS(5961), + [anon_sym_BSLASHsmartcite] = ACTIONS(5961), + [anon_sym_BSLASHSmartcite] = ACTIONS(5961), + [anon_sym_BSLASHsupercite] = ACTIONS(5961), + [anon_sym_BSLASHautocite] = ACTIONS(5961), + [anon_sym_BSLASHAutocite] = ACTIONS(5961), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5959), + [anon_sym_BSLASHvolcite] = ACTIONS(5961), + [anon_sym_BSLASHVolcite] = ACTIONS(5961), + [anon_sym_BSLASHpvolcite] = ACTIONS(5961), + [anon_sym_BSLASHPvolcite] = ACTIONS(5961), + [anon_sym_BSLASHfvolcite] = ACTIONS(5961), + [anon_sym_BSLASHftvolcite] = ACTIONS(5961), + [anon_sym_BSLASHsvolcite] = ACTIONS(5961), + [anon_sym_BSLASHSvolcite] = ACTIONS(5961), + [anon_sym_BSLASHtvolcite] = ACTIONS(5961), + [anon_sym_BSLASHTvolcite] = ACTIONS(5961), + [anon_sym_BSLASHavolcite] = ACTIONS(5961), + [anon_sym_BSLASHAvolcite] = ACTIONS(5961), + [anon_sym_BSLASHnotecite] = ACTIONS(5961), + [anon_sym_BSLASHNotecite] = ACTIONS(5961), + [anon_sym_BSLASHpnotecite] = ACTIONS(5961), + [anon_sym_BSLASHPnotecite] = ACTIONS(5961), + [anon_sym_BSLASHfnotecite] = ACTIONS(5961), + [anon_sym_BSLASHlabel] = ACTIONS(5961), + [anon_sym_BSLASHref] = ACTIONS(5961), + [anon_sym_BSLASHeqref] = ACTIONS(5961), + [anon_sym_BSLASHvref] = ACTIONS(5961), + [anon_sym_BSLASHVref] = ACTIONS(5961), + [anon_sym_BSLASHautoref] = ACTIONS(5961), + [anon_sym_BSLASHpageref] = ACTIONS(5961), + [anon_sym_BSLASHcref] = ACTIONS(5961), + [anon_sym_BSLASHCref] = ACTIONS(5961), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnameCref] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5961), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5961), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5961), + [anon_sym_BSLASHlabelcref] = ACTIONS(5961), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange] = ACTIONS(5961), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHCrefrange] = ACTIONS(5961), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5959), + [anon_sym_BSLASHnewlabel] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand] = ACTIONS(5961), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5961), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5961), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5959), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5961), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdef] = ACTIONS(5961), + [anon_sym_BSLASHlet] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5961), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5961), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5961), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5961), + [anon_sym_BSLASHgls] = ACTIONS(5961), + [anon_sym_BSLASHGls] = ACTIONS(5961), + [anon_sym_BSLASHGLS] = ACTIONS(5961), + [anon_sym_BSLASHglspl] = ACTIONS(5961), + [anon_sym_BSLASHGlspl] = ACTIONS(5961), + [anon_sym_BSLASHGLSpl] = ACTIONS(5961), + [anon_sym_BSLASHglsdisp] = ACTIONS(5961), + [anon_sym_BSLASHglslink] = ACTIONS(5961), + [anon_sym_BSLASHglstext] = ACTIONS(5961), + [anon_sym_BSLASHGlstext] = ACTIONS(5961), + [anon_sym_BSLASHGLStext] = ACTIONS(5961), + [anon_sym_BSLASHglsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5961), + [anon_sym_BSLASHglsplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSplural] = ACTIONS(5961), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5961), + [anon_sym_BSLASHglsname] = ACTIONS(5961), + [anon_sym_BSLASHGlsname] = ACTIONS(5961), + [anon_sym_BSLASHGLSname] = ACTIONS(5961), + [anon_sym_BSLASHglssymbol] = ACTIONS(5961), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5961), + [anon_sym_BSLASHglsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5961), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5961), + [anon_sym_BSLASHglsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5961), + [anon_sym_BSLASHglsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5961), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5961), + [anon_sym_BSLASHglsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5961), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5961), + [anon_sym_BSLASHglsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5961), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5961), + [anon_sym_BSLASHnewacronym] = ACTIONS(5961), + [anon_sym_BSLASHacrshort] = ACTIONS(5961), + [anon_sym_BSLASHAcrshort] = ACTIONS(5961), + [anon_sym_BSLASHACRshort] = ACTIONS(5961), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5961), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5961), + [anon_sym_BSLASHacrlong] = ACTIONS(5961), + [anon_sym_BSLASHAcrlong] = ACTIONS(5961), + [anon_sym_BSLASHACRlong] = ACTIONS(5961), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5961), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5961), + [anon_sym_BSLASHacrfull] = ACTIONS(5961), + [anon_sym_BSLASHAcrfull] = ACTIONS(5961), + [anon_sym_BSLASHACRfull] = ACTIONS(5961), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5961), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5961), + [anon_sym_BSLASHacs] = ACTIONS(5961), + [anon_sym_BSLASHAcs] = ACTIONS(5961), + [anon_sym_BSLASHacsp] = ACTIONS(5961), + [anon_sym_BSLASHAcsp] = ACTIONS(5961), + [anon_sym_BSLASHacl] = ACTIONS(5961), + [anon_sym_BSLASHAcl] = ACTIONS(5961), + [anon_sym_BSLASHaclp] = ACTIONS(5961), + [anon_sym_BSLASHAclp] = ACTIONS(5961), + [anon_sym_BSLASHacf] = ACTIONS(5961), + [anon_sym_BSLASHAcf] = ACTIONS(5961), + [anon_sym_BSLASHacfp] = ACTIONS(5961), + [anon_sym_BSLASHAcfp] = ACTIONS(5961), + [anon_sym_BSLASHac] = ACTIONS(5961), + [anon_sym_BSLASHAc] = ACTIONS(5961), + [anon_sym_BSLASHacp] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5961), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5961), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5961), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5961), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5961), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5961), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5961), + [anon_sym_BSLASHcolor] = ACTIONS(5961), + [anon_sym_BSLASHcolorbox] = ACTIONS(5961), + [anon_sym_BSLASHtextcolor] = ACTIONS(5961), + [anon_sym_BSLASHpagecolor] = ACTIONS(5961), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5961), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5961), + }, + [1756] = { + [sym_command_name] = ACTIONS(6123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6123), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_COMMA] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6121), + [anon_sym_RBRACE] = ACTIONS(6121), + [sym_word] = ACTIONS(6123), + [sym_placeholder] = ACTIONS(6121), + [anon_sym_PLUS] = ACTIONS(6123), + [anon_sym_DASH] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6123), + [anon_sym_SLASH] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(6123), + [anon_sym__] = ACTIONS(6123), + [anon_sym_LT] = ACTIONS(6123), + [anon_sym_GT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6123), + [anon_sym_PIPE] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6123), + [anon_sym_SQUOTE] = ACTIONS(6123), + [anon_sym_BSLASHtitle] = ACTIONS(6123), + [anon_sym_BSLASHauthor] = ACTIONS(6123), + [anon_sym_BSLASHusepackage] = ACTIONS(6123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6123), + [anon_sym_BSLASHinclude] = ACTIONS(6123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6123), + [anon_sym_BSLASHinput] = ACTIONS(6123), + [anon_sym_BSLASHsubfile] = ACTIONS(6123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6123), + [anon_sym_BSLASHbibliography] = ACTIONS(6123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6123), + [anon_sym_BSLASHincludesvg] = ACTIONS(6123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6123), + [anon_sym_BSLASHimport] = ACTIONS(6123), + [anon_sym_BSLASHsubimport] = ACTIONS(6123), + [anon_sym_BSLASHinputfrom] = ACTIONS(6123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6123), + [anon_sym_BSLASHincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6123), + [anon_sym_BSLASHcaption] = ACTIONS(6123), + [anon_sym_BSLASHcite] = ACTIONS(6123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCite] = ACTIONS(6123), + [anon_sym_BSLASHnocite] = ACTIONS(6123), + [anon_sym_BSLASHcitet] = ACTIONS(6123), + [anon_sym_BSLASHcitep] = ACTIONS(6123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteauthor] = ACTIONS(6123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitetitle] = ACTIONS(6123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteyear] = ACTIONS(6123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6121), + [anon_sym_BSLASHcitedate] = ACTIONS(6123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6121), + [anon_sym_BSLASHciteurl] = ACTIONS(6123), + [anon_sym_BSLASHfullcite] = ACTIONS(6123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6123), + [anon_sym_BSLASHcitealt] = ACTIONS(6123), + [anon_sym_BSLASHcitealp] = ACTIONS(6123), + [anon_sym_BSLASHcitetext] = ACTIONS(6123), + [anon_sym_BSLASHparencite] = ACTIONS(6123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHParencite] = ACTIONS(6123), + [anon_sym_BSLASHfootcite] = ACTIONS(6123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6123), + [anon_sym_BSLASHtextcite] = ACTIONS(6123), + [anon_sym_BSLASHTextcite] = ACTIONS(6123), + [anon_sym_BSLASHsmartcite] = ACTIONS(6123), + [anon_sym_BSLASHSmartcite] = ACTIONS(6123), + [anon_sym_BSLASHsupercite] = ACTIONS(6123), + [anon_sym_BSLASHautocite] = ACTIONS(6123), + [anon_sym_BSLASHAutocite] = ACTIONS(6123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6121), + [anon_sym_BSLASHvolcite] = ACTIONS(6123), + [anon_sym_BSLASHVolcite] = ACTIONS(6123), + [anon_sym_BSLASHpvolcite] = ACTIONS(6123), + [anon_sym_BSLASHPvolcite] = ACTIONS(6123), + [anon_sym_BSLASHfvolcite] = ACTIONS(6123), + [anon_sym_BSLASHftvolcite] = ACTIONS(6123), + [anon_sym_BSLASHsvolcite] = ACTIONS(6123), + [anon_sym_BSLASHSvolcite] = ACTIONS(6123), + [anon_sym_BSLASHtvolcite] = ACTIONS(6123), + [anon_sym_BSLASHTvolcite] = ACTIONS(6123), + [anon_sym_BSLASHavolcite] = ACTIONS(6123), + [anon_sym_BSLASHAvolcite] = ACTIONS(6123), + [anon_sym_BSLASHnotecite] = ACTIONS(6123), + [anon_sym_BSLASHNotecite] = ACTIONS(6123), + [anon_sym_BSLASHpnotecite] = ACTIONS(6123), + [anon_sym_BSLASHPnotecite] = ACTIONS(6123), + [anon_sym_BSLASHfnotecite] = ACTIONS(6123), + [anon_sym_BSLASHlabel] = ACTIONS(6123), + [anon_sym_BSLASHref] = ACTIONS(6123), + [anon_sym_BSLASHeqref] = ACTIONS(6123), + [anon_sym_BSLASHvref] = ACTIONS(6123), + [anon_sym_BSLASHVref] = ACTIONS(6123), + [anon_sym_BSLASHautoref] = ACTIONS(6123), + [anon_sym_BSLASHpageref] = ACTIONS(6123), + [anon_sym_BSLASHcref] = ACTIONS(6123), + [anon_sym_BSLASHCref] = ACTIONS(6123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnameCref] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6123), + [anon_sym_BSLASHlabelcref] = ACTIONS(6123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange] = ACTIONS(6123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHCrefrange] = ACTIONS(6123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6121), + [anon_sym_BSLASHnewlabel] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand] = ACTIONS(6123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdef] = ACTIONS(6123), + [anon_sym_BSLASHlet] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6123), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6123), + [anon_sym_BSLASHgls] = ACTIONS(6123), + [anon_sym_BSLASHGls] = ACTIONS(6123), + [anon_sym_BSLASHGLS] = ACTIONS(6123), + [anon_sym_BSLASHglspl] = ACTIONS(6123), + [anon_sym_BSLASHGlspl] = ACTIONS(6123), + [anon_sym_BSLASHGLSpl] = ACTIONS(6123), + [anon_sym_BSLASHglsdisp] = ACTIONS(6123), + [anon_sym_BSLASHglslink] = ACTIONS(6123), + [anon_sym_BSLASHglstext] = ACTIONS(6123), + [anon_sym_BSLASHGlstext] = ACTIONS(6123), + [anon_sym_BSLASHGLStext] = ACTIONS(6123), + [anon_sym_BSLASHglsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6123), + [anon_sym_BSLASHglsplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSplural] = ACTIONS(6123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6123), + [anon_sym_BSLASHglsname] = ACTIONS(6123), + [anon_sym_BSLASHGlsname] = ACTIONS(6123), + [anon_sym_BSLASHGLSname] = ACTIONS(6123), + [anon_sym_BSLASHglssymbol] = ACTIONS(6123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6123), + [anon_sym_BSLASHglsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6123), + [anon_sym_BSLASHglsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6123), + [anon_sym_BSLASHglsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6123), + [anon_sym_BSLASHglsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6123), + [anon_sym_BSLASHglsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6123), + [anon_sym_BSLASHnewacronym] = ACTIONS(6123), + [anon_sym_BSLASHacrshort] = ACTIONS(6123), + [anon_sym_BSLASHAcrshort] = ACTIONS(6123), + [anon_sym_BSLASHACRshort] = ACTIONS(6123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6123), + [anon_sym_BSLASHacrlong] = ACTIONS(6123), + [anon_sym_BSLASHAcrlong] = ACTIONS(6123), + [anon_sym_BSLASHACRlong] = ACTIONS(6123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6123), + [anon_sym_BSLASHacrfull] = ACTIONS(6123), + [anon_sym_BSLASHAcrfull] = ACTIONS(6123), + [anon_sym_BSLASHACRfull] = ACTIONS(6123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6123), + [anon_sym_BSLASHacs] = ACTIONS(6123), + [anon_sym_BSLASHAcs] = ACTIONS(6123), + [anon_sym_BSLASHacsp] = ACTIONS(6123), + [anon_sym_BSLASHAcsp] = ACTIONS(6123), + [anon_sym_BSLASHacl] = ACTIONS(6123), + [anon_sym_BSLASHAcl] = ACTIONS(6123), + [anon_sym_BSLASHaclp] = ACTIONS(6123), + [anon_sym_BSLASHAclp] = ACTIONS(6123), + [anon_sym_BSLASHacf] = ACTIONS(6123), + [anon_sym_BSLASHAcf] = ACTIONS(6123), + [anon_sym_BSLASHacfp] = ACTIONS(6123), + [anon_sym_BSLASHAcfp] = ACTIONS(6123), + [anon_sym_BSLASHac] = ACTIONS(6123), + [anon_sym_BSLASHAc] = ACTIONS(6123), + [anon_sym_BSLASHacp] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6123), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6123), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6121), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6123), + [anon_sym_BSLASHcolor] = ACTIONS(6123), + [anon_sym_BSLASHcolorbox] = ACTIONS(6123), + [anon_sym_BSLASHtextcolor] = ACTIONS(6123), + [anon_sym_BSLASHpagecolor] = ACTIONS(6123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6123), + }, + [1757] = { + [sym_command_name] = ACTIONS(6119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6119), + [anon_sym_RBRACK] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6117), + [anon_sym_EQ] = ACTIONS(6117), + [anon_sym_RBRACE] = ACTIONS(6117), + [sym_word] = ACTIONS(6119), + [sym_placeholder] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_STAR] = ACTIONS(6119), + [anon_sym_SLASH] = ACTIONS(6119), + [anon_sym_CARET] = ACTIONS(6119), + [anon_sym__] = ACTIONS(6119), + [anon_sym_LT] = ACTIONS(6119), + [anon_sym_GT] = ACTIONS(6119), + [anon_sym_BANG] = ACTIONS(6119), + [anon_sym_PIPE] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [anon_sym_SQUOTE] = ACTIONS(6119), + [anon_sym_BSLASHtitle] = ACTIONS(6119), + [anon_sym_BSLASHauthor] = ACTIONS(6119), + [anon_sym_BSLASHusepackage] = ACTIONS(6119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6119), + [anon_sym_BSLASHinclude] = ACTIONS(6119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6119), + [anon_sym_BSLASHinput] = ACTIONS(6119), + [anon_sym_BSLASHsubfile] = ACTIONS(6119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6119), + [anon_sym_BSLASHbibliography] = ACTIONS(6119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6119), + [anon_sym_BSLASHincludesvg] = ACTIONS(6119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6119), + [anon_sym_BSLASHimport] = ACTIONS(6119), + [anon_sym_BSLASHsubimport] = ACTIONS(6119), + [anon_sym_BSLASHinputfrom] = ACTIONS(6119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6119), + [anon_sym_BSLASHincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6119), + [anon_sym_BSLASHcaption] = ACTIONS(6119), + [anon_sym_BSLASHcite] = ACTIONS(6119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCite] = ACTIONS(6119), + [anon_sym_BSLASHnocite] = ACTIONS(6119), + [anon_sym_BSLASHcitet] = ACTIONS(6119), + [anon_sym_BSLASHcitep] = ACTIONS(6119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteauthor] = ACTIONS(6119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitetitle] = ACTIONS(6119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteyear] = ACTIONS(6119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6117), + [anon_sym_BSLASHcitedate] = ACTIONS(6119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6117), + [anon_sym_BSLASHciteurl] = ACTIONS(6119), + [anon_sym_BSLASHfullcite] = ACTIONS(6119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6119), + [anon_sym_BSLASHcitealt] = ACTIONS(6119), + [anon_sym_BSLASHcitealp] = ACTIONS(6119), + [anon_sym_BSLASHcitetext] = ACTIONS(6119), + [anon_sym_BSLASHparencite] = ACTIONS(6119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHParencite] = ACTIONS(6119), + [anon_sym_BSLASHfootcite] = ACTIONS(6119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6119), + [anon_sym_BSLASHtextcite] = ACTIONS(6119), + [anon_sym_BSLASHTextcite] = ACTIONS(6119), + [anon_sym_BSLASHsmartcite] = ACTIONS(6119), + [anon_sym_BSLASHSmartcite] = ACTIONS(6119), + [anon_sym_BSLASHsupercite] = ACTIONS(6119), + [anon_sym_BSLASHautocite] = ACTIONS(6119), + [anon_sym_BSLASHAutocite] = ACTIONS(6119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6117), + [anon_sym_BSLASHvolcite] = ACTIONS(6119), + [anon_sym_BSLASHVolcite] = ACTIONS(6119), + [anon_sym_BSLASHpvolcite] = ACTIONS(6119), + [anon_sym_BSLASHPvolcite] = ACTIONS(6119), + [anon_sym_BSLASHfvolcite] = ACTIONS(6119), + [anon_sym_BSLASHftvolcite] = ACTIONS(6119), + [anon_sym_BSLASHsvolcite] = ACTIONS(6119), + [anon_sym_BSLASHSvolcite] = ACTIONS(6119), + [anon_sym_BSLASHtvolcite] = ACTIONS(6119), + [anon_sym_BSLASHTvolcite] = ACTIONS(6119), + [anon_sym_BSLASHavolcite] = ACTIONS(6119), + [anon_sym_BSLASHAvolcite] = ACTIONS(6119), + [anon_sym_BSLASHnotecite] = ACTIONS(6119), + [anon_sym_BSLASHNotecite] = ACTIONS(6119), + [anon_sym_BSLASHpnotecite] = ACTIONS(6119), + [anon_sym_BSLASHPnotecite] = ACTIONS(6119), + [anon_sym_BSLASHfnotecite] = ACTIONS(6119), + [anon_sym_BSLASHlabel] = ACTIONS(6119), + [anon_sym_BSLASHref] = ACTIONS(6119), + [anon_sym_BSLASHeqref] = ACTIONS(6119), + [anon_sym_BSLASHvref] = ACTIONS(6119), + [anon_sym_BSLASHVref] = ACTIONS(6119), + [anon_sym_BSLASHautoref] = ACTIONS(6119), + [anon_sym_BSLASHpageref] = ACTIONS(6119), + [anon_sym_BSLASHcref] = ACTIONS(6119), + [anon_sym_BSLASHCref] = ACTIONS(6119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnameCref] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6119), + [anon_sym_BSLASHlabelcref] = ACTIONS(6119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange] = ACTIONS(6119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHCrefrange] = ACTIONS(6119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6117), + [anon_sym_BSLASHnewlabel] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand] = ACTIONS(6119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdef] = ACTIONS(6119), + [anon_sym_BSLASHlet] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6119), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6119), + [anon_sym_BSLASHgls] = ACTIONS(6119), + [anon_sym_BSLASHGls] = ACTIONS(6119), + [anon_sym_BSLASHGLS] = ACTIONS(6119), + [anon_sym_BSLASHglspl] = ACTIONS(6119), + [anon_sym_BSLASHGlspl] = ACTIONS(6119), + [anon_sym_BSLASHGLSpl] = ACTIONS(6119), + [anon_sym_BSLASHglsdisp] = ACTIONS(6119), + [anon_sym_BSLASHglslink] = ACTIONS(6119), + [anon_sym_BSLASHglstext] = ACTIONS(6119), + [anon_sym_BSLASHGlstext] = ACTIONS(6119), + [anon_sym_BSLASHGLStext] = ACTIONS(6119), + [anon_sym_BSLASHglsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6119), + [anon_sym_BSLASHglsplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSplural] = ACTIONS(6119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6119), + [anon_sym_BSLASHglsname] = ACTIONS(6119), + [anon_sym_BSLASHGlsname] = ACTIONS(6119), + [anon_sym_BSLASHGLSname] = ACTIONS(6119), + [anon_sym_BSLASHglssymbol] = ACTIONS(6119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6119), + [anon_sym_BSLASHglsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6119), + [anon_sym_BSLASHglsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6119), + [anon_sym_BSLASHglsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6119), + [anon_sym_BSLASHglsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6119), + [anon_sym_BSLASHglsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6119), + [anon_sym_BSLASHnewacronym] = ACTIONS(6119), + [anon_sym_BSLASHacrshort] = ACTIONS(6119), + [anon_sym_BSLASHAcrshort] = ACTIONS(6119), + [anon_sym_BSLASHACRshort] = ACTIONS(6119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6119), + [anon_sym_BSLASHacrlong] = ACTIONS(6119), + [anon_sym_BSLASHAcrlong] = ACTIONS(6119), + [anon_sym_BSLASHACRlong] = ACTIONS(6119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6119), + [anon_sym_BSLASHacrfull] = ACTIONS(6119), + [anon_sym_BSLASHAcrfull] = ACTIONS(6119), + [anon_sym_BSLASHACRfull] = ACTIONS(6119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6119), + [anon_sym_BSLASHacs] = ACTIONS(6119), + [anon_sym_BSLASHAcs] = ACTIONS(6119), + [anon_sym_BSLASHacsp] = ACTIONS(6119), + [anon_sym_BSLASHAcsp] = ACTIONS(6119), + [anon_sym_BSLASHacl] = ACTIONS(6119), + [anon_sym_BSLASHAcl] = ACTIONS(6119), + [anon_sym_BSLASHaclp] = ACTIONS(6119), + [anon_sym_BSLASHAclp] = ACTIONS(6119), + [anon_sym_BSLASHacf] = ACTIONS(6119), + [anon_sym_BSLASHAcf] = ACTIONS(6119), + [anon_sym_BSLASHacfp] = ACTIONS(6119), + [anon_sym_BSLASHAcfp] = ACTIONS(6119), + [anon_sym_BSLASHac] = ACTIONS(6119), + [anon_sym_BSLASHAc] = ACTIONS(6119), + [anon_sym_BSLASHacp] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6119), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6119), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6119), + [anon_sym_BSLASHcolor] = ACTIONS(6119), + [anon_sym_BSLASHcolorbox] = ACTIONS(6119), + [anon_sym_BSLASHtextcolor] = ACTIONS(6119), + [anon_sym_BSLASHpagecolor] = ACTIONS(6119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6119), + }, + [1758] = { + [sym_command_name] = ACTIONS(6113), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6113), + [anon_sym_RBRACK] = ACTIONS(6111), + [anon_sym_COMMA] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_RBRACE] = ACTIONS(6111), + [sym_word] = ACTIONS(6113), + [sym_placeholder] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym__] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_BANG] = ACTIONS(6113), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_SQUOTE] = ACTIONS(6113), + [anon_sym_BSLASHtitle] = ACTIONS(6113), + [anon_sym_BSLASHauthor] = ACTIONS(6113), + [anon_sym_BSLASHusepackage] = ACTIONS(6113), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), + [anon_sym_BSLASHinclude] = ACTIONS(6113), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), + [anon_sym_BSLASHinput] = ACTIONS(6113), + [anon_sym_BSLASHsubfile] = ACTIONS(6113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), + [anon_sym_BSLASHbibliography] = ACTIONS(6113), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), + [anon_sym_BSLASHincludesvg] = ACTIONS(6113), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), + [anon_sym_BSLASHimport] = ACTIONS(6113), + [anon_sym_BSLASHsubimport] = ACTIONS(6113), + [anon_sym_BSLASHinputfrom] = ACTIONS(6113), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), + [anon_sym_BSLASHincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), + [anon_sym_BSLASHcaption] = ACTIONS(6113), + [anon_sym_BSLASHcite] = ACTIONS(6113), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCite] = ACTIONS(6113), + [anon_sym_BSLASHnocite] = ACTIONS(6113), + [anon_sym_BSLASHcitet] = ACTIONS(6113), + [anon_sym_BSLASHcitep] = ACTIONS(6113), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteauthor] = ACTIONS(6113), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitetitle] = ACTIONS(6113), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteyear] = ACTIONS(6113), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), + [anon_sym_BSLASHcitedate] = ACTIONS(6113), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), + [anon_sym_BSLASHciteurl] = ACTIONS(6113), + [anon_sym_BSLASHfullcite] = ACTIONS(6113), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), + [anon_sym_BSLASHcitealt] = ACTIONS(6113), + [anon_sym_BSLASHcitealp] = ACTIONS(6113), + [anon_sym_BSLASHcitetext] = ACTIONS(6113), + [anon_sym_BSLASHparencite] = ACTIONS(6113), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHParencite] = ACTIONS(6113), + [anon_sym_BSLASHfootcite] = ACTIONS(6113), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), + [anon_sym_BSLASHtextcite] = ACTIONS(6113), + [anon_sym_BSLASHTextcite] = ACTIONS(6113), + [anon_sym_BSLASHsmartcite] = ACTIONS(6113), + [anon_sym_BSLASHSmartcite] = ACTIONS(6113), + [anon_sym_BSLASHsupercite] = ACTIONS(6113), + [anon_sym_BSLASHautocite] = ACTIONS(6113), + [anon_sym_BSLASHAutocite] = ACTIONS(6113), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), + [anon_sym_BSLASHvolcite] = ACTIONS(6113), + [anon_sym_BSLASHVolcite] = ACTIONS(6113), + [anon_sym_BSLASHpvolcite] = ACTIONS(6113), + [anon_sym_BSLASHPvolcite] = ACTIONS(6113), + [anon_sym_BSLASHfvolcite] = ACTIONS(6113), + [anon_sym_BSLASHftvolcite] = ACTIONS(6113), + [anon_sym_BSLASHsvolcite] = ACTIONS(6113), + [anon_sym_BSLASHSvolcite] = ACTIONS(6113), + [anon_sym_BSLASHtvolcite] = ACTIONS(6113), + [anon_sym_BSLASHTvolcite] = ACTIONS(6113), + [anon_sym_BSLASHavolcite] = ACTIONS(6113), + [anon_sym_BSLASHAvolcite] = ACTIONS(6113), + [anon_sym_BSLASHnotecite] = ACTIONS(6113), + [anon_sym_BSLASHNotecite] = ACTIONS(6113), + [anon_sym_BSLASHpnotecite] = ACTIONS(6113), + [anon_sym_BSLASHPnotecite] = ACTIONS(6113), + [anon_sym_BSLASHfnotecite] = ACTIONS(6113), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6113), + [anon_sym_BSLASHeqref] = ACTIONS(6113), + [anon_sym_BSLASHvref] = ACTIONS(6113), + [anon_sym_BSLASHVref] = ACTIONS(6113), + [anon_sym_BSLASHautoref] = ACTIONS(6113), + [anon_sym_BSLASHpageref] = ACTIONS(6113), + [anon_sym_BSLASHcref] = ACTIONS(6113), + [anon_sym_BSLASHCref] = ACTIONS(6113), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnameCref] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), + [anon_sym_BSLASHlabelcref] = ACTIONS(6113), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange] = ACTIONS(6113), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHCrefrange] = ACTIONS(6113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), + [anon_sym_BSLASHnewlabel] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand] = ACTIONS(6113), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdef] = ACTIONS(6113), + [anon_sym_BSLASHlet] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), + [anon_sym_BSLASHgls] = ACTIONS(6113), + [anon_sym_BSLASHGls] = ACTIONS(6113), + [anon_sym_BSLASHGLS] = ACTIONS(6113), + [anon_sym_BSLASHglspl] = ACTIONS(6113), + [anon_sym_BSLASHGlspl] = ACTIONS(6113), + [anon_sym_BSLASHGLSpl] = ACTIONS(6113), + [anon_sym_BSLASHglsdisp] = ACTIONS(6113), + [anon_sym_BSLASHglslink] = ACTIONS(6113), + [anon_sym_BSLASHglstext] = ACTIONS(6113), + [anon_sym_BSLASHGlstext] = ACTIONS(6113), + [anon_sym_BSLASHGLStext] = ACTIONS(6113), + [anon_sym_BSLASHglsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), + [anon_sym_BSLASHglsplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSplural] = ACTIONS(6113), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), + [anon_sym_BSLASHglsname] = ACTIONS(6113), + [anon_sym_BSLASHGlsname] = ACTIONS(6113), + [anon_sym_BSLASHGLSname] = ACTIONS(6113), + [anon_sym_BSLASHglssymbol] = ACTIONS(6113), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), + [anon_sym_BSLASHglsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), + [anon_sym_BSLASHglsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), + [anon_sym_BSLASHglsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), + [anon_sym_BSLASHglsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), + [anon_sym_BSLASHglsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), + [anon_sym_BSLASHnewacronym] = ACTIONS(6113), + [anon_sym_BSLASHacrshort] = ACTIONS(6113), + [anon_sym_BSLASHAcrshort] = ACTIONS(6113), + [anon_sym_BSLASHACRshort] = ACTIONS(6113), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), + [anon_sym_BSLASHacrlong] = ACTIONS(6113), + [anon_sym_BSLASHAcrlong] = ACTIONS(6113), + [anon_sym_BSLASHACRlong] = ACTIONS(6113), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), + [anon_sym_BSLASHacrfull] = ACTIONS(6113), + [anon_sym_BSLASHAcrfull] = ACTIONS(6113), + [anon_sym_BSLASHACRfull] = ACTIONS(6113), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), + [anon_sym_BSLASHacs] = ACTIONS(6113), + [anon_sym_BSLASHAcs] = ACTIONS(6113), + [anon_sym_BSLASHacsp] = ACTIONS(6113), + [anon_sym_BSLASHAcsp] = ACTIONS(6113), + [anon_sym_BSLASHacl] = ACTIONS(6113), + [anon_sym_BSLASHAcl] = ACTIONS(6113), + [anon_sym_BSLASHaclp] = ACTIONS(6113), + [anon_sym_BSLASHAclp] = ACTIONS(6113), + [anon_sym_BSLASHacf] = ACTIONS(6113), + [anon_sym_BSLASHAcf] = ACTIONS(6113), + [anon_sym_BSLASHacfp] = ACTIONS(6113), + [anon_sym_BSLASHAcfp] = ACTIONS(6113), + [anon_sym_BSLASHac] = ACTIONS(6113), + [anon_sym_BSLASHAc] = ACTIONS(6113), + [anon_sym_BSLASHacp] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), + [anon_sym_BSLASHcolor] = ACTIONS(6113), + [anon_sym_BSLASHcolorbox] = ACTIONS(6113), + [anon_sym_BSLASHtextcolor] = ACTIONS(6113), + [anon_sym_BSLASHpagecolor] = ACTIONS(6113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), + }, + [1759] = { + [sym_command_name] = ACTIONS(6109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6109), + [anon_sym_RBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6107), + [anon_sym_RBRACE] = ACTIONS(6107), + [sym_word] = ACTIONS(6109), + [sym_placeholder] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym__] = ACTIONS(6109), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_SQUOTE] = ACTIONS(6109), + [anon_sym_BSLASHtitle] = ACTIONS(6109), + [anon_sym_BSLASHauthor] = ACTIONS(6109), + [anon_sym_BSLASHusepackage] = ACTIONS(6109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), + [anon_sym_BSLASHinclude] = ACTIONS(6109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), + [anon_sym_BSLASHinput] = ACTIONS(6109), + [anon_sym_BSLASHsubfile] = ACTIONS(6109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), + [anon_sym_BSLASHbibliography] = ACTIONS(6109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), + [anon_sym_BSLASHincludesvg] = ACTIONS(6109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), + [anon_sym_BSLASHimport] = ACTIONS(6109), + [anon_sym_BSLASHsubimport] = ACTIONS(6109), + [anon_sym_BSLASHinputfrom] = ACTIONS(6109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), + [anon_sym_BSLASHincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), + [anon_sym_BSLASHcaption] = ACTIONS(6109), + [anon_sym_BSLASHcite] = ACTIONS(6109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCite] = ACTIONS(6109), + [anon_sym_BSLASHnocite] = ACTIONS(6109), + [anon_sym_BSLASHcitet] = ACTIONS(6109), + [anon_sym_BSLASHcitep] = ACTIONS(6109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteauthor] = ACTIONS(6109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitetitle] = ACTIONS(6109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteyear] = ACTIONS(6109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6107), + [anon_sym_BSLASHcitedate] = ACTIONS(6109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6107), + [anon_sym_BSLASHciteurl] = ACTIONS(6109), + [anon_sym_BSLASHfullcite] = ACTIONS(6109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), + [anon_sym_BSLASHcitealt] = ACTIONS(6109), + [anon_sym_BSLASHcitealp] = ACTIONS(6109), + [anon_sym_BSLASHcitetext] = ACTIONS(6109), + [anon_sym_BSLASHparencite] = ACTIONS(6109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHParencite] = ACTIONS(6109), + [anon_sym_BSLASHfootcite] = ACTIONS(6109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), + [anon_sym_BSLASHtextcite] = ACTIONS(6109), + [anon_sym_BSLASHTextcite] = ACTIONS(6109), + [anon_sym_BSLASHsmartcite] = ACTIONS(6109), + [anon_sym_BSLASHSmartcite] = ACTIONS(6109), + [anon_sym_BSLASHsupercite] = ACTIONS(6109), + [anon_sym_BSLASHautocite] = ACTIONS(6109), + [anon_sym_BSLASHAutocite] = ACTIONS(6109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6107), + [anon_sym_BSLASHvolcite] = ACTIONS(6109), + [anon_sym_BSLASHVolcite] = ACTIONS(6109), + [anon_sym_BSLASHpvolcite] = ACTIONS(6109), + [anon_sym_BSLASHPvolcite] = ACTIONS(6109), + [anon_sym_BSLASHfvolcite] = ACTIONS(6109), + [anon_sym_BSLASHftvolcite] = ACTIONS(6109), + [anon_sym_BSLASHsvolcite] = ACTIONS(6109), + [anon_sym_BSLASHSvolcite] = ACTIONS(6109), + [anon_sym_BSLASHtvolcite] = ACTIONS(6109), + [anon_sym_BSLASHTvolcite] = ACTIONS(6109), + [anon_sym_BSLASHavolcite] = ACTIONS(6109), + [anon_sym_BSLASHAvolcite] = ACTIONS(6109), + [anon_sym_BSLASHnotecite] = ACTIONS(6109), + [anon_sym_BSLASHNotecite] = ACTIONS(6109), + [anon_sym_BSLASHpnotecite] = ACTIONS(6109), + [anon_sym_BSLASHPnotecite] = ACTIONS(6109), + [anon_sym_BSLASHfnotecite] = ACTIONS(6109), + [anon_sym_BSLASHlabel] = ACTIONS(6109), + [anon_sym_BSLASHref] = ACTIONS(6109), + [anon_sym_BSLASHeqref] = ACTIONS(6109), + [anon_sym_BSLASHvref] = ACTIONS(6109), + [anon_sym_BSLASHVref] = ACTIONS(6109), + [anon_sym_BSLASHautoref] = ACTIONS(6109), + [anon_sym_BSLASHpageref] = ACTIONS(6109), + [anon_sym_BSLASHcref] = ACTIONS(6109), + [anon_sym_BSLASHCref] = ACTIONS(6109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnameCref] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), + [anon_sym_BSLASHlabelcref] = ACTIONS(6109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange] = ACTIONS(6109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHCrefrange] = ACTIONS(6109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6107), + [anon_sym_BSLASHnewlabel] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand] = ACTIONS(6109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdef] = ACTIONS(6109), + [anon_sym_BSLASHlet] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), + [anon_sym_BSLASHgls] = ACTIONS(6109), + [anon_sym_BSLASHGls] = ACTIONS(6109), + [anon_sym_BSLASHGLS] = ACTIONS(6109), + [anon_sym_BSLASHglspl] = ACTIONS(6109), + [anon_sym_BSLASHGlspl] = ACTIONS(6109), + [anon_sym_BSLASHGLSpl] = ACTIONS(6109), + [anon_sym_BSLASHglsdisp] = ACTIONS(6109), + [anon_sym_BSLASHglslink] = ACTIONS(6109), + [anon_sym_BSLASHglstext] = ACTIONS(6109), + [anon_sym_BSLASHGlstext] = ACTIONS(6109), + [anon_sym_BSLASHGLStext] = ACTIONS(6109), + [anon_sym_BSLASHglsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), + [anon_sym_BSLASHglsplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSplural] = ACTIONS(6109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), + [anon_sym_BSLASHglsname] = ACTIONS(6109), + [anon_sym_BSLASHGlsname] = ACTIONS(6109), + [anon_sym_BSLASHGLSname] = ACTIONS(6109), + [anon_sym_BSLASHglssymbol] = ACTIONS(6109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), + [anon_sym_BSLASHglsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), + [anon_sym_BSLASHglsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), + [anon_sym_BSLASHglsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), + [anon_sym_BSLASHglsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), + [anon_sym_BSLASHglsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6109), + [anon_sym_BSLASHacrshort] = ACTIONS(6109), + [anon_sym_BSLASHAcrshort] = ACTIONS(6109), + [anon_sym_BSLASHACRshort] = ACTIONS(6109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), + [anon_sym_BSLASHacrlong] = ACTIONS(6109), + [anon_sym_BSLASHAcrlong] = ACTIONS(6109), + [anon_sym_BSLASHACRlong] = ACTIONS(6109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), + [anon_sym_BSLASHacrfull] = ACTIONS(6109), + [anon_sym_BSLASHAcrfull] = ACTIONS(6109), + [anon_sym_BSLASHACRfull] = ACTIONS(6109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), + [anon_sym_BSLASHacs] = ACTIONS(6109), + [anon_sym_BSLASHAcs] = ACTIONS(6109), + [anon_sym_BSLASHacsp] = ACTIONS(6109), + [anon_sym_BSLASHAcsp] = ACTIONS(6109), + [anon_sym_BSLASHacl] = ACTIONS(6109), + [anon_sym_BSLASHAcl] = ACTIONS(6109), + [anon_sym_BSLASHaclp] = ACTIONS(6109), + [anon_sym_BSLASHAclp] = ACTIONS(6109), + [anon_sym_BSLASHacf] = ACTIONS(6109), + [anon_sym_BSLASHAcf] = ACTIONS(6109), + [anon_sym_BSLASHacfp] = ACTIONS(6109), + [anon_sym_BSLASHAcfp] = ACTIONS(6109), + [anon_sym_BSLASHac] = ACTIONS(6109), + [anon_sym_BSLASHAc] = ACTIONS(6109), + [anon_sym_BSLASHacp] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), + [anon_sym_BSLASHcolor] = ACTIONS(6109), + [anon_sym_BSLASHcolorbox] = ACTIONS(6109), + [anon_sym_BSLASHtextcolor] = ACTIONS(6109), + [anon_sym_BSLASHpagecolor] = ACTIONS(6109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), + }, + [1760] = { + [sym_command_name] = ACTIONS(5945), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5945), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [sym_word] = ACTIONS(5945), + [sym_placeholder] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5945), + [anon_sym_SLASH] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5945), + [anon_sym__] = ACTIONS(5945), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5945), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_SQUOTE] = ACTIONS(5945), + [anon_sym_BSLASHtitle] = ACTIONS(5945), + [anon_sym_BSLASHauthor] = ACTIONS(5945), + [anon_sym_BSLASHusepackage] = ACTIONS(5945), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5945), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5945), + [anon_sym_BSLASHinclude] = ACTIONS(5945), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5945), + [anon_sym_BSLASHinput] = ACTIONS(5945), + [anon_sym_BSLASHsubfile] = ACTIONS(5945), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5945), + [anon_sym_BSLASHbibliography] = ACTIONS(5945), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5945), + [anon_sym_BSLASHincludesvg] = ACTIONS(5945), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5945), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5945), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5945), + [anon_sym_BSLASHimport] = ACTIONS(5945), + [anon_sym_BSLASHsubimport] = ACTIONS(5945), + [anon_sym_BSLASHinputfrom] = ACTIONS(5945), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5945), + [anon_sym_BSLASHincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5945), + [anon_sym_BSLASHcaption] = ACTIONS(5945), + [anon_sym_BSLASHcite] = ACTIONS(5945), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCite] = ACTIONS(5945), + [anon_sym_BSLASHnocite] = ACTIONS(5945), + [anon_sym_BSLASHcitet] = ACTIONS(5945), + [anon_sym_BSLASHcitep] = ACTIONS(5945), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteauthor] = ACTIONS(5945), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5945), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitetitle] = ACTIONS(5945), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteyear] = ACTIONS(5945), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5943), + [anon_sym_BSLASHcitedate] = ACTIONS(5945), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5943), + [anon_sym_BSLASHciteurl] = ACTIONS(5945), + [anon_sym_BSLASHfullcite] = ACTIONS(5945), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5945), + [anon_sym_BSLASHcitealt] = ACTIONS(5945), + [anon_sym_BSLASHcitealp] = ACTIONS(5945), + [anon_sym_BSLASHcitetext] = ACTIONS(5945), + [anon_sym_BSLASHparencite] = ACTIONS(5945), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHParencite] = ACTIONS(5945), + [anon_sym_BSLASHfootcite] = ACTIONS(5945), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5945), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5945), + [anon_sym_BSLASHtextcite] = ACTIONS(5945), + [anon_sym_BSLASHTextcite] = ACTIONS(5945), + [anon_sym_BSLASHsmartcite] = ACTIONS(5945), + [anon_sym_BSLASHSmartcite] = ACTIONS(5945), + [anon_sym_BSLASHsupercite] = ACTIONS(5945), + [anon_sym_BSLASHautocite] = ACTIONS(5945), + [anon_sym_BSLASHAutocite] = ACTIONS(5945), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5943), + [anon_sym_BSLASHvolcite] = ACTIONS(5945), + [anon_sym_BSLASHVolcite] = ACTIONS(5945), + [anon_sym_BSLASHpvolcite] = ACTIONS(5945), + [anon_sym_BSLASHPvolcite] = ACTIONS(5945), + [anon_sym_BSLASHfvolcite] = ACTIONS(5945), + [anon_sym_BSLASHftvolcite] = ACTIONS(5945), + [anon_sym_BSLASHsvolcite] = ACTIONS(5945), + [anon_sym_BSLASHSvolcite] = ACTIONS(5945), + [anon_sym_BSLASHtvolcite] = ACTIONS(5945), + [anon_sym_BSLASHTvolcite] = ACTIONS(5945), + [anon_sym_BSLASHavolcite] = ACTIONS(5945), + [anon_sym_BSLASHAvolcite] = ACTIONS(5945), + [anon_sym_BSLASHnotecite] = ACTIONS(5945), + [anon_sym_BSLASHNotecite] = ACTIONS(5945), + [anon_sym_BSLASHpnotecite] = ACTIONS(5945), + [anon_sym_BSLASHPnotecite] = ACTIONS(5945), + [anon_sym_BSLASHfnotecite] = ACTIONS(5945), + [anon_sym_BSLASHlabel] = ACTIONS(5945), + [anon_sym_BSLASHref] = ACTIONS(5945), + [anon_sym_BSLASHeqref] = ACTIONS(5945), + [anon_sym_BSLASHvref] = ACTIONS(5945), + [anon_sym_BSLASHVref] = ACTIONS(5945), + [anon_sym_BSLASHautoref] = ACTIONS(5945), + [anon_sym_BSLASHpageref] = ACTIONS(5945), + [anon_sym_BSLASHcref] = ACTIONS(5945), + [anon_sym_BSLASHCref] = ACTIONS(5945), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnameCref] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5945), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5945), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5945), + [anon_sym_BSLASHlabelcref] = ACTIONS(5945), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange] = ACTIONS(5945), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHCrefrange] = ACTIONS(5945), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5943), + [anon_sym_BSLASHnewlabel] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand] = ACTIONS(5945), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5945), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5945), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5943), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5945), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdef] = ACTIONS(5945), + [anon_sym_BSLASHlet] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5945), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5945), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5945), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5945), + [anon_sym_BSLASHgls] = ACTIONS(5945), + [anon_sym_BSLASHGls] = ACTIONS(5945), + [anon_sym_BSLASHGLS] = ACTIONS(5945), + [anon_sym_BSLASHglspl] = ACTIONS(5945), + [anon_sym_BSLASHGlspl] = ACTIONS(5945), + [anon_sym_BSLASHGLSpl] = ACTIONS(5945), + [anon_sym_BSLASHglsdisp] = ACTIONS(5945), + [anon_sym_BSLASHglslink] = ACTIONS(5945), + [anon_sym_BSLASHglstext] = ACTIONS(5945), + [anon_sym_BSLASHGlstext] = ACTIONS(5945), + [anon_sym_BSLASHGLStext] = ACTIONS(5945), + [anon_sym_BSLASHglsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5945), + [anon_sym_BSLASHglsplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSplural] = ACTIONS(5945), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5945), + [anon_sym_BSLASHglsname] = ACTIONS(5945), + [anon_sym_BSLASHGlsname] = ACTIONS(5945), + [anon_sym_BSLASHGLSname] = ACTIONS(5945), + [anon_sym_BSLASHglssymbol] = ACTIONS(5945), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5945), + [anon_sym_BSLASHglsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5945), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5945), + [anon_sym_BSLASHglsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5945), + [anon_sym_BSLASHglsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5945), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5945), + [anon_sym_BSLASHglsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5945), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5945), + [anon_sym_BSLASHglsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5945), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5945), + [anon_sym_BSLASHnewacronym] = ACTIONS(5945), + [anon_sym_BSLASHacrshort] = ACTIONS(5945), + [anon_sym_BSLASHAcrshort] = ACTIONS(5945), + [anon_sym_BSLASHACRshort] = ACTIONS(5945), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5945), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5945), + [anon_sym_BSLASHacrlong] = ACTIONS(5945), + [anon_sym_BSLASHAcrlong] = ACTIONS(5945), + [anon_sym_BSLASHACRlong] = ACTIONS(5945), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5945), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5945), + [anon_sym_BSLASHacrfull] = ACTIONS(5945), + [anon_sym_BSLASHAcrfull] = ACTIONS(5945), + [anon_sym_BSLASHACRfull] = ACTIONS(5945), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5945), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5945), + [anon_sym_BSLASHacs] = ACTIONS(5945), + [anon_sym_BSLASHAcs] = ACTIONS(5945), + [anon_sym_BSLASHacsp] = ACTIONS(5945), + [anon_sym_BSLASHAcsp] = ACTIONS(5945), + [anon_sym_BSLASHacl] = ACTIONS(5945), + [anon_sym_BSLASHAcl] = ACTIONS(5945), + [anon_sym_BSLASHaclp] = ACTIONS(5945), + [anon_sym_BSLASHAclp] = ACTIONS(5945), + [anon_sym_BSLASHacf] = ACTIONS(5945), + [anon_sym_BSLASHAcf] = ACTIONS(5945), + [anon_sym_BSLASHacfp] = ACTIONS(5945), + [anon_sym_BSLASHAcfp] = ACTIONS(5945), + [anon_sym_BSLASHac] = ACTIONS(5945), + [anon_sym_BSLASHAc] = ACTIONS(5945), + [anon_sym_BSLASHacp] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5945), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5945), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5945), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5945), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5945), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5945), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5945), + [anon_sym_BSLASHcolor] = ACTIONS(5945), + [anon_sym_BSLASHcolorbox] = ACTIONS(5945), + [anon_sym_BSLASHtextcolor] = ACTIONS(5945), + [anon_sym_BSLASHpagecolor] = ACTIONS(5945), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5945), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5945), + }, + [1761] = { + [sym_command_name] = ACTIONS(6105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6105), + [anon_sym_RBRACK] = ACTIONS(6103), + [anon_sym_COMMA] = ACTIONS(6103), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_RBRACE] = ACTIONS(6103), + [sym_word] = ACTIONS(6105), + [sym_placeholder] = ACTIONS(6103), + [anon_sym_PLUS] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_STAR] = ACTIONS(6105), + [anon_sym_SLASH] = ACTIONS(6105), + [anon_sym_CARET] = ACTIONS(6105), + [anon_sym__] = ACTIONS(6105), + [anon_sym_LT] = ACTIONS(6105), + [anon_sym_GT] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_SQUOTE] = ACTIONS(6105), + [anon_sym_BSLASHtitle] = ACTIONS(6105), + [anon_sym_BSLASHauthor] = ACTIONS(6105), + [anon_sym_BSLASHusepackage] = ACTIONS(6105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6105), + [anon_sym_BSLASHinclude] = ACTIONS(6105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6105), + [anon_sym_BSLASHinput] = ACTIONS(6105), + [anon_sym_BSLASHsubfile] = ACTIONS(6105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6105), + [anon_sym_BSLASHbibliography] = ACTIONS(6105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6105), + [anon_sym_BSLASHincludesvg] = ACTIONS(6105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6105), + [anon_sym_BSLASHimport] = ACTIONS(6105), + [anon_sym_BSLASHsubimport] = ACTIONS(6105), + [anon_sym_BSLASHinputfrom] = ACTIONS(6105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6105), + [anon_sym_BSLASHincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6105), + [anon_sym_BSLASHcaption] = ACTIONS(6105), + [anon_sym_BSLASHcite] = ACTIONS(6105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCite] = ACTIONS(6105), + [anon_sym_BSLASHnocite] = ACTIONS(6105), + [anon_sym_BSLASHcitet] = ACTIONS(6105), + [anon_sym_BSLASHcitep] = ACTIONS(6105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteauthor] = ACTIONS(6105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitetitle] = ACTIONS(6105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteyear] = ACTIONS(6105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6103), + [anon_sym_BSLASHcitedate] = ACTIONS(6105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6103), + [anon_sym_BSLASHciteurl] = ACTIONS(6105), + [anon_sym_BSLASHfullcite] = ACTIONS(6105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6105), + [anon_sym_BSLASHcitealt] = ACTIONS(6105), + [anon_sym_BSLASHcitealp] = ACTIONS(6105), + [anon_sym_BSLASHcitetext] = ACTIONS(6105), + [anon_sym_BSLASHparencite] = ACTIONS(6105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHParencite] = ACTIONS(6105), + [anon_sym_BSLASHfootcite] = ACTIONS(6105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6105), + [anon_sym_BSLASHtextcite] = ACTIONS(6105), + [anon_sym_BSLASHTextcite] = ACTIONS(6105), + [anon_sym_BSLASHsmartcite] = ACTIONS(6105), + [anon_sym_BSLASHSmartcite] = ACTIONS(6105), + [anon_sym_BSLASHsupercite] = ACTIONS(6105), + [anon_sym_BSLASHautocite] = ACTIONS(6105), + [anon_sym_BSLASHAutocite] = ACTIONS(6105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6103), + [anon_sym_BSLASHvolcite] = ACTIONS(6105), + [anon_sym_BSLASHVolcite] = ACTIONS(6105), + [anon_sym_BSLASHpvolcite] = ACTIONS(6105), + [anon_sym_BSLASHPvolcite] = ACTIONS(6105), + [anon_sym_BSLASHfvolcite] = ACTIONS(6105), + [anon_sym_BSLASHftvolcite] = ACTIONS(6105), + [anon_sym_BSLASHsvolcite] = ACTIONS(6105), + [anon_sym_BSLASHSvolcite] = ACTIONS(6105), + [anon_sym_BSLASHtvolcite] = ACTIONS(6105), + [anon_sym_BSLASHTvolcite] = ACTIONS(6105), + [anon_sym_BSLASHavolcite] = ACTIONS(6105), + [anon_sym_BSLASHAvolcite] = ACTIONS(6105), + [anon_sym_BSLASHnotecite] = ACTIONS(6105), + [anon_sym_BSLASHNotecite] = ACTIONS(6105), + [anon_sym_BSLASHpnotecite] = ACTIONS(6105), + [anon_sym_BSLASHPnotecite] = ACTIONS(6105), + [anon_sym_BSLASHfnotecite] = ACTIONS(6105), + [anon_sym_BSLASHlabel] = ACTIONS(6105), + [anon_sym_BSLASHref] = ACTIONS(6105), + [anon_sym_BSLASHeqref] = ACTIONS(6105), + [anon_sym_BSLASHvref] = ACTIONS(6105), + [anon_sym_BSLASHVref] = ACTIONS(6105), + [anon_sym_BSLASHautoref] = ACTIONS(6105), + [anon_sym_BSLASHpageref] = ACTIONS(6105), + [anon_sym_BSLASHcref] = ACTIONS(6105), + [anon_sym_BSLASHCref] = ACTIONS(6105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnameCref] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6105), + [anon_sym_BSLASHlabelcref] = ACTIONS(6105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange] = ACTIONS(6105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHCrefrange] = ACTIONS(6105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6103), + [anon_sym_BSLASHnewlabel] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand] = ACTIONS(6105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdef] = ACTIONS(6105), + [anon_sym_BSLASHlet] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6105), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6105), + [anon_sym_BSLASHgls] = ACTIONS(6105), + [anon_sym_BSLASHGls] = ACTIONS(6105), + [anon_sym_BSLASHGLS] = ACTIONS(6105), + [anon_sym_BSLASHglspl] = ACTIONS(6105), + [anon_sym_BSLASHGlspl] = ACTIONS(6105), + [anon_sym_BSLASHGLSpl] = ACTIONS(6105), + [anon_sym_BSLASHglsdisp] = ACTIONS(6105), + [anon_sym_BSLASHglslink] = ACTIONS(6105), + [anon_sym_BSLASHglstext] = ACTIONS(6105), + [anon_sym_BSLASHGlstext] = ACTIONS(6105), + [anon_sym_BSLASHGLStext] = ACTIONS(6105), + [anon_sym_BSLASHglsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6105), + [anon_sym_BSLASHglsplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSplural] = ACTIONS(6105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6105), + [anon_sym_BSLASHglsname] = ACTIONS(6105), + [anon_sym_BSLASHGlsname] = ACTIONS(6105), + [anon_sym_BSLASHGLSname] = ACTIONS(6105), + [anon_sym_BSLASHglssymbol] = ACTIONS(6105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6105), + [anon_sym_BSLASHglsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6105), + [anon_sym_BSLASHglsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6105), + [anon_sym_BSLASHglsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6105), + [anon_sym_BSLASHglsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6105), + [anon_sym_BSLASHglsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6105), + [anon_sym_BSLASHnewacronym] = ACTIONS(6105), + [anon_sym_BSLASHacrshort] = ACTIONS(6105), + [anon_sym_BSLASHAcrshort] = ACTIONS(6105), + [anon_sym_BSLASHACRshort] = ACTIONS(6105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6105), + [anon_sym_BSLASHacrlong] = ACTIONS(6105), + [anon_sym_BSLASHAcrlong] = ACTIONS(6105), + [anon_sym_BSLASHACRlong] = ACTIONS(6105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6105), + [anon_sym_BSLASHacrfull] = ACTIONS(6105), + [anon_sym_BSLASHAcrfull] = ACTIONS(6105), + [anon_sym_BSLASHACRfull] = ACTIONS(6105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6105), + [anon_sym_BSLASHacs] = ACTIONS(6105), + [anon_sym_BSLASHAcs] = ACTIONS(6105), + [anon_sym_BSLASHacsp] = ACTIONS(6105), + [anon_sym_BSLASHAcsp] = ACTIONS(6105), + [anon_sym_BSLASHacl] = ACTIONS(6105), + [anon_sym_BSLASHAcl] = ACTIONS(6105), + [anon_sym_BSLASHaclp] = ACTIONS(6105), + [anon_sym_BSLASHAclp] = ACTIONS(6105), + [anon_sym_BSLASHacf] = ACTIONS(6105), + [anon_sym_BSLASHAcf] = ACTIONS(6105), + [anon_sym_BSLASHacfp] = ACTIONS(6105), + [anon_sym_BSLASHAcfp] = ACTIONS(6105), + [anon_sym_BSLASHac] = ACTIONS(6105), + [anon_sym_BSLASHAc] = ACTIONS(6105), + [anon_sym_BSLASHacp] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6105), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6105), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6105), + [anon_sym_BSLASHcolor] = ACTIONS(6105), + [anon_sym_BSLASHcolorbox] = ACTIONS(6105), + [anon_sym_BSLASHtextcolor] = ACTIONS(6105), + [anon_sym_BSLASHpagecolor] = ACTIONS(6105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6105), + }, + [1762] = { + [sym_command_name] = ACTIONS(5791), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5791), + [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_COMMA] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(5789), + [anon_sym_RBRACE] = ACTIONS(5789), + [sym_word] = ACTIONS(5791), + [sym_placeholder] = ACTIONS(5789), + [anon_sym_PLUS] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_SLASH] = ACTIONS(5791), + [anon_sym_CARET] = ACTIONS(5791), + [anon_sym__] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5791), + [anon_sym_PIPE] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_SQUOTE] = ACTIONS(5791), + [anon_sym_BSLASHtitle] = ACTIONS(5791), + [anon_sym_BSLASHauthor] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5791), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5791), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5791), + [anon_sym_BSLASHinclude] = ACTIONS(5791), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5791), + [anon_sym_BSLASHinput] = ACTIONS(5791), + [anon_sym_BSLASHsubfile] = ACTIONS(5791), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5791), + [anon_sym_BSLASHbibliography] = ACTIONS(5791), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5791), + [anon_sym_BSLASHincludesvg] = ACTIONS(5791), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5791), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5791), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5791), + [anon_sym_BSLASHimport] = ACTIONS(5791), + [anon_sym_BSLASHsubimport] = ACTIONS(5791), + [anon_sym_BSLASHinputfrom] = ACTIONS(5791), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5791), + [anon_sym_BSLASHincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5791), + [anon_sym_BSLASHcaption] = ACTIONS(5791), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5789), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5789), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5789), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHNotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHlabel] = ACTIONS(5791), + [anon_sym_BSLASHref] = ACTIONS(5791), + [anon_sym_BSLASHeqref] = ACTIONS(5791), + [anon_sym_BSLASHvref] = ACTIONS(5791), + [anon_sym_BSLASHVref] = ACTIONS(5791), + [anon_sym_BSLASHautoref] = ACTIONS(5791), + [anon_sym_BSLASHpageref] = ACTIONS(5791), + [anon_sym_BSLASHcref] = ACTIONS(5791), + [anon_sym_BSLASHCref] = ACTIONS(5791), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnameCref] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5791), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5791), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5791), + [anon_sym_BSLASHlabelcref] = ACTIONS(5791), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange] = ACTIONS(5791), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHCrefrange] = ACTIONS(5791), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5789), + [anon_sym_BSLASHnewlabel] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand] = ACTIONS(5791), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5791), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5791), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5789), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5791), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdef] = ACTIONS(5791), + [anon_sym_BSLASHlet] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5791), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5791), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5791), + [anon_sym_BSLASHgls] = ACTIONS(5791), + [anon_sym_BSLASHGls] = ACTIONS(5791), + [anon_sym_BSLASHGLS] = ACTIONS(5791), + [anon_sym_BSLASHglspl] = ACTIONS(5791), + [anon_sym_BSLASHGlspl] = ACTIONS(5791), + [anon_sym_BSLASHGLSpl] = ACTIONS(5791), + [anon_sym_BSLASHglsdisp] = ACTIONS(5791), + [anon_sym_BSLASHglslink] = ACTIONS(5791), + [anon_sym_BSLASHglstext] = ACTIONS(5791), + [anon_sym_BSLASHGlstext] = ACTIONS(5791), + [anon_sym_BSLASHGLStext] = ACTIONS(5791), + [anon_sym_BSLASHglsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5791), + [anon_sym_BSLASHglsplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSplural] = ACTIONS(5791), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5791), + [anon_sym_BSLASHglsname] = ACTIONS(5791), + [anon_sym_BSLASHGlsname] = ACTIONS(5791), + [anon_sym_BSLASHGLSname] = ACTIONS(5791), + [anon_sym_BSLASHglssymbol] = ACTIONS(5791), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5791), + [anon_sym_BSLASHglsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5791), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5791), + [anon_sym_BSLASHglsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5791), + [anon_sym_BSLASHglsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5791), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5791), + [anon_sym_BSLASHglsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5791), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5791), + [anon_sym_BSLASHglsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5791), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5791), + [anon_sym_BSLASHnewacronym] = ACTIONS(5791), + [anon_sym_BSLASHacrshort] = ACTIONS(5791), + [anon_sym_BSLASHAcrshort] = ACTIONS(5791), + [anon_sym_BSLASHACRshort] = ACTIONS(5791), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5791), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5791), + [anon_sym_BSLASHacrlong] = ACTIONS(5791), + [anon_sym_BSLASHAcrlong] = ACTIONS(5791), + [anon_sym_BSLASHACRlong] = ACTIONS(5791), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5791), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5791), + [anon_sym_BSLASHacrfull] = ACTIONS(5791), + [anon_sym_BSLASHAcrfull] = ACTIONS(5791), + [anon_sym_BSLASHACRfull] = ACTIONS(5791), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5791), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5791), + [anon_sym_BSLASHacs] = ACTIONS(5791), + [anon_sym_BSLASHAcs] = ACTIONS(5791), + [anon_sym_BSLASHacsp] = ACTIONS(5791), + [anon_sym_BSLASHAcsp] = ACTIONS(5791), + [anon_sym_BSLASHacl] = ACTIONS(5791), + [anon_sym_BSLASHAcl] = ACTIONS(5791), + [anon_sym_BSLASHaclp] = ACTIONS(5791), + [anon_sym_BSLASHAclp] = ACTIONS(5791), + [anon_sym_BSLASHacf] = ACTIONS(5791), + [anon_sym_BSLASHAcf] = ACTIONS(5791), + [anon_sym_BSLASHacfp] = ACTIONS(5791), + [anon_sym_BSLASHAcfp] = ACTIONS(5791), + [anon_sym_BSLASHac] = ACTIONS(5791), + [anon_sym_BSLASHAc] = ACTIONS(5791), + [anon_sym_BSLASHacp] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5791), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5791), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5791), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5791), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5791), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5789), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5791), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5791), + [anon_sym_BSLASHcolor] = ACTIONS(5791), + [anon_sym_BSLASHcolorbox] = ACTIONS(5791), + [anon_sym_BSLASHtextcolor] = ACTIONS(5791), + [anon_sym_BSLASHpagecolor] = ACTIONS(5791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5791), + }, + [1763] = { + [sym_command_name] = ACTIONS(6003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6003), + [anon_sym_RBRACK] = ACTIONS(6001), + [anon_sym_COMMA] = ACTIONS(6001), + [anon_sym_EQ] = ACTIONS(6001), + [anon_sym_RBRACE] = ACTIONS(6001), + [sym_word] = ACTIONS(6003), + [sym_placeholder] = ACTIONS(6001), + [anon_sym_PLUS] = ACTIONS(6003), + [anon_sym_DASH] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_SLASH] = ACTIONS(6003), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym__] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_SQUOTE] = ACTIONS(6003), + [anon_sym_BSLASHtitle] = ACTIONS(6003), + [anon_sym_BSLASHauthor] = ACTIONS(6003), + [anon_sym_BSLASHusepackage] = ACTIONS(6003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), + [anon_sym_BSLASHinclude] = ACTIONS(6003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), + [anon_sym_BSLASHinput] = ACTIONS(6003), + [anon_sym_BSLASHsubfile] = ACTIONS(6003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), + [anon_sym_BSLASHbibliography] = ACTIONS(6003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), + [anon_sym_BSLASHincludesvg] = ACTIONS(6003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), + [anon_sym_BSLASHimport] = ACTIONS(6003), + [anon_sym_BSLASHsubimport] = ACTIONS(6003), + [anon_sym_BSLASHinputfrom] = ACTIONS(6003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), + [anon_sym_BSLASHincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), + [anon_sym_BSLASHcaption] = ACTIONS(6003), + [anon_sym_BSLASHcite] = ACTIONS(6003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCite] = ACTIONS(6003), + [anon_sym_BSLASHnocite] = ACTIONS(6003), + [anon_sym_BSLASHcitet] = ACTIONS(6003), + [anon_sym_BSLASHcitep] = ACTIONS(6003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteauthor] = ACTIONS(6003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitetitle] = ACTIONS(6003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteyear] = ACTIONS(6003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), + [anon_sym_BSLASHcitedate] = ACTIONS(6003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), + [anon_sym_BSLASHciteurl] = ACTIONS(6003), + [anon_sym_BSLASHfullcite] = ACTIONS(6003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), + [anon_sym_BSLASHcitealt] = ACTIONS(6003), + [anon_sym_BSLASHcitealp] = ACTIONS(6003), + [anon_sym_BSLASHcitetext] = ACTIONS(6003), + [anon_sym_BSLASHparencite] = ACTIONS(6003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHParencite] = ACTIONS(6003), + [anon_sym_BSLASHfootcite] = ACTIONS(6003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), + [anon_sym_BSLASHtextcite] = ACTIONS(6003), + [anon_sym_BSLASHTextcite] = ACTIONS(6003), + [anon_sym_BSLASHsmartcite] = ACTIONS(6003), + [anon_sym_BSLASHSmartcite] = ACTIONS(6003), + [anon_sym_BSLASHsupercite] = ACTIONS(6003), + [anon_sym_BSLASHautocite] = ACTIONS(6003), + [anon_sym_BSLASHAutocite] = ACTIONS(6003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), + [anon_sym_BSLASHvolcite] = ACTIONS(6003), + [anon_sym_BSLASHVolcite] = ACTIONS(6003), + [anon_sym_BSLASHpvolcite] = ACTIONS(6003), + [anon_sym_BSLASHPvolcite] = ACTIONS(6003), + [anon_sym_BSLASHfvolcite] = ACTIONS(6003), + [anon_sym_BSLASHftvolcite] = ACTIONS(6003), + [anon_sym_BSLASHsvolcite] = ACTIONS(6003), + [anon_sym_BSLASHSvolcite] = ACTIONS(6003), + [anon_sym_BSLASHtvolcite] = ACTIONS(6003), + [anon_sym_BSLASHTvolcite] = ACTIONS(6003), + [anon_sym_BSLASHavolcite] = ACTIONS(6003), + [anon_sym_BSLASHAvolcite] = ACTIONS(6003), + [anon_sym_BSLASHnotecite] = ACTIONS(6003), + [anon_sym_BSLASHNotecite] = ACTIONS(6003), + [anon_sym_BSLASHpnotecite] = ACTIONS(6003), + [anon_sym_BSLASHPnotecite] = ACTIONS(6003), + [anon_sym_BSLASHfnotecite] = ACTIONS(6003), + [anon_sym_BSLASHlabel] = ACTIONS(6003), + [anon_sym_BSLASHref] = ACTIONS(6003), + [anon_sym_BSLASHeqref] = ACTIONS(6003), + [anon_sym_BSLASHvref] = ACTIONS(6003), + [anon_sym_BSLASHVref] = ACTIONS(6003), + [anon_sym_BSLASHautoref] = ACTIONS(6003), + [anon_sym_BSLASHpageref] = ACTIONS(6003), + [anon_sym_BSLASHcref] = ACTIONS(6003), + [anon_sym_BSLASHCref] = ACTIONS(6003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnameCref] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), + [anon_sym_BSLASHlabelcref] = ACTIONS(6003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange] = ACTIONS(6003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHCrefrange] = ACTIONS(6003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), + [anon_sym_BSLASHnewlabel] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand] = ACTIONS(6003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdef] = ACTIONS(6003), + [anon_sym_BSLASHlet] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), + [anon_sym_BSLASHgls] = ACTIONS(6003), + [anon_sym_BSLASHGls] = ACTIONS(6003), + [anon_sym_BSLASHGLS] = ACTIONS(6003), + [anon_sym_BSLASHglspl] = ACTIONS(6003), + [anon_sym_BSLASHGlspl] = ACTIONS(6003), + [anon_sym_BSLASHGLSpl] = ACTIONS(6003), + [anon_sym_BSLASHglsdisp] = ACTIONS(6003), + [anon_sym_BSLASHglslink] = ACTIONS(6003), + [anon_sym_BSLASHglstext] = ACTIONS(6003), + [anon_sym_BSLASHGlstext] = ACTIONS(6003), + [anon_sym_BSLASHGLStext] = ACTIONS(6003), + [anon_sym_BSLASHglsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), + [anon_sym_BSLASHglsplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSplural] = ACTIONS(6003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), + [anon_sym_BSLASHglsname] = ACTIONS(6003), + [anon_sym_BSLASHGlsname] = ACTIONS(6003), + [anon_sym_BSLASHGLSname] = ACTIONS(6003), + [anon_sym_BSLASHglssymbol] = ACTIONS(6003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), + [anon_sym_BSLASHglsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), + [anon_sym_BSLASHglsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), + [anon_sym_BSLASHglsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), + [anon_sym_BSLASHglsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), + [anon_sym_BSLASHglsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), + [anon_sym_BSLASHnewacronym] = ACTIONS(6003), + [anon_sym_BSLASHacrshort] = ACTIONS(6003), + [anon_sym_BSLASHAcrshort] = ACTIONS(6003), + [anon_sym_BSLASHACRshort] = ACTIONS(6003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), + [anon_sym_BSLASHacrlong] = ACTIONS(6003), + [anon_sym_BSLASHAcrlong] = ACTIONS(6003), + [anon_sym_BSLASHACRlong] = ACTIONS(6003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), + [anon_sym_BSLASHacrfull] = ACTIONS(6003), + [anon_sym_BSLASHAcrfull] = ACTIONS(6003), + [anon_sym_BSLASHACRfull] = ACTIONS(6003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), + [anon_sym_BSLASHacs] = ACTIONS(6003), + [anon_sym_BSLASHAcs] = ACTIONS(6003), + [anon_sym_BSLASHacsp] = ACTIONS(6003), + [anon_sym_BSLASHAcsp] = ACTIONS(6003), + [anon_sym_BSLASHacl] = ACTIONS(6003), + [anon_sym_BSLASHAcl] = ACTIONS(6003), + [anon_sym_BSLASHaclp] = ACTIONS(6003), + [anon_sym_BSLASHAclp] = ACTIONS(6003), + [anon_sym_BSLASHacf] = ACTIONS(6003), + [anon_sym_BSLASHAcf] = ACTIONS(6003), + [anon_sym_BSLASHacfp] = ACTIONS(6003), + [anon_sym_BSLASHAcfp] = ACTIONS(6003), + [anon_sym_BSLASHac] = ACTIONS(6003), + [anon_sym_BSLASHAc] = ACTIONS(6003), + [anon_sym_BSLASHacp] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), + [anon_sym_BSLASHcolor] = ACTIONS(6003), + [anon_sym_BSLASHcolorbox] = ACTIONS(6003), + [anon_sym_BSLASHtextcolor] = ACTIONS(6003), + [anon_sym_BSLASHpagecolor] = ACTIONS(6003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), + }, + [1764] = { + [sym_command_name] = ACTIONS(6065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6065), + [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_COMMA] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6063), + [sym_word] = ACTIONS(6065), + [sym_placeholder] = ACTIONS(6063), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_CARET] = ACTIONS(6065), + [anon_sym__] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_SQUOTE] = ACTIONS(6065), + [anon_sym_BSLASHtitle] = ACTIONS(6065), + [anon_sym_BSLASHauthor] = ACTIONS(6065), + [anon_sym_BSLASHusepackage] = ACTIONS(6065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6065), + [anon_sym_BSLASHinclude] = ACTIONS(6065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6065), + [anon_sym_BSLASHinput] = ACTIONS(6065), + [anon_sym_BSLASHsubfile] = ACTIONS(6065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6065), + [anon_sym_BSLASHbibliography] = ACTIONS(6065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6065), + [anon_sym_BSLASHincludesvg] = ACTIONS(6065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6065), + [anon_sym_BSLASHimport] = ACTIONS(6065), + [anon_sym_BSLASHsubimport] = ACTIONS(6065), + [anon_sym_BSLASHinputfrom] = ACTIONS(6065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6065), + [anon_sym_BSLASHincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6065), + [anon_sym_BSLASHcaption] = ACTIONS(6065), + [anon_sym_BSLASHcite] = ACTIONS(6065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCite] = ACTIONS(6065), + [anon_sym_BSLASHnocite] = ACTIONS(6065), + [anon_sym_BSLASHcitet] = ACTIONS(6065), + [anon_sym_BSLASHcitep] = ACTIONS(6065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteauthor] = ACTIONS(6065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitetitle] = ACTIONS(6065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteyear] = ACTIONS(6065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6063), + [anon_sym_BSLASHcitedate] = ACTIONS(6065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6063), + [anon_sym_BSLASHciteurl] = ACTIONS(6065), + [anon_sym_BSLASHfullcite] = ACTIONS(6065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6065), + [anon_sym_BSLASHcitealt] = ACTIONS(6065), + [anon_sym_BSLASHcitealp] = ACTIONS(6065), + [anon_sym_BSLASHcitetext] = ACTIONS(6065), + [anon_sym_BSLASHparencite] = ACTIONS(6065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHParencite] = ACTIONS(6065), + [anon_sym_BSLASHfootcite] = ACTIONS(6065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6065), + [anon_sym_BSLASHtextcite] = ACTIONS(6065), + [anon_sym_BSLASHTextcite] = ACTIONS(6065), + [anon_sym_BSLASHsmartcite] = ACTIONS(6065), + [anon_sym_BSLASHSmartcite] = ACTIONS(6065), + [anon_sym_BSLASHsupercite] = ACTIONS(6065), + [anon_sym_BSLASHautocite] = ACTIONS(6065), + [anon_sym_BSLASHAutocite] = ACTIONS(6065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6063), + [anon_sym_BSLASHvolcite] = ACTIONS(6065), + [anon_sym_BSLASHVolcite] = ACTIONS(6065), + [anon_sym_BSLASHpvolcite] = ACTIONS(6065), + [anon_sym_BSLASHPvolcite] = ACTIONS(6065), + [anon_sym_BSLASHfvolcite] = ACTIONS(6065), + [anon_sym_BSLASHftvolcite] = ACTIONS(6065), + [anon_sym_BSLASHsvolcite] = ACTIONS(6065), + [anon_sym_BSLASHSvolcite] = ACTIONS(6065), + [anon_sym_BSLASHtvolcite] = ACTIONS(6065), + [anon_sym_BSLASHTvolcite] = ACTIONS(6065), + [anon_sym_BSLASHavolcite] = ACTIONS(6065), + [anon_sym_BSLASHAvolcite] = ACTIONS(6065), + [anon_sym_BSLASHnotecite] = ACTIONS(6065), + [anon_sym_BSLASHNotecite] = ACTIONS(6065), + [anon_sym_BSLASHpnotecite] = ACTIONS(6065), + [anon_sym_BSLASHPnotecite] = ACTIONS(6065), + [anon_sym_BSLASHfnotecite] = ACTIONS(6065), + [anon_sym_BSLASHlabel] = ACTIONS(6065), + [anon_sym_BSLASHref] = ACTIONS(6065), + [anon_sym_BSLASHeqref] = ACTIONS(6065), + [anon_sym_BSLASHvref] = ACTIONS(6065), + [anon_sym_BSLASHVref] = ACTIONS(6065), + [anon_sym_BSLASHautoref] = ACTIONS(6065), + [anon_sym_BSLASHpageref] = ACTIONS(6065), + [anon_sym_BSLASHcref] = ACTIONS(6065), + [anon_sym_BSLASHCref] = ACTIONS(6065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnameCref] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6065), + [anon_sym_BSLASHlabelcref] = ACTIONS(6065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange] = ACTIONS(6065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHCrefrange] = ACTIONS(6065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6063), + [anon_sym_BSLASHnewlabel] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand] = ACTIONS(6065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdef] = ACTIONS(6065), + [anon_sym_BSLASHlet] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6065), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6065), + [anon_sym_BSLASHgls] = ACTIONS(6065), + [anon_sym_BSLASHGls] = ACTIONS(6065), + [anon_sym_BSLASHGLS] = ACTIONS(6065), + [anon_sym_BSLASHglspl] = ACTIONS(6065), + [anon_sym_BSLASHGlspl] = ACTIONS(6065), + [anon_sym_BSLASHGLSpl] = ACTIONS(6065), + [anon_sym_BSLASHglsdisp] = ACTIONS(6065), + [anon_sym_BSLASHglslink] = ACTIONS(6065), + [anon_sym_BSLASHglstext] = ACTIONS(6065), + [anon_sym_BSLASHGlstext] = ACTIONS(6065), + [anon_sym_BSLASHGLStext] = ACTIONS(6065), + [anon_sym_BSLASHglsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6065), + [anon_sym_BSLASHglsplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSplural] = ACTIONS(6065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6065), + [anon_sym_BSLASHglsname] = ACTIONS(6065), + [anon_sym_BSLASHGlsname] = ACTIONS(6065), + [anon_sym_BSLASHGLSname] = ACTIONS(6065), + [anon_sym_BSLASHglssymbol] = ACTIONS(6065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6065), + [anon_sym_BSLASHglsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6065), + [anon_sym_BSLASHglsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6065), + [anon_sym_BSLASHglsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6065), + [anon_sym_BSLASHglsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6065), + [anon_sym_BSLASHglsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6065), + [anon_sym_BSLASHnewacronym] = ACTIONS(6065), + [anon_sym_BSLASHacrshort] = ACTIONS(6065), + [anon_sym_BSLASHAcrshort] = ACTIONS(6065), + [anon_sym_BSLASHACRshort] = ACTIONS(6065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6065), + [anon_sym_BSLASHacrlong] = ACTIONS(6065), + [anon_sym_BSLASHAcrlong] = ACTIONS(6065), + [anon_sym_BSLASHACRlong] = ACTIONS(6065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6065), + [anon_sym_BSLASHacrfull] = ACTIONS(6065), + [anon_sym_BSLASHAcrfull] = ACTIONS(6065), + [anon_sym_BSLASHACRfull] = ACTIONS(6065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6065), + [anon_sym_BSLASHacs] = ACTIONS(6065), + [anon_sym_BSLASHAcs] = ACTIONS(6065), + [anon_sym_BSLASHacsp] = ACTIONS(6065), + [anon_sym_BSLASHAcsp] = ACTIONS(6065), + [anon_sym_BSLASHacl] = ACTIONS(6065), + [anon_sym_BSLASHAcl] = ACTIONS(6065), + [anon_sym_BSLASHaclp] = ACTIONS(6065), + [anon_sym_BSLASHAclp] = ACTIONS(6065), + [anon_sym_BSLASHacf] = ACTIONS(6065), + [anon_sym_BSLASHAcf] = ACTIONS(6065), + [anon_sym_BSLASHacfp] = ACTIONS(6065), + [anon_sym_BSLASHAcfp] = ACTIONS(6065), + [anon_sym_BSLASHac] = ACTIONS(6065), + [anon_sym_BSLASHAc] = ACTIONS(6065), + [anon_sym_BSLASHacp] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6065), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6065), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6063), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6065), + [anon_sym_BSLASHcolor] = ACTIONS(6065), + [anon_sym_BSLASHcolorbox] = ACTIONS(6065), + [anon_sym_BSLASHtextcolor] = ACTIONS(6065), + [anon_sym_BSLASHpagecolor] = ACTIONS(6065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6065), + }, + [1765] = { + [sym_command_name] = ACTIONS(6053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6053), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6051), + [anon_sym_RBRACE] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [sym_placeholder] = ACTIONS(6051), + [anon_sym_PLUS] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_STAR] = ACTIONS(6053), + [anon_sym_SLASH] = ACTIONS(6053), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym__] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6053), + [anon_sym_GT] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6053), + [anon_sym_SQUOTE] = ACTIONS(6053), + [anon_sym_BSLASHtitle] = ACTIONS(6053), + [anon_sym_BSLASHauthor] = ACTIONS(6053), + [anon_sym_BSLASHusepackage] = ACTIONS(6053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), + [anon_sym_BSLASHinclude] = ACTIONS(6053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), + [anon_sym_BSLASHinput] = ACTIONS(6053), + [anon_sym_BSLASHsubfile] = ACTIONS(6053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), + [anon_sym_BSLASHbibliography] = ACTIONS(6053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), + [anon_sym_BSLASHincludesvg] = ACTIONS(6053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), + [anon_sym_BSLASHimport] = ACTIONS(6053), + [anon_sym_BSLASHsubimport] = ACTIONS(6053), + [anon_sym_BSLASHinputfrom] = ACTIONS(6053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), + [anon_sym_BSLASHincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), + [anon_sym_BSLASHcaption] = ACTIONS(6053), + [anon_sym_BSLASHcite] = ACTIONS(6053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCite] = ACTIONS(6053), + [anon_sym_BSLASHnocite] = ACTIONS(6053), + [anon_sym_BSLASHcitet] = ACTIONS(6053), + [anon_sym_BSLASHcitep] = ACTIONS(6053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteauthor] = ACTIONS(6053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitetitle] = ACTIONS(6053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteyear] = ACTIONS(6053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), + [anon_sym_BSLASHcitedate] = ACTIONS(6053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), + [anon_sym_BSLASHciteurl] = ACTIONS(6053), + [anon_sym_BSLASHfullcite] = ACTIONS(6053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), + [anon_sym_BSLASHcitealt] = ACTIONS(6053), + [anon_sym_BSLASHcitealp] = ACTIONS(6053), + [anon_sym_BSLASHcitetext] = ACTIONS(6053), + [anon_sym_BSLASHparencite] = ACTIONS(6053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHParencite] = ACTIONS(6053), + [anon_sym_BSLASHfootcite] = ACTIONS(6053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), + [anon_sym_BSLASHtextcite] = ACTIONS(6053), + [anon_sym_BSLASHTextcite] = ACTIONS(6053), + [anon_sym_BSLASHsmartcite] = ACTIONS(6053), + [anon_sym_BSLASHSmartcite] = ACTIONS(6053), + [anon_sym_BSLASHsupercite] = ACTIONS(6053), + [anon_sym_BSLASHautocite] = ACTIONS(6053), + [anon_sym_BSLASHAutocite] = ACTIONS(6053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), + [anon_sym_BSLASHvolcite] = ACTIONS(6053), + [anon_sym_BSLASHVolcite] = ACTIONS(6053), + [anon_sym_BSLASHpvolcite] = ACTIONS(6053), + [anon_sym_BSLASHPvolcite] = ACTIONS(6053), + [anon_sym_BSLASHfvolcite] = ACTIONS(6053), + [anon_sym_BSLASHftvolcite] = ACTIONS(6053), + [anon_sym_BSLASHsvolcite] = ACTIONS(6053), + [anon_sym_BSLASHSvolcite] = ACTIONS(6053), + [anon_sym_BSLASHtvolcite] = ACTIONS(6053), + [anon_sym_BSLASHTvolcite] = ACTIONS(6053), + [anon_sym_BSLASHavolcite] = ACTIONS(6053), + [anon_sym_BSLASHAvolcite] = ACTIONS(6053), + [anon_sym_BSLASHnotecite] = ACTIONS(6053), + [anon_sym_BSLASHNotecite] = ACTIONS(6053), + [anon_sym_BSLASHpnotecite] = ACTIONS(6053), + [anon_sym_BSLASHPnotecite] = ACTIONS(6053), + [anon_sym_BSLASHfnotecite] = ACTIONS(6053), + [anon_sym_BSLASHlabel] = ACTIONS(6053), + [anon_sym_BSLASHref] = ACTIONS(6053), + [anon_sym_BSLASHeqref] = ACTIONS(6053), + [anon_sym_BSLASHvref] = ACTIONS(6053), + [anon_sym_BSLASHVref] = ACTIONS(6053), + [anon_sym_BSLASHautoref] = ACTIONS(6053), + [anon_sym_BSLASHpageref] = ACTIONS(6053), + [anon_sym_BSLASHcref] = ACTIONS(6053), + [anon_sym_BSLASHCref] = ACTIONS(6053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnameCref] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), + [anon_sym_BSLASHlabelcref] = ACTIONS(6053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange] = ACTIONS(6053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHCrefrange] = ACTIONS(6053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), + [anon_sym_BSLASHnewlabel] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand] = ACTIONS(6053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdef] = ACTIONS(6053), + [anon_sym_BSLASHlet] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), + [anon_sym_BSLASHgls] = ACTIONS(6053), + [anon_sym_BSLASHGls] = ACTIONS(6053), + [anon_sym_BSLASHGLS] = ACTIONS(6053), + [anon_sym_BSLASHglspl] = ACTIONS(6053), + [anon_sym_BSLASHGlspl] = ACTIONS(6053), + [anon_sym_BSLASHGLSpl] = ACTIONS(6053), + [anon_sym_BSLASHglsdisp] = ACTIONS(6053), + [anon_sym_BSLASHglslink] = ACTIONS(6053), + [anon_sym_BSLASHglstext] = ACTIONS(6053), + [anon_sym_BSLASHGlstext] = ACTIONS(6053), + [anon_sym_BSLASHGLStext] = ACTIONS(6053), + [anon_sym_BSLASHglsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), + [anon_sym_BSLASHglsplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSplural] = ACTIONS(6053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), + [anon_sym_BSLASHglsname] = ACTIONS(6053), + [anon_sym_BSLASHGlsname] = ACTIONS(6053), + [anon_sym_BSLASHGLSname] = ACTIONS(6053), + [anon_sym_BSLASHglssymbol] = ACTIONS(6053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), + [anon_sym_BSLASHglsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), + [anon_sym_BSLASHglsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), + [anon_sym_BSLASHglsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), + [anon_sym_BSLASHglsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), + [anon_sym_BSLASHglsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), + [anon_sym_BSLASHnewacronym] = ACTIONS(6053), + [anon_sym_BSLASHacrshort] = ACTIONS(6053), + [anon_sym_BSLASHAcrshort] = ACTIONS(6053), + [anon_sym_BSLASHACRshort] = ACTIONS(6053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), + [anon_sym_BSLASHacrlong] = ACTIONS(6053), + [anon_sym_BSLASHAcrlong] = ACTIONS(6053), + [anon_sym_BSLASHACRlong] = ACTIONS(6053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), + [anon_sym_BSLASHacrfull] = ACTIONS(6053), + [anon_sym_BSLASHAcrfull] = ACTIONS(6053), + [anon_sym_BSLASHACRfull] = ACTIONS(6053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), + [anon_sym_BSLASHacs] = ACTIONS(6053), + [anon_sym_BSLASHAcs] = ACTIONS(6053), + [anon_sym_BSLASHacsp] = ACTIONS(6053), + [anon_sym_BSLASHAcsp] = ACTIONS(6053), + [anon_sym_BSLASHacl] = ACTIONS(6053), + [anon_sym_BSLASHAcl] = ACTIONS(6053), + [anon_sym_BSLASHaclp] = ACTIONS(6053), + [anon_sym_BSLASHAclp] = ACTIONS(6053), + [anon_sym_BSLASHacf] = ACTIONS(6053), + [anon_sym_BSLASHAcf] = ACTIONS(6053), + [anon_sym_BSLASHacfp] = ACTIONS(6053), + [anon_sym_BSLASHAcfp] = ACTIONS(6053), + [anon_sym_BSLASHac] = ACTIONS(6053), + [anon_sym_BSLASHAc] = ACTIONS(6053), + [anon_sym_BSLASHacp] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), + [anon_sym_BSLASHcolor] = ACTIONS(6053), + [anon_sym_BSLASHcolorbox] = ACTIONS(6053), + [anon_sym_BSLASHtextcolor] = ACTIONS(6053), + [anon_sym_BSLASHpagecolor] = ACTIONS(6053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), + }, + [1766] = { + [sym_command_name] = ACTIONS(6101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6101), + [anon_sym_RBRACK] = ACTIONS(6099), + [anon_sym_COMMA] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_RBRACE] = ACTIONS(6099), + [sym_word] = ACTIONS(6101), + [sym_placeholder] = ACTIONS(6099), + [anon_sym_PLUS] = ACTIONS(6101), + [anon_sym_DASH] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6101), + [anon_sym_SLASH] = ACTIONS(6101), + [anon_sym_CARET] = ACTIONS(6101), + [anon_sym__] = ACTIONS(6101), + [anon_sym_LT] = ACTIONS(6101), + [anon_sym_GT] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(6101), + [anon_sym_PIPE] = ACTIONS(6101), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_SQUOTE] = ACTIONS(6101), + [anon_sym_BSLASHtitle] = ACTIONS(6101), + [anon_sym_BSLASHauthor] = ACTIONS(6101), + [anon_sym_BSLASHusepackage] = ACTIONS(6101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6101), + [anon_sym_BSLASHinclude] = ACTIONS(6101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6101), + [anon_sym_BSLASHinput] = ACTIONS(6101), + [anon_sym_BSLASHsubfile] = ACTIONS(6101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6101), + [anon_sym_BSLASHbibliography] = ACTIONS(6101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6101), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6101), + [anon_sym_BSLASHimport] = ACTIONS(6101), + [anon_sym_BSLASHsubimport] = ACTIONS(6101), + [anon_sym_BSLASHinputfrom] = ACTIONS(6101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6101), + [anon_sym_BSLASHincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6101), + [anon_sym_BSLASHcaption] = ACTIONS(6101), + [anon_sym_BSLASHcite] = ACTIONS(6101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCite] = ACTIONS(6101), + [anon_sym_BSLASHnocite] = ACTIONS(6101), + [anon_sym_BSLASHcitet] = ACTIONS(6101), + [anon_sym_BSLASHcitep] = ACTIONS(6101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteauthor] = ACTIONS(6101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitetitle] = ACTIONS(6101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteyear] = ACTIONS(6101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6099), + [anon_sym_BSLASHcitedate] = ACTIONS(6101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6099), + [anon_sym_BSLASHciteurl] = ACTIONS(6101), + [anon_sym_BSLASHfullcite] = ACTIONS(6101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6101), + [anon_sym_BSLASHcitealt] = ACTIONS(6101), + [anon_sym_BSLASHcitealp] = ACTIONS(6101), + [anon_sym_BSLASHcitetext] = ACTIONS(6101), + [anon_sym_BSLASHparencite] = ACTIONS(6101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHParencite] = ACTIONS(6101), + [anon_sym_BSLASHfootcite] = ACTIONS(6101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6101), + [anon_sym_BSLASHtextcite] = ACTIONS(6101), + [anon_sym_BSLASHTextcite] = ACTIONS(6101), + [anon_sym_BSLASHsmartcite] = ACTIONS(6101), + [anon_sym_BSLASHSmartcite] = ACTIONS(6101), + [anon_sym_BSLASHsupercite] = ACTIONS(6101), + [anon_sym_BSLASHautocite] = ACTIONS(6101), + [anon_sym_BSLASHAutocite] = ACTIONS(6101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6099), + [anon_sym_BSLASHvolcite] = ACTIONS(6101), + [anon_sym_BSLASHVolcite] = ACTIONS(6101), + [anon_sym_BSLASHpvolcite] = ACTIONS(6101), + [anon_sym_BSLASHPvolcite] = ACTIONS(6101), + [anon_sym_BSLASHfvolcite] = ACTIONS(6101), + [anon_sym_BSLASHftvolcite] = ACTIONS(6101), + [anon_sym_BSLASHsvolcite] = ACTIONS(6101), + [anon_sym_BSLASHSvolcite] = ACTIONS(6101), + [anon_sym_BSLASHtvolcite] = ACTIONS(6101), + [anon_sym_BSLASHTvolcite] = ACTIONS(6101), + [anon_sym_BSLASHavolcite] = ACTIONS(6101), + [anon_sym_BSLASHAvolcite] = ACTIONS(6101), + [anon_sym_BSLASHnotecite] = ACTIONS(6101), + [anon_sym_BSLASHNotecite] = ACTIONS(6101), + [anon_sym_BSLASHpnotecite] = ACTIONS(6101), + [anon_sym_BSLASHPnotecite] = ACTIONS(6101), + [anon_sym_BSLASHfnotecite] = ACTIONS(6101), + [anon_sym_BSLASHlabel] = ACTIONS(6101), + [anon_sym_BSLASHref] = ACTIONS(6101), + [anon_sym_BSLASHeqref] = ACTIONS(6101), + [anon_sym_BSLASHvref] = ACTIONS(6101), + [anon_sym_BSLASHVref] = ACTIONS(6101), + [anon_sym_BSLASHautoref] = ACTIONS(6101), + [anon_sym_BSLASHpageref] = ACTIONS(6101), + [anon_sym_BSLASHcref] = ACTIONS(6101), + [anon_sym_BSLASHCref] = ACTIONS(6101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnameCref] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6101), + [anon_sym_BSLASHlabelcref] = ACTIONS(6101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange] = ACTIONS(6101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHCrefrange] = ACTIONS(6101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6099), + [anon_sym_BSLASHnewlabel] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand] = ACTIONS(6101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdef] = ACTIONS(6101), + [anon_sym_BSLASHlet] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6101), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6101), + [anon_sym_BSLASHgls] = ACTIONS(6101), + [anon_sym_BSLASHGls] = ACTIONS(6101), + [anon_sym_BSLASHGLS] = ACTIONS(6101), + [anon_sym_BSLASHglspl] = ACTIONS(6101), + [anon_sym_BSLASHGlspl] = ACTIONS(6101), + [anon_sym_BSLASHGLSpl] = ACTIONS(6101), + [anon_sym_BSLASHglsdisp] = ACTIONS(6101), + [anon_sym_BSLASHglslink] = ACTIONS(6101), + [anon_sym_BSLASHglstext] = ACTIONS(6101), + [anon_sym_BSLASHGlstext] = ACTIONS(6101), + [anon_sym_BSLASHGLStext] = ACTIONS(6101), + [anon_sym_BSLASHglsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6101), + [anon_sym_BSLASHglsplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSplural] = ACTIONS(6101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6101), + [anon_sym_BSLASHglsname] = ACTIONS(6101), + [anon_sym_BSLASHGlsname] = ACTIONS(6101), + [anon_sym_BSLASHGLSname] = ACTIONS(6101), + [anon_sym_BSLASHglssymbol] = ACTIONS(6101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6101), + [anon_sym_BSLASHglsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6101), + [anon_sym_BSLASHglsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6101), + [anon_sym_BSLASHglsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6101), + [anon_sym_BSLASHglsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6101), + [anon_sym_BSLASHglsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6101), + [anon_sym_BSLASHnewacronym] = ACTIONS(6101), + [anon_sym_BSLASHacrshort] = ACTIONS(6101), + [anon_sym_BSLASHAcrshort] = ACTIONS(6101), + [anon_sym_BSLASHACRshort] = ACTIONS(6101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6101), + [anon_sym_BSLASHacrlong] = ACTIONS(6101), + [anon_sym_BSLASHAcrlong] = ACTIONS(6101), + [anon_sym_BSLASHACRlong] = ACTIONS(6101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6101), + [anon_sym_BSLASHacrfull] = ACTIONS(6101), + [anon_sym_BSLASHAcrfull] = ACTIONS(6101), + [anon_sym_BSLASHACRfull] = ACTIONS(6101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6101), + [anon_sym_BSLASHacs] = ACTIONS(6101), + [anon_sym_BSLASHAcs] = ACTIONS(6101), + [anon_sym_BSLASHacsp] = ACTIONS(6101), + [anon_sym_BSLASHAcsp] = ACTIONS(6101), + [anon_sym_BSLASHacl] = ACTIONS(6101), + [anon_sym_BSLASHAcl] = ACTIONS(6101), + [anon_sym_BSLASHaclp] = ACTIONS(6101), + [anon_sym_BSLASHAclp] = ACTIONS(6101), + [anon_sym_BSLASHacf] = ACTIONS(6101), + [anon_sym_BSLASHAcf] = ACTIONS(6101), + [anon_sym_BSLASHacfp] = ACTIONS(6101), + [anon_sym_BSLASHAcfp] = ACTIONS(6101), + [anon_sym_BSLASHac] = ACTIONS(6101), + [anon_sym_BSLASHAc] = ACTIONS(6101), + [anon_sym_BSLASHacp] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6101), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6101), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6099), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6101), + [anon_sym_BSLASHcolor] = ACTIONS(6101), + [anon_sym_BSLASHcolorbox] = ACTIONS(6101), + [anon_sym_BSLASHtextcolor] = ACTIONS(6101), + [anon_sym_BSLASHpagecolor] = ACTIONS(6101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6101), + }, + [1767] = { + [sym_command_name] = ACTIONS(6097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6097), + [anon_sym_RBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_EQ] = ACTIONS(6095), + [anon_sym_RBRACE] = ACTIONS(6095), + [sym_word] = ACTIONS(6097), + [sym_placeholder] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_CARET] = ACTIONS(6097), + [anon_sym__] = ACTIONS(6097), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_COLON] = ACTIONS(6097), + [anon_sym_SQUOTE] = ACTIONS(6097), + [anon_sym_BSLASHtitle] = ACTIONS(6097), + [anon_sym_BSLASHauthor] = ACTIONS(6097), + [anon_sym_BSLASHusepackage] = ACTIONS(6097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6097), + [anon_sym_BSLASHinclude] = ACTIONS(6097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6097), + [anon_sym_BSLASHinput] = ACTIONS(6097), + [anon_sym_BSLASHsubfile] = ACTIONS(6097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6097), + [anon_sym_BSLASHbibliography] = ACTIONS(6097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6097), + [anon_sym_BSLASHincludesvg] = ACTIONS(6097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6097), + [anon_sym_BSLASHimport] = ACTIONS(6097), + [anon_sym_BSLASHsubimport] = ACTIONS(6097), + [anon_sym_BSLASHinputfrom] = ACTIONS(6097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6097), + [anon_sym_BSLASHincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6097), + [anon_sym_BSLASHcaption] = ACTIONS(6097), + [anon_sym_BSLASHcite] = ACTIONS(6097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCite] = ACTIONS(6097), + [anon_sym_BSLASHnocite] = ACTIONS(6097), + [anon_sym_BSLASHcitet] = ACTIONS(6097), + [anon_sym_BSLASHcitep] = ACTIONS(6097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteauthor] = ACTIONS(6097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitetitle] = ACTIONS(6097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteyear] = ACTIONS(6097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6095), + [anon_sym_BSLASHcitedate] = ACTIONS(6097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6095), + [anon_sym_BSLASHciteurl] = ACTIONS(6097), + [anon_sym_BSLASHfullcite] = ACTIONS(6097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6097), + [anon_sym_BSLASHcitealt] = ACTIONS(6097), + [anon_sym_BSLASHcitealp] = ACTIONS(6097), + [anon_sym_BSLASHcitetext] = ACTIONS(6097), + [anon_sym_BSLASHparencite] = ACTIONS(6097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHParencite] = ACTIONS(6097), + [anon_sym_BSLASHfootcite] = ACTIONS(6097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6097), + [anon_sym_BSLASHtextcite] = ACTIONS(6097), + [anon_sym_BSLASHTextcite] = ACTIONS(6097), + [anon_sym_BSLASHsmartcite] = ACTIONS(6097), + [anon_sym_BSLASHSmartcite] = ACTIONS(6097), + [anon_sym_BSLASHsupercite] = ACTIONS(6097), + [anon_sym_BSLASHautocite] = ACTIONS(6097), + [anon_sym_BSLASHAutocite] = ACTIONS(6097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6095), + [anon_sym_BSLASHvolcite] = ACTIONS(6097), + [anon_sym_BSLASHVolcite] = ACTIONS(6097), + [anon_sym_BSLASHpvolcite] = ACTIONS(6097), + [anon_sym_BSLASHPvolcite] = ACTIONS(6097), + [anon_sym_BSLASHfvolcite] = ACTIONS(6097), + [anon_sym_BSLASHftvolcite] = ACTIONS(6097), + [anon_sym_BSLASHsvolcite] = ACTIONS(6097), + [anon_sym_BSLASHSvolcite] = ACTIONS(6097), + [anon_sym_BSLASHtvolcite] = ACTIONS(6097), + [anon_sym_BSLASHTvolcite] = ACTIONS(6097), + [anon_sym_BSLASHavolcite] = ACTIONS(6097), + [anon_sym_BSLASHAvolcite] = ACTIONS(6097), + [anon_sym_BSLASHnotecite] = ACTIONS(6097), + [anon_sym_BSLASHNotecite] = ACTIONS(6097), + [anon_sym_BSLASHpnotecite] = ACTIONS(6097), + [anon_sym_BSLASHPnotecite] = ACTIONS(6097), + [anon_sym_BSLASHfnotecite] = ACTIONS(6097), + [anon_sym_BSLASHlabel] = ACTIONS(6097), + [anon_sym_BSLASHref] = ACTIONS(6097), + [anon_sym_BSLASHeqref] = ACTIONS(6097), + [anon_sym_BSLASHvref] = ACTIONS(6097), + [anon_sym_BSLASHVref] = ACTIONS(6097), + [anon_sym_BSLASHautoref] = ACTIONS(6097), + [anon_sym_BSLASHpageref] = ACTIONS(6097), + [anon_sym_BSLASHcref] = ACTIONS(6097), + [anon_sym_BSLASHCref] = ACTIONS(6097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnameCref] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6097), + [anon_sym_BSLASHlabelcref] = ACTIONS(6097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange] = ACTIONS(6097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHCrefrange] = ACTIONS(6097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6095), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand] = ACTIONS(6097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdef] = ACTIONS(6097), + [anon_sym_BSLASHlet] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6097), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6097), + [anon_sym_BSLASHgls] = ACTIONS(6097), + [anon_sym_BSLASHGls] = ACTIONS(6097), + [anon_sym_BSLASHGLS] = ACTIONS(6097), + [anon_sym_BSLASHglspl] = ACTIONS(6097), + [anon_sym_BSLASHGlspl] = ACTIONS(6097), + [anon_sym_BSLASHGLSpl] = ACTIONS(6097), + [anon_sym_BSLASHglsdisp] = ACTIONS(6097), + [anon_sym_BSLASHglslink] = ACTIONS(6097), + [anon_sym_BSLASHglstext] = ACTIONS(6097), + [anon_sym_BSLASHGlstext] = ACTIONS(6097), + [anon_sym_BSLASHGLStext] = ACTIONS(6097), + [anon_sym_BSLASHglsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6097), + [anon_sym_BSLASHglsplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSplural] = ACTIONS(6097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6097), + [anon_sym_BSLASHglsname] = ACTIONS(6097), + [anon_sym_BSLASHGlsname] = ACTIONS(6097), + [anon_sym_BSLASHGLSname] = ACTIONS(6097), + [anon_sym_BSLASHglssymbol] = ACTIONS(6097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6097), + [anon_sym_BSLASHglsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6097), + [anon_sym_BSLASHglsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6097), + [anon_sym_BSLASHglsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6097), + [anon_sym_BSLASHglsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6097), + [anon_sym_BSLASHglsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6097), + [anon_sym_BSLASHnewacronym] = ACTIONS(6097), + [anon_sym_BSLASHacrshort] = ACTIONS(6097), + [anon_sym_BSLASHAcrshort] = ACTIONS(6097), + [anon_sym_BSLASHACRshort] = ACTIONS(6097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6097), + [anon_sym_BSLASHacrlong] = ACTIONS(6097), + [anon_sym_BSLASHAcrlong] = ACTIONS(6097), + [anon_sym_BSLASHACRlong] = ACTIONS(6097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6097), + [anon_sym_BSLASHacrfull] = ACTIONS(6097), + [anon_sym_BSLASHAcrfull] = ACTIONS(6097), + [anon_sym_BSLASHACRfull] = ACTIONS(6097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6097), + [anon_sym_BSLASHacs] = ACTIONS(6097), + [anon_sym_BSLASHAcs] = ACTIONS(6097), + [anon_sym_BSLASHacsp] = ACTIONS(6097), + [anon_sym_BSLASHAcsp] = ACTIONS(6097), + [anon_sym_BSLASHacl] = ACTIONS(6097), + [anon_sym_BSLASHAcl] = ACTIONS(6097), + [anon_sym_BSLASHaclp] = ACTIONS(6097), + [anon_sym_BSLASHAclp] = ACTIONS(6097), + [anon_sym_BSLASHacf] = ACTIONS(6097), + [anon_sym_BSLASHAcf] = ACTIONS(6097), + [anon_sym_BSLASHacfp] = ACTIONS(6097), + [anon_sym_BSLASHAcfp] = ACTIONS(6097), + [anon_sym_BSLASHac] = ACTIONS(6097), + [anon_sym_BSLASHAc] = ACTIONS(6097), + [anon_sym_BSLASHacp] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6097), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6097), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6095), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6097), + [anon_sym_BSLASHcolor] = ACTIONS(6097), + [anon_sym_BSLASHcolorbox] = ACTIONS(6097), + [anon_sym_BSLASHtextcolor] = ACTIONS(6097), + [anon_sym_BSLASHpagecolor] = ACTIONS(6097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6097), + }, + [1768] = { + [sym_command_name] = ACTIONS(6085), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6085), + [anon_sym_RBRACK] = ACTIONS(6083), + [anon_sym_COMMA] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6083), + [anon_sym_RBRACE] = ACTIONS(6083), + [sym_word] = ACTIONS(6085), + [sym_placeholder] = ACTIONS(6083), + [anon_sym_PLUS] = ACTIONS(6085), + [anon_sym_DASH] = ACTIONS(6085), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_SLASH] = ACTIONS(6085), + [anon_sym_CARET] = ACTIONS(6085), + [anon_sym__] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6085), + [anon_sym_GT] = ACTIONS(6085), + [anon_sym_BANG] = ACTIONS(6085), + [anon_sym_PIPE] = ACTIONS(6085), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_SQUOTE] = ACTIONS(6085), + [anon_sym_BSLASHtitle] = ACTIONS(6085), + [anon_sym_BSLASHauthor] = ACTIONS(6085), + [anon_sym_BSLASHusepackage] = ACTIONS(6085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6085), + [anon_sym_BSLASHinclude] = ACTIONS(6085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6085), + [anon_sym_BSLASHinput] = ACTIONS(6085), + [anon_sym_BSLASHsubfile] = ACTIONS(6085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6085), + [anon_sym_BSLASHbibliography] = ACTIONS(6085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6085), + [anon_sym_BSLASHincludesvg] = ACTIONS(6085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6085), + [anon_sym_BSLASHimport] = ACTIONS(6085), + [anon_sym_BSLASHsubimport] = ACTIONS(6085), + [anon_sym_BSLASHinputfrom] = ACTIONS(6085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6085), + [anon_sym_BSLASHincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6085), + [anon_sym_BSLASHcaption] = ACTIONS(6085), + [anon_sym_BSLASHcite] = ACTIONS(6085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCite] = ACTIONS(6085), + [anon_sym_BSLASHnocite] = ACTIONS(6085), + [anon_sym_BSLASHcitet] = ACTIONS(6085), + [anon_sym_BSLASHcitep] = ACTIONS(6085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteauthor] = ACTIONS(6085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitetitle] = ACTIONS(6085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteyear] = ACTIONS(6085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6083), + [anon_sym_BSLASHcitedate] = ACTIONS(6085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6083), + [anon_sym_BSLASHciteurl] = ACTIONS(6085), + [anon_sym_BSLASHfullcite] = ACTIONS(6085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6085), + [anon_sym_BSLASHcitealt] = ACTIONS(6085), + [anon_sym_BSLASHcitealp] = ACTIONS(6085), + [anon_sym_BSLASHcitetext] = ACTIONS(6085), + [anon_sym_BSLASHparencite] = ACTIONS(6085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHParencite] = ACTIONS(6085), + [anon_sym_BSLASHfootcite] = ACTIONS(6085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6085), + [anon_sym_BSLASHtextcite] = ACTIONS(6085), + [anon_sym_BSLASHTextcite] = ACTIONS(6085), + [anon_sym_BSLASHsmartcite] = ACTIONS(6085), + [anon_sym_BSLASHSmartcite] = ACTIONS(6085), + [anon_sym_BSLASHsupercite] = ACTIONS(6085), + [anon_sym_BSLASHautocite] = ACTIONS(6085), + [anon_sym_BSLASHAutocite] = ACTIONS(6085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6083), + [anon_sym_BSLASHvolcite] = ACTIONS(6085), + [anon_sym_BSLASHVolcite] = ACTIONS(6085), + [anon_sym_BSLASHpvolcite] = ACTIONS(6085), + [anon_sym_BSLASHPvolcite] = ACTIONS(6085), + [anon_sym_BSLASHfvolcite] = ACTIONS(6085), + [anon_sym_BSLASHftvolcite] = ACTIONS(6085), + [anon_sym_BSLASHsvolcite] = ACTIONS(6085), + [anon_sym_BSLASHSvolcite] = ACTIONS(6085), + [anon_sym_BSLASHtvolcite] = ACTIONS(6085), + [anon_sym_BSLASHTvolcite] = ACTIONS(6085), + [anon_sym_BSLASHavolcite] = ACTIONS(6085), + [anon_sym_BSLASHAvolcite] = ACTIONS(6085), + [anon_sym_BSLASHnotecite] = ACTIONS(6085), + [anon_sym_BSLASHNotecite] = ACTIONS(6085), + [anon_sym_BSLASHpnotecite] = ACTIONS(6085), + [anon_sym_BSLASHPnotecite] = ACTIONS(6085), + [anon_sym_BSLASHfnotecite] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6085), + [anon_sym_BSLASHref] = ACTIONS(6085), + [anon_sym_BSLASHeqref] = ACTIONS(6085), + [anon_sym_BSLASHvref] = ACTIONS(6085), + [anon_sym_BSLASHVref] = ACTIONS(6085), + [anon_sym_BSLASHautoref] = ACTIONS(6085), + [anon_sym_BSLASHpageref] = ACTIONS(6085), + [anon_sym_BSLASHcref] = ACTIONS(6085), + [anon_sym_BSLASHCref] = ACTIONS(6085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnameCref] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6085), + [anon_sym_BSLASHlabelcref] = ACTIONS(6085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange] = ACTIONS(6085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHCrefrange] = ACTIONS(6085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6083), + [anon_sym_BSLASHnewlabel] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand] = ACTIONS(6085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdef] = ACTIONS(6085), + [anon_sym_BSLASHlet] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6085), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6085), + [anon_sym_BSLASHgls] = ACTIONS(6085), + [anon_sym_BSLASHGls] = ACTIONS(6085), + [anon_sym_BSLASHGLS] = ACTIONS(6085), + [anon_sym_BSLASHglspl] = ACTIONS(6085), + [anon_sym_BSLASHGlspl] = ACTIONS(6085), + [anon_sym_BSLASHGLSpl] = ACTIONS(6085), + [anon_sym_BSLASHglsdisp] = ACTIONS(6085), + [anon_sym_BSLASHglslink] = ACTIONS(6085), + [anon_sym_BSLASHglstext] = ACTIONS(6085), + [anon_sym_BSLASHGlstext] = ACTIONS(6085), + [anon_sym_BSLASHGLStext] = ACTIONS(6085), + [anon_sym_BSLASHglsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6085), + [anon_sym_BSLASHglsplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSplural] = ACTIONS(6085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6085), + [anon_sym_BSLASHglsname] = ACTIONS(6085), + [anon_sym_BSLASHGlsname] = ACTIONS(6085), + [anon_sym_BSLASHGLSname] = ACTIONS(6085), + [anon_sym_BSLASHglssymbol] = ACTIONS(6085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6085), + [anon_sym_BSLASHglsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6085), + [anon_sym_BSLASHglsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6085), + [anon_sym_BSLASHglsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6085), + [anon_sym_BSLASHglsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6085), + [anon_sym_BSLASHglsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6085), + [anon_sym_BSLASHnewacronym] = ACTIONS(6085), + [anon_sym_BSLASHacrshort] = ACTIONS(6085), + [anon_sym_BSLASHAcrshort] = ACTIONS(6085), + [anon_sym_BSLASHACRshort] = ACTIONS(6085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6085), + [anon_sym_BSLASHacrlong] = ACTIONS(6085), + [anon_sym_BSLASHAcrlong] = ACTIONS(6085), + [anon_sym_BSLASHACRlong] = ACTIONS(6085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6085), + [anon_sym_BSLASHacrfull] = ACTIONS(6085), + [anon_sym_BSLASHAcrfull] = ACTIONS(6085), + [anon_sym_BSLASHACRfull] = ACTIONS(6085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6085), + [anon_sym_BSLASHacs] = ACTIONS(6085), + [anon_sym_BSLASHAcs] = ACTIONS(6085), + [anon_sym_BSLASHacsp] = ACTIONS(6085), + [anon_sym_BSLASHAcsp] = ACTIONS(6085), + [anon_sym_BSLASHacl] = ACTIONS(6085), + [anon_sym_BSLASHAcl] = ACTIONS(6085), + [anon_sym_BSLASHaclp] = ACTIONS(6085), + [anon_sym_BSLASHAclp] = ACTIONS(6085), + [anon_sym_BSLASHacf] = ACTIONS(6085), + [anon_sym_BSLASHAcf] = ACTIONS(6085), + [anon_sym_BSLASHacfp] = ACTIONS(6085), + [anon_sym_BSLASHAcfp] = ACTIONS(6085), + [anon_sym_BSLASHac] = ACTIONS(6085), + [anon_sym_BSLASHAc] = ACTIONS(6085), + [anon_sym_BSLASHacp] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6085), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6085), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6083), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6085), + [anon_sym_BSLASHcolor] = ACTIONS(6085), + [anon_sym_BSLASHcolorbox] = ACTIONS(6085), + [anon_sym_BSLASHtextcolor] = ACTIONS(6085), + [anon_sym_BSLASHpagecolor] = ACTIONS(6085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6085), + }, + [1769] = { + [sym_command_name] = ACTIONS(6093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6093), + [anon_sym_RBRACK] = ACTIONS(6091), + [anon_sym_COMMA] = ACTIONS(6091), + [anon_sym_EQ] = ACTIONS(6091), + [anon_sym_RBRACE] = ACTIONS(6091), + [sym_word] = ACTIONS(6093), + [sym_placeholder] = ACTIONS(6091), + [anon_sym_PLUS] = ACTIONS(6093), + [anon_sym_DASH] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6093), + [anon_sym_SLASH] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(6093), + [anon_sym__] = ACTIONS(6093), + [anon_sym_LT] = ACTIONS(6093), + [anon_sym_GT] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [anon_sym_PIPE] = ACTIONS(6093), + [anon_sym_COLON] = ACTIONS(6093), + [anon_sym_SQUOTE] = ACTIONS(6093), + [anon_sym_BSLASHtitle] = ACTIONS(6093), + [anon_sym_BSLASHauthor] = ACTIONS(6093), + [anon_sym_BSLASHusepackage] = ACTIONS(6093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6093), + [anon_sym_BSLASHinclude] = ACTIONS(6093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6093), + [anon_sym_BSLASHinput] = ACTIONS(6093), + [anon_sym_BSLASHsubfile] = ACTIONS(6093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6093), + [anon_sym_BSLASHbibliography] = ACTIONS(6093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6093), + [anon_sym_BSLASHincludesvg] = ACTIONS(6093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6093), + [anon_sym_BSLASHimport] = ACTIONS(6093), + [anon_sym_BSLASHsubimport] = ACTIONS(6093), + [anon_sym_BSLASHinputfrom] = ACTIONS(6093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6093), + [anon_sym_BSLASHincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6093), + [anon_sym_BSLASHcaption] = ACTIONS(6093), + [anon_sym_BSLASHcite] = ACTIONS(6093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCite] = ACTIONS(6093), + [anon_sym_BSLASHnocite] = ACTIONS(6093), + [anon_sym_BSLASHcitet] = ACTIONS(6093), + [anon_sym_BSLASHcitep] = ACTIONS(6093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteauthor] = ACTIONS(6093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitetitle] = ACTIONS(6093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteyear] = ACTIONS(6093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6091), + [anon_sym_BSLASHcitedate] = ACTIONS(6093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6091), + [anon_sym_BSLASHciteurl] = ACTIONS(6093), + [anon_sym_BSLASHfullcite] = ACTIONS(6093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6093), + [anon_sym_BSLASHcitealt] = ACTIONS(6093), + [anon_sym_BSLASHcitealp] = ACTIONS(6093), + [anon_sym_BSLASHcitetext] = ACTIONS(6093), + [anon_sym_BSLASHparencite] = ACTIONS(6093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHParencite] = ACTIONS(6093), + [anon_sym_BSLASHfootcite] = ACTIONS(6093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6093), + [anon_sym_BSLASHtextcite] = ACTIONS(6093), + [anon_sym_BSLASHTextcite] = ACTIONS(6093), + [anon_sym_BSLASHsmartcite] = ACTIONS(6093), + [anon_sym_BSLASHSmartcite] = ACTIONS(6093), + [anon_sym_BSLASHsupercite] = ACTIONS(6093), + [anon_sym_BSLASHautocite] = ACTIONS(6093), + [anon_sym_BSLASHAutocite] = ACTIONS(6093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6091), + [anon_sym_BSLASHvolcite] = ACTIONS(6093), + [anon_sym_BSLASHVolcite] = ACTIONS(6093), + [anon_sym_BSLASHpvolcite] = ACTIONS(6093), + [anon_sym_BSLASHPvolcite] = ACTIONS(6093), + [anon_sym_BSLASHfvolcite] = ACTIONS(6093), + [anon_sym_BSLASHftvolcite] = ACTIONS(6093), + [anon_sym_BSLASHsvolcite] = ACTIONS(6093), + [anon_sym_BSLASHSvolcite] = ACTIONS(6093), + [anon_sym_BSLASHtvolcite] = ACTIONS(6093), + [anon_sym_BSLASHTvolcite] = ACTIONS(6093), + [anon_sym_BSLASHavolcite] = ACTIONS(6093), + [anon_sym_BSLASHAvolcite] = ACTIONS(6093), + [anon_sym_BSLASHnotecite] = ACTIONS(6093), + [anon_sym_BSLASHNotecite] = ACTIONS(6093), + [anon_sym_BSLASHpnotecite] = ACTIONS(6093), + [anon_sym_BSLASHPnotecite] = ACTIONS(6093), + [anon_sym_BSLASHfnotecite] = ACTIONS(6093), + [anon_sym_BSLASHlabel] = ACTIONS(6093), + [anon_sym_BSLASHref] = ACTIONS(6093), + [anon_sym_BSLASHeqref] = ACTIONS(6093), + [anon_sym_BSLASHvref] = ACTIONS(6093), + [anon_sym_BSLASHVref] = ACTIONS(6093), + [anon_sym_BSLASHautoref] = ACTIONS(6093), + [anon_sym_BSLASHpageref] = ACTIONS(6093), + [anon_sym_BSLASHcref] = ACTIONS(6093), + [anon_sym_BSLASHCref] = ACTIONS(6093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnameCref] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6093), + [anon_sym_BSLASHlabelcref] = ACTIONS(6093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange] = ACTIONS(6093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHCrefrange] = ACTIONS(6093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6091), + [anon_sym_BSLASHnewlabel] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand] = ACTIONS(6093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdef] = ACTIONS(6093), + [anon_sym_BSLASHlet] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6093), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6093), + [anon_sym_BSLASHgls] = ACTIONS(6093), + [anon_sym_BSLASHGls] = ACTIONS(6093), + [anon_sym_BSLASHGLS] = ACTIONS(6093), + [anon_sym_BSLASHglspl] = ACTIONS(6093), + [anon_sym_BSLASHGlspl] = ACTIONS(6093), + [anon_sym_BSLASHGLSpl] = ACTIONS(6093), + [anon_sym_BSLASHglsdisp] = ACTIONS(6093), + [anon_sym_BSLASHglslink] = ACTIONS(6093), + [anon_sym_BSLASHglstext] = ACTIONS(6093), + [anon_sym_BSLASHGlstext] = ACTIONS(6093), + [anon_sym_BSLASHGLStext] = ACTIONS(6093), + [anon_sym_BSLASHglsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6093), + [anon_sym_BSLASHglsplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSplural] = ACTIONS(6093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6093), + [anon_sym_BSLASHglsname] = ACTIONS(6093), + [anon_sym_BSLASHGlsname] = ACTIONS(6093), + [anon_sym_BSLASHGLSname] = ACTIONS(6093), + [anon_sym_BSLASHglssymbol] = ACTIONS(6093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6093), + [anon_sym_BSLASHglsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6093), + [anon_sym_BSLASHglsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6093), + [anon_sym_BSLASHglsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6093), + [anon_sym_BSLASHglsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6093), + [anon_sym_BSLASHglsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6093), + [anon_sym_BSLASHnewacronym] = ACTIONS(6093), + [anon_sym_BSLASHacrshort] = ACTIONS(6093), + [anon_sym_BSLASHAcrshort] = ACTIONS(6093), + [anon_sym_BSLASHACRshort] = ACTIONS(6093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6093), + [anon_sym_BSLASHacrlong] = ACTIONS(6093), + [anon_sym_BSLASHAcrlong] = ACTIONS(6093), + [anon_sym_BSLASHACRlong] = ACTIONS(6093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6093), + [anon_sym_BSLASHacrfull] = ACTIONS(6093), + [anon_sym_BSLASHAcrfull] = ACTIONS(6093), + [anon_sym_BSLASHACRfull] = ACTIONS(6093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6093), + [anon_sym_BSLASHacs] = ACTIONS(6093), + [anon_sym_BSLASHAcs] = ACTIONS(6093), + [anon_sym_BSLASHacsp] = ACTIONS(6093), + [anon_sym_BSLASHAcsp] = ACTIONS(6093), + [anon_sym_BSLASHacl] = ACTIONS(6093), + [anon_sym_BSLASHAcl] = ACTIONS(6093), + [anon_sym_BSLASHaclp] = ACTIONS(6093), + [anon_sym_BSLASHAclp] = ACTIONS(6093), + [anon_sym_BSLASHacf] = ACTIONS(6093), + [anon_sym_BSLASHAcf] = ACTIONS(6093), + [anon_sym_BSLASHacfp] = ACTIONS(6093), + [anon_sym_BSLASHAcfp] = ACTIONS(6093), + [anon_sym_BSLASHac] = ACTIONS(6093), + [anon_sym_BSLASHAc] = ACTIONS(6093), + [anon_sym_BSLASHacp] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6093), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6093), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6091), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6093), + [anon_sym_BSLASHcolor] = ACTIONS(6093), + [anon_sym_BSLASHcolorbox] = ACTIONS(6093), + [anon_sym_BSLASHtextcolor] = ACTIONS(6093), + [anon_sym_BSLASHpagecolor] = ACTIONS(6093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6093), + }, + [1770] = { + [sym_command_name] = ACTIONS(6073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6073), + [anon_sym_RBRACK] = ACTIONS(6071), + [anon_sym_COMMA] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_word] = ACTIONS(6073), + [sym_placeholder] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_CARET] = ACTIONS(6073), + [anon_sym__] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_BANG] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_SQUOTE] = ACTIONS(6073), + [anon_sym_BSLASHtitle] = ACTIONS(6073), + [anon_sym_BSLASHauthor] = ACTIONS(6073), + [anon_sym_BSLASHusepackage] = ACTIONS(6073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6073), + [anon_sym_BSLASHinclude] = ACTIONS(6073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6073), + [anon_sym_BSLASHinput] = ACTIONS(6073), + [anon_sym_BSLASHsubfile] = ACTIONS(6073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6073), + [anon_sym_BSLASHbibliography] = ACTIONS(6073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6073), + [anon_sym_BSLASHincludesvg] = ACTIONS(6073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6073), + [anon_sym_BSLASHimport] = ACTIONS(6073), + [anon_sym_BSLASHsubimport] = ACTIONS(6073), + [anon_sym_BSLASHinputfrom] = ACTIONS(6073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6073), + [anon_sym_BSLASHincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6073), + [anon_sym_BSLASHcaption] = ACTIONS(6073), + [anon_sym_BSLASHcite] = ACTIONS(6073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCite] = ACTIONS(6073), + [anon_sym_BSLASHnocite] = ACTIONS(6073), + [anon_sym_BSLASHcitet] = ACTIONS(6073), + [anon_sym_BSLASHcitep] = ACTIONS(6073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteauthor] = ACTIONS(6073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitetitle] = ACTIONS(6073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteyear] = ACTIONS(6073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6071), + [anon_sym_BSLASHcitedate] = ACTIONS(6073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6071), + [anon_sym_BSLASHciteurl] = ACTIONS(6073), + [anon_sym_BSLASHfullcite] = ACTIONS(6073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6073), + [anon_sym_BSLASHcitealt] = ACTIONS(6073), + [anon_sym_BSLASHcitealp] = ACTIONS(6073), + [anon_sym_BSLASHcitetext] = ACTIONS(6073), + [anon_sym_BSLASHparencite] = ACTIONS(6073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHParencite] = ACTIONS(6073), + [anon_sym_BSLASHfootcite] = ACTIONS(6073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6073), + [anon_sym_BSLASHtextcite] = ACTIONS(6073), + [anon_sym_BSLASHTextcite] = ACTIONS(6073), + [anon_sym_BSLASHsmartcite] = ACTIONS(6073), + [anon_sym_BSLASHSmartcite] = ACTIONS(6073), + [anon_sym_BSLASHsupercite] = ACTIONS(6073), + [anon_sym_BSLASHautocite] = ACTIONS(6073), + [anon_sym_BSLASHAutocite] = ACTIONS(6073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6071), + [anon_sym_BSLASHvolcite] = ACTIONS(6073), + [anon_sym_BSLASHVolcite] = ACTIONS(6073), + [anon_sym_BSLASHpvolcite] = ACTIONS(6073), + [anon_sym_BSLASHPvolcite] = ACTIONS(6073), + [anon_sym_BSLASHfvolcite] = ACTIONS(6073), + [anon_sym_BSLASHftvolcite] = ACTIONS(6073), + [anon_sym_BSLASHsvolcite] = ACTIONS(6073), + [anon_sym_BSLASHSvolcite] = ACTIONS(6073), + [anon_sym_BSLASHtvolcite] = ACTIONS(6073), + [anon_sym_BSLASHTvolcite] = ACTIONS(6073), + [anon_sym_BSLASHavolcite] = ACTIONS(6073), + [anon_sym_BSLASHAvolcite] = ACTIONS(6073), + [anon_sym_BSLASHnotecite] = ACTIONS(6073), + [anon_sym_BSLASHNotecite] = ACTIONS(6073), + [anon_sym_BSLASHpnotecite] = ACTIONS(6073), + [anon_sym_BSLASHPnotecite] = ACTIONS(6073), + [anon_sym_BSLASHfnotecite] = ACTIONS(6073), + [anon_sym_BSLASHlabel] = ACTIONS(6073), + [anon_sym_BSLASHref] = ACTIONS(6073), + [anon_sym_BSLASHeqref] = ACTIONS(6073), + [anon_sym_BSLASHvref] = ACTIONS(6073), + [anon_sym_BSLASHVref] = ACTIONS(6073), + [anon_sym_BSLASHautoref] = ACTIONS(6073), + [anon_sym_BSLASHpageref] = ACTIONS(6073), + [anon_sym_BSLASHcref] = ACTIONS(6073), + [anon_sym_BSLASHCref] = ACTIONS(6073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnameCref] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6073), + [anon_sym_BSLASHlabelcref] = ACTIONS(6073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange] = ACTIONS(6073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHCrefrange] = ACTIONS(6073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6071), + [anon_sym_BSLASHnewlabel] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand] = ACTIONS(6073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdef] = ACTIONS(6073), + [anon_sym_BSLASHlet] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6073), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6073), + [anon_sym_BSLASHgls] = ACTIONS(6073), + [anon_sym_BSLASHGls] = ACTIONS(6073), + [anon_sym_BSLASHGLS] = ACTIONS(6073), + [anon_sym_BSLASHglspl] = ACTIONS(6073), + [anon_sym_BSLASHGlspl] = ACTIONS(6073), + [anon_sym_BSLASHGLSpl] = ACTIONS(6073), + [anon_sym_BSLASHglsdisp] = ACTIONS(6073), + [anon_sym_BSLASHglslink] = ACTIONS(6073), + [anon_sym_BSLASHglstext] = ACTIONS(6073), + [anon_sym_BSLASHGlstext] = ACTIONS(6073), + [anon_sym_BSLASHGLStext] = ACTIONS(6073), + [anon_sym_BSLASHglsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6073), + [anon_sym_BSLASHglsplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSplural] = ACTIONS(6073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6073), + [anon_sym_BSLASHglsname] = ACTIONS(6073), + [anon_sym_BSLASHGlsname] = ACTIONS(6073), + [anon_sym_BSLASHGLSname] = ACTIONS(6073), + [anon_sym_BSLASHglssymbol] = ACTIONS(6073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6073), + [anon_sym_BSLASHglsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6073), + [anon_sym_BSLASHglsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6073), + [anon_sym_BSLASHglsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6073), + [anon_sym_BSLASHglsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6073), + [anon_sym_BSLASHglsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6073), + [anon_sym_BSLASHnewacronym] = ACTIONS(6073), + [anon_sym_BSLASHacrshort] = ACTIONS(6073), + [anon_sym_BSLASHAcrshort] = ACTIONS(6073), + [anon_sym_BSLASHACRshort] = ACTIONS(6073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6073), + [anon_sym_BSLASHacrlong] = ACTIONS(6073), + [anon_sym_BSLASHAcrlong] = ACTIONS(6073), + [anon_sym_BSLASHACRlong] = ACTIONS(6073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6073), + [anon_sym_BSLASHacrfull] = ACTIONS(6073), + [anon_sym_BSLASHAcrfull] = ACTIONS(6073), + [anon_sym_BSLASHACRfull] = ACTIONS(6073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6073), + [anon_sym_BSLASHacs] = ACTIONS(6073), + [anon_sym_BSLASHAcs] = ACTIONS(6073), + [anon_sym_BSLASHacsp] = ACTIONS(6073), + [anon_sym_BSLASHAcsp] = ACTIONS(6073), + [anon_sym_BSLASHacl] = ACTIONS(6073), + [anon_sym_BSLASHAcl] = ACTIONS(6073), + [anon_sym_BSLASHaclp] = ACTIONS(6073), + [anon_sym_BSLASHAclp] = ACTIONS(6073), + [anon_sym_BSLASHacf] = ACTIONS(6073), + [anon_sym_BSLASHAcf] = ACTIONS(6073), + [anon_sym_BSLASHacfp] = ACTIONS(6073), + [anon_sym_BSLASHAcfp] = ACTIONS(6073), + [anon_sym_BSLASHac] = ACTIONS(6073), + [anon_sym_BSLASHAc] = ACTIONS(6073), + [anon_sym_BSLASHacp] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6073), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6073), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6071), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6073), + [anon_sym_BSLASHcolor] = ACTIONS(6073), + [anon_sym_BSLASHcolorbox] = ACTIONS(6073), + [anon_sym_BSLASHtextcolor] = ACTIONS(6073), + [anon_sym_BSLASHpagecolor] = ACTIONS(6073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6073), + }, + [1771] = { + [sym_command_name] = ACTIONS(6077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6077), + [anon_sym_RBRACK] = ACTIONS(6075), + [anon_sym_COMMA] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [sym_word] = ACTIONS(6077), + [sym_placeholder] = ACTIONS(6075), + [anon_sym_PLUS] = ACTIONS(6077), + [anon_sym_DASH] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6077), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(6077), + [anon_sym__] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_BANG] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_SQUOTE] = ACTIONS(6077), + [anon_sym_BSLASHtitle] = ACTIONS(6077), + [anon_sym_BSLASHauthor] = ACTIONS(6077), + [anon_sym_BSLASHusepackage] = ACTIONS(6077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6077), + [anon_sym_BSLASHinclude] = ACTIONS(6077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6077), + [anon_sym_BSLASHinput] = ACTIONS(6077), + [anon_sym_BSLASHsubfile] = ACTIONS(6077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6077), + [anon_sym_BSLASHbibliography] = ACTIONS(6077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6077), + [anon_sym_BSLASHincludesvg] = ACTIONS(6077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6077), + [anon_sym_BSLASHimport] = ACTIONS(6077), + [anon_sym_BSLASHsubimport] = ACTIONS(6077), + [anon_sym_BSLASHinputfrom] = ACTIONS(6077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6077), + [anon_sym_BSLASHincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6077), + [anon_sym_BSLASHcaption] = ACTIONS(6077), + [anon_sym_BSLASHcite] = ACTIONS(6077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCite] = ACTIONS(6077), + [anon_sym_BSLASHnocite] = ACTIONS(6077), + [anon_sym_BSLASHcitet] = ACTIONS(6077), + [anon_sym_BSLASHcitep] = ACTIONS(6077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteauthor] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitetitle] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteyear] = ACTIONS(6077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6075), + [anon_sym_BSLASHcitedate] = ACTIONS(6077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6075), + [anon_sym_BSLASHciteurl] = ACTIONS(6077), + [anon_sym_BSLASHfullcite] = ACTIONS(6077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6077), + [anon_sym_BSLASHcitealt] = ACTIONS(6077), + [anon_sym_BSLASHcitealp] = ACTIONS(6077), + [anon_sym_BSLASHcitetext] = ACTIONS(6077), + [anon_sym_BSLASHparencite] = ACTIONS(6077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHParencite] = ACTIONS(6077), + [anon_sym_BSLASHfootcite] = ACTIONS(6077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6077), + [anon_sym_BSLASHtextcite] = ACTIONS(6077), + [anon_sym_BSLASHTextcite] = ACTIONS(6077), + [anon_sym_BSLASHsmartcite] = ACTIONS(6077), + [anon_sym_BSLASHSmartcite] = ACTIONS(6077), + [anon_sym_BSLASHsupercite] = ACTIONS(6077), + [anon_sym_BSLASHautocite] = ACTIONS(6077), + [anon_sym_BSLASHAutocite] = ACTIONS(6077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6075), + [anon_sym_BSLASHvolcite] = ACTIONS(6077), + [anon_sym_BSLASHVolcite] = ACTIONS(6077), + [anon_sym_BSLASHpvolcite] = ACTIONS(6077), + [anon_sym_BSLASHPvolcite] = ACTIONS(6077), + [anon_sym_BSLASHfvolcite] = ACTIONS(6077), + [anon_sym_BSLASHftvolcite] = ACTIONS(6077), + [anon_sym_BSLASHsvolcite] = ACTIONS(6077), + [anon_sym_BSLASHSvolcite] = ACTIONS(6077), + [anon_sym_BSLASHtvolcite] = ACTIONS(6077), + [anon_sym_BSLASHTvolcite] = ACTIONS(6077), + [anon_sym_BSLASHavolcite] = ACTIONS(6077), + [anon_sym_BSLASHAvolcite] = ACTIONS(6077), + [anon_sym_BSLASHnotecite] = ACTIONS(6077), + [anon_sym_BSLASHNotecite] = ACTIONS(6077), + [anon_sym_BSLASHpnotecite] = ACTIONS(6077), + [anon_sym_BSLASHPnotecite] = ACTIONS(6077), + [anon_sym_BSLASHfnotecite] = ACTIONS(6077), + [anon_sym_BSLASHlabel] = ACTIONS(6077), + [anon_sym_BSLASHref] = ACTIONS(6077), + [anon_sym_BSLASHeqref] = ACTIONS(6077), + [anon_sym_BSLASHvref] = ACTIONS(6077), + [anon_sym_BSLASHVref] = ACTIONS(6077), + [anon_sym_BSLASHautoref] = ACTIONS(6077), + [anon_sym_BSLASHpageref] = ACTIONS(6077), + [anon_sym_BSLASHcref] = ACTIONS(6077), + [anon_sym_BSLASHCref] = ACTIONS(6077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnameCref] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6077), + [anon_sym_BSLASHlabelcref] = ACTIONS(6077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange] = ACTIONS(6077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHCrefrange] = ACTIONS(6077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6075), + [anon_sym_BSLASHnewlabel] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand] = ACTIONS(6077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdef] = ACTIONS(6077), + [anon_sym_BSLASHlet] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6077), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6077), + [anon_sym_BSLASHgls] = ACTIONS(6077), + [anon_sym_BSLASHGls] = ACTIONS(6077), + [anon_sym_BSLASHGLS] = ACTIONS(6077), + [anon_sym_BSLASHglspl] = ACTIONS(6077), + [anon_sym_BSLASHGlspl] = ACTIONS(6077), + [anon_sym_BSLASHGLSpl] = ACTIONS(6077), + [anon_sym_BSLASHglsdisp] = ACTIONS(6077), + [anon_sym_BSLASHglslink] = ACTIONS(6077), + [anon_sym_BSLASHglstext] = ACTIONS(6077), + [anon_sym_BSLASHGlstext] = ACTIONS(6077), + [anon_sym_BSLASHGLStext] = ACTIONS(6077), + [anon_sym_BSLASHglsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6077), + [anon_sym_BSLASHglsplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSplural] = ACTIONS(6077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6077), + [anon_sym_BSLASHglsname] = ACTIONS(6077), + [anon_sym_BSLASHGlsname] = ACTIONS(6077), + [anon_sym_BSLASHGLSname] = ACTIONS(6077), + [anon_sym_BSLASHglssymbol] = ACTIONS(6077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6077), + [anon_sym_BSLASHglsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6077), + [anon_sym_BSLASHglsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6077), + [anon_sym_BSLASHglsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6077), + [anon_sym_BSLASHglsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6077), + [anon_sym_BSLASHglsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6077), + [anon_sym_BSLASHnewacronym] = ACTIONS(6077), + [anon_sym_BSLASHacrshort] = ACTIONS(6077), + [anon_sym_BSLASHAcrshort] = ACTIONS(6077), + [anon_sym_BSLASHACRshort] = ACTIONS(6077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6077), + [anon_sym_BSLASHacrlong] = ACTIONS(6077), + [anon_sym_BSLASHAcrlong] = ACTIONS(6077), + [anon_sym_BSLASHACRlong] = ACTIONS(6077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6077), + [anon_sym_BSLASHacrfull] = ACTIONS(6077), + [anon_sym_BSLASHAcrfull] = ACTIONS(6077), + [anon_sym_BSLASHACRfull] = ACTIONS(6077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6077), + [anon_sym_BSLASHacs] = ACTIONS(6077), + [anon_sym_BSLASHAcs] = ACTIONS(6077), + [anon_sym_BSLASHacsp] = ACTIONS(6077), + [anon_sym_BSLASHAcsp] = ACTIONS(6077), + [anon_sym_BSLASHacl] = ACTIONS(6077), + [anon_sym_BSLASHAcl] = ACTIONS(6077), + [anon_sym_BSLASHaclp] = ACTIONS(6077), + [anon_sym_BSLASHAclp] = ACTIONS(6077), + [anon_sym_BSLASHacf] = ACTIONS(6077), + [anon_sym_BSLASHAcf] = ACTIONS(6077), + [anon_sym_BSLASHacfp] = ACTIONS(6077), + [anon_sym_BSLASHAcfp] = ACTIONS(6077), + [anon_sym_BSLASHac] = ACTIONS(6077), + [anon_sym_BSLASHAc] = ACTIONS(6077), + [anon_sym_BSLASHacp] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6077), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6077), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6075), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6077), + [anon_sym_BSLASHcolor] = ACTIONS(6077), + [anon_sym_BSLASHcolorbox] = ACTIONS(6077), + [anon_sym_BSLASHtextcolor] = ACTIONS(6077), + [anon_sym_BSLASHpagecolor] = ACTIONS(6077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6077), + }, + [1772] = { + [sym_command_name] = ACTIONS(5975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5973), + [anon_sym_COMMA] = ACTIONS(5973), + [anon_sym_EQ] = ACTIONS(5973), + [anon_sym_RBRACE] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [sym_placeholder] = ACTIONS(5973), + [anon_sym_PLUS] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5975), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym__] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_SQUOTE] = ACTIONS(5975), + [anon_sym_BSLASHtitle] = ACTIONS(5975), + [anon_sym_BSLASHauthor] = ACTIONS(5975), + [anon_sym_BSLASHusepackage] = ACTIONS(5975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5975), + [anon_sym_BSLASHinclude] = ACTIONS(5975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5975), + [anon_sym_BSLASHinput] = ACTIONS(5975), + [anon_sym_BSLASHsubfile] = ACTIONS(5975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5975), + [anon_sym_BSLASHbibliography] = ACTIONS(5975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5975), + [anon_sym_BSLASHincludesvg] = ACTIONS(5975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5975), + [anon_sym_BSLASHimport] = ACTIONS(5975), + [anon_sym_BSLASHsubimport] = ACTIONS(5975), + [anon_sym_BSLASHinputfrom] = ACTIONS(5975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5975), + [anon_sym_BSLASHincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5975), + [anon_sym_BSLASHcaption] = ACTIONS(5975), + [anon_sym_BSLASHcite] = ACTIONS(5975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCite] = ACTIONS(5975), + [anon_sym_BSLASHnocite] = ACTIONS(5975), + [anon_sym_BSLASHcitet] = ACTIONS(5975), + [anon_sym_BSLASHcitep] = ACTIONS(5975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteauthor] = ACTIONS(5975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitetitle] = ACTIONS(5975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteyear] = ACTIONS(5975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5973), + [anon_sym_BSLASHcitedate] = ACTIONS(5975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5973), + [anon_sym_BSLASHciteurl] = ACTIONS(5975), + [anon_sym_BSLASHfullcite] = ACTIONS(5975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5975), + [anon_sym_BSLASHcitealt] = ACTIONS(5975), + [anon_sym_BSLASHcitealp] = ACTIONS(5975), + [anon_sym_BSLASHcitetext] = ACTIONS(5975), + [anon_sym_BSLASHparencite] = ACTIONS(5975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHParencite] = ACTIONS(5975), + [anon_sym_BSLASHfootcite] = ACTIONS(5975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5975), + [anon_sym_BSLASHtextcite] = ACTIONS(5975), + [anon_sym_BSLASHTextcite] = ACTIONS(5975), + [anon_sym_BSLASHsmartcite] = ACTIONS(5975), + [anon_sym_BSLASHSmartcite] = ACTIONS(5975), + [anon_sym_BSLASHsupercite] = ACTIONS(5975), + [anon_sym_BSLASHautocite] = ACTIONS(5975), + [anon_sym_BSLASHAutocite] = ACTIONS(5975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5973), + [anon_sym_BSLASHvolcite] = ACTIONS(5975), + [anon_sym_BSLASHVolcite] = ACTIONS(5975), + [anon_sym_BSLASHpvolcite] = ACTIONS(5975), + [anon_sym_BSLASHPvolcite] = ACTIONS(5975), + [anon_sym_BSLASHfvolcite] = ACTIONS(5975), + [anon_sym_BSLASHftvolcite] = ACTIONS(5975), + [anon_sym_BSLASHsvolcite] = ACTIONS(5975), + [anon_sym_BSLASHSvolcite] = ACTIONS(5975), + [anon_sym_BSLASHtvolcite] = ACTIONS(5975), + [anon_sym_BSLASHTvolcite] = ACTIONS(5975), + [anon_sym_BSLASHavolcite] = ACTIONS(5975), + [anon_sym_BSLASHAvolcite] = ACTIONS(5975), + [anon_sym_BSLASHnotecite] = ACTIONS(5975), + [anon_sym_BSLASHNotecite] = ACTIONS(5975), + [anon_sym_BSLASHpnotecite] = ACTIONS(5975), + [anon_sym_BSLASHPnotecite] = ACTIONS(5975), + [anon_sym_BSLASHfnotecite] = ACTIONS(5975), + [anon_sym_BSLASHlabel] = ACTIONS(5975), + [anon_sym_BSLASHref] = ACTIONS(5975), + [anon_sym_BSLASHeqref] = ACTIONS(5975), + [anon_sym_BSLASHvref] = ACTIONS(5975), + [anon_sym_BSLASHVref] = ACTIONS(5975), + [anon_sym_BSLASHautoref] = ACTIONS(5975), + [anon_sym_BSLASHpageref] = ACTIONS(5975), + [anon_sym_BSLASHcref] = ACTIONS(5975), + [anon_sym_BSLASHCref] = ACTIONS(5975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnameCref] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5975), + [anon_sym_BSLASHlabelcref] = ACTIONS(5975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange] = ACTIONS(5975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHCrefrange] = ACTIONS(5975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5973), + [anon_sym_BSLASHnewlabel] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand] = ACTIONS(5975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5973), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdef] = ACTIONS(5975), + [anon_sym_BSLASHlet] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5975), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5975), + [anon_sym_BSLASHgls] = ACTIONS(5975), + [anon_sym_BSLASHGls] = ACTIONS(5975), + [anon_sym_BSLASHGLS] = ACTIONS(5975), + [anon_sym_BSLASHglspl] = ACTIONS(5975), + [anon_sym_BSLASHGlspl] = ACTIONS(5975), + [anon_sym_BSLASHGLSpl] = ACTIONS(5975), + [anon_sym_BSLASHglsdisp] = ACTIONS(5975), + [anon_sym_BSLASHglslink] = ACTIONS(5975), + [anon_sym_BSLASHglstext] = ACTIONS(5975), + [anon_sym_BSLASHGlstext] = ACTIONS(5975), + [anon_sym_BSLASHGLStext] = ACTIONS(5975), + [anon_sym_BSLASHglsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5975), + [anon_sym_BSLASHglsplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSplural] = ACTIONS(5975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5975), + [anon_sym_BSLASHglsname] = ACTIONS(5975), + [anon_sym_BSLASHGlsname] = ACTIONS(5975), + [anon_sym_BSLASHGLSname] = ACTIONS(5975), + [anon_sym_BSLASHglssymbol] = ACTIONS(5975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5975), + [anon_sym_BSLASHglsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5975), + [anon_sym_BSLASHglsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5975), + [anon_sym_BSLASHglsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5975), + [anon_sym_BSLASHglsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5975), + [anon_sym_BSLASHglsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5975), + [anon_sym_BSLASHnewacronym] = ACTIONS(5975), + [anon_sym_BSLASHacrshort] = ACTIONS(5975), + [anon_sym_BSLASHAcrshort] = ACTIONS(5975), + [anon_sym_BSLASHACRshort] = ACTIONS(5975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5975), + [anon_sym_BSLASHacrlong] = ACTIONS(5975), + [anon_sym_BSLASHAcrlong] = ACTIONS(5975), + [anon_sym_BSLASHACRlong] = ACTIONS(5975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5975), + [anon_sym_BSLASHacrfull] = ACTIONS(5975), + [anon_sym_BSLASHAcrfull] = ACTIONS(5975), + [anon_sym_BSLASHACRfull] = ACTIONS(5975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5975), + [anon_sym_BSLASHacs] = ACTIONS(5975), + [anon_sym_BSLASHAcs] = ACTIONS(5975), + [anon_sym_BSLASHacsp] = ACTIONS(5975), + [anon_sym_BSLASHAcsp] = ACTIONS(5975), + [anon_sym_BSLASHacl] = ACTIONS(5975), + [anon_sym_BSLASHAcl] = ACTIONS(5975), + [anon_sym_BSLASHaclp] = ACTIONS(5975), + [anon_sym_BSLASHAclp] = ACTIONS(5975), + [anon_sym_BSLASHacf] = ACTIONS(5975), + [anon_sym_BSLASHAcf] = ACTIONS(5975), + [anon_sym_BSLASHacfp] = ACTIONS(5975), + [anon_sym_BSLASHAcfp] = ACTIONS(5975), + [anon_sym_BSLASHac] = ACTIONS(5975), + [anon_sym_BSLASHAc] = ACTIONS(5975), + [anon_sym_BSLASHacp] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5975), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5975), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5975), + [anon_sym_BSLASHcolor] = ACTIONS(5975), + [anon_sym_BSLASHcolorbox] = ACTIONS(5975), + [anon_sym_BSLASHtextcolor] = ACTIONS(5975), + [anon_sym_BSLASHpagecolor] = ACTIONS(5975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5975), + }, + [1773] = { + [sym_command_name] = ACTIONS(5969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5969), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [sym_word] = ACTIONS(5969), + [sym_placeholder] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym__] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_COLON] = ACTIONS(5969), + [anon_sym_SQUOTE] = ACTIONS(5969), + [anon_sym_BSLASHtitle] = ACTIONS(5969), + [anon_sym_BSLASHauthor] = ACTIONS(5969), + [anon_sym_BSLASHusepackage] = ACTIONS(5969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5969), + [anon_sym_BSLASHinclude] = ACTIONS(5969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5969), + [anon_sym_BSLASHinput] = ACTIONS(5969), + [anon_sym_BSLASHsubfile] = ACTIONS(5969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5969), + [anon_sym_BSLASHbibliography] = ACTIONS(5969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5969), + [anon_sym_BSLASHincludesvg] = ACTIONS(5969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5969), + [anon_sym_BSLASHimport] = ACTIONS(5969), + [anon_sym_BSLASHsubimport] = ACTIONS(5969), + [anon_sym_BSLASHinputfrom] = ACTIONS(5969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5969), + [anon_sym_BSLASHincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5969), + [anon_sym_BSLASHcaption] = ACTIONS(5969), + [anon_sym_BSLASHcite] = ACTIONS(5969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCite] = ACTIONS(5969), + [anon_sym_BSLASHnocite] = ACTIONS(5969), + [anon_sym_BSLASHcitet] = ACTIONS(5969), + [anon_sym_BSLASHcitep] = ACTIONS(5969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteauthor] = ACTIONS(5969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitetitle] = ACTIONS(5969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteyear] = ACTIONS(5969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5967), + [anon_sym_BSLASHcitedate] = ACTIONS(5969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5967), + [anon_sym_BSLASHciteurl] = ACTIONS(5969), + [anon_sym_BSLASHfullcite] = ACTIONS(5969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5969), + [anon_sym_BSLASHcitealt] = ACTIONS(5969), + [anon_sym_BSLASHcitealp] = ACTIONS(5969), + [anon_sym_BSLASHcitetext] = ACTIONS(5969), + [anon_sym_BSLASHparencite] = ACTIONS(5969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHParencite] = ACTIONS(5969), + [anon_sym_BSLASHfootcite] = ACTIONS(5969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5969), + [anon_sym_BSLASHtextcite] = ACTIONS(5969), + [anon_sym_BSLASHTextcite] = ACTIONS(5969), + [anon_sym_BSLASHsmartcite] = ACTIONS(5969), + [anon_sym_BSLASHSmartcite] = ACTIONS(5969), + [anon_sym_BSLASHsupercite] = ACTIONS(5969), + [anon_sym_BSLASHautocite] = ACTIONS(5969), + [anon_sym_BSLASHAutocite] = ACTIONS(5969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5967), + [anon_sym_BSLASHvolcite] = ACTIONS(5969), + [anon_sym_BSLASHVolcite] = ACTIONS(5969), + [anon_sym_BSLASHpvolcite] = ACTIONS(5969), + [anon_sym_BSLASHPvolcite] = ACTIONS(5969), + [anon_sym_BSLASHfvolcite] = ACTIONS(5969), + [anon_sym_BSLASHftvolcite] = ACTIONS(5969), + [anon_sym_BSLASHsvolcite] = ACTIONS(5969), + [anon_sym_BSLASHSvolcite] = ACTIONS(5969), + [anon_sym_BSLASHtvolcite] = ACTIONS(5969), + [anon_sym_BSLASHTvolcite] = ACTIONS(5969), + [anon_sym_BSLASHavolcite] = ACTIONS(5969), + [anon_sym_BSLASHAvolcite] = ACTIONS(5969), + [anon_sym_BSLASHnotecite] = ACTIONS(5969), + [anon_sym_BSLASHNotecite] = ACTIONS(5969), + [anon_sym_BSLASHpnotecite] = ACTIONS(5969), + [anon_sym_BSLASHPnotecite] = ACTIONS(5969), + [anon_sym_BSLASHfnotecite] = ACTIONS(5969), + [anon_sym_BSLASHlabel] = ACTIONS(5969), + [anon_sym_BSLASHref] = ACTIONS(5969), + [anon_sym_BSLASHeqref] = ACTIONS(5969), + [anon_sym_BSLASHvref] = ACTIONS(5969), + [anon_sym_BSLASHVref] = ACTIONS(5969), + [anon_sym_BSLASHautoref] = ACTIONS(5969), + [anon_sym_BSLASHpageref] = ACTIONS(5969), + [anon_sym_BSLASHcref] = ACTIONS(5969), + [anon_sym_BSLASHCref] = ACTIONS(5969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnameCref] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5969), + [anon_sym_BSLASHlabelcref] = ACTIONS(5969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange] = ACTIONS(5969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHCrefrange] = ACTIONS(5969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5967), + [anon_sym_BSLASHnewlabel] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand] = ACTIONS(5969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdef] = ACTIONS(5969), + [anon_sym_BSLASHlet] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5969), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5969), + [anon_sym_BSLASHgls] = ACTIONS(5969), + [anon_sym_BSLASHGls] = ACTIONS(5969), + [anon_sym_BSLASHGLS] = ACTIONS(5969), + [anon_sym_BSLASHglspl] = ACTIONS(5969), + [anon_sym_BSLASHGlspl] = ACTIONS(5969), + [anon_sym_BSLASHGLSpl] = ACTIONS(5969), + [anon_sym_BSLASHglsdisp] = ACTIONS(5969), + [anon_sym_BSLASHglslink] = ACTIONS(5969), + [anon_sym_BSLASHglstext] = ACTIONS(5969), + [anon_sym_BSLASHGlstext] = ACTIONS(5969), + [anon_sym_BSLASHGLStext] = ACTIONS(5969), + [anon_sym_BSLASHglsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5969), + [anon_sym_BSLASHglsplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSplural] = ACTIONS(5969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5969), + [anon_sym_BSLASHglsname] = ACTIONS(5969), + [anon_sym_BSLASHGlsname] = ACTIONS(5969), + [anon_sym_BSLASHGLSname] = ACTIONS(5969), + [anon_sym_BSLASHglssymbol] = ACTIONS(5969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5969), + [anon_sym_BSLASHglsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5969), + [anon_sym_BSLASHglsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5969), + [anon_sym_BSLASHglsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5969), + [anon_sym_BSLASHglsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5969), + [anon_sym_BSLASHglsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5969), + [anon_sym_BSLASHnewacronym] = ACTIONS(5969), + [anon_sym_BSLASHacrshort] = ACTIONS(5969), + [anon_sym_BSLASHAcrshort] = ACTIONS(5969), + [anon_sym_BSLASHACRshort] = ACTIONS(5969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5969), + [anon_sym_BSLASHacrlong] = ACTIONS(5969), + [anon_sym_BSLASHAcrlong] = ACTIONS(5969), + [anon_sym_BSLASHACRlong] = ACTIONS(5969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5969), + [anon_sym_BSLASHacrfull] = ACTIONS(5969), + [anon_sym_BSLASHAcrfull] = ACTIONS(5969), + [anon_sym_BSLASHACRfull] = ACTIONS(5969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5969), + [anon_sym_BSLASHacs] = ACTIONS(5969), + [anon_sym_BSLASHAcs] = ACTIONS(5969), + [anon_sym_BSLASHacsp] = ACTIONS(5969), + [anon_sym_BSLASHAcsp] = ACTIONS(5969), + [anon_sym_BSLASHacl] = ACTIONS(5969), + [anon_sym_BSLASHAcl] = ACTIONS(5969), + [anon_sym_BSLASHaclp] = ACTIONS(5969), + [anon_sym_BSLASHAclp] = ACTIONS(5969), + [anon_sym_BSLASHacf] = ACTIONS(5969), + [anon_sym_BSLASHAcf] = ACTIONS(5969), + [anon_sym_BSLASHacfp] = ACTIONS(5969), + [anon_sym_BSLASHAcfp] = ACTIONS(5969), + [anon_sym_BSLASHac] = ACTIONS(5969), + [anon_sym_BSLASHAc] = ACTIONS(5969), + [anon_sym_BSLASHacp] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5969), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5969), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5967), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5969), + [anon_sym_BSLASHcolor] = ACTIONS(5969), + [anon_sym_BSLASHcolorbox] = ACTIONS(5969), + [anon_sym_BSLASHtextcolor] = ACTIONS(5969), + [anon_sym_BSLASHpagecolor] = ACTIONS(5969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5969), + }, + [1774] = { + [sym_command_name] = ACTIONS(6069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6069), + [anon_sym_RBRACK] = ACTIONS(6067), + [anon_sym_COMMA] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6067), + [anon_sym_RBRACE] = ACTIONS(6067), + [sym_word] = ACTIONS(6069), + [sym_placeholder] = ACTIONS(6067), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6069), + [anon_sym__] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_BANG] = ACTIONS(6069), + [anon_sym_PIPE] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_SQUOTE] = ACTIONS(6069), + [anon_sym_BSLASHtitle] = ACTIONS(6069), + [anon_sym_BSLASHauthor] = ACTIONS(6069), + [anon_sym_BSLASHusepackage] = ACTIONS(6069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6069), + [anon_sym_BSLASHinclude] = ACTIONS(6069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6069), + [anon_sym_BSLASHinput] = ACTIONS(6069), + [anon_sym_BSLASHsubfile] = ACTIONS(6069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6069), + [anon_sym_BSLASHbibliography] = ACTIONS(6069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6069), + [anon_sym_BSLASHincludesvg] = ACTIONS(6069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6069), + [anon_sym_BSLASHimport] = ACTIONS(6069), + [anon_sym_BSLASHsubimport] = ACTIONS(6069), + [anon_sym_BSLASHinputfrom] = ACTIONS(6069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6069), + [anon_sym_BSLASHincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6069), + [anon_sym_BSLASHcaption] = ACTIONS(6069), + [anon_sym_BSLASHcite] = ACTIONS(6069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCite] = ACTIONS(6069), + [anon_sym_BSLASHnocite] = ACTIONS(6069), + [anon_sym_BSLASHcitet] = ACTIONS(6069), + [anon_sym_BSLASHcitep] = ACTIONS(6069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteauthor] = ACTIONS(6069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitetitle] = ACTIONS(6069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteyear] = ACTIONS(6069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6067), + [anon_sym_BSLASHcitedate] = ACTIONS(6069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6067), + [anon_sym_BSLASHciteurl] = ACTIONS(6069), + [anon_sym_BSLASHfullcite] = ACTIONS(6069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6069), + [anon_sym_BSLASHcitealt] = ACTIONS(6069), + [anon_sym_BSLASHcitealp] = ACTIONS(6069), + [anon_sym_BSLASHcitetext] = ACTIONS(6069), + [anon_sym_BSLASHparencite] = ACTIONS(6069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHParencite] = ACTIONS(6069), + [anon_sym_BSLASHfootcite] = ACTIONS(6069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6069), + [anon_sym_BSLASHtextcite] = ACTIONS(6069), + [anon_sym_BSLASHTextcite] = ACTIONS(6069), + [anon_sym_BSLASHsmartcite] = ACTIONS(6069), + [anon_sym_BSLASHSmartcite] = ACTIONS(6069), + [anon_sym_BSLASHsupercite] = ACTIONS(6069), + [anon_sym_BSLASHautocite] = ACTIONS(6069), + [anon_sym_BSLASHAutocite] = ACTIONS(6069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6067), + [anon_sym_BSLASHvolcite] = ACTIONS(6069), + [anon_sym_BSLASHVolcite] = ACTIONS(6069), + [anon_sym_BSLASHpvolcite] = ACTIONS(6069), + [anon_sym_BSLASHPvolcite] = ACTIONS(6069), + [anon_sym_BSLASHfvolcite] = ACTIONS(6069), + [anon_sym_BSLASHftvolcite] = ACTIONS(6069), + [anon_sym_BSLASHsvolcite] = ACTIONS(6069), + [anon_sym_BSLASHSvolcite] = ACTIONS(6069), + [anon_sym_BSLASHtvolcite] = ACTIONS(6069), + [anon_sym_BSLASHTvolcite] = ACTIONS(6069), + [anon_sym_BSLASHavolcite] = ACTIONS(6069), + [anon_sym_BSLASHAvolcite] = ACTIONS(6069), + [anon_sym_BSLASHnotecite] = ACTIONS(6069), + [anon_sym_BSLASHNotecite] = ACTIONS(6069), + [anon_sym_BSLASHpnotecite] = ACTIONS(6069), + [anon_sym_BSLASHPnotecite] = ACTIONS(6069), + [anon_sym_BSLASHfnotecite] = ACTIONS(6069), + [anon_sym_BSLASHlabel] = ACTIONS(6069), + [anon_sym_BSLASHref] = ACTIONS(6069), + [anon_sym_BSLASHeqref] = ACTIONS(6069), + [anon_sym_BSLASHvref] = ACTIONS(6069), + [anon_sym_BSLASHVref] = ACTIONS(6069), + [anon_sym_BSLASHautoref] = ACTIONS(6069), + [anon_sym_BSLASHpageref] = ACTIONS(6069), + [anon_sym_BSLASHcref] = ACTIONS(6069), + [anon_sym_BSLASHCref] = ACTIONS(6069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnameCref] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6069), + [anon_sym_BSLASHlabelcref] = ACTIONS(6069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange] = ACTIONS(6069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHCrefrange] = ACTIONS(6069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6067), + [anon_sym_BSLASHnewlabel] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand] = ACTIONS(6069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdef] = ACTIONS(6069), + [anon_sym_BSLASHlet] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6069), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6069), + [anon_sym_BSLASHgls] = ACTIONS(6069), + [anon_sym_BSLASHGls] = ACTIONS(6069), + [anon_sym_BSLASHGLS] = ACTIONS(6069), + [anon_sym_BSLASHglspl] = ACTIONS(6069), + [anon_sym_BSLASHGlspl] = ACTIONS(6069), + [anon_sym_BSLASHGLSpl] = ACTIONS(6069), + [anon_sym_BSLASHglsdisp] = ACTIONS(6069), + [anon_sym_BSLASHglslink] = ACTIONS(6069), + [anon_sym_BSLASHglstext] = ACTIONS(6069), + [anon_sym_BSLASHGlstext] = ACTIONS(6069), + [anon_sym_BSLASHGLStext] = ACTIONS(6069), + [anon_sym_BSLASHglsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6069), + [anon_sym_BSLASHglsplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSplural] = ACTIONS(6069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6069), + [anon_sym_BSLASHglsname] = ACTIONS(6069), + [anon_sym_BSLASHGlsname] = ACTIONS(6069), + [anon_sym_BSLASHGLSname] = ACTIONS(6069), + [anon_sym_BSLASHglssymbol] = ACTIONS(6069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6069), + [anon_sym_BSLASHglsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6069), + [anon_sym_BSLASHglsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6069), + [anon_sym_BSLASHglsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6069), + [anon_sym_BSLASHglsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6069), + [anon_sym_BSLASHglsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6069), + [anon_sym_BSLASHnewacronym] = ACTIONS(6069), + [anon_sym_BSLASHacrshort] = ACTIONS(6069), + [anon_sym_BSLASHAcrshort] = ACTIONS(6069), + [anon_sym_BSLASHACRshort] = ACTIONS(6069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6069), + [anon_sym_BSLASHacrlong] = ACTIONS(6069), + [anon_sym_BSLASHAcrlong] = ACTIONS(6069), + [anon_sym_BSLASHACRlong] = ACTIONS(6069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6069), + [anon_sym_BSLASHacrfull] = ACTIONS(6069), + [anon_sym_BSLASHAcrfull] = ACTIONS(6069), + [anon_sym_BSLASHACRfull] = ACTIONS(6069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6069), + [anon_sym_BSLASHacs] = ACTIONS(6069), + [anon_sym_BSLASHAcs] = ACTIONS(6069), + [anon_sym_BSLASHacsp] = ACTIONS(6069), + [anon_sym_BSLASHAcsp] = ACTIONS(6069), + [anon_sym_BSLASHacl] = ACTIONS(6069), + [anon_sym_BSLASHAcl] = ACTIONS(6069), + [anon_sym_BSLASHaclp] = ACTIONS(6069), + [anon_sym_BSLASHAclp] = ACTIONS(6069), + [anon_sym_BSLASHacf] = ACTIONS(6069), + [anon_sym_BSLASHAcf] = ACTIONS(6069), + [anon_sym_BSLASHacfp] = ACTIONS(6069), + [anon_sym_BSLASHAcfp] = ACTIONS(6069), + [anon_sym_BSLASHac] = ACTIONS(6069), + [anon_sym_BSLASHAc] = ACTIONS(6069), + [anon_sym_BSLASHacp] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6069), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6069), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6067), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6069), + [anon_sym_BSLASHcolor] = ACTIONS(6069), + [anon_sym_BSLASHcolorbox] = ACTIONS(6069), + [anon_sym_BSLASHtextcolor] = ACTIONS(6069), + [anon_sym_BSLASHpagecolor] = ACTIONS(6069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6069), + }, + [1775] = { + [sym_command_name] = ACTIONS(5901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5901), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [sym_word] = ACTIONS(5901), + [sym_placeholder] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym__] = ACTIONS(5901), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_COLON] = ACTIONS(5901), + [anon_sym_SQUOTE] = ACTIONS(5901), + [anon_sym_BSLASHtitle] = ACTIONS(5901), + [anon_sym_BSLASHauthor] = ACTIONS(5901), + [anon_sym_BSLASHusepackage] = ACTIONS(5901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5901), + [anon_sym_BSLASHinclude] = ACTIONS(5901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5901), + [anon_sym_BSLASHinput] = ACTIONS(5901), + [anon_sym_BSLASHsubfile] = ACTIONS(5901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5901), + [anon_sym_BSLASHbibliography] = ACTIONS(5901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5901), + [anon_sym_BSLASHincludesvg] = ACTIONS(5901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5901), + [anon_sym_BSLASHimport] = ACTIONS(5901), + [anon_sym_BSLASHsubimport] = ACTIONS(5901), + [anon_sym_BSLASHinputfrom] = ACTIONS(5901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5901), + [anon_sym_BSLASHincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5901), + [anon_sym_BSLASHcaption] = ACTIONS(5901), + [anon_sym_BSLASHcite] = ACTIONS(5901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCite] = ACTIONS(5901), + [anon_sym_BSLASHnocite] = ACTIONS(5901), + [anon_sym_BSLASHcitet] = ACTIONS(5901), + [anon_sym_BSLASHcitep] = ACTIONS(5901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteauthor] = ACTIONS(5901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitetitle] = ACTIONS(5901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteyear] = ACTIONS(5901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5899), + [anon_sym_BSLASHcitedate] = ACTIONS(5901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5899), + [anon_sym_BSLASHciteurl] = ACTIONS(5901), + [anon_sym_BSLASHfullcite] = ACTIONS(5901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5901), + [anon_sym_BSLASHcitealt] = ACTIONS(5901), + [anon_sym_BSLASHcitealp] = ACTIONS(5901), + [anon_sym_BSLASHcitetext] = ACTIONS(5901), + [anon_sym_BSLASHparencite] = ACTIONS(5901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHParencite] = ACTIONS(5901), + [anon_sym_BSLASHfootcite] = ACTIONS(5901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5901), + [anon_sym_BSLASHtextcite] = ACTIONS(5901), + [anon_sym_BSLASHTextcite] = ACTIONS(5901), + [anon_sym_BSLASHsmartcite] = ACTIONS(5901), + [anon_sym_BSLASHSmartcite] = ACTIONS(5901), + [anon_sym_BSLASHsupercite] = ACTIONS(5901), + [anon_sym_BSLASHautocite] = ACTIONS(5901), + [anon_sym_BSLASHAutocite] = ACTIONS(5901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5899), + [anon_sym_BSLASHvolcite] = ACTIONS(5901), + [anon_sym_BSLASHVolcite] = ACTIONS(5901), + [anon_sym_BSLASHpvolcite] = ACTIONS(5901), + [anon_sym_BSLASHPvolcite] = ACTIONS(5901), + [anon_sym_BSLASHfvolcite] = ACTIONS(5901), + [anon_sym_BSLASHftvolcite] = ACTIONS(5901), + [anon_sym_BSLASHsvolcite] = ACTIONS(5901), + [anon_sym_BSLASHSvolcite] = ACTIONS(5901), + [anon_sym_BSLASHtvolcite] = ACTIONS(5901), + [anon_sym_BSLASHTvolcite] = ACTIONS(5901), + [anon_sym_BSLASHavolcite] = ACTIONS(5901), + [anon_sym_BSLASHAvolcite] = ACTIONS(5901), + [anon_sym_BSLASHnotecite] = ACTIONS(5901), + [anon_sym_BSLASHNotecite] = ACTIONS(5901), + [anon_sym_BSLASHpnotecite] = ACTIONS(5901), + [anon_sym_BSLASHPnotecite] = ACTIONS(5901), + [anon_sym_BSLASHfnotecite] = ACTIONS(5901), + [anon_sym_BSLASHlabel] = ACTIONS(5901), + [anon_sym_BSLASHref] = ACTIONS(5901), + [anon_sym_BSLASHeqref] = ACTIONS(5901), + [anon_sym_BSLASHvref] = ACTIONS(5901), + [anon_sym_BSLASHVref] = ACTIONS(5901), + [anon_sym_BSLASHautoref] = ACTIONS(5901), + [anon_sym_BSLASHpageref] = ACTIONS(5901), + [anon_sym_BSLASHcref] = ACTIONS(5901), + [anon_sym_BSLASHCref] = ACTIONS(5901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnameCref] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5901), + [anon_sym_BSLASHlabelcref] = ACTIONS(5901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange] = ACTIONS(5901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHCrefrange] = ACTIONS(5901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5899), + [anon_sym_BSLASHnewlabel] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand] = ACTIONS(5901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdef] = ACTIONS(5901), + [anon_sym_BSLASHlet] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5901), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5901), + [anon_sym_BSLASHgls] = ACTIONS(5901), + [anon_sym_BSLASHGls] = ACTIONS(5901), + [anon_sym_BSLASHGLS] = ACTIONS(5901), + [anon_sym_BSLASHglspl] = ACTIONS(5901), + [anon_sym_BSLASHGlspl] = ACTIONS(5901), + [anon_sym_BSLASHGLSpl] = ACTIONS(5901), + [anon_sym_BSLASHglsdisp] = ACTIONS(5901), + [anon_sym_BSLASHglslink] = ACTIONS(5901), + [anon_sym_BSLASHglstext] = ACTIONS(5901), + [anon_sym_BSLASHGlstext] = ACTIONS(5901), + [anon_sym_BSLASHGLStext] = ACTIONS(5901), + [anon_sym_BSLASHglsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5901), + [anon_sym_BSLASHglsplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSplural] = ACTIONS(5901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5901), + [anon_sym_BSLASHglsname] = ACTIONS(5901), + [anon_sym_BSLASHGlsname] = ACTIONS(5901), + [anon_sym_BSLASHGLSname] = ACTIONS(5901), + [anon_sym_BSLASHglssymbol] = ACTIONS(5901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5901), + [anon_sym_BSLASHglsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5901), + [anon_sym_BSLASHglsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5901), + [anon_sym_BSLASHglsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5901), + [anon_sym_BSLASHglsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5901), + [anon_sym_BSLASHglsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5901), + [anon_sym_BSLASHnewacronym] = ACTIONS(5901), + [anon_sym_BSLASHacrshort] = ACTIONS(5901), + [anon_sym_BSLASHAcrshort] = ACTIONS(5901), + [anon_sym_BSLASHACRshort] = ACTIONS(5901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5901), + [anon_sym_BSLASHacrlong] = ACTIONS(5901), + [anon_sym_BSLASHAcrlong] = ACTIONS(5901), + [anon_sym_BSLASHACRlong] = ACTIONS(5901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5901), + [anon_sym_BSLASHacrfull] = ACTIONS(5901), + [anon_sym_BSLASHAcrfull] = ACTIONS(5901), + [anon_sym_BSLASHACRfull] = ACTIONS(5901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5901), + [anon_sym_BSLASHacs] = ACTIONS(5901), + [anon_sym_BSLASHAcs] = ACTIONS(5901), + [anon_sym_BSLASHacsp] = ACTIONS(5901), + [anon_sym_BSLASHAcsp] = ACTIONS(5901), + [anon_sym_BSLASHacl] = ACTIONS(5901), + [anon_sym_BSLASHAcl] = ACTIONS(5901), + [anon_sym_BSLASHaclp] = ACTIONS(5901), + [anon_sym_BSLASHAclp] = ACTIONS(5901), + [anon_sym_BSLASHacf] = ACTIONS(5901), + [anon_sym_BSLASHAcf] = ACTIONS(5901), + [anon_sym_BSLASHacfp] = ACTIONS(5901), + [anon_sym_BSLASHAcfp] = ACTIONS(5901), + [anon_sym_BSLASHac] = ACTIONS(5901), + [anon_sym_BSLASHAc] = ACTIONS(5901), + [anon_sym_BSLASHacp] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5901), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5901), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5899), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5901), + [anon_sym_BSLASHcolor] = ACTIONS(5901), + [anon_sym_BSLASHcolorbox] = ACTIONS(5901), + [anon_sym_BSLASHtextcolor] = ACTIONS(5901), + [anon_sym_BSLASHpagecolor] = ACTIONS(5901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5901), + }, + [1776] = { + [sym_command_name] = ACTIONS(6245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6245), + [anon_sym_RBRACK] = ACTIONS(6243), + [anon_sym_COMMA] = ACTIONS(6243), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_RBRACE] = ACTIONS(6243), + [sym_word] = ACTIONS(6245), + [sym_placeholder] = ACTIONS(6243), + [anon_sym_PLUS] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [anon_sym_STAR] = ACTIONS(6245), + [anon_sym_SLASH] = ACTIONS(6245), + [anon_sym_CARET] = ACTIONS(6245), + [anon_sym__] = ACTIONS(6245), + [anon_sym_LT] = ACTIONS(6245), + [anon_sym_GT] = ACTIONS(6245), + [anon_sym_BANG] = ACTIONS(6245), + [anon_sym_PIPE] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_SQUOTE] = ACTIONS(6245), + [anon_sym_BSLASHtitle] = ACTIONS(6245), + [anon_sym_BSLASHauthor] = ACTIONS(6245), + [anon_sym_BSLASHusepackage] = ACTIONS(6245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), + [anon_sym_BSLASHinclude] = ACTIONS(6245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), + [anon_sym_BSLASHinput] = ACTIONS(6245), + [anon_sym_BSLASHsubfile] = ACTIONS(6245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), + [anon_sym_BSLASHbibliography] = ACTIONS(6245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), + [anon_sym_BSLASHincludesvg] = ACTIONS(6245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), + [anon_sym_BSLASHimport] = ACTIONS(6245), + [anon_sym_BSLASHsubimport] = ACTIONS(6245), + [anon_sym_BSLASHinputfrom] = ACTIONS(6245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), + [anon_sym_BSLASHincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), + [anon_sym_BSLASHcaption] = ACTIONS(6245), + [anon_sym_BSLASHcite] = ACTIONS(6245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCite] = ACTIONS(6245), + [anon_sym_BSLASHnocite] = ACTIONS(6245), + [anon_sym_BSLASHcitet] = ACTIONS(6245), + [anon_sym_BSLASHcitep] = ACTIONS(6245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteauthor] = ACTIONS(6245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitetitle] = ACTIONS(6245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteyear] = ACTIONS(6245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), + [anon_sym_BSLASHcitedate] = ACTIONS(6245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), + [anon_sym_BSLASHciteurl] = ACTIONS(6245), + [anon_sym_BSLASHfullcite] = ACTIONS(6245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), + [anon_sym_BSLASHcitealt] = ACTIONS(6245), + [anon_sym_BSLASHcitealp] = ACTIONS(6245), + [anon_sym_BSLASHcitetext] = ACTIONS(6245), + [anon_sym_BSLASHparencite] = ACTIONS(6245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHParencite] = ACTIONS(6245), + [anon_sym_BSLASHfootcite] = ACTIONS(6245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), + [anon_sym_BSLASHtextcite] = ACTIONS(6245), + [anon_sym_BSLASHTextcite] = ACTIONS(6245), + [anon_sym_BSLASHsmartcite] = ACTIONS(6245), + [anon_sym_BSLASHSmartcite] = ACTIONS(6245), + [anon_sym_BSLASHsupercite] = ACTIONS(6245), + [anon_sym_BSLASHautocite] = ACTIONS(6245), + [anon_sym_BSLASHAutocite] = ACTIONS(6245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), + [anon_sym_BSLASHvolcite] = ACTIONS(6245), + [anon_sym_BSLASHVolcite] = ACTIONS(6245), + [anon_sym_BSLASHpvolcite] = ACTIONS(6245), + [anon_sym_BSLASHPvolcite] = ACTIONS(6245), + [anon_sym_BSLASHfvolcite] = ACTIONS(6245), + [anon_sym_BSLASHftvolcite] = ACTIONS(6245), + [anon_sym_BSLASHsvolcite] = ACTIONS(6245), + [anon_sym_BSLASHSvolcite] = ACTIONS(6245), + [anon_sym_BSLASHtvolcite] = ACTIONS(6245), + [anon_sym_BSLASHTvolcite] = ACTIONS(6245), + [anon_sym_BSLASHavolcite] = ACTIONS(6245), + [anon_sym_BSLASHAvolcite] = ACTIONS(6245), + [anon_sym_BSLASHnotecite] = ACTIONS(6245), + [anon_sym_BSLASHNotecite] = ACTIONS(6245), + [anon_sym_BSLASHpnotecite] = ACTIONS(6245), + [anon_sym_BSLASHPnotecite] = ACTIONS(6245), + [anon_sym_BSLASHfnotecite] = ACTIONS(6245), + [anon_sym_BSLASHlabel] = ACTIONS(6245), + [anon_sym_BSLASHref] = ACTIONS(6245), + [anon_sym_BSLASHeqref] = ACTIONS(6245), + [anon_sym_BSLASHvref] = ACTIONS(6245), + [anon_sym_BSLASHVref] = ACTIONS(6245), + [anon_sym_BSLASHautoref] = ACTIONS(6245), + [anon_sym_BSLASHpageref] = ACTIONS(6245), + [anon_sym_BSLASHcref] = ACTIONS(6245), + [anon_sym_BSLASHCref] = ACTIONS(6245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnameCref] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), + [anon_sym_BSLASHlabelcref] = ACTIONS(6245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange] = ACTIONS(6245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHCrefrange] = ACTIONS(6245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), + [anon_sym_BSLASHnewlabel] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand] = ACTIONS(6245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdef] = ACTIONS(6245), + [anon_sym_BSLASHlet] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), + [anon_sym_BSLASHgls] = ACTIONS(6245), + [anon_sym_BSLASHGls] = ACTIONS(6245), + [anon_sym_BSLASHGLS] = ACTIONS(6245), + [anon_sym_BSLASHglspl] = ACTIONS(6245), + [anon_sym_BSLASHGlspl] = ACTIONS(6245), + [anon_sym_BSLASHGLSpl] = ACTIONS(6245), + [anon_sym_BSLASHglsdisp] = ACTIONS(6245), + [anon_sym_BSLASHglslink] = ACTIONS(6245), + [anon_sym_BSLASHglstext] = ACTIONS(6245), + [anon_sym_BSLASHGlstext] = ACTIONS(6245), + [anon_sym_BSLASHGLStext] = ACTIONS(6245), + [anon_sym_BSLASHglsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), + [anon_sym_BSLASHglsplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSplural] = ACTIONS(6245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), + [anon_sym_BSLASHglsname] = ACTIONS(6245), + [anon_sym_BSLASHGlsname] = ACTIONS(6245), + [anon_sym_BSLASHGLSname] = ACTIONS(6245), + [anon_sym_BSLASHglssymbol] = ACTIONS(6245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), + [anon_sym_BSLASHglsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), + [anon_sym_BSLASHglsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), + [anon_sym_BSLASHglsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), + [anon_sym_BSLASHglsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), + [anon_sym_BSLASHglsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), + [anon_sym_BSLASHnewacronym] = ACTIONS(6245), + [anon_sym_BSLASHacrshort] = ACTIONS(6245), + [anon_sym_BSLASHAcrshort] = ACTIONS(6245), + [anon_sym_BSLASHACRshort] = ACTIONS(6245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), + [anon_sym_BSLASHacrlong] = ACTIONS(6245), + [anon_sym_BSLASHAcrlong] = ACTIONS(6245), + [anon_sym_BSLASHACRlong] = ACTIONS(6245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), + [anon_sym_BSLASHacrfull] = ACTIONS(6245), + [anon_sym_BSLASHAcrfull] = ACTIONS(6245), + [anon_sym_BSLASHACRfull] = ACTIONS(6245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), + [anon_sym_BSLASHacs] = ACTIONS(6245), + [anon_sym_BSLASHAcs] = ACTIONS(6245), + [anon_sym_BSLASHacsp] = ACTIONS(6245), + [anon_sym_BSLASHAcsp] = ACTIONS(6245), + [anon_sym_BSLASHacl] = ACTIONS(6245), + [anon_sym_BSLASHAcl] = ACTIONS(6245), + [anon_sym_BSLASHaclp] = ACTIONS(6245), + [anon_sym_BSLASHAclp] = ACTIONS(6245), + [anon_sym_BSLASHacf] = ACTIONS(6245), + [anon_sym_BSLASHAcf] = ACTIONS(6245), + [anon_sym_BSLASHacfp] = ACTIONS(6245), + [anon_sym_BSLASHAcfp] = ACTIONS(6245), + [anon_sym_BSLASHac] = ACTIONS(6245), + [anon_sym_BSLASHAc] = ACTIONS(6245), + [anon_sym_BSLASHacp] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), + [anon_sym_BSLASHcolor] = ACTIONS(6245), + [anon_sym_BSLASHcolorbox] = ACTIONS(6245), + [anon_sym_BSLASHtextcolor] = ACTIONS(6245), + [anon_sym_BSLASHpagecolor] = ACTIONS(6245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), + }, + [1777] = { + [sym_command_name] = ACTIONS(6259), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6259), + [anon_sym_RBRACK] = ACTIONS(6257), + [anon_sym_COMMA] = ACTIONS(6257), + [anon_sym_EQ] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_word] = ACTIONS(6259), + [sym_placeholder] = ACTIONS(6257), + [anon_sym_PLUS] = ACTIONS(6259), + [anon_sym_DASH] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6259), + [anon_sym_SLASH] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym__] = ACTIONS(6259), + [anon_sym_LT] = ACTIONS(6259), + [anon_sym_GT] = ACTIONS(6259), + [anon_sym_BANG] = ACTIONS(6259), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_COLON] = ACTIONS(6259), + [anon_sym_SQUOTE] = ACTIONS(6259), + [anon_sym_BSLASHtitle] = ACTIONS(6259), + [anon_sym_BSLASHauthor] = ACTIONS(6259), + [anon_sym_BSLASHusepackage] = ACTIONS(6259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6259), + [anon_sym_BSLASHinclude] = ACTIONS(6259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6259), + [anon_sym_BSLASHinput] = ACTIONS(6259), + [anon_sym_BSLASHsubfile] = ACTIONS(6259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6259), + [anon_sym_BSLASHbibliography] = ACTIONS(6259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6259), + [anon_sym_BSLASHincludesvg] = ACTIONS(6259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6259), + [anon_sym_BSLASHimport] = ACTIONS(6259), + [anon_sym_BSLASHsubimport] = ACTIONS(6259), + [anon_sym_BSLASHinputfrom] = ACTIONS(6259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6259), + [anon_sym_BSLASHincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6259), + [anon_sym_BSLASHcaption] = ACTIONS(6259), + [anon_sym_BSLASHcite] = ACTIONS(6259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCite] = ACTIONS(6259), + [anon_sym_BSLASHnocite] = ACTIONS(6259), + [anon_sym_BSLASHcitet] = ACTIONS(6259), + [anon_sym_BSLASHcitep] = ACTIONS(6259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteauthor] = ACTIONS(6259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitetitle] = ACTIONS(6259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteyear] = ACTIONS(6259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6257), + [anon_sym_BSLASHcitedate] = ACTIONS(6259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6257), + [anon_sym_BSLASHciteurl] = ACTIONS(6259), + [anon_sym_BSLASHfullcite] = ACTIONS(6259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6259), + [anon_sym_BSLASHcitealt] = ACTIONS(6259), + [anon_sym_BSLASHcitealp] = ACTIONS(6259), + [anon_sym_BSLASHcitetext] = ACTIONS(6259), + [anon_sym_BSLASHparencite] = ACTIONS(6259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHParencite] = ACTIONS(6259), + [anon_sym_BSLASHfootcite] = ACTIONS(6259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6259), + [anon_sym_BSLASHtextcite] = ACTIONS(6259), + [anon_sym_BSLASHTextcite] = ACTIONS(6259), + [anon_sym_BSLASHsmartcite] = ACTIONS(6259), + [anon_sym_BSLASHSmartcite] = ACTIONS(6259), + [anon_sym_BSLASHsupercite] = ACTIONS(6259), + [anon_sym_BSLASHautocite] = ACTIONS(6259), + [anon_sym_BSLASHAutocite] = ACTIONS(6259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6257), + [anon_sym_BSLASHvolcite] = ACTIONS(6259), + [anon_sym_BSLASHVolcite] = ACTIONS(6259), + [anon_sym_BSLASHpvolcite] = ACTIONS(6259), + [anon_sym_BSLASHPvolcite] = ACTIONS(6259), + [anon_sym_BSLASHfvolcite] = ACTIONS(6259), + [anon_sym_BSLASHftvolcite] = ACTIONS(6259), + [anon_sym_BSLASHsvolcite] = ACTIONS(6259), + [anon_sym_BSLASHSvolcite] = ACTIONS(6259), + [anon_sym_BSLASHtvolcite] = ACTIONS(6259), + [anon_sym_BSLASHTvolcite] = ACTIONS(6259), + [anon_sym_BSLASHavolcite] = ACTIONS(6259), + [anon_sym_BSLASHAvolcite] = ACTIONS(6259), + [anon_sym_BSLASHnotecite] = ACTIONS(6259), + [anon_sym_BSLASHNotecite] = ACTIONS(6259), + [anon_sym_BSLASHpnotecite] = ACTIONS(6259), + [anon_sym_BSLASHPnotecite] = ACTIONS(6259), + [anon_sym_BSLASHfnotecite] = ACTIONS(6259), + [anon_sym_BSLASHlabel] = ACTIONS(6259), + [anon_sym_BSLASHref] = ACTIONS(6259), + [anon_sym_BSLASHeqref] = ACTIONS(6259), + [anon_sym_BSLASHvref] = ACTIONS(6259), + [anon_sym_BSLASHVref] = ACTIONS(6259), + [anon_sym_BSLASHautoref] = ACTIONS(6259), + [anon_sym_BSLASHpageref] = ACTIONS(6259), + [anon_sym_BSLASHcref] = ACTIONS(6259), + [anon_sym_BSLASHCref] = ACTIONS(6259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnameCref] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6259), + [anon_sym_BSLASHlabelcref] = ACTIONS(6259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange] = ACTIONS(6259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHCrefrange] = ACTIONS(6259), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6257), + [anon_sym_BSLASHnewlabel] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand] = ACTIONS(6259), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6259), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6259), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6257), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdef] = ACTIONS(6259), + [anon_sym_BSLASHlet] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6259), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6259), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6259), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6259), + [anon_sym_BSLASHgls] = ACTIONS(6259), + [anon_sym_BSLASHGls] = ACTIONS(6259), + [anon_sym_BSLASHGLS] = ACTIONS(6259), + [anon_sym_BSLASHglspl] = ACTIONS(6259), + [anon_sym_BSLASHGlspl] = ACTIONS(6259), + [anon_sym_BSLASHGLSpl] = ACTIONS(6259), + [anon_sym_BSLASHglsdisp] = ACTIONS(6259), + [anon_sym_BSLASHglslink] = ACTIONS(6259), + [anon_sym_BSLASHglstext] = ACTIONS(6259), + [anon_sym_BSLASHGlstext] = ACTIONS(6259), + [anon_sym_BSLASHGLStext] = ACTIONS(6259), + [anon_sym_BSLASHglsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6259), + [anon_sym_BSLASHglsplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSplural] = ACTIONS(6259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6259), + [anon_sym_BSLASHglsname] = ACTIONS(6259), + [anon_sym_BSLASHGlsname] = ACTIONS(6259), + [anon_sym_BSLASHGLSname] = ACTIONS(6259), + [anon_sym_BSLASHglssymbol] = ACTIONS(6259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6259), + [anon_sym_BSLASHglsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6259), + [anon_sym_BSLASHglsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6259), + [anon_sym_BSLASHglsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6259), + [anon_sym_BSLASHglsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6259), + [anon_sym_BSLASHglsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6259), + [anon_sym_BSLASHnewacronym] = ACTIONS(6259), + [anon_sym_BSLASHacrshort] = ACTIONS(6259), + [anon_sym_BSLASHAcrshort] = ACTIONS(6259), + [anon_sym_BSLASHACRshort] = ACTIONS(6259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6259), + [anon_sym_BSLASHacrlong] = ACTIONS(6259), + [anon_sym_BSLASHAcrlong] = ACTIONS(6259), + [anon_sym_BSLASHACRlong] = ACTIONS(6259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6259), + [anon_sym_BSLASHacrfull] = ACTIONS(6259), + [anon_sym_BSLASHAcrfull] = ACTIONS(6259), + [anon_sym_BSLASHACRfull] = ACTIONS(6259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6259), + [anon_sym_BSLASHacs] = ACTIONS(6259), + [anon_sym_BSLASHAcs] = ACTIONS(6259), + [anon_sym_BSLASHacsp] = ACTIONS(6259), + [anon_sym_BSLASHAcsp] = ACTIONS(6259), + [anon_sym_BSLASHacl] = ACTIONS(6259), + [anon_sym_BSLASHAcl] = ACTIONS(6259), + [anon_sym_BSLASHaclp] = ACTIONS(6259), + [anon_sym_BSLASHAclp] = ACTIONS(6259), + [anon_sym_BSLASHacf] = ACTIONS(6259), + [anon_sym_BSLASHAcf] = ACTIONS(6259), + [anon_sym_BSLASHacfp] = ACTIONS(6259), + [anon_sym_BSLASHAcfp] = ACTIONS(6259), + [anon_sym_BSLASHac] = ACTIONS(6259), + [anon_sym_BSLASHAc] = ACTIONS(6259), + [anon_sym_BSLASHacp] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6259), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6259), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6259), + [anon_sym_BSLASHcolor] = ACTIONS(6259), + [anon_sym_BSLASHcolorbox] = ACTIONS(6259), + [anon_sym_BSLASHtextcolor] = ACTIONS(6259), + [anon_sym_BSLASHpagecolor] = ACTIONS(6259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6259), + }, + [1778] = { + [sym_command_name] = ACTIONS(6197), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6197), + [anon_sym_RBRACK] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_RBRACE] = ACTIONS(6195), + [sym_word] = ACTIONS(6197), + [sym_placeholder] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_STAR] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym__] = ACTIONS(6197), + [anon_sym_LT] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6197), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_SQUOTE] = ACTIONS(6197), + [anon_sym_BSLASHtitle] = ACTIONS(6197), + [anon_sym_BSLASHauthor] = ACTIONS(6197), + [anon_sym_BSLASHusepackage] = ACTIONS(6197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), + [anon_sym_BSLASHinclude] = ACTIONS(6197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), + [anon_sym_BSLASHinput] = ACTIONS(6197), + [anon_sym_BSLASHsubfile] = ACTIONS(6197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), + [anon_sym_BSLASHbibliography] = ACTIONS(6197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), + [anon_sym_BSLASHincludesvg] = ACTIONS(6197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), + [anon_sym_BSLASHimport] = ACTIONS(6197), + [anon_sym_BSLASHsubimport] = ACTIONS(6197), + [anon_sym_BSLASHinputfrom] = ACTIONS(6197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), + [anon_sym_BSLASHincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), + [anon_sym_BSLASHcaption] = ACTIONS(6197), + [anon_sym_BSLASHcite] = ACTIONS(6197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCite] = ACTIONS(6197), + [anon_sym_BSLASHnocite] = ACTIONS(6197), + [anon_sym_BSLASHcitet] = ACTIONS(6197), + [anon_sym_BSLASHcitep] = ACTIONS(6197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteauthor] = ACTIONS(6197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitetitle] = ACTIONS(6197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteyear] = ACTIONS(6197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), + [anon_sym_BSLASHcitedate] = ACTIONS(6197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), + [anon_sym_BSLASHciteurl] = ACTIONS(6197), + [anon_sym_BSLASHfullcite] = ACTIONS(6197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), + [anon_sym_BSLASHcitealt] = ACTIONS(6197), + [anon_sym_BSLASHcitealp] = ACTIONS(6197), + [anon_sym_BSLASHcitetext] = ACTIONS(6197), + [anon_sym_BSLASHparencite] = ACTIONS(6197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHParencite] = ACTIONS(6197), + [anon_sym_BSLASHfootcite] = ACTIONS(6197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), + [anon_sym_BSLASHtextcite] = ACTIONS(6197), + [anon_sym_BSLASHTextcite] = ACTIONS(6197), + [anon_sym_BSLASHsmartcite] = ACTIONS(6197), + [anon_sym_BSLASHSmartcite] = ACTIONS(6197), + [anon_sym_BSLASHsupercite] = ACTIONS(6197), + [anon_sym_BSLASHautocite] = ACTIONS(6197), + [anon_sym_BSLASHAutocite] = ACTIONS(6197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), + [anon_sym_BSLASHvolcite] = ACTIONS(6197), + [anon_sym_BSLASHVolcite] = ACTIONS(6197), + [anon_sym_BSLASHpvolcite] = ACTIONS(6197), + [anon_sym_BSLASHPvolcite] = ACTIONS(6197), + [anon_sym_BSLASHfvolcite] = ACTIONS(6197), + [anon_sym_BSLASHftvolcite] = ACTIONS(6197), + [anon_sym_BSLASHsvolcite] = ACTIONS(6197), + [anon_sym_BSLASHSvolcite] = ACTIONS(6197), + [anon_sym_BSLASHtvolcite] = ACTIONS(6197), + [anon_sym_BSLASHTvolcite] = ACTIONS(6197), + [anon_sym_BSLASHavolcite] = ACTIONS(6197), + [anon_sym_BSLASHAvolcite] = ACTIONS(6197), + [anon_sym_BSLASHnotecite] = ACTIONS(6197), + [anon_sym_BSLASHNotecite] = ACTIONS(6197), + [anon_sym_BSLASHpnotecite] = ACTIONS(6197), + [anon_sym_BSLASHPnotecite] = ACTIONS(6197), + [anon_sym_BSLASHfnotecite] = ACTIONS(6197), + [anon_sym_BSLASHlabel] = ACTIONS(6197), + [anon_sym_BSLASHref] = ACTIONS(6197), + [anon_sym_BSLASHeqref] = ACTIONS(6197), + [anon_sym_BSLASHvref] = ACTIONS(6197), + [anon_sym_BSLASHVref] = ACTIONS(6197), + [anon_sym_BSLASHautoref] = ACTIONS(6197), + [anon_sym_BSLASHpageref] = ACTIONS(6197), + [anon_sym_BSLASHcref] = ACTIONS(6197), + [anon_sym_BSLASHCref] = ACTIONS(6197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnameCref] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), + [anon_sym_BSLASHlabelcref] = ACTIONS(6197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange] = ACTIONS(6197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHCrefrange] = ACTIONS(6197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), + [anon_sym_BSLASHnewlabel] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand] = ACTIONS(6197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdef] = ACTIONS(6197), + [anon_sym_BSLASHlet] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), + [anon_sym_BSLASHgls] = ACTIONS(6197), + [anon_sym_BSLASHGls] = ACTIONS(6197), + [anon_sym_BSLASHGLS] = ACTIONS(6197), + [anon_sym_BSLASHglspl] = ACTIONS(6197), + [anon_sym_BSLASHGlspl] = ACTIONS(6197), + [anon_sym_BSLASHGLSpl] = ACTIONS(6197), + [anon_sym_BSLASHglsdisp] = ACTIONS(6197), + [anon_sym_BSLASHglslink] = ACTIONS(6197), + [anon_sym_BSLASHglstext] = ACTIONS(6197), + [anon_sym_BSLASHGlstext] = ACTIONS(6197), + [anon_sym_BSLASHGLStext] = ACTIONS(6197), + [anon_sym_BSLASHglsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), + [anon_sym_BSLASHglsplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSplural] = ACTIONS(6197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), + [anon_sym_BSLASHglsname] = ACTIONS(6197), + [anon_sym_BSLASHGlsname] = ACTIONS(6197), + [anon_sym_BSLASHGLSname] = ACTIONS(6197), + [anon_sym_BSLASHglssymbol] = ACTIONS(6197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), + [anon_sym_BSLASHglsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), + [anon_sym_BSLASHglsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), + [anon_sym_BSLASHglsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), + [anon_sym_BSLASHglsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), + [anon_sym_BSLASHglsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), + [anon_sym_BSLASHnewacronym] = ACTIONS(6197), + [anon_sym_BSLASHacrshort] = ACTIONS(6197), + [anon_sym_BSLASHAcrshort] = ACTIONS(6197), + [anon_sym_BSLASHACRshort] = ACTIONS(6197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), + [anon_sym_BSLASHacrlong] = ACTIONS(6197), + [anon_sym_BSLASHAcrlong] = ACTIONS(6197), + [anon_sym_BSLASHACRlong] = ACTIONS(6197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), + [anon_sym_BSLASHacrfull] = ACTIONS(6197), + [anon_sym_BSLASHAcrfull] = ACTIONS(6197), + [anon_sym_BSLASHACRfull] = ACTIONS(6197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), + [anon_sym_BSLASHacs] = ACTIONS(6197), + [anon_sym_BSLASHAcs] = ACTIONS(6197), + [anon_sym_BSLASHacsp] = ACTIONS(6197), + [anon_sym_BSLASHAcsp] = ACTIONS(6197), + [anon_sym_BSLASHacl] = ACTIONS(6197), + [anon_sym_BSLASHAcl] = ACTIONS(6197), + [anon_sym_BSLASHaclp] = ACTIONS(6197), + [anon_sym_BSLASHAclp] = ACTIONS(6197), + [anon_sym_BSLASHacf] = ACTIONS(6197), + [anon_sym_BSLASHAcf] = ACTIONS(6197), + [anon_sym_BSLASHacfp] = ACTIONS(6197), + [anon_sym_BSLASHAcfp] = ACTIONS(6197), + [anon_sym_BSLASHac] = ACTIONS(6197), + [anon_sym_BSLASHAc] = ACTIONS(6197), + [anon_sym_BSLASHacp] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), + [anon_sym_BSLASHcolor] = ACTIONS(6197), + [anon_sym_BSLASHcolorbox] = ACTIONS(6197), + [anon_sym_BSLASHtextcolor] = ACTIONS(6197), + [anon_sym_BSLASHpagecolor] = ACTIONS(6197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), + }, + [1779] = { + [sym_command_name] = ACTIONS(5957), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5957), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [sym_word] = ACTIONS(5957), + [sym_placeholder] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5957), + [anon_sym_SLASH] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5957), + [anon_sym__] = ACTIONS(5957), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PIPE] = ACTIONS(5957), + [anon_sym_COLON] = ACTIONS(5957), + [anon_sym_SQUOTE] = ACTIONS(5957), + [anon_sym_BSLASHtitle] = ACTIONS(5957), + [anon_sym_BSLASHauthor] = ACTIONS(5957), + [anon_sym_BSLASHusepackage] = ACTIONS(5957), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5957), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5957), + [anon_sym_BSLASHinclude] = ACTIONS(5957), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5957), + [anon_sym_BSLASHinput] = ACTIONS(5957), + [anon_sym_BSLASHsubfile] = ACTIONS(5957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5957), + [anon_sym_BSLASHbibliography] = ACTIONS(5957), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5957), + [anon_sym_BSLASHincludesvg] = ACTIONS(5957), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5957), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5957), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5957), + [anon_sym_BSLASHimport] = ACTIONS(5957), + [anon_sym_BSLASHsubimport] = ACTIONS(5957), + [anon_sym_BSLASHinputfrom] = ACTIONS(5957), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5957), + [anon_sym_BSLASHincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5957), + [anon_sym_BSLASHcaption] = ACTIONS(5957), + [anon_sym_BSLASHcite] = ACTIONS(5957), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCite] = ACTIONS(5957), + [anon_sym_BSLASHnocite] = ACTIONS(5957), + [anon_sym_BSLASHcitet] = ACTIONS(5957), + [anon_sym_BSLASHcitep] = ACTIONS(5957), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteauthor] = ACTIONS(5957), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5957), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitetitle] = ACTIONS(5957), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteyear] = ACTIONS(5957), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5955), + [anon_sym_BSLASHcitedate] = ACTIONS(5957), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5955), + [anon_sym_BSLASHciteurl] = ACTIONS(5957), + [anon_sym_BSLASHfullcite] = ACTIONS(5957), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5957), + [anon_sym_BSLASHcitealt] = ACTIONS(5957), + [anon_sym_BSLASHcitealp] = ACTIONS(5957), + [anon_sym_BSLASHcitetext] = ACTIONS(5957), + [anon_sym_BSLASHparencite] = ACTIONS(5957), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHParencite] = ACTIONS(5957), + [anon_sym_BSLASHfootcite] = ACTIONS(5957), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5957), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5957), + [anon_sym_BSLASHtextcite] = ACTIONS(5957), + [anon_sym_BSLASHTextcite] = ACTIONS(5957), + [anon_sym_BSLASHsmartcite] = ACTIONS(5957), + [anon_sym_BSLASHSmartcite] = ACTIONS(5957), + [anon_sym_BSLASHsupercite] = ACTIONS(5957), + [anon_sym_BSLASHautocite] = ACTIONS(5957), + [anon_sym_BSLASHAutocite] = ACTIONS(5957), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5955), + [anon_sym_BSLASHvolcite] = ACTIONS(5957), + [anon_sym_BSLASHVolcite] = ACTIONS(5957), + [anon_sym_BSLASHpvolcite] = ACTIONS(5957), + [anon_sym_BSLASHPvolcite] = ACTIONS(5957), + [anon_sym_BSLASHfvolcite] = ACTIONS(5957), + [anon_sym_BSLASHftvolcite] = ACTIONS(5957), + [anon_sym_BSLASHsvolcite] = ACTIONS(5957), + [anon_sym_BSLASHSvolcite] = ACTIONS(5957), + [anon_sym_BSLASHtvolcite] = ACTIONS(5957), + [anon_sym_BSLASHTvolcite] = ACTIONS(5957), + [anon_sym_BSLASHavolcite] = ACTIONS(5957), + [anon_sym_BSLASHAvolcite] = ACTIONS(5957), + [anon_sym_BSLASHnotecite] = ACTIONS(5957), + [anon_sym_BSLASHNotecite] = ACTIONS(5957), + [anon_sym_BSLASHpnotecite] = ACTIONS(5957), + [anon_sym_BSLASHPnotecite] = ACTIONS(5957), + [anon_sym_BSLASHfnotecite] = ACTIONS(5957), + [anon_sym_BSLASHlabel] = ACTIONS(5957), + [anon_sym_BSLASHref] = ACTIONS(5957), + [anon_sym_BSLASHeqref] = ACTIONS(5957), + [anon_sym_BSLASHvref] = ACTIONS(5957), + [anon_sym_BSLASHVref] = ACTIONS(5957), + [anon_sym_BSLASHautoref] = ACTIONS(5957), + [anon_sym_BSLASHpageref] = ACTIONS(5957), + [anon_sym_BSLASHcref] = ACTIONS(5957), + [anon_sym_BSLASHCref] = ACTIONS(5957), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnameCref] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5957), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5957), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5957), + [anon_sym_BSLASHlabelcref] = ACTIONS(5957), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange] = ACTIONS(5957), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHCrefrange] = ACTIONS(5957), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5955), + [anon_sym_BSLASHnewlabel] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand] = ACTIONS(5957), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5957), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5957), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5955), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5957), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdef] = ACTIONS(5957), + [anon_sym_BSLASHlet] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5957), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5957), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5957), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5957), + [anon_sym_BSLASHgls] = ACTIONS(5957), + [anon_sym_BSLASHGls] = ACTIONS(5957), + [anon_sym_BSLASHGLS] = ACTIONS(5957), + [anon_sym_BSLASHglspl] = ACTIONS(5957), + [anon_sym_BSLASHGlspl] = ACTIONS(5957), + [anon_sym_BSLASHGLSpl] = ACTIONS(5957), + [anon_sym_BSLASHglsdisp] = ACTIONS(5957), + [anon_sym_BSLASHglslink] = ACTIONS(5957), + [anon_sym_BSLASHglstext] = ACTIONS(5957), + [anon_sym_BSLASHGlstext] = ACTIONS(5957), + [anon_sym_BSLASHGLStext] = ACTIONS(5957), + [anon_sym_BSLASHglsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5957), + [anon_sym_BSLASHglsplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSplural] = ACTIONS(5957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5957), + [anon_sym_BSLASHglsname] = ACTIONS(5957), + [anon_sym_BSLASHGlsname] = ACTIONS(5957), + [anon_sym_BSLASHGLSname] = ACTIONS(5957), + [anon_sym_BSLASHglssymbol] = ACTIONS(5957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5957), + [anon_sym_BSLASHglsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5957), + [anon_sym_BSLASHglsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5957), + [anon_sym_BSLASHglsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5957), + [anon_sym_BSLASHglsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5957), + [anon_sym_BSLASHglsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5957), + [anon_sym_BSLASHnewacronym] = ACTIONS(5957), + [anon_sym_BSLASHacrshort] = ACTIONS(5957), + [anon_sym_BSLASHAcrshort] = ACTIONS(5957), + [anon_sym_BSLASHACRshort] = ACTIONS(5957), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5957), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5957), + [anon_sym_BSLASHacrlong] = ACTIONS(5957), + [anon_sym_BSLASHAcrlong] = ACTIONS(5957), + [anon_sym_BSLASHACRlong] = ACTIONS(5957), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5957), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5957), + [anon_sym_BSLASHacrfull] = ACTIONS(5957), + [anon_sym_BSLASHAcrfull] = ACTIONS(5957), + [anon_sym_BSLASHACRfull] = ACTIONS(5957), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5957), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5957), + [anon_sym_BSLASHacs] = ACTIONS(5957), + [anon_sym_BSLASHAcs] = ACTIONS(5957), + [anon_sym_BSLASHacsp] = ACTIONS(5957), + [anon_sym_BSLASHAcsp] = ACTIONS(5957), + [anon_sym_BSLASHacl] = ACTIONS(5957), + [anon_sym_BSLASHAcl] = ACTIONS(5957), + [anon_sym_BSLASHaclp] = ACTIONS(5957), + [anon_sym_BSLASHAclp] = ACTIONS(5957), + [anon_sym_BSLASHacf] = ACTIONS(5957), + [anon_sym_BSLASHAcf] = ACTIONS(5957), + [anon_sym_BSLASHacfp] = ACTIONS(5957), + [anon_sym_BSLASHAcfp] = ACTIONS(5957), + [anon_sym_BSLASHac] = ACTIONS(5957), + [anon_sym_BSLASHAc] = ACTIONS(5957), + [anon_sym_BSLASHacp] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5957), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5957), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5957), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5957), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5957), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5957), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5957), + [anon_sym_BSLASHcolor] = ACTIONS(5957), + [anon_sym_BSLASHcolorbox] = ACTIONS(5957), + [anon_sym_BSLASHtextcolor] = ACTIONS(5957), + [anon_sym_BSLASHpagecolor] = ACTIONS(5957), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5957), + }, + [1780] = { + [sym_command_name] = ACTIONS(6253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6253), + [anon_sym_RBRACK] = ACTIONS(6251), + [anon_sym_COMMA] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6251), + [sym_word] = ACTIONS(6253), + [sym_placeholder] = ACTIONS(6251), + [anon_sym_PLUS] = ACTIONS(6253), + [anon_sym_DASH] = ACTIONS(6253), + [anon_sym_STAR] = ACTIONS(6253), + [anon_sym_SLASH] = ACTIONS(6253), + [anon_sym_CARET] = ACTIONS(6253), + [anon_sym__] = ACTIONS(6253), + [anon_sym_LT] = ACTIONS(6253), + [anon_sym_GT] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [anon_sym_PIPE] = ACTIONS(6253), + [anon_sym_COLON] = ACTIONS(6253), + [anon_sym_SQUOTE] = ACTIONS(6253), + [anon_sym_BSLASHtitle] = ACTIONS(6253), + [anon_sym_BSLASHauthor] = ACTIONS(6253), + [anon_sym_BSLASHusepackage] = ACTIONS(6253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), + [anon_sym_BSLASHinclude] = ACTIONS(6253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), + [anon_sym_BSLASHinput] = ACTIONS(6253), + [anon_sym_BSLASHsubfile] = ACTIONS(6253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), + [anon_sym_BSLASHbibliography] = ACTIONS(6253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), + [anon_sym_BSLASHincludesvg] = ACTIONS(6253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), + [anon_sym_BSLASHimport] = ACTIONS(6253), + [anon_sym_BSLASHsubimport] = ACTIONS(6253), + [anon_sym_BSLASHinputfrom] = ACTIONS(6253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), + [anon_sym_BSLASHincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), + [anon_sym_BSLASHcaption] = ACTIONS(6253), + [anon_sym_BSLASHcite] = ACTIONS(6253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCite] = ACTIONS(6253), + [anon_sym_BSLASHnocite] = ACTIONS(6253), + [anon_sym_BSLASHcitet] = ACTIONS(6253), + [anon_sym_BSLASHcitep] = ACTIONS(6253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteauthor] = ACTIONS(6253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitetitle] = ACTIONS(6253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteyear] = ACTIONS(6253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), + [anon_sym_BSLASHcitedate] = ACTIONS(6253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), + [anon_sym_BSLASHciteurl] = ACTIONS(6253), + [anon_sym_BSLASHfullcite] = ACTIONS(6253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), + [anon_sym_BSLASHcitealt] = ACTIONS(6253), + [anon_sym_BSLASHcitealp] = ACTIONS(6253), + [anon_sym_BSLASHcitetext] = ACTIONS(6253), + [anon_sym_BSLASHparencite] = ACTIONS(6253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHParencite] = ACTIONS(6253), + [anon_sym_BSLASHfootcite] = ACTIONS(6253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), + [anon_sym_BSLASHtextcite] = ACTIONS(6253), + [anon_sym_BSLASHTextcite] = ACTIONS(6253), + [anon_sym_BSLASHsmartcite] = ACTIONS(6253), + [anon_sym_BSLASHSmartcite] = ACTIONS(6253), + [anon_sym_BSLASHsupercite] = ACTIONS(6253), + [anon_sym_BSLASHautocite] = ACTIONS(6253), + [anon_sym_BSLASHAutocite] = ACTIONS(6253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), + [anon_sym_BSLASHvolcite] = ACTIONS(6253), + [anon_sym_BSLASHVolcite] = ACTIONS(6253), + [anon_sym_BSLASHpvolcite] = ACTIONS(6253), + [anon_sym_BSLASHPvolcite] = ACTIONS(6253), + [anon_sym_BSLASHfvolcite] = ACTIONS(6253), + [anon_sym_BSLASHftvolcite] = ACTIONS(6253), + [anon_sym_BSLASHsvolcite] = ACTIONS(6253), + [anon_sym_BSLASHSvolcite] = ACTIONS(6253), + [anon_sym_BSLASHtvolcite] = ACTIONS(6253), + [anon_sym_BSLASHTvolcite] = ACTIONS(6253), + [anon_sym_BSLASHavolcite] = ACTIONS(6253), + [anon_sym_BSLASHAvolcite] = ACTIONS(6253), + [anon_sym_BSLASHnotecite] = ACTIONS(6253), + [anon_sym_BSLASHNotecite] = ACTIONS(6253), + [anon_sym_BSLASHpnotecite] = ACTIONS(6253), + [anon_sym_BSLASHPnotecite] = ACTIONS(6253), + [anon_sym_BSLASHfnotecite] = ACTIONS(6253), + [anon_sym_BSLASHlabel] = ACTIONS(6253), + [anon_sym_BSLASHref] = ACTIONS(6253), + [anon_sym_BSLASHeqref] = ACTIONS(6253), + [anon_sym_BSLASHvref] = ACTIONS(6253), + [anon_sym_BSLASHVref] = ACTIONS(6253), + [anon_sym_BSLASHautoref] = ACTIONS(6253), + [anon_sym_BSLASHpageref] = ACTIONS(6253), + [anon_sym_BSLASHcref] = ACTIONS(6253), + [anon_sym_BSLASHCref] = ACTIONS(6253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnameCref] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), + [anon_sym_BSLASHlabelcref] = ACTIONS(6253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange] = ACTIONS(6253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHCrefrange] = ACTIONS(6253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), + [anon_sym_BSLASHnewlabel] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand] = ACTIONS(6253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdef] = ACTIONS(6253), + [anon_sym_BSLASHlet] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), + [anon_sym_BSLASHgls] = ACTIONS(6253), + [anon_sym_BSLASHGls] = ACTIONS(6253), + [anon_sym_BSLASHGLS] = ACTIONS(6253), + [anon_sym_BSLASHglspl] = ACTIONS(6253), + [anon_sym_BSLASHGlspl] = ACTIONS(6253), + [anon_sym_BSLASHGLSpl] = ACTIONS(6253), + [anon_sym_BSLASHglsdisp] = ACTIONS(6253), + [anon_sym_BSLASHglslink] = ACTIONS(6253), + [anon_sym_BSLASHglstext] = ACTIONS(6253), + [anon_sym_BSLASHGlstext] = ACTIONS(6253), + [anon_sym_BSLASHGLStext] = ACTIONS(6253), + [anon_sym_BSLASHglsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), + [anon_sym_BSLASHglsplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSplural] = ACTIONS(6253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), + [anon_sym_BSLASHglsname] = ACTIONS(6253), + [anon_sym_BSLASHGlsname] = ACTIONS(6253), + [anon_sym_BSLASHGLSname] = ACTIONS(6253), + [anon_sym_BSLASHglssymbol] = ACTIONS(6253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), + [anon_sym_BSLASHglsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), + [anon_sym_BSLASHglsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), + [anon_sym_BSLASHglsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), + [anon_sym_BSLASHglsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), + [anon_sym_BSLASHglsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), + [anon_sym_BSLASHnewacronym] = ACTIONS(6253), + [anon_sym_BSLASHacrshort] = ACTIONS(6253), + [anon_sym_BSLASHAcrshort] = ACTIONS(6253), + [anon_sym_BSLASHACRshort] = ACTIONS(6253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), + [anon_sym_BSLASHacrlong] = ACTIONS(6253), + [anon_sym_BSLASHAcrlong] = ACTIONS(6253), + [anon_sym_BSLASHACRlong] = ACTIONS(6253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), + [anon_sym_BSLASHacrfull] = ACTIONS(6253), + [anon_sym_BSLASHAcrfull] = ACTIONS(6253), + [anon_sym_BSLASHACRfull] = ACTIONS(6253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), + [anon_sym_BSLASHacs] = ACTIONS(6253), + [anon_sym_BSLASHAcs] = ACTIONS(6253), + [anon_sym_BSLASHacsp] = ACTIONS(6253), + [anon_sym_BSLASHAcsp] = ACTIONS(6253), + [anon_sym_BSLASHacl] = ACTIONS(6253), + [anon_sym_BSLASHAcl] = ACTIONS(6253), + [anon_sym_BSLASHaclp] = ACTIONS(6253), + [anon_sym_BSLASHAclp] = ACTIONS(6253), + [anon_sym_BSLASHacf] = ACTIONS(6253), + [anon_sym_BSLASHAcf] = ACTIONS(6253), + [anon_sym_BSLASHacfp] = ACTIONS(6253), + [anon_sym_BSLASHAcfp] = ACTIONS(6253), + [anon_sym_BSLASHac] = ACTIONS(6253), + [anon_sym_BSLASHAc] = ACTIONS(6253), + [anon_sym_BSLASHacp] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), + [anon_sym_BSLASHcolor] = ACTIONS(6253), + [anon_sym_BSLASHcolorbox] = ACTIONS(6253), + [anon_sym_BSLASHtextcolor] = ACTIONS(6253), + [anon_sym_BSLASHpagecolor] = ACTIONS(6253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), + }, + [1781] = { + [sym_command_name] = ACTIONS(5893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5893), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [sym_word] = ACTIONS(5893), + [sym_placeholder] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym__] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_SQUOTE] = ACTIONS(5893), + [anon_sym_BSLASHtitle] = ACTIONS(5893), + [anon_sym_BSLASHauthor] = ACTIONS(5893), + [anon_sym_BSLASHusepackage] = ACTIONS(5893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5893), + [anon_sym_BSLASHinclude] = ACTIONS(5893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5893), + [anon_sym_BSLASHinput] = ACTIONS(5893), + [anon_sym_BSLASHsubfile] = ACTIONS(5893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5893), + [anon_sym_BSLASHbibliography] = ACTIONS(5893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5893), + [anon_sym_BSLASHincludesvg] = ACTIONS(5893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5893), + [anon_sym_BSLASHimport] = ACTIONS(5893), + [anon_sym_BSLASHsubimport] = ACTIONS(5893), + [anon_sym_BSLASHinputfrom] = ACTIONS(5893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5893), + [anon_sym_BSLASHincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5893), + [anon_sym_BSLASHcaption] = ACTIONS(5893), + [anon_sym_BSLASHcite] = ACTIONS(5893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCite] = ACTIONS(5893), + [anon_sym_BSLASHnocite] = ACTIONS(5893), + [anon_sym_BSLASHcitet] = ACTIONS(5893), + [anon_sym_BSLASHcitep] = ACTIONS(5893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteauthor] = ACTIONS(5893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitetitle] = ACTIONS(5893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteyear] = ACTIONS(5893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5891), + [anon_sym_BSLASHcitedate] = ACTIONS(5893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5891), + [anon_sym_BSLASHciteurl] = ACTIONS(5893), + [anon_sym_BSLASHfullcite] = ACTIONS(5893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5893), + [anon_sym_BSLASHcitealt] = ACTIONS(5893), + [anon_sym_BSLASHcitealp] = ACTIONS(5893), + [anon_sym_BSLASHcitetext] = ACTIONS(5893), + [anon_sym_BSLASHparencite] = ACTIONS(5893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHParencite] = ACTIONS(5893), + [anon_sym_BSLASHfootcite] = ACTIONS(5893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5893), + [anon_sym_BSLASHtextcite] = ACTIONS(5893), + [anon_sym_BSLASHTextcite] = ACTIONS(5893), + [anon_sym_BSLASHsmartcite] = ACTIONS(5893), + [anon_sym_BSLASHSmartcite] = ACTIONS(5893), + [anon_sym_BSLASHsupercite] = ACTIONS(5893), + [anon_sym_BSLASHautocite] = ACTIONS(5893), + [anon_sym_BSLASHAutocite] = ACTIONS(5893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5891), + [anon_sym_BSLASHvolcite] = ACTIONS(5893), + [anon_sym_BSLASHVolcite] = ACTIONS(5893), + [anon_sym_BSLASHpvolcite] = ACTIONS(5893), + [anon_sym_BSLASHPvolcite] = ACTIONS(5893), + [anon_sym_BSLASHfvolcite] = ACTIONS(5893), + [anon_sym_BSLASHftvolcite] = ACTIONS(5893), + [anon_sym_BSLASHsvolcite] = ACTIONS(5893), + [anon_sym_BSLASHSvolcite] = ACTIONS(5893), + [anon_sym_BSLASHtvolcite] = ACTIONS(5893), + [anon_sym_BSLASHTvolcite] = ACTIONS(5893), + [anon_sym_BSLASHavolcite] = ACTIONS(5893), + [anon_sym_BSLASHAvolcite] = ACTIONS(5893), + [anon_sym_BSLASHnotecite] = ACTIONS(5893), + [anon_sym_BSLASHNotecite] = ACTIONS(5893), + [anon_sym_BSLASHpnotecite] = ACTIONS(5893), + [anon_sym_BSLASHPnotecite] = ACTIONS(5893), + [anon_sym_BSLASHfnotecite] = ACTIONS(5893), + [anon_sym_BSLASHlabel] = ACTIONS(5893), + [anon_sym_BSLASHref] = ACTIONS(5893), + [anon_sym_BSLASHeqref] = ACTIONS(5893), + [anon_sym_BSLASHvref] = ACTIONS(5893), + [anon_sym_BSLASHVref] = ACTIONS(5893), + [anon_sym_BSLASHautoref] = ACTIONS(5893), + [anon_sym_BSLASHpageref] = ACTIONS(5893), + [anon_sym_BSLASHcref] = ACTIONS(5893), + [anon_sym_BSLASHCref] = ACTIONS(5893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnameCref] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5893), + [anon_sym_BSLASHlabelcref] = ACTIONS(5893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange] = ACTIONS(5893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHCrefrange] = ACTIONS(5893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5891), + [anon_sym_BSLASHnewlabel] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand] = ACTIONS(5893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdef] = ACTIONS(5893), + [anon_sym_BSLASHlet] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5893), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5893), + [anon_sym_BSLASHgls] = ACTIONS(5893), + [anon_sym_BSLASHGls] = ACTIONS(5893), + [anon_sym_BSLASHGLS] = ACTIONS(5893), + [anon_sym_BSLASHglspl] = ACTIONS(5893), + [anon_sym_BSLASHGlspl] = ACTIONS(5893), + [anon_sym_BSLASHGLSpl] = ACTIONS(5893), + [anon_sym_BSLASHglsdisp] = ACTIONS(5893), + [anon_sym_BSLASHglslink] = ACTIONS(5893), + [anon_sym_BSLASHglstext] = ACTIONS(5893), + [anon_sym_BSLASHGlstext] = ACTIONS(5893), + [anon_sym_BSLASHGLStext] = ACTIONS(5893), + [anon_sym_BSLASHglsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5893), + [anon_sym_BSLASHglsplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSplural] = ACTIONS(5893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5893), + [anon_sym_BSLASHglsname] = ACTIONS(5893), + [anon_sym_BSLASHGlsname] = ACTIONS(5893), + [anon_sym_BSLASHGLSname] = ACTIONS(5893), + [anon_sym_BSLASHglssymbol] = ACTIONS(5893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5893), + [anon_sym_BSLASHglsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5893), + [anon_sym_BSLASHglsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5893), + [anon_sym_BSLASHglsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5893), + [anon_sym_BSLASHglsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5893), + [anon_sym_BSLASHglsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5893), + [anon_sym_BSLASHnewacronym] = ACTIONS(5893), + [anon_sym_BSLASHacrshort] = ACTIONS(5893), + [anon_sym_BSLASHAcrshort] = ACTIONS(5893), + [anon_sym_BSLASHACRshort] = ACTIONS(5893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5893), + [anon_sym_BSLASHacrlong] = ACTIONS(5893), + [anon_sym_BSLASHAcrlong] = ACTIONS(5893), + [anon_sym_BSLASHACRlong] = ACTIONS(5893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5893), + [anon_sym_BSLASHacrfull] = ACTIONS(5893), + [anon_sym_BSLASHAcrfull] = ACTIONS(5893), + [anon_sym_BSLASHACRfull] = ACTIONS(5893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5893), + [anon_sym_BSLASHacs] = ACTIONS(5893), + [anon_sym_BSLASHAcs] = ACTIONS(5893), + [anon_sym_BSLASHacsp] = ACTIONS(5893), + [anon_sym_BSLASHAcsp] = ACTIONS(5893), + [anon_sym_BSLASHacl] = ACTIONS(5893), + [anon_sym_BSLASHAcl] = ACTIONS(5893), + [anon_sym_BSLASHaclp] = ACTIONS(5893), + [anon_sym_BSLASHAclp] = ACTIONS(5893), + [anon_sym_BSLASHacf] = ACTIONS(5893), + [anon_sym_BSLASHAcf] = ACTIONS(5893), + [anon_sym_BSLASHacfp] = ACTIONS(5893), + [anon_sym_BSLASHAcfp] = ACTIONS(5893), + [anon_sym_BSLASHac] = ACTIONS(5893), + [anon_sym_BSLASHAc] = ACTIONS(5893), + [anon_sym_BSLASHacp] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5893), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5893), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5893), + [anon_sym_BSLASHcolor] = ACTIONS(5893), + [anon_sym_BSLASHcolorbox] = ACTIONS(5893), + [anon_sym_BSLASHtextcolor] = ACTIONS(5893), + [anon_sym_BSLASHpagecolor] = ACTIONS(5893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5893), + }, + [1782] = { + [sym_command_name] = ACTIONS(6147), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6147), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [sym_word] = ACTIONS(6147), + [sym_placeholder] = ACTIONS(6145), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym__] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(6147), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6147), + [anon_sym_SQUOTE] = ACTIONS(6147), + [anon_sym_BSLASHtitle] = ACTIONS(6147), + [anon_sym_BSLASHauthor] = ACTIONS(6147), + [anon_sym_BSLASHusepackage] = ACTIONS(6147), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6147), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6147), + [anon_sym_BSLASHinclude] = ACTIONS(6147), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6147), + [anon_sym_BSLASHinput] = ACTIONS(6147), + [anon_sym_BSLASHsubfile] = ACTIONS(6147), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6147), + [anon_sym_BSLASHbibliography] = ACTIONS(6147), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6147), + [anon_sym_BSLASHincludesvg] = ACTIONS(6147), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6147), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6147), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6147), + [anon_sym_BSLASHimport] = ACTIONS(6147), + [anon_sym_BSLASHsubimport] = ACTIONS(6147), + [anon_sym_BSLASHinputfrom] = ACTIONS(6147), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6147), + [anon_sym_BSLASHincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6147), + [anon_sym_BSLASHcaption] = ACTIONS(6147), + [anon_sym_BSLASHcite] = ACTIONS(6147), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCite] = ACTIONS(6147), + [anon_sym_BSLASHnocite] = ACTIONS(6147), + [anon_sym_BSLASHcitet] = ACTIONS(6147), + [anon_sym_BSLASHcitep] = ACTIONS(6147), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteauthor] = ACTIONS(6147), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6147), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitetitle] = ACTIONS(6147), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteyear] = ACTIONS(6147), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6145), + [anon_sym_BSLASHcitedate] = ACTIONS(6147), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6145), + [anon_sym_BSLASHciteurl] = ACTIONS(6147), + [anon_sym_BSLASHfullcite] = ACTIONS(6147), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6147), + [anon_sym_BSLASHcitealt] = ACTIONS(6147), + [anon_sym_BSLASHcitealp] = ACTIONS(6147), + [anon_sym_BSLASHcitetext] = ACTIONS(6147), + [anon_sym_BSLASHparencite] = ACTIONS(6147), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHParencite] = ACTIONS(6147), + [anon_sym_BSLASHfootcite] = ACTIONS(6147), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6147), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6147), + [anon_sym_BSLASHtextcite] = ACTIONS(6147), + [anon_sym_BSLASHTextcite] = ACTIONS(6147), + [anon_sym_BSLASHsmartcite] = ACTIONS(6147), + [anon_sym_BSLASHSmartcite] = ACTIONS(6147), + [anon_sym_BSLASHsupercite] = ACTIONS(6147), + [anon_sym_BSLASHautocite] = ACTIONS(6147), + [anon_sym_BSLASHAutocite] = ACTIONS(6147), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6145), + [anon_sym_BSLASHvolcite] = ACTIONS(6147), + [anon_sym_BSLASHVolcite] = ACTIONS(6147), + [anon_sym_BSLASHpvolcite] = ACTIONS(6147), + [anon_sym_BSLASHPvolcite] = ACTIONS(6147), + [anon_sym_BSLASHfvolcite] = ACTIONS(6147), + [anon_sym_BSLASHftvolcite] = ACTIONS(6147), + [anon_sym_BSLASHsvolcite] = ACTIONS(6147), + [anon_sym_BSLASHSvolcite] = ACTIONS(6147), + [anon_sym_BSLASHtvolcite] = ACTIONS(6147), + [anon_sym_BSLASHTvolcite] = ACTIONS(6147), + [anon_sym_BSLASHavolcite] = ACTIONS(6147), + [anon_sym_BSLASHAvolcite] = ACTIONS(6147), + [anon_sym_BSLASHnotecite] = ACTIONS(6147), + [anon_sym_BSLASHNotecite] = ACTIONS(6147), + [anon_sym_BSLASHpnotecite] = ACTIONS(6147), + [anon_sym_BSLASHPnotecite] = ACTIONS(6147), + [anon_sym_BSLASHfnotecite] = ACTIONS(6147), + [anon_sym_BSLASHlabel] = ACTIONS(6147), + [anon_sym_BSLASHref] = ACTIONS(6147), + [anon_sym_BSLASHeqref] = ACTIONS(6147), + [anon_sym_BSLASHvref] = ACTIONS(6147), + [anon_sym_BSLASHVref] = ACTIONS(6147), + [anon_sym_BSLASHautoref] = ACTIONS(6147), + [anon_sym_BSLASHpageref] = ACTIONS(6147), + [anon_sym_BSLASHcref] = ACTIONS(6147), + [anon_sym_BSLASHCref] = ACTIONS(6147), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnameCref] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6147), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6147), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6147), + [anon_sym_BSLASHlabelcref] = ACTIONS(6147), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange] = ACTIONS(6147), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHCrefrange] = ACTIONS(6147), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6145), + [anon_sym_BSLASHnewlabel] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand] = ACTIONS(6147), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6147), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6147), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6145), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6147), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdef] = ACTIONS(6147), + [anon_sym_BSLASHlet] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6147), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6147), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6147), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6147), + [anon_sym_BSLASHgls] = ACTIONS(6147), + [anon_sym_BSLASHGls] = ACTIONS(6147), + [anon_sym_BSLASHGLS] = ACTIONS(6147), + [anon_sym_BSLASHglspl] = ACTIONS(6147), + [anon_sym_BSLASHGlspl] = ACTIONS(6147), + [anon_sym_BSLASHGLSpl] = ACTIONS(6147), + [anon_sym_BSLASHglsdisp] = ACTIONS(6147), + [anon_sym_BSLASHglslink] = ACTIONS(6147), + [anon_sym_BSLASHglstext] = ACTIONS(6147), + [anon_sym_BSLASHGlstext] = ACTIONS(6147), + [anon_sym_BSLASHGLStext] = ACTIONS(6147), + [anon_sym_BSLASHglsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6147), + [anon_sym_BSLASHglsplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSplural] = ACTIONS(6147), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6147), + [anon_sym_BSLASHglsname] = ACTIONS(6147), + [anon_sym_BSLASHGlsname] = ACTIONS(6147), + [anon_sym_BSLASHGLSname] = ACTIONS(6147), + [anon_sym_BSLASHglssymbol] = ACTIONS(6147), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6147), + [anon_sym_BSLASHglsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6147), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6147), + [anon_sym_BSLASHglsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6147), + [anon_sym_BSLASHglsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6147), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6147), + [anon_sym_BSLASHglsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6147), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6147), + [anon_sym_BSLASHglsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6147), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6147), + [anon_sym_BSLASHnewacronym] = ACTIONS(6147), + [anon_sym_BSLASHacrshort] = ACTIONS(6147), + [anon_sym_BSLASHAcrshort] = ACTIONS(6147), + [anon_sym_BSLASHACRshort] = ACTIONS(6147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6147), + [anon_sym_BSLASHacrlong] = ACTIONS(6147), + [anon_sym_BSLASHAcrlong] = ACTIONS(6147), + [anon_sym_BSLASHACRlong] = ACTIONS(6147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6147), + [anon_sym_BSLASHacrfull] = ACTIONS(6147), + [anon_sym_BSLASHAcrfull] = ACTIONS(6147), + [anon_sym_BSLASHACRfull] = ACTIONS(6147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6147), + [anon_sym_BSLASHacs] = ACTIONS(6147), + [anon_sym_BSLASHAcs] = ACTIONS(6147), + [anon_sym_BSLASHacsp] = ACTIONS(6147), + [anon_sym_BSLASHAcsp] = ACTIONS(6147), + [anon_sym_BSLASHacl] = ACTIONS(6147), + [anon_sym_BSLASHAcl] = ACTIONS(6147), + [anon_sym_BSLASHaclp] = ACTIONS(6147), + [anon_sym_BSLASHAclp] = ACTIONS(6147), + [anon_sym_BSLASHacf] = ACTIONS(6147), + [anon_sym_BSLASHAcf] = ACTIONS(6147), + [anon_sym_BSLASHacfp] = ACTIONS(6147), + [anon_sym_BSLASHAcfp] = ACTIONS(6147), + [anon_sym_BSLASHac] = ACTIONS(6147), + [anon_sym_BSLASHAc] = ACTIONS(6147), + [anon_sym_BSLASHacp] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6147), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6147), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6147), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6147), + [anon_sym_BSLASHcolor] = ACTIONS(6147), + [anon_sym_BSLASHcolorbox] = ACTIONS(6147), + [anon_sym_BSLASHtextcolor] = ACTIONS(6147), + [anon_sym_BSLASHpagecolor] = ACTIONS(6147), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6147), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6147), + }, + [1783] = { + [sym_command_name] = ACTIONS(5857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5857), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [sym_word] = ACTIONS(5857), + [sym_placeholder] = ACTIONS(5855), + [anon_sym_PLUS] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_CARET] = ACTIONS(5857), + [anon_sym__] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5857), + [anon_sym_GT] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5857), + [anon_sym_PIPE] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_SQUOTE] = ACTIONS(5857), + [anon_sym_BSLASHtitle] = ACTIONS(5857), + [anon_sym_BSLASHauthor] = ACTIONS(5857), + [anon_sym_BSLASHusepackage] = ACTIONS(5857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5857), + [anon_sym_BSLASHinclude] = ACTIONS(5857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5857), + [anon_sym_BSLASHinput] = ACTIONS(5857), + [anon_sym_BSLASHsubfile] = ACTIONS(5857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5857), + [anon_sym_BSLASHbibliography] = ACTIONS(5857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5857), + [anon_sym_BSLASHincludesvg] = ACTIONS(5857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5857), + [anon_sym_BSLASHimport] = ACTIONS(5857), + [anon_sym_BSLASHsubimport] = ACTIONS(5857), + [anon_sym_BSLASHinputfrom] = ACTIONS(5857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5857), + [anon_sym_BSLASHincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5857), + [anon_sym_BSLASHcaption] = ACTIONS(5857), + [anon_sym_BSLASHcite] = ACTIONS(5857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCite] = ACTIONS(5857), + [anon_sym_BSLASHnocite] = ACTIONS(5857), + [anon_sym_BSLASHcitet] = ACTIONS(5857), + [anon_sym_BSLASHcitep] = ACTIONS(5857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteauthor] = ACTIONS(5857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitetitle] = ACTIONS(5857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteyear] = ACTIONS(5857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5855), + [anon_sym_BSLASHcitedate] = ACTIONS(5857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5855), + [anon_sym_BSLASHciteurl] = ACTIONS(5857), + [anon_sym_BSLASHfullcite] = ACTIONS(5857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5857), + [anon_sym_BSLASHcitealt] = ACTIONS(5857), + [anon_sym_BSLASHcitealp] = ACTIONS(5857), + [anon_sym_BSLASHcitetext] = ACTIONS(5857), + [anon_sym_BSLASHparencite] = ACTIONS(5857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHParencite] = ACTIONS(5857), + [anon_sym_BSLASHfootcite] = ACTIONS(5857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5857), + [anon_sym_BSLASHtextcite] = ACTIONS(5857), + [anon_sym_BSLASHTextcite] = ACTIONS(5857), + [anon_sym_BSLASHsmartcite] = ACTIONS(5857), + [anon_sym_BSLASHSmartcite] = ACTIONS(5857), + [anon_sym_BSLASHsupercite] = ACTIONS(5857), + [anon_sym_BSLASHautocite] = ACTIONS(5857), + [anon_sym_BSLASHAutocite] = ACTIONS(5857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5855), + [anon_sym_BSLASHvolcite] = ACTIONS(5857), + [anon_sym_BSLASHVolcite] = ACTIONS(5857), + [anon_sym_BSLASHpvolcite] = ACTIONS(5857), + [anon_sym_BSLASHPvolcite] = ACTIONS(5857), + [anon_sym_BSLASHfvolcite] = ACTIONS(5857), + [anon_sym_BSLASHftvolcite] = ACTIONS(5857), + [anon_sym_BSLASHsvolcite] = ACTIONS(5857), + [anon_sym_BSLASHSvolcite] = ACTIONS(5857), + [anon_sym_BSLASHtvolcite] = ACTIONS(5857), + [anon_sym_BSLASHTvolcite] = ACTIONS(5857), + [anon_sym_BSLASHavolcite] = ACTIONS(5857), + [anon_sym_BSLASHAvolcite] = ACTIONS(5857), + [anon_sym_BSLASHnotecite] = ACTIONS(5857), + [anon_sym_BSLASHNotecite] = ACTIONS(5857), + [anon_sym_BSLASHpnotecite] = ACTIONS(5857), + [anon_sym_BSLASHPnotecite] = ACTIONS(5857), + [anon_sym_BSLASHfnotecite] = ACTIONS(5857), + [anon_sym_BSLASHlabel] = ACTIONS(5857), + [anon_sym_BSLASHref] = ACTIONS(5857), + [anon_sym_BSLASHeqref] = ACTIONS(5857), + [anon_sym_BSLASHvref] = ACTIONS(5857), + [anon_sym_BSLASHVref] = ACTIONS(5857), + [anon_sym_BSLASHautoref] = ACTIONS(5857), + [anon_sym_BSLASHpageref] = ACTIONS(5857), + [anon_sym_BSLASHcref] = ACTIONS(5857), + [anon_sym_BSLASHCref] = ACTIONS(5857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnameCref] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5857), + [anon_sym_BSLASHlabelcref] = ACTIONS(5857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange] = ACTIONS(5857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHCrefrange] = ACTIONS(5857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5855), + [anon_sym_BSLASHnewlabel] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand] = ACTIONS(5857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdef] = ACTIONS(5857), + [anon_sym_BSLASHlet] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5857), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5857), + [anon_sym_BSLASHgls] = ACTIONS(5857), + [anon_sym_BSLASHGls] = ACTIONS(5857), + [anon_sym_BSLASHGLS] = ACTIONS(5857), + [anon_sym_BSLASHglspl] = ACTIONS(5857), + [anon_sym_BSLASHGlspl] = ACTIONS(5857), + [anon_sym_BSLASHGLSpl] = ACTIONS(5857), + [anon_sym_BSLASHglsdisp] = ACTIONS(5857), + [anon_sym_BSLASHglslink] = ACTIONS(5857), + [anon_sym_BSLASHglstext] = ACTIONS(5857), + [anon_sym_BSLASHGlstext] = ACTIONS(5857), + [anon_sym_BSLASHGLStext] = ACTIONS(5857), + [anon_sym_BSLASHglsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5857), + [anon_sym_BSLASHglsplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSplural] = ACTIONS(5857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5857), + [anon_sym_BSLASHglsname] = ACTIONS(5857), + [anon_sym_BSLASHGlsname] = ACTIONS(5857), + [anon_sym_BSLASHGLSname] = ACTIONS(5857), + [anon_sym_BSLASHglssymbol] = ACTIONS(5857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5857), + [anon_sym_BSLASHglsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5857), + [anon_sym_BSLASHglsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5857), + [anon_sym_BSLASHglsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5857), + [anon_sym_BSLASHglsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5857), + [anon_sym_BSLASHglsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5857), + [anon_sym_BSLASHnewacronym] = ACTIONS(5857), + [anon_sym_BSLASHacrshort] = ACTIONS(5857), + [anon_sym_BSLASHAcrshort] = ACTIONS(5857), + [anon_sym_BSLASHACRshort] = ACTIONS(5857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5857), + [anon_sym_BSLASHacrlong] = ACTIONS(5857), + [anon_sym_BSLASHAcrlong] = ACTIONS(5857), + [anon_sym_BSLASHACRlong] = ACTIONS(5857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5857), + [anon_sym_BSLASHacrfull] = ACTIONS(5857), + [anon_sym_BSLASHAcrfull] = ACTIONS(5857), + [anon_sym_BSLASHACRfull] = ACTIONS(5857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5857), + [anon_sym_BSLASHacs] = ACTIONS(5857), + [anon_sym_BSLASHAcs] = ACTIONS(5857), + [anon_sym_BSLASHacsp] = ACTIONS(5857), + [anon_sym_BSLASHAcsp] = ACTIONS(5857), + [anon_sym_BSLASHacl] = ACTIONS(5857), + [anon_sym_BSLASHAcl] = ACTIONS(5857), + [anon_sym_BSLASHaclp] = ACTIONS(5857), + [anon_sym_BSLASHAclp] = ACTIONS(5857), + [anon_sym_BSLASHacf] = ACTIONS(5857), + [anon_sym_BSLASHAcf] = ACTIONS(5857), + [anon_sym_BSLASHacfp] = ACTIONS(5857), + [anon_sym_BSLASHAcfp] = ACTIONS(5857), + [anon_sym_BSLASHac] = ACTIONS(5857), + [anon_sym_BSLASHAc] = ACTIONS(5857), + [anon_sym_BSLASHacp] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5857), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5857), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5855), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5857), + [anon_sym_BSLASHcolor] = ACTIONS(5857), + [anon_sym_BSLASHcolorbox] = ACTIONS(5857), + [anon_sym_BSLASHtextcolor] = ACTIONS(5857), + [anon_sym_BSLASHpagecolor] = ACTIONS(5857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5857), + }, + [1784] = { + [sym_command_name] = ACTIONS(5979), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5979), + [anon_sym_RBRACK] = ACTIONS(5977), + [anon_sym_COMMA] = ACTIONS(5977), + [anon_sym_EQ] = ACTIONS(5977), + [anon_sym_RBRACE] = ACTIONS(5977), + [sym_word] = ACTIONS(5979), + [sym_placeholder] = ACTIONS(5977), + [anon_sym_PLUS] = ACTIONS(5979), + [anon_sym_DASH] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_SLASH] = ACTIONS(5979), + [anon_sym_CARET] = ACTIONS(5979), + [anon_sym__] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5979), + [anon_sym_GT] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_SQUOTE] = ACTIONS(5979), + [anon_sym_BSLASHtitle] = ACTIONS(5979), + [anon_sym_BSLASHauthor] = ACTIONS(5979), + [anon_sym_BSLASHusepackage] = ACTIONS(5979), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5979), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5979), + [anon_sym_BSLASHinclude] = ACTIONS(5979), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5979), + [anon_sym_BSLASHinput] = ACTIONS(5979), + [anon_sym_BSLASHsubfile] = ACTIONS(5979), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5979), + [anon_sym_BSLASHbibliography] = ACTIONS(5979), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5979), + [anon_sym_BSLASHincludesvg] = ACTIONS(5979), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5979), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5979), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5979), + [anon_sym_BSLASHimport] = ACTIONS(5979), + [anon_sym_BSLASHsubimport] = ACTIONS(5979), + [anon_sym_BSLASHinputfrom] = ACTIONS(5979), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5979), + [anon_sym_BSLASHincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5979), + [anon_sym_BSLASHcaption] = ACTIONS(5979), + [anon_sym_BSLASHcite] = ACTIONS(5979), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCite] = ACTIONS(5979), + [anon_sym_BSLASHnocite] = ACTIONS(5979), + [anon_sym_BSLASHcitet] = ACTIONS(5979), + [anon_sym_BSLASHcitep] = ACTIONS(5979), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteauthor] = ACTIONS(5979), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5979), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitetitle] = ACTIONS(5979), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteyear] = ACTIONS(5979), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5977), + [anon_sym_BSLASHcitedate] = ACTIONS(5979), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5977), + [anon_sym_BSLASHciteurl] = ACTIONS(5979), + [anon_sym_BSLASHfullcite] = ACTIONS(5979), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5979), + [anon_sym_BSLASHcitealt] = ACTIONS(5979), + [anon_sym_BSLASHcitealp] = ACTIONS(5979), + [anon_sym_BSLASHcitetext] = ACTIONS(5979), + [anon_sym_BSLASHparencite] = ACTIONS(5979), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHParencite] = ACTIONS(5979), + [anon_sym_BSLASHfootcite] = ACTIONS(5979), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5979), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5979), + [anon_sym_BSLASHtextcite] = ACTIONS(5979), + [anon_sym_BSLASHTextcite] = ACTIONS(5979), + [anon_sym_BSLASHsmartcite] = ACTIONS(5979), + [anon_sym_BSLASHSmartcite] = ACTIONS(5979), + [anon_sym_BSLASHsupercite] = ACTIONS(5979), + [anon_sym_BSLASHautocite] = ACTIONS(5979), + [anon_sym_BSLASHAutocite] = ACTIONS(5979), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5977), + [anon_sym_BSLASHvolcite] = ACTIONS(5979), + [anon_sym_BSLASHVolcite] = ACTIONS(5979), + [anon_sym_BSLASHpvolcite] = ACTIONS(5979), + [anon_sym_BSLASHPvolcite] = ACTIONS(5979), + [anon_sym_BSLASHfvolcite] = ACTIONS(5979), + [anon_sym_BSLASHftvolcite] = ACTIONS(5979), + [anon_sym_BSLASHsvolcite] = ACTIONS(5979), + [anon_sym_BSLASHSvolcite] = ACTIONS(5979), + [anon_sym_BSLASHtvolcite] = ACTIONS(5979), + [anon_sym_BSLASHTvolcite] = ACTIONS(5979), + [anon_sym_BSLASHavolcite] = ACTIONS(5979), + [anon_sym_BSLASHAvolcite] = ACTIONS(5979), + [anon_sym_BSLASHnotecite] = ACTIONS(5979), + [anon_sym_BSLASHNotecite] = ACTIONS(5979), + [anon_sym_BSLASHpnotecite] = ACTIONS(5979), + [anon_sym_BSLASHPnotecite] = ACTIONS(5979), + [anon_sym_BSLASHfnotecite] = ACTIONS(5979), + [anon_sym_BSLASHlabel] = ACTIONS(5979), + [anon_sym_BSLASHref] = ACTIONS(5979), + [anon_sym_BSLASHeqref] = ACTIONS(5979), + [anon_sym_BSLASHvref] = ACTIONS(5979), + [anon_sym_BSLASHVref] = ACTIONS(5979), + [anon_sym_BSLASHautoref] = ACTIONS(5979), + [anon_sym_BSLASHpageref] = ACTIONS(5979), + [anon_sym_BSLASHcref] = ACTIONS(5979), + [anon_sym_BSLASHCref] = ACTIONS(5979), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnameCref] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5979), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5979), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5979), + [anon_sym_BSLASHlabelcref] = ACTIONS(5979), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange] = ACTIONS(5979), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHCrefrange] = ACTIONS(5979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5977), + [anon_sym_BSLASHnewlabel] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand] = ACTIONS(5979), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5979), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5979), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5979), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdef] = ACTIONS(5979), + [anon_sym_BSLASHlet] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5979), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5979), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5979), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5979), + [anon_sym_BSLASHgls] = ACTIONS(5979), + [anon_sym_BSLASHGls] = ACTIONS(5979), + [anon_sym_BSLASHGLS] = ACTIONS(5979), + [anon_sym_BSLASHglspl] = ACTIONS(5979), + [anon_sym_BSLASHGlspl] = ACTIONS(5979), + [anon_sym_BSLASHGLSpl] = ACTIONS(5979), + [anon_sym_BSLASHglsdisp] = ACTIONS(5979), + [anon_sym_BSLASHglslink] = ACTIONS(5979), + [anon_sym_BSLASHglstext] = ACTIONS(5979), + [anon_sym_BSLASHGlstext] = ACTIONS(5979), + [anon_sym_BSLASHGLStext] = ACTIONS(5979), + [anon_sym_BSLASHglsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5979), + [anon_sym_BSLASHglsplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSplural] = ACTIONS(5979), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5979), + [anon_sym_BSLASHglsname] = ACTIONS(5979), + [anon_sym_BSLASHGlsname] = ACTIONS(5979), + [anon_sym_BSLASHGLSname] = ACTIONS(5979), + [anon_sym_BSLASHglssymbol] = ACTIONS(5979), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5979), + [anon_sym_BSLASHglsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5979), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5979), + [anon_sym_BSLASHglsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5979), + [anon_sym_BSLASHglsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5979), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5979), + [anon_sym_BSLASHglsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5979), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5979), + [anon_sym_BSLASHglsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5979), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5979), + [anon_sym_BSLASHnewacronym] = ACTIONS(5979), + [anon_sym_BSLASHacrshort] = ACTIONS(5979), + [anon_sym_BSLASHAcrshort] = ACTIONS(5979), + [anon_sym_BSLASHACRshort] = ACTIONS(5979), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5979), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5979), + [anon_sym_BSLASHacrlong] = ACTIONS(5979), + [anon_sym_BSLASHAcrlong] = ACTIONS(5979), + [anon_sym_BSLASHACRlong] = ACTIONS(5979), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5979), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5979), + [anon_sym_BSLASHacrfull] = ACTIONS(5979), + [anon_sym_BSLASHAcrfull] = ACTIONS(5979), + [anon_sym_BSLASHACRfull] = ACTIONS(5979), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5979), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5979), + [anon_sym_BSLASHacs] = ACTIONS(5979), + [anon_sym_BSLASHAcs] = ACTIONS(5979), + [anon_sym_BSLASHacsp] = ACTIONS(5979), + [anon_sym_BSLASHAcsp] = ACTIONS(5979), + [anon_sym_BSLASHacl] = ACTIONS(5979), + [anon_sym_BSLASHAcl] = ACTIONS(5979), + [anon_sym_BSLASHaclp] = ACTIONS(5979), + [anon_sym_BSLASHAclp] = ACTIONS(5979), + [anon_sym_BSLASHacf] = ACTIONS(5979), + [anon_sym_BSLASHAcf] = ACTIONS(5979), + [anon_sym_BSLASHacfp] = ACTIONS(5979), + [anon_sym_BSLASHAcfp] = ACTIONS(5979), + [anon_sym_BSLASHac] = ACTIONS(5979), + [anon_sym_BSLASHAc] = ACTIONS(5979), + [anon_sym_BSLASHacp] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5979), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5979), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5979), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5979), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5979), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5979), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5979), + [anon_sym_BSLASHcolor] = ACTIONS(5979), + [anon_sym_BSLASHcolorbox] = ACTIONS(5979), + [anon_sym_BSLASHtextcolor] = ACTIONS(5979), + [anon_sym_BSLASHpagecolor] = ACTIONS(5979), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5979), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5979), + }, + [1785] = { + [sym_command_name] = ACTIONS(5907), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5905), + [sym_word] = ACTIONS(5907), + [sym_placeholder] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_SLASH] = ACTIONS(5907), + [anon_sym_CARET] = ACTIONS(5907), + [anon_sym__] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5907), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_SQUOTE] = ACTIONS(5907), + [anon_sym_BSLASHtitle] = ACTIONS(5907), + [anon_sym_BSLASHauthor] = ACTIONS(5907), + [anon_sym_BSLASHusepackage] = ACTIONS(5907), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5907), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5907), + [anon_sym_BSLASHinclude] = ACTIONS(5907), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5907), + [anon_sym_BSLASHinput] = ACTIONS(5907), + [anon_sym_BSLASHsubfile] = ACTIONS(5907), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5907), + [anon_sym_BSLASHbibliography] = ACTIONS(5907), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5907), + [anon_sym_BSLASHincludesvg] = ACTIONS(5907), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5907), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5907), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5907), + [anon_sym_BSLASHimport] = ACTIONS(5907), + [anon_sym_BSLASHsubimport] = ACTIONS(5907), + [anon_sym_BSLASHinputfrom] = ACTIONS(5907), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5907), + [anon_sym_BSLASHincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5907), + [anon_sym_BSLASHcaption] = ACTIONS(5907), + [anon_sym_BSLASHcite] = ACTIONS(5907), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCite] = ACTIONS(5907), + [anon_sym_BSLASHnocite] = ACTIONS(5907), + [anon_sym_BSLASHcitet] = ACTIONS(5907), + [anon_sym_BSLASHcitep] = ACTIONS(5907), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteauthor] = ACTIONS(5907), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5907), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitetitle] = ACTIONS(5907), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteyear] = ACTIONS(5907), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5905), + [anon_sym_BSLASHcitedate] = ACTIONS(5907), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5905), + [anon_sym_BSLASHciteurl] = ACTIONS(5907), + [anon_sym_BSLASHfullcite] = ACTIONS(5907), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5907), + [anon_sym_BSLASHcitealt] = ACTIONS(5907), + [anon_sym_BSLASHcitealp] = ACTIONS(5907), + [anon_sym_BSLASHcitetext] = ACTIONS(5907), + [anon_sym_BSLASHparencite] = ACTIONS(5907), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHParencite] = ACTIONS(5907), + [anon_sym_BSLASHfootcite] = ACTIONS(5907), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5907), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5907), + [anon_sym_BSLASHtextcite] = ACTIONS(5907), + [anon_sym_BSLASHTextcite] = ACTIONS(5907), + [anon_sym_BSLASHsmartcite] = ACTIONS(5907), + [anon_sym_BSLASHSmartcite] = ACTIONS(5907), + [anon_sym_BSLASHsupercite] = ACTIONS(5907), + [anon_sym_BSLASHautocite] = ACTIONS(5907), + [anon_sym_BSLASHAutocite] = ACTIONS(5907), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5905), + [anon_sym_BSLASHvolcite] = ACTIONS(5907), + [anon_sym_BSLASHVolcite] = ACTIONS(5907), + [anon_sym_BSLASHpvolcite] = ACTIONS(5907), + [anon_sym_BSLASHPvolcite] = ACTIONS(5907), + [anon_sym_BSLASHfvolcite] = ACTIONS(5907), + [anon_sym_BSLASHftvolcite] = ACTIONS(5907), + [anon_sym_BSLASHsvolcite] = ACTIONS(5907), + [anon_sym_BSLASHSvolcite] = ACTIONS(5907), + [anon_sym_BSLASHtvolcite] = ACTIONS(5907), + [anon_sym_BSLASHTvolcite] = ACTIONS(5907), + [anon_sym_BSLASHavolcite] = ACTIONS(5907), + [anon_sym_BSLASHAvolcite] = ACTIONS(5907), + [anon_sym_BSLASHnotecite] = ACTIONS(5907), + [anon_sym_BSLASHNotecite] = ACTIONS(5907), + [anon_sym_BSLASHpnotecite] = ACTIONS(5907), + [anon_sym_BSLASHPnotecite] = ACTIONS(5907), + [anon_sym_BSLASHfnotecite] = ACTIONS(5907), + [anon_sym_BSLASHlabel] = ACTIONS(5907), + [anon_sym_BSLASHref] = ACTIONS(5907), + [anon_sym_BSLASHeqref] = ACTIONS(5907), + [anon_sym_BSLASHvref] = ACTIONS(5907), + [anon_sym_BSLASHVref] = ACTIONS(5907), + [anon_sym_BSLASHautoref] = ACTIONS(5907), + [anon_sym_BSLASHpageref] = ACTIONS(5907), + [anon_sym_BSLASHcref] = ACTIONS(5907), + [anon_sym_BSLASHCref] = ACTIONS(5907), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnameCref] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5907), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5907), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5907), + [anon_sym_BSLASHlabelcref] = ACTIONS(5907), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange] = ACTIONS(5907), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHCrefrange] = ACTIONS(5907), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5905), + [anon_sym_BSLASHnewlabel] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand] = ACTIONS(5907), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5907), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5907), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5905), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5907), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdef] = ACTIONS(5907), + [anon_sym_BSLASHlet] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5907), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5907), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5907), + [anon_sym_BSLASHgls] = ACTIONS(5907), + [anon_sym_BSLASHGls] = ACTIONS(5907), + [anon_sym_BSLASHGLS] = ACTIONS(5907), + [anon_sym_BSLASHglspl] = ACTIONS(5907), + [anon_sym_BSLASHGlspl] = ACTIONS(5907), + [anon_sym_BSLASHGLSpl] = ACTIONS(5907), + [anon_sym_BSLASHglsdisp] = ACTIONS(5907), + [anon_sym_BSLASHglslink] = ACTIONS(5907), + [anon_sym_BSLASHglstext] = ACTIONS(5907), + [anon_sym_BSLASHGlstext] = ACTIONS(5907), + [anon_sym_BSLASHGLStext] = ACTIONS(5907), + [anon_sym_BSLASHglsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5907), + [anon_sym_BSLASHglsplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSplural] = ACTIONS(5907), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5907), + [anon_sym_BSLASHglsname] = ACTIONS(5907), + [anon_sym_BSLASHGlsname] = ACTIONS(5907), + [anon_sym_BSLASHGLSname] = ACTIONS(5907), + [anon_sym_BSLASHglssymbol] = ACTIONS(5907), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5907), + [anon_sym_BSLASHglsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5907), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5907), + [anon_sym_BSLASHglsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5907), + [anon_sym_BSLASHglsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5907), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5907), + [anon_sym_BSLASHglsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5907), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5907), + [anon_sym_BSLASHglsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5907), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5907), + [anon_sym_BSLASHnewacronym] = ACTIONS(5907), + [anon_sym_BSLASHacrshort] = ACTIONS(5907), + [anon_sym_BSLASHAcrshort] = ACTIONS(5907), + [anon_sym_BSLASHACRshort] = ACTIONS(5907), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5907), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5907), + [anon_sym_BSLASHacrlong] = ACTIONS(5907), + [anon_sym_BSLASHAcrlong] = ACTIONS(5907), + [anon_sym_BSLASHACRlong] = ACTIONS(5907), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5907), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5907), + [anon_sym_BSLASHacrfull] = ACTIONS(5907), + [anon_sym_BSLASHAcrfull] = ACTIONS(5907), + [anon_sym_BSLASHACRfull] = ACTIONS(5907), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5907), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5907), + [anon_sym_BSLASHacs] = ACTIONS(5907), + [anon_sym_BSLASHAcs] = ACTIONS(5907), + [anon_sym_BSLASHacsp] = ACTIONS(5907), + [anon_sym_BSLASHAcsp] = ACTIONS(5907), + [anon_sym_BSLASHacl] = ACTIONS(5907), + [anon_sym_BSLASHAcl] = ACTIONS(5907), + [anon_sym_BSLASHaclp] = ACTIONS(5907), + [anon_sym_BSLASHAclp] = ACTIONS(5907), + [anon_sym_BSLASHacf] = ACTIONS(5907), + [anon_sym_BSLASHAcf] = ACTIONS(5907), + [anon_sym_BSLASHacfp] = ACTIONS(5907), + [anon_sym_BSLASHAcfp] = ACTIONS(5907), + [anon_sym_BSLASHac] = ACTIONS(5907), + [anon_sym_BSLASHAc] = ACTIONS(5907), + [anon_sym_BSLASHacp] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5907), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5907), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5907), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5907), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5907), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5907), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5907), + [anon_sym_BSLASHcolor] = ACTIONS(5907), + [anon_sym_BSLASHcolorbox] = ACTIONS(5907), + [anon_sym_BSLASHtextcolor] = ACTIONS(5907), + [anon_sym_BSLASHpagecolor] = ACTIONS(5907), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5907), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5907), + }, + [1786] = { + [sym_command_name] = ACTIONS(6167), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6167), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6165), + [anon_sym_RBRACE] = ACTIONS(6165), + [sym_word] = ACTIONS(6167), + [sym_placeholder] = ACTIONS(6165), + [anon_sym_PLUS] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6167), + [anon_sym_STAR] = ACTIONS(6167), + [anon_sym_SLASH] = ACTIONS(6167), + [anon_sym_CARET] = ACTIONS(6167), + [anon_sym__] = ACTIONS(6167), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_BANG] = ACTIONS(6167), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_COLON] = ACTIONS(6167), + [anon_sym_SQUOTE] = ACTIONS(6167), + [anon_sym_BSLASHtitle] = ACTIONS(6167), + [anon_sym_BSLASHauthor] = ACTIONS(6167), + [anon_sym_BSLASHusepackage] = ACTIONS(6167), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6167), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6167), + [anon_sym_BSLASHinclude] = ACTIONS(6167), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6167), + [anon_sym_BSLASHinput] = ACTIONS(6167), + [anon_sym_BSLASHsubfile] = ACTIONS(6167), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6167), + [anon_sym_BSLASHbibliography] = ACTIONS(6167), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6167), + [anon_sym_BSLASHincludesvg] = ACTIONS(6167), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6167), + [anon_sym_BSLASHimport] = ACTIONS(6167), + [anon_sym_BSLASHsubimport] = ACTIONS(6167), + [anon_sym_BSLASHinputfrom] = ACTIONS(6167), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6167), + [anon_sym_BSLASHincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6167), + [anon_sym_BSLASHcaption] = ACTIONS(6167), + [anon_sym_BSLASHcite] = ACTIONS(6167), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCite] = ACTIONS(6167), + [anon_sym_BSLASHnocite] = ACTIONS(6167), + [anon_sym_BSLASHcitet] = ACTIONS(6167), + [anon_sym_BSLASHcitep] = ACTIONS(6167), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteauthor] = ACTIONS(6167), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6167), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitetitle] = ACTIONS(6167), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteyear] = ACTIONS(6167), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6165), + [anon_sym_BSLASHcitedate] = ACTIONS(6167), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6165), + [anon_sym_BSLASHciteurl] = ACTIONS(6167), + [anon_sym_BSLASHfullcite] = ACTIONS(6167), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6167), + [anon_sym_BSLASHcitealt] = ACTIONS(6167), + [anon_sym_BSLASHcitealp] = ACTIONS(6167), + [anon_sym_BSLASHcitetext] = ACTIONS(6167), + [anon_sym_BSLASHparencite] = ACTIONS(6167), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHParencite] = ACTIONS(6167), + [anon_sym_BSLASHfootcite] = ACTIONS(6167), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6167), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6167), + [anon_sym_BSLASHtextcite] = ACTIONS(6167), + [anon_sym_BSLASHTextcite] = ACTIONS(6167), + [anon_sym_BSLASHsmartcite] = ACTIONS(6167), + [anon_sym_BSLASHSmartcite] = ACTIONS(6167), + [anon_sym_BSLASHsupercite] = ACTIONS(6167), + [anon_sym_BSLASHautocite] = ACTIONS(6167), + [anon_sym_BSLASHAutocite] = ACTIONS(6167), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6165), + [anon_sym_BSLASHvolcite] = ACTIONS(6167), + [anon_sym_BSLASHVolcite] = ACTIONS(6167), + [anon_sym_BSLASHpvolcite] = ACTIONS(6167), + [anon_sym_BSLASHPvolcite] = ACTIONS(6167), + [anon_sym_BSLASHfvolcite] = ACTIONS(6167), + [anon_sym_BSLASHftvolcite] = ACTIONS(6167), + [anon_sym_BSLASHsvolcite] = ACTIONS(6167), + [anon_sym_BSLASHSvolcite] = ACTIONS(6167), + [anon_sym_BSLASHtvolcite] = ACTIONS(6167), + [anon_sym_BSLASHTvolcite] = ACTIONS(6167), + [anon_sym_BSLASHavolcite] = ACTIONS(6167), + [anon_sym_BSLASHAvolcite] = ACTIONS(6167), + [anon_sym_BSLASHnotecite] = ACTIONS(6167), + [anon_sym_BSLASHNotecite] = ACTIONS(6167), + [anon_sym_BSLASHpnotecite] = ACTIONS(6167), + [anon_sym_BSLASHPnotecite] = ACTIONS(6167), + [anon_sym_BSLASHfnotecite] = ACTIONS(6167), + [anon_sym_BSLASHlabel] = ACTIONS(6167), + [anon_sym_BSLASHref] = ACTIONS(6167), + [anon_sym_BSLASHeqref] = ACTIONS(6167), + [anon_sym_BSLASHvref] = ACTIONS(6167), + [anon_sym_BSLASHVref] = ACTIONS(6167), + [anon_sym_BSLASHautoref] = ACTIONS(6167), + [anon_sym_BSLASHpageref] = ACTIONS(6167), + [anon_sym_BSLASHcref] = ACTIONS(6167), + [anon_sym_BSLASHCref] = ACTIONS(6167), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnameCref] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6167), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6167), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6167), + [anon_sym_BSLASHlabelcref] = ACTIONS(6167), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange] = ACTIONS(6167), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHCrefrange] = ACTIONS(6167), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6165), + [anon_sym_BSLASHnewlabel] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand] = ACTIONS(6167), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6167), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6167), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6165), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6167), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdef] = ACTIONS(6167), + [anon_sym_BSLASHlet] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6167), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6167), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6167), + [anon_sym_BSLASHgls] = ACTIONS(6167), + [anon_sym_BSLASHGls] = ACTIONS(6167), + [anon_sym_BSLASHGLS] = ACTIONS(6167), + [anon_sym_BSLASHglspl] = ACTIONS(6167), + [anon_sym_BSLASHGlspl] = ACTIONS(6167), + [anon_sym_BSLASHGLSpl] = ACTIONS(6167), + [anon_sym_BSLASHglsdisp] = ACTIONS(6167), + [anon_sym_BSLASHglslink] = ACTIONS(6167), + [anon_sym_BSLASHglstext] = ACTIONS(6167), + [anon_sym_BSLASHGlstext] = ACTIONS(6167), + [anon_sym_BSLASHGLStext] = ACTIONS(6167), + [anon_sym_BSLASHglsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6167), + [anon_sym_BSLASHglsplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSplural] = ACTIONS(6167), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6167), + [anon_sym_BSLASHglsname] = ACTIONS(6167), + [anon_sym_BSLASHGlsname] = ACTIONS(6167), + [anon_sym_BSLASHGLSname] = ACTIONS(6167), + [anon_sym_BSLASHglssymbol] = ACTIONS(6167), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6167), + [anon_sym_BSLASHglsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6167), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6167), + [anon_sym_BSLASHglsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6167), + [anon_sym_BSLASHglsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6167), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6167), + [anon_sym_BSLASHglsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6167), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6167), + [anon_sym_BSLASHglsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6167), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6167), + [anon_sym_BSLASHnewacronym] = ACTIONS(6167), + [anon_sym_BSLASHacrshort] = ACTIONS(6167), + [anon_sym_BSLASHAcrshort] = ACTIONS(6167), + [anon_sym_BSLASHACRshort] = ACTIONS(6167), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6167), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6167), + [anon_sym_BSLASHacrlong] = ACTIONS(6167), + [anon_sym_BSLASHAcrlong] = ACTIONS(6167), + [anon_sym_BSLASHACRlong] = ACTIONS(6167), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6167), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6167), + [anon_sym_BSLASHacrfull] = ACTIONS(6167), + [anon_sym_BSLASHAcrfull] = ACTIONS(6167), + [anon_sym_BSLASHACRfull] = ACTIONS(6167), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6167), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6167), + [anon_sym_BSLASHacs] = ACTIONS(6167), + [anon_sym_BSLASHAcs] = ACTIONS(6167), + [anon_sym_BSLASHacsp] = ACTIONS(6167), + [anon_sym_BSLASHAcsp] = ACTIONS(6167), + [anon_sym_BSLASHacl] = ACTIONS(6167), + [anon_sym_BSLASHAcl] = ACTIONS(6167), + [anon_sym_BSLASHaclp] = ACTIONS(6167), + [anon_sym_BSLASHAclp] = ACTIONS(6167), + [anon_sym_BSLASHacf] = ACTIONS(6167), + [anon_sym_BSLASHAcf] = ACTIONS(6167), + [anon_sym_BSLASHacfp] = ACTIONS(6167), + [anon_sym_BSLASHAcfp] = ACTIONS(6167), + [anon_sym_BSLASHac] = ACTIONS(6167), + [anon_sym_BSLASHAc] = ACTIONS(6167), + [anon_sym_BSLASHacp] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6167), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6167), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6167), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6167), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6167), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6167), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6167), + [anon_sym_BSLASHcolor] = ACTIONS(6167), + [anon_sym_BSLASHcolorbox] = ACTIONS(6167), + [anon_sym_BSLASHtextcolor] = ACTIONS(6167), + [anon_sym_BSLASHpagecolor] = ACTIONS(6167), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6167), + }, + [1787] = { + [sym_command_name] = ACTIONS(5919), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym_word] = ACTIONS(5919), + [sym_placeholder] = ACTIONS(5917), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym__] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5919), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_SQUOTE] = ACTIONS(5919), + [anon_sym_BSLASHtitle] = ACTIONS(5919), + [anon_sym_BSLASHauthor] = ACTIONS(5919), + [anon_sym_BSLASHusepackage] = ACTIONS(5919), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5919), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5919), + [anon_sym_BSLASHinclude] = ACTIONS(5919), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5919), + [anon_sym_BSLASHinput] = ACTIONS(5919), + [anon_sym_BSLASHsubfile] = ACTIONS(5919), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5919), + [anon_sym_BSLASHbibliography] = ACTIONS(5919), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5919), + [anon_sym_BSLASHincludesvg] = ACTIONS(5919), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5919), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5919), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5919), + [anon_sym_BSLASHimport] = ACTIONS(5919), + [anon_sym_BSLASHsubimport] = ACTIONS(5919), + [anon_sym_BSLASHinputfrom] = ACTIONS(5919), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5919), + [anon_sym_BSLASHincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5919), + [anon_sym_BSLASHcaption] = ACTIONS(5919), + [anon_sym_BSLASHcite] = ACTIONS(5919), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCite] = ACTIONS(5919), + [anon_sym_BSLASHnocite] = ACTIONS(5919), + [anon_sym_BSLASHcitet] = ACTIONS(5919), + [anon_sym_BSLASHcitep] = ACTIONS(5919), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteauthor] = ACTIONS(5919), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5919), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitetitle] = ACTIONS(5919), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteyear] = ACTIONS(5919), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5917), + [anon_sym_BSLASHcitedate] = ACTIONS(5919), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5917), + [anon_sym_BSLASHciteurl] = ACTIONS(5919), + [anon_sym_BSLASHfullcite] = ACTIONS(5919), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5919), + [anon_sym_BSLASHcitealt] = ACTIONS(5919), + [anon_sym_BSLASHcitealp] = ACTIONS(5919), + [anon_sym_BSLASHcitetext] = ACTIONS(5919), + [anon_sym_BSLASHparencite] = ACTIONS(5919), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHParencite] = ACTIONS(5919), + [anon_sym_BSLASHfootcite] = ACTIONS(5919), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5919), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5919), + [anon_sym_BSLASHtextcite] = ACTIONS(5919), + [anon_sym_BSLASHTextcite] = ACTIONS(5919), + [anon_sym_BSLASHsmartcite] = ACTIONS(5919), + [anon_sym_BSLASHSmartcite] = ACTIONS(5919), + [anon_sym_BSLASHsupercite] = ACTIONS(5919), + [anon_sym_BSLASHautocite] = ACTIONS(5919), + [anon_sym_BSLASHAutocite] = ACTIONS(5919), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5917), + [anon_sym_BSLASHvolcite] = ACTIONS(5919), + [anon_sym_BSLASHVolcite] = ACTIONS(5919), + [anon_sym_BSLASHpvolcite] = ACTIONS(5919), + [anon_sym_BSLASHPvolcite] = ACTIONS(5919), + [anon_sym_BSLASHfvolcite] = ACTIONS(5919), + [anon_sym_BSLASHftvolcite] = ACTIONS(5919), + [anon_sym_BSLASHsvolcite] = ACTIONS(5919), + [anon_sym_BSLASHSvolcite] = ACTIONS(5919), + [anon_sym_BSLASHtvolcite] = ACTIONS(5919), + [anon_sym_BSLASHTvolcite] = ACTIONS(5919), + [anon_sym_BSLASHavolcite] = ACTIONS(5919), + [anon_sym_BSLASHAvolcite] = ACTIONS(5919), + [anon_sym_BSLASHnotecite] = ACTIONS(5919), + [anon_sym_BSLASHNotecite] = ACTIONS(5919), + [anon_sym_BSLASHpnotecite] = ACTIONS(5919), + [anon_sym_BSLASHPnotecite] = ACTIONS(5919), + [anon_sym_BSLASHfnotecite] = ACTIONS(5919), + [anon_sym_BSLASHlabel] = ACTIONS(5919), + [anon_sym_BSLASHref] = ACTIONS(5919), + [anon_sym_BSLASHeqref] = ACTIONS(5919), + [anon_sym_BSLASHvref] = ACTIONS(5919), + [anon_sym_BSLASHVref] = ACTIONS(5919), + [anon_sym_BSLASHautoref] = ACTIONS(5919), + [anon_sym_BSLASHpageref] = ACTIONS(5919), + [anon_sym_BSLASHcref] = ACTIONS(5919), + [anon_sym_BSLASHCref] = ACTIONS(5919), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnameCref] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5919), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5919), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5919), + [anon_sym_BSLASHlabelcref] = ACTIONS(5919), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange] = ACTIONS(5919), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHCrefrange] = ACTIONS(5919), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand] = ACTIONS(5919), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5919), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5919), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5917), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5919), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdef] = ACTIONS(5919), + [anon_sym_BSLASHlet] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5919), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5919), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5919), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5919), + [anon_sym_BSLASHgls] = ACTIONS(5919), + [anon_sym_BSLASHGls] = ACTIONS(5919), + [anon_sym_BSLASHGLS] = ACTIONS(5919), + [anon_sym_BSLASHglspl] = ACTIONS(5919), + [anon_sym_BSLASHGlspl] = ACTIONS(5919), + [anon_sym_BSLASHGLSpl] = ACTIONS(5919), + [anon_sym_BSLASHglsdisp] = ACTIONS(5919), + [anon_sym_BSLASHglslink] = ACTIONS(5919), + [anon_sym_BSLASHglstext] = ACTIONS(5919), + [anon_sym_BSLASHGlstext] = ACTIONS(5919), + [anon_sym_BSLASHGLStext] = ACTIONS(5919), + [anon_sym_BSLASHglsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5919), + [anon_sym_BSLASHglsplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSplural] = ACTIONS(5919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5919), + [anon_sym_BSLASHglsname] = ACTIONS(5919), + [anon_sym_BSLASHGlsname] = ACTIONS(5919), + [anon_sym_BSLASHGLSname] = ACTIONS(5919), + [anon_sym_BSLASHglssymbol] = ACTIONS(5919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5919), + [anon_sym_BSLASHglsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5919), + [anon_sym_BSLASHglsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5919), + [anon_sym_BSLASHglsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5919), + [anon_sym_BSLASHglsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5919), + [anon_sym_BSLASHglsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5919), + [anon_sym_BSLASHnewacronym] = ACTIONS(5919), + [anon_sym_BSLASHacrshort] = ACTIONS(5919), + [anon_sym_BSLASHAcrshort] = ACTIONS(5919), + [anon_sym_BSLASHACRshort] = ACTIONS(5919), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5919), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5919), + [anon_sym_BSLASHacrlong] = ACTIONS(5919), + [anon_sym_BSLASHAcrlong] = ACTIONS(5919), + [anon_sym_BSLASHACRlong] = ACTIONS(5919), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5919), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5919), + [anon_sym_BSLASHacrfull] = ACTIONS(5919), + [anon_sym_BSLASHAcrfull] = ACTIONS(5919), + [anon_sym_BSLASHACRfull] = ACTIONS(5919), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5919), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5919), + [anon_sym_BSLASHacs] = ACTIONS(5919), + [anon_sym_BSLASHAcs] = ACTIONS(5919), + [anon_sym_BSLASHacsp] = ACTIONS(5919), + [anon_sym_BSLASHAcsp] = ACTIONS(5919), + [anon_sym_BSLASHacl] = ACTIONS(5919), + [anon_sym_BSLASHAcl] = ACTIONS(5919), + [anon_sym_BSLASHaclp] = ACTIONS(5919), + [anon_sym_BSLASHAclp] = ACTIONS(5919), + [anon_sym_BSLASHacf] = ACTIONS(5919), + [anon_sym_BSLASHAcf] = ACTIONS(5919), + [anon_sym_BSLASHacfp] = ACTIONS(5919), + [anon_sym_BSLASHAcfp] = ACTIONS(5919), + [anon_sym_BSLASHac] = ACTIONS(5919), + [anon_sym_BSLASHAc] = ACTIONS(5919), + [anon_sym_BSLASHacp] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5919), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5919), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5919), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5919), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5919), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5919), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5919), + [anon_sym_BSLASHcolor] = ACTIONS(5919), + [anon_sym_BSLASHcolorbox] = ACTIONS(5919), + [anon_sym_BSLASHtextcolor] = ACTIONS(5919), + [anon_sym_BSLASHpagecolor] = ACTIONS(5919), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5919), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5919), + }, + [1788] = { + [sym_command_name] = ACTIONS(6205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6205), + [anon_sym_RBRACK] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_RBRACE] = ACTIONS(6203), + [sym_word] = ACTIONS(6205), + [sym_placeholder] = ACTIONS(6203), + [anon_sym_PLUS] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6205), + [anon_sym_SLASH] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym__] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6205), + [anon_sym_BANG] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_SQUOTE] = ACTIONS(6205), + [anon_sym_BSLASHtitle] = ACTIONS(6205), + [anon_sym_BSLASHauthor] = ACTIONS(6205), + [anon_sym_BSLASHusepackage] = ACTIONS(6205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), + [anon_sym_BSLASHinclude] = ACTIONS(6205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), + [anon_sym_BSLASHinput] = ACTIONS(6205), + [anon_sym_BSLASHsubfile] = ACTIONS(6205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), + [anon_sym_BSLASHbibliography] = ACTIONS(6205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), + [anon_sym_BSLASHincludesvg] = ACTIONS(6205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), + [anon_sym_BSLASHimport] = ACTIONS(6205), + [anon_sym_BSLASHsubimport] = ACTIONS(6205), + [anon_sym_BSLASHinputfrom] = ACTIONS(6205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), + [anon_sym_BSLASHincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), + [anon_sym_BSLASHcaption] = ACTIONS(6205), + [anon_sym_BSLASHcite] = ACTIONS(6205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCite] = ACTIONS(6205), + [anon_sym_BSLASHnocite] = ACTIONS(6205), + [anon_sym_BSLASHcitet] = ACTIONS(6205), + [anon_sym_BSLASHcitep] = ACTIONS(6205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteauthor] = ACTIONS(6205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitetitle] = ACTIONS(6205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteyear] = ACTIONS(6205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), + [anon_sym_BSLASHcitedate] = ACTIONS(6205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), + [anon_sym_BSLASHciteurl] = ACTIONS(6205), + [anon_sym_BSLASHfullcite] = ACTIONS(6205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), + [anon_sym_BSLASHcitealt] = ACTIONS(6205), + [anon_sym_BSLASHcitealp] = ACTIONS(6205), + [anon_sym_BSLASHcitetext] = ACTIONS(6205), + [anon_sym_BSLASHparencite] = ACTIONS(6205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHParencite] = ACTIONS(6205), + [anon_sym_BSLASHfootcite] = ACTIONS(6205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), + [anon_sym_BSLASHtextcite] = ACTIONS(6205), + [anon_sym_BSLASHTextcite] = ACTIONS(6205), + [anon_sym_BSLASHsmartcite] = ACTIONS(6205), + [anon_sym_BSLASHSmartcite] = ACTIONS(6205), + [anon_sym_BSLASHsupercite] = ACTIONS(6205), + [anon_sym_BSLASHautocite] = ACTIONS(6205), + [anon_sym_BSLASHAutocite] = ACTIONS(6205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), + [anon_sym_BSLASHvolcite] = ACTIONS(6205), + [anon_sym_BSLASHVolcite] = ACTIONS(6205), + [anon_sym_BSLASHpvolcite] = ACTIONS(6205), + [anon_sym_BSLASHPvolcite] = ACTIONS(6205), + [anon_sym_BSLASHfvolcite] = ACTIONS(6205), + [anon_sym_BSLASHftvolcite] = ACTIONS(6205), + [anon_sym_BSLASHsvolcite] = ACTIONS(6205), + [anon_sym_BSLASHSvolcite] = ACTIONS(6205), + [anon_sym_BSLASHtvolcite] = ACTIONS(6205), + [anon_sym_BSLASHTvolcite] = ACTIONS(6205), + [anon_sym_BSLASHavolcite] = ACTIONS(6205), + [anon_sym_BSLASHAvolcite] = ACTIONS(6205), + [anon_sym_BSLASHnotecite] = ACTIONS(6205), + [anon_sym_BSLASHNotecite] = ACTIONS(6205), + [anon_sym_BSLASHpnotecite] = ACTIONS(6205), + [anon_sym_BSLASHPnotecite] = ACTIONS(6205), + [anon_sym_BSLASHfnotecite] = ACTIONS(6205), + [anon_sym_BSLASHlabel] = ACTIONS(6205), + [anon_sym_BSLASHref] = ACTIONS(6205), + [anon_sym_BSLASHeqref] = ACTIONS(6205), + [anon_sym_BSLASHvref] = ACTIONS(6205), + [anon_sym_BSLASHVref] = ACTIONS(6205), + [anon_sym_BSLASHautoref] = ACTIONS(6205), + [anon_sym_BSLASHpageref] = ACTIONS(6205), + [anon_sym_BSLASHcref] = ACTIONS(6205), + [anon_sym_BSLASHCref] = ACTIONS(6205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnameCref] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), + [anon_sym_BSLASHlabelcref] = ACTIONS(6205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange] = ACTIONS(6205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHCrefrange] = ACTIONS(6205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), + [anon_sym_BSLASHnewlabel] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand] = ACTIONS(6205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdef] = ACTIONS(6205), + [anon_sym_BSLASHlet] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), + [anon_sym_BSLASHgls] = ACTIONS(6205), + [anon_sym_BSLASHGls] = ACTIONS(6205), + [anon_sym_BSLASHGLS] = ACTIONS(6205), + [anon_sym_BSLASHglspl] = ACTIONS(6205), + [anon_sym_BSLASHGlspl] = ACTIONS(6205), + [anon_sym_BSLASHGLSpl] = ACTIONS(6205), + [anon_sym_BSLASHglsdisp] = ACTIONS(6205), + [anon_sym_BSLASHglslink] = ACTIONS(6205), + [anon_sym_BSLASHglstext] = ACTIONS(6205), + [anon_sym_BSLASHGlstext] = ACTIONS(6205), + [anon_sym_BSLASHGLStext] = ACTIONS(6205), + [anon_sym_BSLASHglsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), + [anon_sym_BSLASHglsplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSplural] = ACTIONS(6205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), + [anon_sym_BSLASHglsname] = ACTIONS(6205), + [anon_sym_BSLASHGlsname] = ACTIONS(6205), + [anon_sym_BSLASHGLSname] = ACTIONS(6205), + [anon_sym_BSLASHglssymbol] = ACTIONS(6205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), + [anon_sym_BSLASHglsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), + [anon_sym_BSLASHglsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), + [anon_sym_BSLASHglsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), + [anon_sym_BSLASHglsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), + [anon_sym_BSLASHglsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), + [anon_sym_BSLASHnewacronym] = ACTIONS(6205), + [anon_sym_BSLASHacrshort] = ACTIONS(6205), + [anon_sym_BSLASHAcrshort] = ACTIONS(6205), + [anon_sym_BSLASHACRshort] = ACTIONS(6205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), + [anon_sym_BSLASHacrlong] = ACTIONS(6205), + [anon_sym_BSLASHAcrlong] = ACTIONS(6205), + [anon_sym_BSLASHACRlong] = ACTIONS(6205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), + [anon_sym_BSLASHacrfull] = ACTIONS(6205), + [anon_sym_BSLASHAcrfull] = ACTIONS(6205), + [anon_sym_BSLASHACRfull] = ACTIONS(6205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), + [anon_sym_BSLASHacs] = ACTIONS(6205), + [anon_sym_BSLASHAcs] = ACTIONS(6205), + [anon_sym_BSLASHacsp] = ACTIONS(6205), + [anon_sym_BSLASHAcsp] = ACTIONS(6205), + [anon_sym_BSLASHacl] = ACTIONS(6205), + [anon_sym_BSLASHAcl] = ACTIONS(6205), + [anon_sym_BSLASHaclp] = ACTIONS(6205), + [anon_sym_BSLASHAclp] = ACTIONS(6205), + [anon_sym_BSLASHacf] = ACTIONS(6205), + [anon_sym_BSLASHAcf] = ACTIONS(6205), + [anon_sym_BSLASHacfp] = ACTIONS(6205), + [anon_sym_BSLASHAcfp] = ACTIONS(6205), + [anon_sym_BSLASHac] = ACTIONS(6205), + [anon_sym_BSLASHAc] = ACTIONS(6205), + [anon_sym_BSLASHacp] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), + [anon_sym_BSLASHcolor] = ACTIONS(6205), + [anon_sym_BSLASHcolorbox] = ACTIONS(6205), + [anon_sym_BSLASHtextcolor] = ACTIONS(6205), + [anon_sym_BSLASHpagecolor] = ACTIONS(6205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), + }, + [1789] = { + [sym_command_name] = ACTIONS(5923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5921), + [anon_sym_COMMA] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(5921), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [sym_placeholder] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym__] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_SQUOTE] = ACTIONS(5923), + [anon_sym_BSLASHtitle] = ACTIONS(5923), + [anon_sym_BSLASHauthor] = ACTIONS(5923), + [anon_sym_BSLASHusepackage] = ACTIONS(5923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5923), + [anon_sym_BSLASHinclude] = ACTIONS(5923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5923), + [anon_sym_BSLASHinput] = ACTIONS(5923), + [anon_sym_BSLASHsubfile] = ACTIONS(5923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5923), + [anon_sym_BSLASHbibliography] = ACTIONS(5923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5923), + [anon_sym_BSLASHincludesvg] = ACTIONS(5923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5923), + [anon_sym_BSLASHimport] = ACTIONS(5923), + [anon_sym_BSLASHsubimport] = ACTIONS(5923), + [anon_sym_BSLASHinputfrom] = ACTIONS(5923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5923), + [anon_sym_BSLASHincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5923), + [anon_sym_BSLASHcaption] = ACTIONS(5923), + [anon_sym_BSLASHcite] = ACTIONS(5923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCite] = ACTIONS(5923), + [anon_sym_BSLASHnocite] = ACTIONS(5923), + [anon_sym_BSLASHcitet] = ACTIONS(5923), + [anon_sym_BSLASHcitep] = ACTIONS(5923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteauthor] = ACTIONS(5923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitetitle] = ACTIONS(5923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteyear] = ACTIONS(5923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5921), + [anon_sym_BSLASHcitedate] = ACTIONS(5923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5921), + [anon_sym_BSLASHciteurl] = ACTIONS(5923), + [anon_sym_BSLASHfullcite] = ACTIONS(5923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5923), + [anon_sym_BSLASHcitealt] = ACTIONS(5923), + [anon_sym_BSLASHcitealp] = ACTIONS(5923), + [anon_sym_BSLASHcitetext] = ACTIONS(5923), + [anon_sym_BSLASHparencite] = ACTIONS(5923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHParencite] = ACTIONS(5923), + [anon_sym_BSLASHfootcite] = ACTIONS(5923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5923), + [anon_sym_BSLASHtextcite] = ACTIONS(5923), + [anon_sym_BSLASHTextcite] = ACTIONS(5923), + [anon_sym_BSLASHsmartcite] = ACTIONS(5923), + [anon_sym_BSLASHSmartcite] = ACTIONS(5923), + [anon_sym_BSLASHsupercite] = ACTIONS(5923), + [anon_sym_BSLASHautocite] = ACTIONS(5923), + [anon_sym_BSLASHAutocite] = ACTIONS(5923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5921), + [anon_sym_BSLASHvolcite] = ACTIONS(5923), + [anon_sym_BSLASHVolcite] = ACTIONS(5923), + [anon_sym_BSLASHpvolcite] = ACTIONS(5923), + [anon_sym_BSLASHPvolcite] = ACTIONS(5923), + [anon_sym_BSLASHfvolcite] = ACTIONS(5923), + [anon_sym_BSLASHftvolcite] = ACTIONS(5923), + [anon_sym_BSLASHsvolcite] = ACTIONS(5923), + [anon_sym_BSLASHSvolcite] = ACTIONS(5923), + [anon_sym_BSLASHtvolcite] = ACTIONS(5923), + [anon_sym_BSLASHTvolcite] = ACTIONS(5923), + [anon_sym_BSLASHavolcite] = ACTIONS(5923), + [anon_sym_BSLASHAvolcite] = ACTIONS(5923), + [anon_sym_BSLASHnotecite] = ACTIONS(5923), + [anon_sym_BSLASHNotecite] = ACTIONS(5923), + [anon_sym_BSLASHpnotecite] = ACTIONS(5923), + [anon_sym_BSLASHPnotecite] = ACTIONS(5923), + [anon_sym_BSLASHfnotecite] = ACTIONS(5923), + [anon_sym_BSLASHlabel] = ACTIONS(5923), + [anon_sym_BSLASHref] = ACTIONS(5923), + [anon_sym_BSLASHeqref] = ACTIONS(5923), + [anon_sym_BSLASHvref] = ACTIONS(5923), + [anon_sym_BSLASHVref] = ACTIONS(5923), + [anon_sym_BSLASHautoref] = ACTIONS(5923), + [anon_sym_BSLASHpageref] = ACTIONS(5923), + [anon_sym_BSLASHcref] = ACTIONS(5923), + [anon_sym_BSLASHCref] = ACTIONS(5923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnameCref] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5923), + [anon_sym_BSLASHlabelcref] = ACTIONS(5923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange] = ACTIONS(5923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHCrefrange] = ACTIONS(5923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5921), + [anon_sym_BSLASHnewlabel] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand] = ACTIONS(5923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdef] = ACTIONS(5923), + [anon_sym_BSLASHlet] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5923), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5923), + [anon_sym_BSLASHgls] = ACTIONS(5923), + [anon_sym_BSLASHGls] = ACTIONS(5923), + [anon_sym_BSLASHGLS] = ACTIONS(5923), + [anon_sym_BSLASHglspl] = ACTIONS(5923), + [anon_sym_BSLASHGlspl] = ACTIONS(5923), + [anon_sym_BSLASHGLSpl] = ACTIONS(5923), + [anon_sym_BSLASHglsdisp] = ACTIONS(5923), + [anon_sym_BSLASHglslink] = ACTIONS(5923), + [anon_sym_BSLASHglstext] = ACTIONS(5923), + [anon_sym_BSLASHGlstext] = ACTIONS(5923), + [anon_sym_BSLASHGLStext] = ACTIONS(5923), + [anon_sym_BSLASHglsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5923), + [anon_sym_BSLASHglsplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSplural] = ACTIONS(5923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5923), + [anon_sym_BSLASHglsname] = ACTIONS(5923), + [anon_sym_BSLASHGlsname] = ACTIONS(5923), + [anon_sym_BSLASHGLSname] = ACTIONS(5923), + [anon_sym_BSLASHglssymbol] = ACTIONS(5923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5923), + [anon_sym_BSLASHglsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5923), + [anon_sym_BSLASHglsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5923), + [anon_sym_BSLASHglsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5923), + [anon_sym_BSLASHglsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5923), + [anon_sym_BSLASHglsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5923), + [anon_sym_BSLASHnewacronym] = ACTIONS(5923), + [anon_sym_BSLASHacrshort] = ACTIONS(5923), + [anon_sym_BSLASHAcrshort] = ACTIONS(5923), + [anon_sym_BSLASHACRshort] = ACTIONS(5923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5923), + [anon_sym_BSLASHacrlong] = ACTIONS(5923), + [anon_sym_BSLASHAcrlong] = ACTIONS(5923), + [anon_sym_BSLASHACRlong] = ACTIONS(5923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5923), + [anon_sym_BSLASHacrfull] = ACTIONS(5923), + [anon_sym_BSLASHAcrfull] = ACTIONS(5923), + [anon_sym_BSLASHACRfull] = ACTIONS(5923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5923), + [anon_sym_BSLASHacs] = ACTIONS(5923), + [anon_sym_BSLASHAcs] = ACTIONS(5923), + [anon_sym_BSLASHacsp] = ACTIONS(5923), + [anon_sym_BSLASHAcsp] = ACTIONS(5923), + [anon_sym_BSLASHacl] = ACTIONS(5923), + [anon_sym_BSLASHAcl] = ACTIONS(5923), + [anon_sym_BSLASHaclp] = ACTIONS(5923), + [anon_sym_BSLASHAclp] = ACTIONS(5923), + [anon_sym_BSLASHacf] = ACTIONS(5923), + [anon_sym_BSLASHAcf] = ACTIONS(5923), + [anon_sym_BSLASHacfp] = ACTIONS(5923), + [anon_sym_BSLASHAcfp] = ACTIONS(5923), + [anon_sym_BSLASHac] = ACTIONS(5923), + [anon_sym_BSLASHAc] = ACTIONS(5923), + [anon_sym_BSLASHacp] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5923), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5923), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5923), + [anon_sym_BSLASHcolor] = ACTIONS(5923), + [anon_sym_BSLASHcolorbox] = ACTIONS(5923), + [anon_sym_BSLASHtextcolor] = ACTIONS(5923), + [anon_sym_BSLASHpagecolor] = ACTIONS(5923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5923), + }, + [1790] = { + [sym_command_name] = ACTIONS(6267), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6267), + [anon_sym_RBRACK] = ACTIONS(6265), + [anon_sym_COMMA] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(6265), + [anon_sym_RBRACE] = ACTIONS(6265), + [sym_word] = ACTIONS(6267), + [sym_placeholder] = ACTIONS(6265), + [anon_sym_PLUS] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_SLASH] = ACTIONS(6267), + [anon_sym_CARET] = ACTIONS(6267), + [anon_sym__] = ACTIONS(6267), + [anon_sym_LT] = ACTIONS(6267), + [anon_sym_GT] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(6267), + [anon_sym_SQUOTE] = ACTIONS(6267), + [anon_sym_BSLASHtitle] = ACTIONS(6267), + [anon_sym_BSLASHauthor] = ACTIONS(6267), + [anon_sym_BSLASHusepackage] = ACTIONS(6267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6267), + [anon_sym_BSLASHinclude] = ACTIONS(6267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6267), + [anon_sym_BSLASHinput] = ACTIONS(6267), + [anon_sym_BSLASHsubfile] = ACTIONS(6267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6267), + [anon_sym_BSLASHbibliography] = ACTIONS(6267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6267), + [anon_sym_BSLASHincludesvg] = ACTIONS(6267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6267), + [anon_sym_BSLASHimport] = ACTIONS(6267), + [anon_sym_BSLASHsubimport] = ACTIONS(6267), + [anon_sym_BSLASHinputfrom] = ACTIONS(6267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6267), + [anon_sym_BSLASHincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6267), + [anon_sym_BSLASHcaption] = ACTIONS(6267), + [anon_sym_BSLASHcite] = ACTIONS(6267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCite] = ACTIONS(6267), + [anon_sym_BSLASHnocite] = ACTIONS(6267), + [anon_sym_BSLASHcitet] = ACTIONS(6267), + [anon_sym_BSLASHcitep] = ACTIONS(6267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteauthor] = ACTIONS(6267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitetitle] = ACTIONS(6267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteyear] = ACTIONS(6267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6265), + [anon_sym_BSLASHcitedate] = ACTIONS(6267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6265), + [anon_sym_BSLASHciteurl] = ACTIONS(6267), + [anon_sym_BSLASHfullcite] = ACTIONS(6267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6267), + [anon_sym_BSLASHcitealt] = ACTIONS(6267), + [anon_sym_BSLASHcitealp] = ACTIONS(6267), + [anon_sym_BSLASHcitetext] = ACTIONS(6267), + [anon_sym_BSLASHparencite] = ACTIONS(6267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHParencite] = ACTIONS(6267), + [anon_sym_BSLASHfootcite] = ACTIONS(6267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6267), + [anon_sym_BSLASHtextcite] = ACTIONS(6267), + [anon_sym_BSLASHTextcite] = ACTIONS(6267), + [anon_sym_BSLASHsmartcite] = ACTIONS(6267), + [anon_sym_BSLASHSmartcite] = ACTIONS(6267), + [anon_sym_BSLASHsupercite] = ACTIONS(6267), + [anon_sym_BSLASHautocite] = ACTIONS(6267), + [anon_sym_BSLASHAutocite] = ACTIONS(6267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6265), + [anon_sym_BSLASHvolcite] = ACTIONS(6267), + [anon_sym_BSLASHVolcite] = ACTIONS(6267), + [anon_sym_BSLASHpvolcite] = ACTIONS(6267), + [anon_sym_BSLASHPvolcite] = ACTIONS(6267), + [anon_sym_BSLASHfvolcite] = ACTIONS(6267), + [anon_sym_BSLASHftvolcite] = ACTIONS(6267), + [anon_sym_BSLASHsvolcite] = ACTIONS(6267), + [anon_sym_BSLASHSvolcite] = ACTIONS(6267), + [anon_sym_BSLASHtvolcite] = ACTIONS(6267), + [anon_sym_BSLASHTvolcite] = ACTIONS(6267), + [anon_sym_BSLASHavolcite] = ACTIONS(6267), + [anon_sym_BSLASHAvolcite] = ACTIONS(6267), + [anon_sym_BSLASHnotecite] = ACTIONS(6267), + [anon_sym_BSLASHNotecite] = ACTIONS(6267), + [anon_sym_BSLASHpnotecite] = ACTIONS(6267), + [anon_sym_BSLASHPnotecite] = ACTIONS(6267), + [anon_sym_BSLASHfnotecite] = ACTIONS(6267), + [anon_sym_BSLASHlabel] = ACTIONS(6267), + [anon_sym_BSLASHref] = ACTIONS(6267), + [anon_sym_BSLASHeqref] = ACTIONS(6267), + [anon_sym_BSLASHvref] = ACTIONS(6267), + [anon_sym_BSLASHVref] = ACTIONS(6267), + [anon_sym_BSLASHautoref] = ACTIONS(6267), + [anon_sym_BSLASHpageref] = ACTIONS(6267), + [anon_sym_BSLASHcref] = ACTIONS(6267), + [anon_sym_BSLASHCref] = ACTIONS(6267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnameCref] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6267), + [anon_sym_BSLASHlabelcref] = ACTIONS(6267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange] = ACTIONS(6267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHCrefrange] = ACTIONS(6267), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6265), + [anon_sym_BSLASHnewlabel] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand] = ACTIONS(6267), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6267), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6267), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6265), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdef] = ACTIONS(6267), + [anon_sym_BSLASHlet] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6267), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6267), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6267), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6267), + [anon_sym_BSLASHgls] = ACTIONS(6267), + [anon_sym_BSLASHGls] = ACTIONS(6267), + [anon_sym_BSLASHGLS] = ACTIONS(6267), + [anon_sym_BSLASHglspl] = ACTIONS(6267), + [anon_sym_BSLASHGlspl] = ACTIONS(6267), + [anon_sym_BSLASHGLSpl] = ACTIONS(6267), + [anon_sym_BSLASHglsdisp] = ACTIONS(6267), + [anon_sym_BSLASHglslink] = ACTIONS(6267), + [anon_sym_BSLASHglstext] = ACTIONS(6267), + [anon_sym_BSLASHGlstext] = ACTIONS(6267), + [anon_sym_BSLASHGLStext] = ACTIONS(6267), + [anon_sym_BSLASHglsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6267), + [anon_sym_BSLASHglsplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSplural] = ACTIONS(6267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6267), + [anon_sym_BSLASHglsname] = ACTIONS(6267), + [anon_sym_BSLASHGlsname] = ACTIONS(6267), + [anon_sym_BSLASHGLSname] = ACTIONS(6267), + [anon_sym_BSLASHglssymbol] = ACTIONS(6267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6267), + [anon_sym_BSLASHglsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6267), + [anon_sym_BSLASHglsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6267), + [anon_sym_BSLASHglsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6267), + [anon_sym_BSLASHglsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6267), + [anon_sym_BSLASHglsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6267), + [anon_sym_BSLASHnewacronym] = ACTIONS(6267), + [anon_sym_BSLASHacrshort] = ACTIONS(6267), + [anon_sym_BSLASHAcrshort] = ACTIONS(6267), + [anon_sym_BSLASHACRshort] = ACTIONS(6267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6267), + [anon_sym_BSLASHacrlong] = ACTIONS(6267), + [anon_sym_BSLASHAcrlong] = ACTIONS(6267), + [anon_sym_BSLASHACRlong] = ACTIONS(6267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6267), + [anon_sym_BSLASHacrfull] = ACTIONS(6267), + [anon_sym_BSLASHAcrfull] = ACTIONS(6267), + [anon_sym_BSLASHACRfull] = ACTIONS(6267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6267), + [anon_sym_BSLASHacs] = ACTIONS(6267), + [anon_sym_BSLASHAcs] = ACTIONS(6267), + [anon_sym_BSLASHacsp] = ACTIONS(6267), + [anon_sym_BSLASHAcsp] = ACTIONS(6267), + [anon_sym_BSLASHacl] = ACTIONS(6267), + [anon_sym_BSLASHAcl] = ACTIONS(6267), + [anon_sym_BSLASHaclp] = ACTIONS(6267), + [anon_sym_BSLASHAclp] = ACTIONS(6267), + [anon_sym_BSLASHacf] = ACTIONS(6267), + [anon_sym_BSLASHAcf] = ACTIONS(6267), + [anon_sym_BSLASHacfp] = ACTIONS(6267), + [anon_sym_BSLASHAcfp] = ACTIONS(6267), + [anon_sym_BSLASHac] = ACTIONS(6267), + [anon_sym_BSLASHAc] = ACTIONS(6267), + [anon_sym_BSLASHacp] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6267), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6267), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6267), + [anon_sym_BSLASHcolor] = ACTIONS(6267), + [anon_sym_BSLASHcolorbox] = ACTIONS(6267), + [anon_sym_BSLASHtextcolor] = ACTIONS(6267), + [anon_sym_BSLASHpagecolor] = ACTIONS(6267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6267), + }, + [1791] = { + [sym_command_name] = ACTIONS(5991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5991), + [anon_sym_RBRACK] = ACTIONS(5989), + [anon_sym_COMMA] = ACTIONS(5989), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_RBRACE] = ACTIONS(5989), + [sym_word] = ACTIONS(5991), + [sym_placeholder] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_SLASH] = ACTIONS(5991), + [anon_sym_CARET] = ACTIONS(5991), + [anon_sym__] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5991), + [anon_sym_GT] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5991), + [anon_sym_PIPE] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_SQUOTE] = ACTIONS(5991), + [anon_sym_BSLASHtitle] = ACTIONS(5991), + [anon_sym_BSLASHauthor] = ACTIONS(5991), + [anon_sym_BSLASHusepackage] = ACTIONS(5991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5991), + [anon_sym_BSLASHinclude] = ACTIONS(5991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5991), + [anon_sym_BSLASHinput] = ACTIONS(5991), + [anon_sym_BSLASHsubfile] = ACTIONS(5991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5991), + [anon_sym_BSLASHbibliography] = ACTIONS(5991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5991), + [anon_sym_BSLASHincludesvg] = ACTIONS(5991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5991), + [anon_sym_BSLASHimport] = ACTIONS(5991), + [anon_sym_BSLASHsubimport] = ACTIONS(5991), + [anon_sym_BSLASHinputfrom] = ACTIONS(5991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5991), + [anon_sym_BSLASHincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5991), + [anon_sym_BSLASHcaption] = ACTIONS(5991), + [anon_sym_BSLASHcite] = ACTIONS(5991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCite] = ACTIONS(5991), + [anon_sym_BSLASHnocite] = ACTIONS(5991), + [anon_sym_BSLASHcitet] = ACTIONS(5991), + [anon_sym_BSLASHcitep] = ACTIONS(5991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteauthor] = ACTIONS(5991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitetitle] = ACTIONS(5991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteyear] = ACTIONS(5991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5989), + [anon_sym_BSLASHcitedate] = ACTIONS(5991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5989), + [anon_sym_BSLASHciteurl] = ACTIONS(5991), + [anon_sym_BSLASHfullcite] = ACTIONS(5991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5991), + [anon_sym_BSLASHcitealt] = ACTIONS(5991), + [anon_sym_BSLASHcitealp] = ACTIONS(5991), + [anon_sym_BSLASHcitetext] = ACTIONS(5991), + [anon_sym_BSLASHparencite] = ACTIONS(5991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHParencite] = ACTIONS(5991), + [anon_sym_BSLASHfootcite] = ACTIONS(5991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5991), + [anon_sym_BSLASHtextcite] = ACTIONS(5991), + [anon_sym_BSLASHTextcite] = ACTIONS(5991), + [anon_sym_BSLASHsmartcite] = ACTIONS(5991), + [anon_sym_BSLASHSmartcite] = ACTIONS(5991), + [anon_sym_BSLASHsupercite] = ACTIONS(5991), + [anon_sym_BSLASHautocite] = ACTIONS(5991), + [anon_sym_BSLASHAutocite] = ACTIONS(5991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5989), + [anon_sym_BSLASHvolcite] = ACTIONS(5991), + [anon_sym_BSLASHVolcite] = ACTIONS(5991), + [anon_sym_BSLASHpvolcite] = ACTIONS(5991), + [anon_sym_BSLASHPvolcite] = ACTIONS(5991), + [anon_sym_BSLASHfvolcite] = ACTIONS(5991), + [anon_sym_BSLASHftvolcite] = ACTIONS(5991), + [anon_sym_BSLASHsvolcite] = ACTIONS(5991), + [anon_sym_BSLASHSvolcite] = ACTIONS(5991), + [anon_sym_BSLASHtvolcite] = ACTIONS(5991), + [anon_sym_BSLASHTvolcite] = ACTIONS(5991), + [anon_sym_BSLASHavolcite] = ACTIONS(5991), + [anon_sym_BSLASHAvolcite] = ACTIONS(5991), + [anon_sym_BSLASHnotecite] = ACTIONS(5991), + [anon_sym_BSLASHNotecite] = ACTIONS(5991), + [anon_sym_BSLASHpnotecite] = ACTIONS(5991), + [anon_sym_BSLASHPnotecite] = ACTIONS(5991), + [anon_sym_BSLASHfnotecite] = ACTIONS(5991), + [anon_sym_BSLASHlabel] = ACTIONS(5991), + [anon_sym_BSLASHref] = ACTIONS(5991), + [anon_sym_BSLASHeqref] = ACTIONS(5991), + [anon_sym_BSLASHvref] = ACTIONS(5991), + [anon_sym_BSLASHVref] = ACTIONS(5991), + [anon_sym_BSLASHautoref] = ACTIONS(5991), + [anon_sym_BSLASHpageref] = ACTIONS(5991), + [anon_sym_BSLASHcref] = ACTIONS(5991), + [anon_sym_BSLASHCref] = ACTIONS(5991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnameCref] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5991), + [anon_sym_BSLASHlabelcref] = ACTIONS(5991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange] = ACTIONS(5991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHCrefrange] = ACTIONS(5991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5989), + [anon_sym_BSLASHnewlabel] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand] = ACTIONS(5991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdef] = ACTIONS(5991), + [anon_sym_BSLASHlet] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5991), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5991), + [anon_sym_BSLASHgls] = ACTIONS(5991), + [anon_sym_BSLASHGls] = ACTIONS(5991), + [anon_sym_BSLASHGLS] = ACTIONS(5991), + [anon_sym_BSLASHglspl] = ACTIONS(5991), + [anon_sym_BSLASHGlspl] = ACTIONS(5991), + [anon_sym_BSLASHGLSpl] = ACTIONS(5991), + [anon_sym_BSLASHglsdisp] = ACTIONS(5991), + [anon_sym_BSLASHglslink] = ACTIONS(5991), + [anon_sym_BSLASHglstext] = ACTIONS(5991), + [anon_sym_BSLASHGlstext] = ACTIONS(5991), + [anon_sym_BSLASHGLStext] = ACTIONS(5991), + [anon_sym_BSLASHglsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5991), + [anon_sym_BSLASHglsplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSplural] = ACTIONS(5991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5991), + [anon_sym_BSLASHglsname] = ACTIONS(5991), + [anon_sym_BSLASHGlsname] = ACTIONS(5991), + [anon_sym_BSLASHGLSname] = ACTIONS(5991), + [anon_sym_BSLASHglssymbol] = ACTIONS(5991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5991), + [anon_sym_BSLASHglsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5991), + [anon_sym_BSLASHglsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5991), + [anon_sym_BSLASHglsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5991), + [anon_sym_BSLASHglsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5991), + [anon_sym_BSLASHglsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5991), + [anon_sym_BSLASHnewacronym] = ACTIONS(5991), + [anon_sym_BSLASHacrshort] = ACTIONS(5991), + [anon_sym_BSLASHAcrshort] = ACTIONS(5991), + [anon_sym_BSLASHACRshort] = ACTIONS(5991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5991), + [anon_sym_BSLASHacrlong] = ACTIONS(5991), + [anon_sym_BSLASHAcrlong] = ACTIONS(5991), + [anon_sym_BSLASHACRlong] = ACTIONS(5991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5991), + [anon_sym_BSLASHacrfull] = ACTIONS(5991), + [anon_sym_BSLASHAcrfull] = ACTIONS(5991), + [anon_sym_BSLASHACRfull] = ACTIONS(5991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5991), + [anon_sym_BSLASHacs] = ACTIONS(5991), + [anon_sym_BSLASHAcs] = ACTIONS(5991), + [anon_sym_BSLASHacsp] = ACTIONS(5991), + [anon_sym_BSLASHAcsp] = ACTIONS(5991), + [anon_sym_BSLASHacl] = ACTIONS(5991), + [anon_sym_BSLASHAcl] = ACTIONS(5991), + [anon_sym_BSLASHaclp] = ACTIONS(5991), + [anon_sym_BSLASHAclp] = ACTIONS(5991), + [anon_sym_BSLASHacf] = ACTIONS(5991), + [anon_sym_BSLASHAcf] = ACTIONS(5991), + [anon_sym_BSLASHacfp] = ACTIONS(5991), + [anon_sym_BSLASHAcfp] = ACTIONS(5991), + [anon_sym_BSLASHac] = ACTIONS(5991), + [anon_sym_BSLASHAc] = ACTIONS(5991), + [anon_sym_BSLASHacp] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5991), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5991), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5989), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5991), + [anon_sym_BSLASHcolor] = ACTIONS(5991), + [anon_sym_BSLASHcolorbox] = ACTIONS(5991), + [anon_sym_BSLASHtextcolor] = ACTIONS(5991), + [anon_sym_BSLASHpagecolor] = ACTIONS(5991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5991), + }, + [1792] = { + [sym_command_name] = ACTIONS(6249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6249), + [anon_sym_RBRACK] = ACTIONS(6247), + [anon_sym_COMMA] = ACTIONS(6247), + [anon_sym_EQ] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6247), + [sym_word] = ACTIONS(6249), + [sym_placeholder] = ACTIONS(6247), + [anon_sym_PLUS] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6249), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_CARET] = ACTIONS(6249), + [anon_sym__] = ACTIONS(6249), + [anon_sym_LT] = ACTIONS(6249), + [anon_sym_GT] = ACTIONS(6249), + [anon_sym_BANG] = ACTIONS(6249), + [anon_sym_PIPE] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_SQUOTE] = ACTIONS(6249), + [anon_sym_BSLASHtitle] = ACTIONS(6249), + [anon_sym_BSLASHauthor] = ACTIONS(6249), + [anon_sym_BSLASHusepackage] = ACTIONS(6249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), + [anon_sym_BSLASHinclude] = ACTIONS(6249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), + [anon_sym_BSLASHinput] = ACTIONS(6249), + [anon_sym_BSLASHsubfile] = ACTIONS(6249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), + [anon_sym_BSLASHbibliography] = ACTIONS(6249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), + [anon_sym_BSLASHincludesvg] = ACTIONS(6249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), + [anon_sym_BSLASHimport] = ACTIONS(6249), + [anon_sym_BSLASHsubimport] = ACTIONS(6249), + [anon_sym_BSLASHinputfrom] = ACTIONS(6249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), + [anon_sym_BSLASHincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), + [anon_sym_BSLASHcaption] = ACTIONS(6249), + [anon_sym_BSLASHcite] = ACTIONS(6249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCite] = ACTIONS(6249), + [anon_sym_BSLASHnocite] = ACTIONS(6249), + [anon_sym_BSLASHcitet] = ACTIONS(6249), + [anon_sym_BSLASHcitep] = ACTIONS(6249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteauthor] = ACTIONS(6249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitetitle] = ACTIONS(6249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteyear] = ACTIONS(6249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), + [anon_sym_BSLASHcitedate] = ACTIONS(6249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), + [anon_sym_BSLASHciteurl] = ACTIONS(6249), + [anon_sym_BSLASHfullcite] = ACTIONS(6249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), + [anon_sym_BSLASHcitealt] = ACTIONS(6249), + [anon_sym_BSLASHcitealp] = ACTIONS(6249), + [anon_sym_BSLASHcitetext] = ACTIONS(6249), + [anon_sym_BSLASHparencite] = ACTIONS(6249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHParencite] = ACTIONS(6249), + [anon_sym_BSLASHfootcite] = ACTIONS(6249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), + [anon_sym_BSLASHtextcite] = ACTIONS(6249), + [anon_sym_BSLASHTextcite] = ACTIONS(6249), + [anon_sym_BSLASHsmartcite] = ACTIONS(6249), + [anon_sym_BSLASHSmartcite] = ACTIONS(6249), + [anon_sym_BSLASHsupercite] = ACTIONS(6249), + [anon_sym_BSLASHautocite] = ACTIONS(6249), + [anon_sym_BSLASHAutocite] = ACTIONS(6249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), + [anon_sym_BSLASHvolcite] = ACTIONS(6249), + [anon_sym_BSLASHVolcite] = ACTIONS(6249), + [anon_sym_BSLASHpvolcite] = ACTIONS(6249), + [anon_sym_BSLASHPvolcite] = ACTIONS(6249), + [anon_sym_BSLASHfvolcite] = ACTIONS(6249), + [anon_sym_BSLASHftvolcite] = ACTIONS(6249), + [anon_sym_BSLASHsvolcite] = ACTIONS(6249), + [anon_sym_BSLASHSvolcite] = ACTIONS(6249), + [anon_sym_BSLASHtvolcite] = ACTIONS(6249), + [anon_sym_BSLASHTvolcite] = ACTIONS(6249), + [anon_sym_BSLASHavolcite] = ACTIONS(6249), + [anon_sym_BSLASHAvolcite] = ACTIONS(6249), + [anon_sym_BSLASHnotecite] = ACTIONS(6249), + [anon_sym_BSLASHNotecite] = ACTIONS(6249), + [anon_sym_BSLASHpnotecite] = ACTIONS(6249), + [anon_sym_BSLASHPnotecite] = ACTIONS(6249), + [anon_sym_BSLASHfnotecite] = ACTIONS(6249), + [anon_sym_BSLASHlabel] = ACTIONS(6249), + [anon_sym_BSLASHref] = ACTIONS(6249), + [anon_sym_BSLASHeqref] = ACTIONS(6249), + [anon_sym_BSLASHvref] = ACTIONS(6249), + [anon_sym_BSLASHVref] = ACTIONS(6249), + [anon_sym_BSLASHautoref] = ACTIONS(6249), + [anon_sym_BSLASHpageref] = ACTIONS(6249), + [anon_sym_BSLASHcref] = ACTIONS(6249), + [anon_sym_BSLASHCref] = ACTIONS(6249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnameCref] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), + [anon_sym_BSLASHlabelcref] = ACTIONS(6249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange] = ACTIONS(6249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHCrefrange] = ACTIONS(6249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), + [anon_sym_BSLASHnewlabel] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand] = ACTIONS(6249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdef] = ACTIONS(6249), + [anon_sym_BSLASHlet] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), + [anon_sym_BSLASHgls] = ACTIONS(6249), + [anon_sym_BSLASHGls] = ACTIONS(6249), + [anon_sym_BSLASHGLS] = ACTIONS(6249), + [anon_sym_BSLASHglspl] = ACTIONS(6249), + [anon_sym_BSLASHGlspl] = ACTIONS(6249), + [anon_sym_BSLASHGLSpl] = ACTIONS(6249), + [anon_sym_BSLASHglsdisp] = ACTIONS(6249), + [anon_sym_BSLASHglslink] = ACTIONS(6249), + [anon_sym_BSLASHglstext] = ACTIONS(6249), + [anon_sym_BSLASHGlstext] = ACTIONS(6249), + [anon_sym_BSLASHGLStext] = ACTIONS(6249), + [anon_sym_BSLASHglsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), + [anon_sym_BSLASHglsplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSplural] = ACTIONS(6249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), + [anon_sym_BSLASHglsname] = ACTIONS(6249), + [anon_sym_BSLASHGlsname] = ACTIONS(6249), + [anon_sym_BSLASHGLSname] = ACTIONS(6249), + [anon_sym_BSLASHglssymbol] = ACTIONS(6249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), + [anon_sym_BSLASHglsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), + [anon_sym_BSLASHglsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), + [anon_sym_BSLASHglsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), + [anon_sym_BSLASHglsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), + [anon_sym_BSLASHglsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), + [anon_sym_BSLASHnewacronym] = ACTIONS(6249), + [anon_sym_BSLASHacrshort] = ACTIONS(6249), + [anon_sym_BSLASHAcrshort] = ACTIONS(6249), + [anon_sym_BSLASHACRshort] = ACTIONS(6249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), + [anon_sym_BSLASHacrlong] = ACTIONS(6249), + [anon_sym_BSLASHAcrlong] = ACTIONS(6249), + [anon_sym_BSLASHACRlong] = ACTIONS(6249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), + [anon_sym_BSLASHacrfull] = ACTIONS(6249), + [anon_sym_BSLASHAcrfull] = ACTIONS(6249), + [anon_sym_BSLASHACRfull] = ACTIONS(6249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), + [anon_sym_BSLASHacs] = ACTIONS(6249), + [anon_sym_BSLASHAcs] = ACTIONS(6249), + [anon_sym_BSLASHacsp] = ACTIONS(6249), + [anon_sym_BSLASHAcsp] = ACTIONS(6249), + [anon_sym_BSLASHacl] = ACTIONS(6249), + [anon_sym_BSLASHAcl] = ACTIONS(6249), + [anon_sym_BSLASHaclp] = ACTIONS(6249), + [anon_sym_BSLASHAclp] = ACTIONS(6249), + [anon_sym_BSLASHacf] = ACTIONS(6249), + [anon_sym_BSLASHAcf] = ACTIONS(6249), + [anon_sym_BSLASHacfp] = ACTIONS(6249), + [anon_sym_BSLASHAcfp] = ACTIONS(6249), + [anon_sym_BSLASHac] = ACTIONS(6249), + [anon_sym_BSLASHAc] = ACTIONS(6249), + [anon_sym_BSLASHacp] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), + [anon_sym_BSLASHcolor] = ACTIONS(6249), + [anon_sym_BSLASHcolorbox] = ACTIONS(6249), + [anon_sym_BSLASHtextcolor] = ACTIONS(6249), + [anon_sym_BSLASHpagecolor] = ACTIONS(6249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), + }, + [1793] = { + [sym_command_name] = ACTIONS(6209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(6209), + [anon_sym_RBRACK] = ACTIONS(6207), + [anon_sym_COMMA] = ACTIONS(6207), + [anon_sym_EQ] = ACTIONS(6207), + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_word] = ACTIONS(6209), + [sym_placeholder] = ACTIONS(6207), + [anon_sym_PLUS] = ACTIONS(6209), + [anon_sym_DASH] = ACTIONS(6209), + [anon_sym_STAR] = ACTIONS(6209), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_CARET] = ACTIONS(6209), + [anon_sym__] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6209), + [anon_sym_GT] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [anon_sym_PIPE] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6209), + [anon_sym_SQUOTE] = ACTIONS(6209), + [anon_sym_BSLASHtitle] = ACTIONS(6209), + [anon_sym_BSLASHauthor] = ACTIONS(6209), + [anon_sym_BSLASHusepackage] = ACTIONS(6209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), + [anon_sym_BSLASHinclude] = ACTIONS(6209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), + [anon_sym_BSLASHinput] = ACTIONS(6209), + [anon_sym_BSLASHsubfile] = ACTIONS(6209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), + [anon_sym_BSLASHbibliography] = ACTIONS(6209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), + [anon_sym_BSLASHincludesvg] = ACTIONS(6209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), + [anon_sym_BSLASHimport] = ACTIONS(6209), + [anon_sym_BSLASHsubimport] = ACTIONS(6209), + [anon_sym_BSLASHinputfrom] = ACTIONS(6209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), + [anon_sym_BSLASHincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), + [anon_sym_BSLASHcaption] = ACTIONS(6209), + [anon_sym_BSLASHcite] = ACTIONS(6209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCite] = ACTIONS(6209), + [anon_sym_BSLASHnocite] = ACTIONS(6209), + [anon_sym_BSLASHcitet] = ACTIONS(6209), + [anon_sym_BSLASHcitep] = ACTIONS(6209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteauthor] = ACTIONS(6209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitetitle] = ACTIONS(6209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteyear] = ACTIONS(6209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), + [anon_sym_BSLASHcitedate] = ACTIONS(6209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), + [anon_sym_BSLASHciteurl] = ACTIONS(6209), + [anon_sym_BSLASHfullcite] = ACTIONS(6209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), + [anon_sym_BSLASHcitealt] = ACTIONS(6209), + [anon_sym_BSLASHcitealp] = ACTIONS(6209), + [anon_sym_BSLASHcitetext] = ACTIONS(6209), + [anon_sym_BSLASHparencite] = ACTIONS(6209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHParencite] = ACTIONS(6209), + [anon_sym_BSLASHfootcite] = ACTIONS(6209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), + [anon_sym_BSLASHtextcite] = ACTIONS(6209), + [anon_sym_BSLASHTextcite] = ACTIONS(6209), + [anon_sym_BSLASHsmartcite] = ACTIONS(6209), + [anon_sym_BSLASHSmartcite] = ACTIONS(6209), + [anon_sym_BSLASHsupercite] = ACTIONS(6209), + [anon_sym_BSLASHautocite] = ACTIONS(6209), + [anon_sym_BSLASHAutocite] = ACTIONS(6209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), + [anon_sym_BSLASHvolcite] = ACTIONS(6209), + [anon_sym_BSLASHVolcite] = ACTIONS(6209), + [anon_sym_BSLASHpvolcite] = ACTIONS(6209), + [anon_sym_BSLASHPvolcite] = ACTIONS(6209), + [anon_sym_BSLASHfvolcite] = ACTIONS(6209), + [anon_sym_BSLASHftvolcite] = ACTIONS(6209), + [anon_sym_BSLASHsvolcite] = ACTIONS(6209), + [anon_sym_BSLASHSvolcite] = ACTIONS(6209), + [anon_sym_BSLASHtvolcite] = ACTIONS(6209), + [anon_sym_BSLASHTvolcite] = ACTIONS(6209), + [anon_sym_BSLASHavolcite] = ACTIONS(6209), + [anon_sym_BSLASHAvolcite] = ACTIONS(6209), + [anon_sym_BSLASHnotecite] = ACTIONS(6209), + [anon_sym_BSLASHNotecite] = ACTIONS(6209), + [anon_sym_BSLASHpnotecite] = ACTIONS(6209), + [anon_sym_BSLASHPnotecite] = ACTIONS(6209), + [anon_sym_BSLASHfnotecite] = ACTIONS(6209), + [anon_sym_BSLASHlabel] = ACTIONS(6209), + [anon_sym_BSLASHref] = ACTIONS(6209), + [anon_sym_BSLASHeqref] = ACTIONS(6209), + [anon_sym_BSLASHvref] = ACTIONS(6209), + [anon_sym_BSLASHVref] = ACTIONS(6209), + [anon_sym_BSLASHautoref] = ACTIONS(6209), + [anon_sym_BSLASHpageref] = ACTIONS(6209), + [anon_sym_BSLASHcref] = ACTIONS(6209), + [anon_sym_BSLASHCref] = ACTIONS(6209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnameCref] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), + [anon_sym_BSLASHlabelcref] = ACTIONS(6209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange] = ACTIONS(6209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHCrefrange] = ACTIONS(6209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), + [anon_sym_BSLASHnewlabel] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand] = ACTIONS(6209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdef] = ACTIONS(6209), + [anon_sym_BSLASHlet] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), + [anon_sym_BSLASHgls] = ACTIONS(6209), + [anon_sym_BSLASHGls] = ACTIONS(6209), + [anon_sym_BSLASHGLS] = ACTIONS(6209), + [anon_sym_BSLASHglspl] = ACTIONS(6209), + [anon_sym_BSLASHGlspl] = ACTIONS(6209), + [anon_sym_BSLASHGLSpl] = ACTIONS(6209), + [anon_sym_BSLASHglsdisp] = ACTIONS(6209), + [anon_sym_BSLASHglslink] = ACTIONS(6209), + [anon_sym_BSLASHglstext] = ACTIONS(6209), + [anon_sym_BSLASHGlstext] = ACTIONS(6209), + [anon_sym_BSLASHGLStext] = ACTIONS(6209), + [anon_sym_BSLASHglsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), + [anon_sym_BSLASHglsplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSplural] = ACTIONS(6209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), + [anon_sym_BSLASHglsname] = ACTIONS(6209), + [anon_sym_BSLASHGlsname] = ACTIONS(6209), + [anon_sym_BSLASHGLSname] = ACTIONS(6209), + [anon_sym_BSLASHglssymbol] = ACTIONS(6209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), + [anon_sym_BSLASHglsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), + [anon_sym_BSLASHglsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), + [anon_sym_BSLASHglsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), + [anon_sym_BSLASHglsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), + [anon_sym_BSLASHglsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), + [anon_sym_BSLASHnewacronym] = ACTIONS(6209), + [anon_sym_BSLASHacrshort] = ACTIONS(6209), + [anon_sym_BSLASHAcrshort] = ACTIONS(6209), + [anon_sym_BSLASHACRshort] = ACTIONS(6209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), + [anon_sym_BSLASHacrlong] = ACTIONS(6209), + [anon_sym_BSLASHAcrlong] = ACTIONS(6209), + [anon_sym_BSLASHACRlong] = ACTIONS(6209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), + [anon_sym_BSLASHacrfull] = ACTIONS(6209), + [anon_sym_BSLASHAcrfull] = ACTIONS(6209), + [anon_sym_BSLASHACRfull] = ACTIONS(6209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), + [anon_sym_BSLASHacs] = ACTIONS(6209), + [anon_sym_BSLASHAcs] = ACTIONS(6209), + [anon_sym_BSLASHacsp] = ACTIONS(6209), + [anon_sym_BSLASHAcsp] = ACTIONS(6209), + [anon_sym_BSLASHacl] = ACTIONS(6209), + [anon_sym_BSLASHAcl] = ACTIONS(6209), + [anon_sym_BSLASHaclp] = ACTIONS(6209), + [anon_sym_BSLASHAclp] = ACTIONS(6209), + [anon_sym_BSLASHacf] = ACTIONS(6209), + [anon_sym_BSLASHAcf] = ACTIONS(6209), + [anon_sym_BSLASHacfp] = ACTIONS(6209), + [anon_sym_BSLASHAcfp] = ACTIONS(6209), + [anon_sym_BSLASHac] = ACTIONS(6209), + [anon_sym_BSLASHAc] = ACTIONS(6209), + [anon_sym_BSLASHacp] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), + [anon_sym_BSLASHcolor] = ACTIONS(6209), + [anon_sym_BSLASHcolorbox] = ACTIONS(6209), + [anon_sym_BSLASHtextcolor] = ACTIONS(6209), + [anon_sym_BSLASHpagecolor] = ACTIONS(6209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), + }, + [1794] = { + [sym_command_name] = ACTIONS(5941), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5941), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [sym_word] = ACTIONS(5941), + [sym_placeholder] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym__] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_SQUOTE] = ACTIONS(5941), + [anon_sym_BSLASHtitle] = ACTIONS(5941), + [anon_sym_BSLASHauthor] = ACTIONS(5941), + [anon_sym_BSLASHusepackage] = ACTIONS(5941), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5941), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5941), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5941), + [anon_sym_BSLASHsubfile] = ACTIONS(5941), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5941), + [anon_sym_BSLASHbibliography] = ACTIONS(5941), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5941), + [anon_sym_BSLASHincludesvg] = ACTIONS(5941), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5941), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5941), + [anon_sym_BSLASHimport] = ACTIONS(5941), + [anon_sym_BSLASHsubimport] = ACTIONS(5941), + [anon_sym_BSLASHinputfrom] = ACTIONS(5941), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5941), + [anon_sym_BSLASHincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5941), + [anon_sym_BSLASHcaption] = ACTIONS(5941), + [anon_sym_BSLASHcite] = ACTIONS(5941), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCite] = ACTIONS(5941), + [anon_sym_BSLASHnocite] = ACTIONS(5941), + [anon_sym_BSLASHcitet] = ACTIONS(5941), + [anon_sym_BSLASHcitep] = ACTIONS(5941), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteauthor] = ACTIONS(5941), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5941), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitetitle] = ACTIONS(5941), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteyear] = ACTIONS(5941), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5939), + [anon_sym_BSLASHcitedate] = ACTIONS(5941), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5939), + [anon_sym_BSLASHciteurl] = ACTIONS(5941), + [anon_sym_BSLASHfullcite] = ACTIONS(5941), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5941), + [anon_sym_BSLASHcitealt] = ACTIONS(5941), + [anon_sym_BSLASHcitealp] = ACTIONS(5941), + [anon_sym_BSLASHcitetext] = ACTIONS(5941), + [anon_sym_BSLASHparencite] = ACTIONS(5941), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHParencite] = ACTIONS(5941), + [anon_sym_BSLASHfootcite] = ACTIONS(5941), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5941), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5941), + [anon_sym_BSLASHtextcite] = ACTIONS(5941), + [anon_sym_BSLASHTextcite] = ACTIONS(5941), + [anon_sym_BSLASHsmartcite] = ACTIONS(5941), + [anon_sym_BSLASHSmartcite] = ACTIONS(5941), + [anon_sym_BSLASHsupercite] = ACTIONS(5941), + [anon_sym_BSLASHautocite] = ACTIONS(5941), + [anon_sym_BSLASHAutocite] = ACTIONS(5941), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5939), + [anon_sym_BSLASHvolcite] = ACTIONS(5941), + [anon_sym_BSLASHVolcite] = ACTIONS(5941), + [anon_sym_BSLASHpvolcite] = ACTIONS(5941), + [anon_sym_BSLASHPvolcite] = ACTIONS(5941), + [anon_sym_BSLASHfvolcite] = ACTIONS(5941), + [anon_sym_BSLASHftvolcite] = ACTIONS(5941), + [anon_sym_BSLASHsvolcite] = ACTIONS(5941), + [anon_sym_BSLASHSvolcite] = ACTIONS(5941), + [anon_sym_BSLASHtvolcite] = ACTIONS(5941), + [anon_sym_BSLASHTvolcite] = ACTIONS(5941), + [anon_sym_BSLASHavolcite] = ACTIONS(5941), + [anon_sym_BSLASHAvolcite] = ACTIONS(5941), + [anon_sym_BSLASHnotecite] = ACTIONS(5941), + [anon_sym_BSLASHNotecite] = ACTIONS(5941), + [anon_sym_BSLASHpnotecite] = ACTIONS(5941), + [anon_sym_BSLASHPnotecite] = ACTIONS(5941), + [anon_sym_BSLASHfnotecite] = ACTIONS(5941), + [anon_sym_BSLASHlabel] = ACTIONS(5941), + [anon_sym_BSLASHref] = ACTIONS(5941), + [anon_sym_BSLASHeqref] = ACTIONS(5941), + [anon_sym_BSLASHvref] = ACTIONS(5941), + [anon_sym_BSLASHVref] = ACTIONS(5941), + [anon_sym_BSLASHautoref] = ACTIONS(5941), + [anon_sym_BSLASHpageref] = ACTIONS(5941), + [anon_sym_BSLASHcref] = ACTIONS(5941), + [anon_sym_BSLASHCref] = ACTIONS(5941), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnameCref] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5941), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5941), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5941), + [anon_sym_BSLASHlabelcref] = ACTIONS(5941), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange] = ACTIONS(5941), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHCrefrange] = ACTIONS(5941), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5939), + [anon_sym_BSLASHnewlabel] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand] = ACTIONS(5941), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5941), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5941), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5939), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5941), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdef] = ACTIONS(5941), + [anon_sym_BSLASHlet] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5941), + [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5941), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5941), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5941), + [anon_sym_BSLASHgls] = ACTIONS(5941), + [anon_sym_BSLASHGls] = ACTIONS(5941), + [anon_sym_BSLASHGLS] = ACTIONS(5941), + [anon_sym_BSLASHglspl] = ACTIONS(5941), + [anon_sym_BSLASHGlspl] = ACTIONS(5941), + [anon_sym_BSLASHGLSpl] = ACTIONS(5941), + [anon_sym_BSLASHglsdisp] = ACTIONS(5941), + [anon_sym_BSLASHglslink] = ACTIONS(5941), + [anon_sym_BSLASHglstext] = ACTIONS(5941), + [anon_sym_BSLASHGlstext] = ACTIONS(5941), + [anon_sym_BSLASHGLStext] = ACTIONS(5941), + [anon_sym_BSLASHglsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5941), + [anon_sym_BSLASHglsplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSplural] = ACTIONS(5941), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5941), + [anon_sym_BSLASHglsname] = ACTIONS(5941), + [anon_sym_BSLASHGlsname] = ACTIONS(5941), + [anon_sym_BSLASHGLSname] = ACTIONS(5941), + [anon_sym_BSLASHglssymbol] = ACTIONS(5941), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5941), + [anon_sym_BSLASHglsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5941), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5941), + [anon_sym_BSLASHglsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5941), + [anon_sym_BSLASHglsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5941), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5941), + [anon_sym_BSLASHglsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5941), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5941), + [anon_sym_BSLASHglsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5941), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5941), + [anon_sym_BSLASHnewacronym] = ACTIONS(5941), + [anon_sym_BSLASHacrshort] = ACTIONS(5941), + [anon_sym_BSLASHAcrshort] = ACTIONS(5941), + [anon_sym_BSLASHACRshort] = ACTIONS(5941), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5941), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5941), + [anon_sym_BSLASHacrlong] = ACTIONS(5941), + [anon_sym_BSLASHAcrlong] = ACTIONS(5941), + [anon_sym_BSLASHACRlong] = ACTIONS(5941), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5941), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5941), + [anon_sym_BSLASHacrfull] = ACTIONS(5941), + [anon_sym_BSLASHAcrfull] = ACTIONS(5941), + [anon_sym_BSLASHACRfull] = ACTIONS(5941), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5941), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5941), + [anon_sym_BSLASHacs] = ACTIONS(5941), + [anon_sym_BSLASHAcs] = ACTIONS(5941), + [anon_sym_BSLASHacsp] = ACTIONS(5941), + [anon_sym_BSLASHAcsp] = ACTIONS(5941), + [anon_sym_BSLASHacl] = ACTIONS(5941), + [anon_sym_BSLASHAcl] = ACTIONS(5941), + [anon_sym_BSLASHaclp] = ACTIONS(5941), + [anon_sym_BSLASHAclp] = ACTIONS(5941), + [anon_sym_BSLASHacf] = ACTIONS(5941), + [anon_sym_BSLASHAcf] = ACTIONS(5941), + [anon_sym_BSLASHacfp] = ACTIONS(5941), + [anon_sym_BSLASHAcfp] = ACTIONS(5941), + [anon_sym_BSLASHac] = ACTIONS(5941), + [anon_sym_BSLASHAc] = ACTIONS(5941), + [anon_sym_BSLASHacp] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5941), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5941), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5941), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5941), + [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5941), + [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5941), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5941), + [anon_sym_BSLASHcolor] = ACTIONS(5941), + [anon_sym_BSLASHcolorbox] = ACTIONS(5941), + [anon_sym_BSLASHtextcolor] = ACTIONS(5941), + [anon_sym_BSLASHpagecolor] = ACTIONS(5941), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5941), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5941), + }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, - ACTIONS(5707), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_curly_group_text, + STATE(2462), 1, + sym__trivia_curly_group_minted, + STATE(2767), 1, + sym__trivia_curly_group_comment, + STATE(2768), 1, + sym__trivia_curly_group_verbatim, + STATE(2769), 1, + sym__trivia_curly_group_listing, + STATE(2770), 1, + sym__trivia_curly_group_pycode, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [26] = 6, + ACTIONS(6369), 1, + sym_command_name, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + STATE(2047), 1, + sym_brack_group_argc, + STATE(2080), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [46] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2807), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [64] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2856), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [82] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2792), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [100] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6381), 1, + sym_command_name, + STATE(2023), 1, + sym_curly_group_impl, + STATE(2060), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [120] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(710), 1, - sym_curly_group_text, - STATE(2035), 1, - sym__trivia_curly_group_minted, - STATE(2513), 1, - sym__trivia_curly_group_comment, - STATE(2514), 1, - sym__trivia_curly_group_verbatim, - STATE(2515), 1, - sym__trivia_curly_group_listing, - STATE(2520), 1, - sym__trivia_curly_group_pycode, + ACTIONS(6383), 1, + sym_command_name, + STATE(2003), 1, + sym_curly_group_impl, + STATE(2042), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [26] = 6, - ACTIONS(5709), 1, + [140] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6385), 1, + sym_command_name, + STATE(2050), 1, + sym_brack_group_argc, + STATE(2052), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [160] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2833), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [178] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6387), 1, + sym_command_name, + STATE(1995), 1, + sym_curly_group_impl, + STATE(2066), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [198] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2748), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [216] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6389), 1, + sym_command_name, + STATE(1983), 1, + sym_curly_group_impl, + STATE(2064), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [236] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2772), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [254] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6391), 1, + sym_command_name, + STATE(2026), 1, + sym_curly_group_impl, + STATE(2067), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [274] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6393), 1, + sym_command_name, + STATE(2036), 1, + sym_brack_group_argc, + STATE(2053), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [294] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2721), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [312] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2842), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [330] = 6, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6395), 1, sym_command_name, - ACTIONS(5711), 1, + STATE(2076), 1, + sym_curly_group_impl, + STATE(2078), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [350] = 5, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(6400), 1, + anon_sym_RBRACE, + ACTIONS(6402), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1813), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [368] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6405), 1, + anon_sym_RBRACE, + ACTIONS(6407), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1817), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [386] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6409), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1813), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [404] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + aux_sym__glob_pattern_fragment_token1, + STATE(2786), 1, + sym_glob_pattern, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1815), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [422] = 5, + ACTIONS(6377), 1, + anon_sym_LBRACE, + ACTIONS(6411), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6413), 1, + anon_sym_RBRACE, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + STATE(1813), 2, + sym__glob_pattern_fragment, + aux_sym_glob_pattern_repeat1, + [440] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(712), 1, + sym_curly_group_text, + STATE(2157), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [457] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6419), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_curly_group_text, + STATE(2337), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [474] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2107), 1, + sym_brack_group_text, + STATE(2165), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [491] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_brack_group_text, + STATE(2176), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [508] = 5, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1092), 1, + sym_curly_group, + STATE(2094), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [525] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2118), 1, + sym_brack_group_text, + STATE(2227), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [542] = 5, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(854), 1, + sym_curly_group, + STATE(2500), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [559] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_curly_group_path_list, + STATE(2140), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [576] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym_brack_group_text, + STATE(2250), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [593] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1175), 1, + sym_curly_group_path, + STATE(2141), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [610] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2122), 1, + sym_brack_group_text, + STATE(2276), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [627] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2126), 1, + sym_brack_group_text, + STATE(2323), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [644] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2128), 1, + sym_brack_group_text, + STATE(2370), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [661] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2133), 1, + sym_brack_group_text, + STATE(2410), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [678] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2166), 1, + sym_brack_group_text, + STATE(2480), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [695] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2167), 1, + sym_brack_group_key_value, + STATE(2481), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [712] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_brack_group_text, + STATE(2534), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [729] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2181), 1, + sym_brack_group_key_value, + STATE(2537), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [746] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2234), 1, + sym_brack_group_text, + STATE(2607), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [763] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6427), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_curly_group_glob_pattern, + STATE(2142), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [780] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2235), 1, + sym_brack_group_key_value, + STATE(2608), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [797] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2267), 1, + sym_brack_group_text, + STATE(2692), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [814] = 5, + ACTIONS(5799), 1, + anon_sym_LBRACK, + ACTIONS(6429), 1, + anon_sym_LBRACE, + STATE(1222), 1, + sym_curly_group_text_list, + STATE(2694), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [831] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2268), 1, + sym_brack_group_key_value, + STATE(2693), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [848] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2277), 1, + sym_brack_group_text, + STATE(2675), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [865] = 5, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(6371), 1, + anon_sym_LBRACK, + STATE(1219), 1, + sym_curly_group, + STATE(1871), 1, + sym_brack_group_argc, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [882] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2278), 1, + sym_brack_group_key_value, + STATE(2674), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [899] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2329), 1, + sym_brack_group_text, + STATE(2646), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [916] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2361), 1, + sym_brack_group_key_value, + STATE(2645), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [933] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2371), 1, + sym_brack_group_text, + STATE(2617), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [950] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2375), 1, + sym_brack_group_key_value, + STATE(2616), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [967] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1179), 1, + sym_curly_group_path, + STATE(2143), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [984] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1180), 1, + sym_curly_group_path, + STATE(2144), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [1001] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1181), 1, + sym_curly_group_path, + STATE(2145), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [1018] = 5, + ACTIONS(5355), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym_brack_group_text, + STATE(2585), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [1035] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1805), 1, - sym_curly_group_impl, - STATE(1858), 1, - sym_brack_group_argc, + STATE(2413), 1, + sym_brack_group_key_value, + STATE(2584), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [46] = 5, - ACTIONS(5717), 1, + [1052] = 5, + ACTIONS(265), 1, anon_sym_LBRACE, - ACTIONS(5720), 1, - anon_sym_RBRACE, - ACTIONS(5722), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5715), 2, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1183), 1, + sym_curly_group, + STATE(2147), 1, + sym_brack_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1613), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [64] = 6, - ACTIONS(5711), 1, + [1069] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5725), 1, - sym_command_name, - STATE(1841), 1, - sym_curly_group_impl, - STATE(1854), 1, + STATE(2459), 1, sym_brack_group_argc, + STATE(2541), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [84] = 5, - ACTIONS(5727), 1, + [1086] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6431), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2544), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(794), 1, + sym_curly_group_path_list, + STATE(2450), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [102] = 5, - ACTIONS(5727), 1, + [1103] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6433), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2530), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(795), 1, + sym_curly_group_path, + STATE(2428), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [120] = 5, - ACTIONS(5727), 1, + [1120] = 5, + ACTIONS(5799), 1, + anon_sym_LBRACK, + ACTIONS(6435), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2402), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(1184), 1, + sym_curly_group_text_list, + STATE(1865), 1, + sym_brack_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [138] = 5, - ACTIONS(5727), 1, + [1137] = 5, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, - anon_sym_RBRACE, - ACTIONS(5733), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5715), 2, + STATE(2461), 1, + sym_curly_group_impl, + STATE(2533), 1, + sym_brack_group_argc, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1613), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [156] = 5, - ACTIONS(5727), 1, + [1154] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2454), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(1188), 1, + sym_curly_group_text, + STATE(2155), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [174] = 5, - ACTIONS(5727), 1, + [1171] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6437), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2474), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(800), 1, + sym_curly_group_glob_pattern, + STATE(2426), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [192] = 6, - ACTIONS(5711), 1, + [1188] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(5735), 1, - sym_command_name, - STATE(1792), 1, - sym_curly_group_impl, - STATE(1811), 1, - sym_brack_group_argc, + STATE(1189), 1, + sym_curly_group_text, + STATE(2156), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [212] = 5, - ACTIONS(5727), 1, + [1205] = 5, + ACTIONS(6371), 1, + anon_sym_LBRACK, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2463), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(2378), 1, + sym_curly_group_impl, + STATE(2605), 1, + sym_brack_group_argc, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [230] = 6, - ACTIONS(5711), 1, + [1222] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6439), 1, anon_sym_LBRACE, - ACTIONS(5737), 1, - sym_command_name, - STATE(1813), 1, - sym_curly_group_impl, - STATE(1842), 1, - sym_brack_group_argc, + STATE(1276), 1, + sym_curly_group_text, + STATE(2362), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [250] = 6, - ACTIONS(5711), 1, + [1239] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6435), 1, anon_sym_LBRACE, - ACTIONS(5739), 1, - sym_command_name, - STATE(1850), 1, - sym_brack_group_argc, - STATE(1859), 1, - sym_curly_group_impl, + STATE(1261), 1, + sym_curly_group_text_list, + STATE(2178), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [270] = 5, - ACTIONS(5727), 1, + [1256] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6433), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2527), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + STATE(809), 1, + sym_curly_group_path, + STATE(2425), 1, + sym_brack_group_key_value, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [288] = 5, - ACTIONS(5727), 1, + [1273] = 5, + ACTIONS(265), 1, anon_sym_LBRACE, - ACTIONS(5733), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5741), 1, - anon_sym_RBRACE, - ACTIONS(5715), 2, + ACTIONS(6371), 1, + anon_sym_LBRACK, + STATE(1264), 1, + sym_curly_group, + STATE(1869), 1, + sym_brack_group_argc, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1613), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [306] = 6, - ACTIONS(5711), 1, + [1290] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5743), 1, - sym_command_name, - STATE(1785), 1, + STATE(2285), 1, sym_curly_group_impl, - STATE(1810), 1, + STATE(2669), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [326] = 5, - ACTIONS(5727), 1, + [1307] = 5, + ACTIONS(265), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(2501), 1, - sym_glob_pattern, - ACTIONS(5715), 2, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1321), 1, + sym_curly_group, + STATE(2196), 1, + sym_brack_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1618), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [344] = 6, - ACTIONS(5711), 1, + [1324] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6433), 1, anon_sym_LBRACE, - ACTIONS(5745), 1, - sym_command_name, - STATE(1819), 1, - sym_curly_group_impl, - STATE(1834), 1, - sym_brack_group_argc, + STATE(846), 1, + sym_curly_group_path, + STATE(2424), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [364] = 5, - ACTIONS(5727), 1, + [1341] = 5, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(5747), 1, - anon_sym_RBRACE, - ACTIONS(5749), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5715), 2, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1197), 1, + sym_curly_group, + STATE(2618), 1, + sym_brack_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - STATE(1626), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [382] = 6, - ACTIONS(5711), 1, + [1358] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6441), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - sym_command_name, - STATE(1827), 1, - sym_curly_group_impl, - STATE(1853), 1, - sym_brack_group_argc, + STATE(1290), 1, + sym_curly_group_path_list, + STATE(2127), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [402] = 5, - ACTIONS(5753), 1, + [1375] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1174), 1, + STATE(853), 1, sym_curly_group_path, - STATE(2336), 1, + STATE(2367), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [419] = 5, - ACTIONS(3837), 1, + [1392] = 5, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1489), 1, + STATE(1035), 1, sym_curly_group, - STATE(1699), 1, + STATE(1822), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [436] = 5, - ACTIONS(835), 1, + [1409] = 5, + ACTIONS(5799), 1, + anon_sym_LBRACK, + ACTIONS(6443), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, + STATE(1032), 1, + sym_curly_group_text_list, + STATE(2091), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [1426] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1006), 1, - sym_curly_group, - STATE(1664), 1, + ACTIONS(6373), 1, + anon_sym_LBRACE, + STATE(2183), 1, + sym_curly_group_impl, + STATE(2677), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [453] = 5, - ACTIONS(5753), 1, + [1443] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_curly_group_text, - STATE(1892), 1, + STATE(1289), 1, + sym_curly_group_path, + STATE(2132), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [470] = 5, - ACTIONS(5753), 1, + [1460] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(6447), 1, anon_sym_LBRACE, - STATE(932), 1, - sym_curly_group_text, - STATE(1891), 1, + STATE(1287), 1, + sym_curly_group_glob_pattern, + STATE(2135), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [487] = 5, - ACTIONS(5753), 1, + [1477] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(6449), 1, anon_sym_LBRACE, - STATE(931), 1, - sym_curly_group_text, - STATE(1890), 1, + STATE(1763), 1, + sym_curly_group_path_list, + STATE(2242), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [504] = 5, - ACTIONS(5753), 1, + [1494] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2136), 1, - sym_brack_group_key_value, - STATE(2342), 1, - sym_curly_group_text, + STATE(2104), 1, + sym_curly_group_impl, + STATE(2648), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [521] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5761), 1, + [1511] = 5, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1003), 1, - sym_curly_group_text_list, - STATE(1909), 1, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(864), 1, + sym_curly_group, + STATE(2399), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [538] = 5, - ACTIONS(5149), 1, + [1528] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5761), 1, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(927), 1, - sym_curly_group_text_list, - STATE(1639), 1, - sym_brack_group, + STATE(1730), 1, + sym_curly_group_path, + STATE(2243), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [555] = 5, - ACTIONS(5753), 1, + [1545] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(2093), 1, - sym_brack_group_key_value, - STATE(2371), 1, - sym_curly_group_text, + STATE(881), 1, + sym_curly_group_text_list, + STATE(1966), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [572] = 5, - ACTIONS(4855), 1, + [1562] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6453), 1, anon_sym_LBRACE, - STATE(2118), 1, - sym_brack_group_text, - STATE(2343), 1, - sym_curly_group_text, + STATE(1744), 1, + sym_curly_group_glob_pattern, + STATE(2244), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [589] = 5, - ACTIONS(5711), 1, + [1579] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(2008), 1, - sym_curly_group_impl, - STATE(2395), 1, - sym_brack_group_argc, + STATE(1765), 1, + sym_curly_group_path, + STATE(2245), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [606] = 5, - ACTIONS(5753), 1, + [1596] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5763), 1, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1180), 1, - sym_curly_group_path_list, - STATE(2341), 1, + STATE(1782), 1, + sym_curly_group_path, + STATE(2246), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [623] = 5, - ACTIONS(5753), 1, + [1613] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1179), 1, + STATE(1786), 1, sym_curly_group_path, - STATE(2340), 1, + STATE(2247), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [640] = 5, - ACTIONS(5711), 1, + [1630] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2182), 1, - sym_brack_group_argc, - STATE(2268), 1, + STATE(2390), 1, sym_curly_group_impl, + STATE(2619), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [657] = 5, - ACTIONS(5753), 1, + [1647] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5765), 1, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1177), 1, - sym_curly_group_glob_pattern, - STATE(2339), 1, + STATE(1284), 1, + sym_curly_group_path, + STATE(2169), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [674] = 5, - ACTIONS(835), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, + [1664] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(926), 1, + ACTIONS(6351), 1, + anon_sym_LBRACE, + STATE(1793), 1, sym_curly_group, - STATE(1885), 1, + STATE(2249), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [691] = 5, - ACTIONS(5753), 1, + [1681] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1175), 1, + STATE(1283), 1, sym_curly_group_path, - STATE(2338), 1, + STATE(2197), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [708] = 5, - ACTIONS(4855), 1, + [1698] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6455), 1, anon_sym_LBRACE, - STATE(1908), 1, - sym_brack_group_text, - STATE(2103), 1, + STATE(1722), 1, sym_curly_group_text_list, + STATE(1901), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [725] = 5, - ACTIONS(5753), 1, + [1715] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1157), 1, - sym_curly_group_path, - STATE(2324), 1, + STATE(1775), 1, + sym_curly_group_text, + STATE(2257), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [742] = 5, - ACTIONS(5711), 1, + [1732] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2334), 1, + STATE(2587), 1, sym_brack_group_argc, - STATE(2358), 1, + STATE(2697), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [759] = 5, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LBRACK, - STATE(1171), 1, - sym_curly_group, - STATE(2309), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [776] = 5, - ACTIONS(5149), 1, + [1749] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1170), 1, - sym_curly_group_text_list, - STATE(1681), 1, - sym_brack_group, + STATE(1285), 1, + sym_curly_group_path, + STATE(2168), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [793] = 5, - ACTIONS(4855), 1, + [1766] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(2092), 1, - sym_brack_group_text, - STATE(2372), 1, + STATE(762), 1, sym_curly_group_text, + STATE(2340), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [810] = 5, - ACTIONS(5753), 1, + [1783] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5771), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_curly_group_path, - STATE(1883), 1, + STATE(2085), 1, + sym_curly_group_text, + STATE(2338), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [827] = 5, - ACTIONS(5711), 1, + [1800] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1912), 1, - sym_curly_group_impl, - STATE(2374), 1, - sym_brack_group_argc, + STATE(1774), 1, + sym_curly_group_text, + STATE(2258), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [844] = 5, - ACTIONS(5753), 1, + [1817] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5773), 1, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1166), 1, - sym_curly_group_text, - STATE(2292), 1, + STATE(1499), 1, + sym_curly_group_path, + STATE(2346), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [861] = 5, - ACTIONS(5753), 1, + [1834] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5773), 1, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1165), 1, + STATE(1706), 1, sym_curly_group_text, - STATE(2289), 1, + STATE(2259), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [878] = 5, - ACTIONS(5753), 1, + [1851] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5773), 1, + ACTIONS(6455), 1, anon_sym_LBRACE, - STATE(672), 1, - sym_curly_group_text, - STATE(2288), 1, - sym_brack_group_key_value, + STATE(1743), 1, + sym_curly_group_text_list, + STATE(2280), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [895] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5771), 1, + [1868] = 5, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(923), 1, - sym_curly_group_path, - STATE(1882), 1, - sym_brack_group_key_value, + ACTIONS(6371), 1, + anon_sym_LBRACK, + STATE(1794), 1, + sym_curly_group, + STATE(1905), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [912] = 5, - ACTIONS(5753), 1, + [1885] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(2058), 1, - sym_brack_group_key_value, - STATE(2400), 1, + STATE(508), 1, sym_curly_group_text, + STATE(2336), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [929] = 5, - ACTIONS(5753), 1, + [1902] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5771), 1, + ACTIONS(6429), 1, anon_sym_LBRACE, - STATE(922), 1, - sym_curly_group_path, - STATE(1881), 1, - sym_brack_group_key_value, + STATE(1280), 1, + sym_curly_group_text_list, + STATE(1840), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [946] = 5, - ACTIONS(835), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, + [1919] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(1062), 1, + ACTIONS(6351), 1, + anon_sym_LBRACE, + STATE(1734), 1, sym_curly_group, - STATE(1923), 1, + STATE(2298), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [963] = 5, - ACTIONS(4855), 1, + [1936] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6461), 1, anon_sym_LBRACE, - STATE(2057), 1, - sym_brack_group_text, - STATE(2401), 1, - sym_curly_group_text, + STATE(1060), 1, + sym_curly_group_path_list, + STATE(2494), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [980] = 5, - ACTIONS(5753), 1, + [1953] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5775), 1, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(920), 1, - sym_curly_group_glob_pattern, - STATE(1880), 1, + STATE(1059), 1, + sym_curly_group_path, + STATE(2492), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [997] = 5, - ACTIONS(5753), 1, + [1970] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5771), 1, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(918), 1, - sym_curly_group_path, - STATE(1879), 1, + STATE(691), 1, + sym_curly_group_text, + STATE(2177), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1014] = 5, - ACTIONS(5753), 1, + [1987] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, + ACTIONS(6467), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_curly_group_path_list, - STATE(1878), 1, + STATE(1057), 1, + sym_curly_group_glob_pattern, + STATE(2491), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1031] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(5711), 1, + [2004] = 5, + ACTIONS(5355), 1, anon_sym_LBRACK, - STATE(747), 1, - sym_curly_group, - STATE(1690), 1, - sym_brack_group_argc, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2312), 1, + sym_brack_group_text, + STATE(2313), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1048] = 5, - ACTIONS(5711), 1, + [2021] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1978), 1, - sym_curly_group_impl, - STATE(2345), 1, - sym_brack_group_argc, + STATE(1055), 1, + sym_curly_group_path, + STATE(2490), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1065] = 5, - ACTIONS(5711), 1, + [2038] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_curly_group_impl, - STATE(2260), 1, - sym_brack_group_argc, + STATE(1054), 1, + sym_curly_group_path, + STATE(2488), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1082] = 5, - ACTIONS(5753), 1, + [2055] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(2033), 1, + STATE(1053), 1, + sym_curly_group_path, + STATE(2486), 1, sym_brack_group_key_value, - STATE(2337), 1, - sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1099] = 5, - ACTIONS(4855), 1, + [2072] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2157), 1, - sym_brack_group_text, - STATE(2311), 1, + STATE(960), 1, sym_curly_group_text, + STATE(2179), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1116] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, + [2089] = 5, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(2030), 1, - sym_brack_group_text, - STATE(2335), 1, - sym_curly_group_text, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_curly_group, + STATE(2468), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1133] = 5, - ACTIONS(5753), 1, + [2106] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, + ACTIONS(6469), 1, anon_sym_LBRACE, - STATE(700), 1, - sym_curly_group_path_list, - STATE(2021), 1, - sym_brack_group_key_value, + STATE(1050), 1, + sym_curly_group_text_list, + STATE(1944), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1150] = 5, - ACTIONS(5753), 1, + [2123] = 5, + ACTIONS(5355), 1, anon_sym_LBRACK, - ACTIONS(5781), 1, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(697), 1, - sym_curly_group_path, - STATE(1998), 1, - sym_brack_group_key_value, + STATE(2310), 1, + sym_brack_group_text, + STATE(2311), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1167] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5767), 1, + [2140] = 5, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(729), 1, - sym_curly_group_text_list, - STATE(2361), 1, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1544), 1, + sym_curly_group, + STATE(2549), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1184] = 5, - ACTIONS(5711), 1, + [2157] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2223), 1, - sym_curly_group_impl, - STATE(2313), 1, - sym_brack_group_argc, + STATE(959), 1, + sym_curly_group_text, + STATE(2182), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1201] = 5, - ACTIONS(5753), 1, + [2174] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(2167), 1, + STATE(1045), 1, + sym_curly_group_text, + STATE(2466), 1, sym_brack_group_key_value, - STATE(2310), 1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [2191] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6471), 1, + anon_sym_LBRACE, + STATE(1044), 1, sym_curly_group_text, + STATE(2460), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1218] = 5, - ACTIONS(5753), 1, + [2208] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(2005), 1, - sym_brack_group_key_value, - STATE(2262), 1, + STATE(713), 1, sym_curly_group_text, + STATE(2457), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1235] = 5, - ACTIONS(5149), 1, + [2225] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, + ACTIONS(6443), 1, anon_sym_LBRACE, - STATE(1110), 1, + STATE(955), 1, sym_curly_group_text_list, - STATE(2171), 1, + STATE(1875), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1252] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, + [2242] = 5, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(2001), 1, - sym_brack_group_text, - STATE(2261), 1, - sym_curly_group_text, + ACTIONS(6371), 1, + anon_sym_LBRACK, + STATE(1559), 1, + sym_curly_group, + STATE(1918), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1269] = 5, - ACTIONS(5711), 1, + [2259] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5713), 1, + ACTIONS(6473), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym_curly_group_impl, - STATE(2333), 1, - sym_brack_group_argc, + STATE(1562), 1, + sym_curly_group_text_list, + STATE(2536), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1286] = 5, - ACTIONS(685), 1, + [2276] = 5, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(1107), 1, + STATE(954), 1, sym_curly_group, - STATE(1711), 1, - sym_brack_group_argc, + STATE(2206), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1303] = 5, - ACTIONS(5753), 1, + [2293] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1993), 1, - sym_brack_group_key_value, - STATE(2190), 1, + STATE(1392), 1, sym_curly_group_text, + STATE(2527), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1320] = 5, - ACTIONS(5753), 1, + [2310] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(692), 1, - sym_curly_group_glob_pattern, - STATE(1964), 1, + STATE(952), 1, + sym_curly_group_path, + STATE(2215), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1337] = 5, - ACTIONS(5753), 1, + [2327] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5781), 1, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(689), 1, - sym_curly_group_path, - STATE(1963), 1, + STATE(1580), 1, + sym_curly_group_text, + STATE(2526), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1354] = 5, - ACTIONS(5753), 1, + [2344] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5781), 1, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(688), 1, - sym_curly_group_path, - STATE(1962), 1, + STATE(1581), 1, + sym_curly_group_text, + STATE(2525), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1371] = 5, - ACTIONS(5753), 1, + [2361] = 5, + ACTIONS(5799), 1, + anon_sym_LBRACK, + ACTIONS(6473), 1, + anon_sym_LBRACE, + STATE(1585), 1, + sym_curly_group_text_list, + STATE(1925), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [2378] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5781), 1, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(687), 1, + STATE(951), 1, sym_curly_group_path, - STATE(1961), 1, + STATE(2217), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1388] = 5, - ACTIONS(45), 1, + [2395] = 5, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(812), 1, + STATE(1587), 1, sym_curly_group, - STATE(2138), 1, + STATE(2517), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1405] = 5, - ACTIONS(4855), 1, + [2412] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1869), 1, - sym_brack_group_text, - STATE(1991), 1, - sym_curly_group_text_list, + STATE(1515), 1, + sym_curly_group_path, + STATE(2515), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1422] = 5, - ACTIONS(5753), 1, + [2429] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5785), 1, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1141), 1, - sym_curly_group_path_list, - STATE(1966), 1, + STATE(1589), 1, + sym_curly_group_path, + STATE(2514), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1439] = 5, - ACTIONS(5753), 1, + [2446] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1142), 1, + STATE(1590), 1, sym_curly_group_path, - STATE(1967), 1, + STATE(2513), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1456] = 5, - ACTIONS(5753), 1, + [2463] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5789), 1, + ACTIONS(6481), 1, anon_sym_LBRACE, - STATE(1144), 1, + STATE(1593), 1, sym_curly_group_glob_pattern, - STATE(1968), 1, + STATE(2512), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1473] = 5, - ACTIONS(4855), 1, + [2480] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1992), 1, - sym_brack_group_text, - STATE(2186), 1, - sym_curly_group_text, + STATE(1596), 1, + sym_curly_group_path, + STATE(2511), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1490] = 5, - ACTIONS(4855), 1, + [2497] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6483), 1, anon_sym_LBRACE, - STATE(1911), 1, - sym_brack_group_text, - STATE(2148), 1, - sym_curly_group_text_list, + STATE(1600), 1, + sym_curly_group_path_list, + STATE(2510), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1507] = 5, - ACTIONS(5753), 1, + [2514] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(1146), 1, + STATE(950), 1, sym_curly_group_path, - STATE(1969), 1, + STATE(2109), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1524] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, + [2531] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(787), 1, - sym_curly_group, - STATE(1874), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1541] = 5, - ACTIONS(3837), 1, + ACTIONS(6485), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LBRACK, - STATE(1467), 1, - sym_curly_group, - STATE(2275), 1, - sym_brack_group, + STATE(948), 1, + sym_curly_group_glob_pattern, + STATE(2220), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1558] = 5, - ACTIONS(5753), 1, + [2548] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(1147), 1, + STATE(946), 1, sym_curly_group_path, - STATE(1970), 1, + STATE(2221), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1575] = 5, - ACTIONS(5753), 1, + [2565] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1148), 1, - sym_curly_group_path, - STATE(1971), 1, + STATE(1275), 1, + sym_curly_group_text, + STATE(2363), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1592] = 5, - ACTIONS(5149), 1, + [2582] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6469), 1, anon_sym_LBRACE, - STATE(789), 1, + STATE(993), 1, sym_curly_group_text_list, - STATE(1677), 1, + STATE(2398), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1609] = 5, - ACTIONS(5753), 1, + [2599] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5791), 1, + ACTIONS(6487), 1, anon_sym_LBRACE, - STATE(1527), 1, - sym_curly_group_text, - STATE(2080), 1, + STATE(945), 1, + sym_curly_group_path_list, + STATE(2223), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1626] = 5, - ACTIONS(5149), 1, + [2616] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_LBRACE, - STATE(1492), 1, - sym_curly_group_text_list, - STATE(2263), 1, - sym_brack_group, + STATE(1494), 1, + sym_curly_group_path_list, + STATE(2343), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1643] = 5, - ACTIONS(193), 1, + [2633] = 5, + ACTIONS(1024), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1150), 1, + STATE(990), 1, sym_curly_group, - STATE(1973), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1660] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_curly_group_text_list, - STATE(1724), 1, - sym_brack_group, + STATE(1967), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1677] = 5, - ACTIONS(5753), 1, + [2650] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1327), 1, - sym_curly_group_text, - STATE(2255), 1, + STATE(1495), 1, + sym_curly_group_path, + STATE(2344), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1694] = 5, - ACTIONS(5753), 1, + [2667] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, + ACTIONS(6491), 1, anon_sym_LBRACE, - STATE(1510), 1, - sym_curly_group_text, - STATE(2254), 1, + STATE(1497), 1, + sym_curly_group_glob_pattern, + STATE(2345), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1711] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, + [2684] = 5, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1155), 1, - sym_curly_group_text, - STATE(1981), 1, - sym_brack_group_key_value, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1663), 1, + sym_curly_group, + STATE(2469), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1728] = 5, - ACTIONS(5753), 1, + [2701] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1511), 1, + STATE(711), 1, sym_curly_group_text, - STATE(2253), 1, + STATE(2379), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1745] = 5, - ACTIONS(685), 1, + [2718] = 5, + ACTIONS(4273), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1035), 1, + STATE(1647), 1, sym_curly_group, - STATE(2202), 1, - sym_brack_group, + STATE(1950), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1762] = 5, - ACTIONS(5149), 1, + [2735] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5793), 1, + ACTIONS(6493), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1644), 1, sym_curly_group_text_list, - STATE(1704), 1, + STATE(2456), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1779] = 5, - ACTIONS(3837), 1, + [2752] = 5, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(1517), 1, + STATE(1281), 1, sym_curly_group, - STATE(2245), 1, + STATE(2236), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1796] = 5, - ACTIONS(5753), 1, + [2769] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1156), 1, + STATE(1606), 1, sym_curly_group_text, - STATE(1982), 1, + STATE(2447), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1813] = 5, - ACTIONS(5753), 1, + [2786] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1519), 1, - sym_curly_group_path, - STATE(2243), 1, + STATE(1624), 1, + sym_curly_group_text, + STATE(2446), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1830] = 5, - ACTIONS(5753), 1, + [2803] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(671), 1, + STATE(1623), 1, sym_curly_group_text, - STATE(1983), 1, + STATE(2445), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1847] = 5, - ACTIONS(5753), 1, + [2820] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, + ACTIONS(6493), 1, + anon_sym_LBRACE, + STATE(1653), 1, + sym_curly_group_text_list, + STATE(1953), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [2837] = 5, + ACTIONS(4273), 1, + anon_sym_LBRACE, ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(1656), 1, + sym_curly_group, + STATE(2437), 1, + sym_brack_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [2854] = 5, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1520), 1, + STATE(1652), 1, sym_curly_group_path, - STATE(2242), 1, + STATE(2435), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1864] = 5, - ACTIONS(5753), 1, + [2871] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1680), 1, sym_curly_group_path, - STATE(2241), 1, + STATE(2434), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1881] = 5, - ACTIONS(5753), 1, + [2888] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5801), 1, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1523), 1, - sym_curly_group_glob_pattern, - STATE(2240), 1, + STATE(1692), 1, + sym_curly_group_path, + STATE(2433), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1898] = 5, - ACTIONS(5753), 1, + [2905] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(6499), 1, anon_sym_LBRACE, - STATE(1509), 1, - sym_curly_group_path, - STATE(2239), 1, + STATE(1697), 1, + sym_curly_group_glob_pattern, + STATE(2432), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1915] = 5, - ACTIONS(5753), 1, + [2922] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5803), 1, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1507), 1, - sym_curly_group_path_list, - STATE(2238), 1, + STATE(1701), 1, + sym_curly_group_path, + STATE(2431), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1932] = 5, - ACTIONS(4855), 1, + [2939] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6501), 1, anon_sym_LBRACE, - STATE(1901), 1, - sym_brack_group_text, - STATE(2000), 1, - sym_curly_group_text_list, + STATE(1700), 1, + sym_curly_group_path_list, + STATE(2430), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1949] = 5, - ACTIONS(4855), 1, + [2956] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(1903), 1, - sym_brack_group_text, - STATE(2024), 1, + STATE(765), 1, sym_curly_group_text_list, + STATE(2134), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1966] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, + [2973] = 5, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1227), 1, - sym_curly_group_text_list, - STATE(2003), 1, + ACTIONS(5799), 1, + anon_sym_LBRACK, + STATE(942), 1, + sym_curly_group, + STATE(2355), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [1983] = 5, - ACTIONS(193), 1, + [2990] = 5, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1230), 1, + STATE(775), 1, sym_curly_group, - STATE(1727), 1, + STATE(1824), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2000] = 5, - ACTIONS(573), 1, + [3007] = 5, + ACTIONS(3515), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(838), 1, + STATE(1454), 1, sym_curly_group, - STATE(1945), 1, + STATE(2386), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2017] = 5, - ACTIONS(193), 1, + [3024] = 5, + ACTIONS(3515), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(6371), 1, anon_sym_LBRACK, - STATE(1257), 1, + STATE(1475), 1, sym_curly_group, - STATE(2020), 1, - sym_brack_group, + STATE(1969), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2034] = 5, - ACTIONS(5753), 1, + [3041] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5805), 1, + ACTIONS(6503), 1, anon_sym_LBRACE, - STATE(1545), 1, - sym_curly_group_path_list, - STATE(2063), 1, - sym_brack_group_key_value, + STATE(1480), 1, + sym_curly_group_text_list, + STATE(2373), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2051] = 5, - ACTIONS(5753), 1, + [3058] = 5, + ACTIONS(6371), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(1546), 1, - sym_curly_group_path, - STATE(2064), 1, - sym_brack_group_key_value, + STATE(2095), 1, + sym_curly_group_impl, + STATE(2098), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2068] = 5, - ACTIONS(5753), 1, + [3075] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5809), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1550), 1, - sym_curly_group_glob_pattern, - STATE(2065), 1, + STATE(1385), 1, + sym_curly_group_text, + STATE(2360), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2085] = 5, - ACTIONS(5753), 1, + [3092] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1555), 1, - sym_curly_group_path, - STATE(2066), 1, + STATE(1509), 1, + sym_curly_group_text, + STATE(2359), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2102] = 5, - ACTIONS(5753), 1, + [3109] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1556), 1, - sym_curly_group_path, - STATE(2067), 1, + STATE(1508), 1, + sym_curly_group_text, + STATE(2358), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2119] = 5, - ACTIONS(5753), 1, + [3126] = 5, + ACTIONS(5799), 1, anon_sym_LBRACK, - ACTIONS(5807), 1, + ACTIONS(6503), 1, anon_sym_LBRACE, - STATE(1557), 1, - sym_curly_group_path, - STATE(2068), 1, - sym_brack_group_key_value, + STATE(1504), 1, + sym_curly_group_text_list, + STATE(1971), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2136] = 5, - ACTIONS(3373), 1, + [3143] = 5, + ACTIONS(3515), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(5799), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1503), 1, sym_curly_group, - STATE(2200), 1, + STATE(2350), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2153] = 5, - ACTIONS(5149), 1, + [3160] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5697), 1, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1559), 1, - sym_curly_group, - STATE(2070), 1, - sym_brack_group, + STATE(1501), 1, + sym_curly_group_path, + STATE(2348), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2170] = 5, - ACTIONS(5149), 1, + [3177] = 5, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1560), 1, - sym_curly_group_text_list, - STATE(1773), 1, - sym_brack_group, + STATE(1500), 1, + sym_curly_group_path, + STATE(2347), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2187] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5791), 1, + [3194] = 4, + ACTIONS(6507), 1, + anon_sym_RBRACE, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3208] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6513), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3222] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6515), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3236] = 4, + ACTIONS(6517), 1, + sym_command_name, + ACTIONS(6519), 1, anon_sym_LBRACE, - STATE(1564), 1, - sym_curly_group_text, - STATE(2078), 1, - sym_brack_group_key_value, + STATE(1395), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3250] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6521), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3264] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6523), 1, + anon_sym_RBRACE, + STATE(1990), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3278] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6527), 1, + anon_sym_RBRACE, + STATE(2005), 1, + aux_sym_curly_group_text_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3292] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6529), 1, + anon_sym_RBRACE, + STATE(1981), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3306] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6531), 1, + anon_sym_RBRACE, + STATE(2010), 1, + aux_sym_curly_group_text_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3320] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6533), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3334] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6535), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3348] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6537), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3362] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6539), 1, + anon_sym_RBRACE, + STATE(2008), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3376] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6541), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2204] = 5, - ACTIONS(3373), 1, + [3390] = 4, + ACTIONS(6543), 1, + sym_command_name, + ACTIONS(6545), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, - anon_sym_LBRACK, - STATE(1375), 1, - sym_curly_group, - STATE(1734), 1, - sym_brack_group_argc, + STATE(885), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2221] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5813), 1, + [3404] = 4, + ACTIONS(6547), 1, + sym_command_name, + ACTIONS(6549), 1, anon_sym_LBRACE, - STATE(1378), 1, - sym_curly_group_text_list, - STATE(2188), 1, - sym_brack_group, + STATE(1617), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3418] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6553), 1, + anon_sym_RBRACE, + STATE(2002), 1, + aux_sym_curly_group_key_value_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3432] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6555), 1, + anon_sym_RBRACE, + STATE(1991), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2238] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5791), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym_curly_group_text, - STATE(2079), 1, - sym_brack_group_key_value, + [3446] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6557), 1, + anon_sym_RBRACE, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2255] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5815), 1, - anon_sym_LBRACE, - STATE(810), 1, - sym_curly_group_text, - STATE(1875), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, + [3460] = 3, + ACTIONS(6561), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [2272] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(6559), 2, anon_sym_LBRACE, - STATE(1873), 1, - sym_brack_group_key_value, - STATE(1944), 1, - sym_curly_group_text, + anon_sym_RBRACE, + [3472] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6563), 1, + anon_sym_RBRACE, + STATE(1998), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2289] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5817), 1, - anon_sym_LBRACE, - STATE(967), 1, - sym_curly_group_path_list, - STATE(2127), 1, - sym_brack_group_key_value, + [3486] = 4, + ACTIONS(6565), 1, + anon_sym_RBRACK, + ACTIONS(6567), 1, + anon_sym_COMMA, + STATE(2073), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2306] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(966), 1, - sym_curly_group_path, - STATE(2121), 1, - sym_brack_group_key_value, + [3500] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6569), 1, + anon_sym_RBRACE, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2323] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5815), 1, + [3514] = 4, + ACTIONS(6545), 1, anon_sym_LBRACE, - STATE(820), 1, - sym_curly_group_text, - STATE(2382), 1, - sym_brack_group_key_value, + ACTIONS(6571), 1, + sym_command_name, + STATE(866), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2340] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5821), 1, + [3528] = 4, + ACTIONS(6519), 1, anon_sym_LBRACE, - STATE(964), 1, - sym_curly_group_glob_pattern, - STATE(2119), 1, - sym_brack_group_key_value, + ACTIONS(6573), 1, + sym_command_name, + STATE(1398), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2357] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5815), 1, - anon_sym_LBRACE, - STATE(646), 1, - sym_curly_group_text, - STATE(1922), 1, - sym_brack_group_key_value, + [3542] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6575), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2374] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(962), 1, - sym_curly_group_path, - STATE(2116), 1, - sym_brack_group_key_value, + [3556] = 4, + ACTIONS(6577), 1, + anon_sym_COMMA, + ACTIONS(6580), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2391] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(961), 1, - sym_curly_group_path, - STATE(2115), 1, - sym_brack_group_key_value, + [3570] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6582), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2408] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(960), 1, - sym_curly_group_path, - STATE(2106), 1, - sym_brack_group_key_value, + [3584] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6584), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2425] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1921), 1, - sym_brack_group_text, - STATE(1925), 1, - sym_curly_group_text, + [3598] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6586), 1, + anon_sym_RBRACE, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2442] = 5, - ACTIONS(573), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LBRACK, - STATE(958), 1, - sym_curly_group, - STATE(2099), 1, - sym_brack_group, + [3612] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6588), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2459] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5823), 1, + [3626] = 4, + ACTIONS(6549), 1, anon_sym_LBRACE, - STATE(957), 1, - sym_curly_group_text_list, - STATE(1771), 1, - sym_brack_group, + ACTIONS(6590), 1, + sym_command_name, + STATE(1616), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2476] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5825), 1, - anon_sym_LBRACE, - STATE(1317), 1, - sym_curly_group_text, - STATE(2176), 1, - sym_brack_group_key_value, + [3640] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6592), 1, + anon_sym_RBRACE, + STATE(2009), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2493] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5825), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_curly_group_text, - STATE(2175), 1, - sym_brack_group_key_value, + [3654] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6594), 1, + anon_sym_RBRACE, + STATE(2016), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2510] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5825), 1, + [3668] = 4, + ACTIONS(6596), 1, + sym_command_name, + ACTIONS(6598), 1, anon_sym_LBRACE, - STATE(1409), 1, - sym_curly_group_text, - STATE(2174), 1, - sym_brack_group_key_value, + STATE(1716), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2527] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5827), 1, - anon_sym_LBRACE, - STATE(953), 1, - sym_curly_group_text, - STATE(2059), 1, - sym_brack_group_key_value, + [3682] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2544] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5827), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_curly_group_text, - STATE(2052), 1, - sym_brack_group_key_value, + [3696] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6602), 1, + anon_sym_RBRACE, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2561] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5827), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_curly_group_text, - STATE(2051), 1, - sym_brack_group_key_value, + [3710] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2578] = 5, - ACTIONS(5149), 1, + ACTIONS(6604), 3, anon_sym_LBRACK, - ACTIONS(5813), 1, anon_sym_LBRACE, - STATE(1433), 1, - sym_curly_group_text_list, - STATE(1739), 1, - sym_brack_group, + sym_command_name, + [3720] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6606), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2595] = 5, - ACTIONS(3373), 1, + [3734] = 4, + ACTIONS(6608), 1, + sym_command_name, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LBRACK, - STATE(1432), 1, - sym_curly_group, - STATE(2166), 1, - sym_brack_group, + STATE(699), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2612] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_LBRACE, - STATE(1430), 1, - sym_curly_group_path, - STATE(2164), 1, - sym_brack_group_key_value, + [3748] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6612), 1, + anon_sym_RBRACE, + STATE(2065), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2629] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_LBRACE, - STATE(1429), 1, - sym_curly_group_path, - STATE(2163), 1, - sym_brack_group_key_value, + [3762] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6614), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2646] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_curly_group_path, - STATE(2162), 1, - sym_brack_group_key_value, + [3776] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6616), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2663] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5831), 1, + [3790] = 4, + ACTIONS(6598), 1, anon_sym_LBRACE, - STATE(1426), 1, - sym_curly_group_glob_pattern, - STATE(2161), 1, - sym_brack_group_key_value, + ACTIONS(6618), 1, + sym_command_name, + STATE(1718), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2680] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_LBRACE, - STATE(1424), 1, - sym_curly_group_path, - STATE(2160), 1, - sym_brack_group_key_value, + [3804] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6620), 1, + anon_sym_RBRACE, + STATE(2030), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2697] = 5, - ACTIONS(5753), 1, - anon_sym_LBRACK, - ACTIONS(5833), 1, - anon_sym_LBRACE, - STATE(1422), 1, - sym_curly_group_path_list, - STATE(2159), 1, - sym_brack_group_key_value, + [3818] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6622), 1, + anon_sym_RBRACE, + STATE(2031), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2714] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5767), 1, + [3832] = 4, + ACTIONS(6624), 1, + sym_command_name, + ACTIONS(6626), 1, anon_sym_LBRACE, - STATE(1985), 1, - sym_brack_group_text, - STATE(2284), 1, - sym_curly_group_text_list, + STATE(1406), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2731] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5767), 1, - anon_sym_LBRACE, - STATE(1907), 1, - sym_brack_group_text, - STATE(2091), 1, - sym_curly_group_text_list, + [3846] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6628), 1, + anon_sym_RBRACE, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2748] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5697), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_curly_group, - STATE(2117), 1, - sym_brack_group, + [3860] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6630), 1, + anon_sym_RBRACE, + STATE(2018), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2765] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5823), 1, - anon_sym_LBRACE, - STATE(897), 1, - sym_curly_group_text_list, - STATE(2002), 1, - sym_brack_group, + [3874] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6632), 1, + anon_sym_RBRACE, + STATE(2021), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2782] = 5, - ACTIONS(5697), 1, - anon_sym_LBRACE, - ACTIONS(5711), 1, - anon_sym_LBRACK, - STATE(1561), 1, - sym_curly_group, - STATE(1770), 1, - sym_brack_group_argc, + [3888] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6634), 1, + anon_sym_RBRACE, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2799] = 5, - ACTIONS(5149), 1, - anon_sym_LBRACK, - ACTIONS(5811), 1, - anon_sym_LBRACE, - STATE(1585), 1, - sym_curly_group_text_list, - STATE(2100), 1, - sym_brack_group, + [3902] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6636), 1, + anon_sym_RBRACE, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2816] = 5, - ACTIONS(573), 1, + [3916] = 4, + ACTIONS(6626), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, - anon_sym_LBRACK, - STATE(894), 1, - sym_curly_group, - STATE(1726), 1, - sym_brack_group_argc, + ACTIONS(6638), 1, + sym_command_name, + STATE(1404), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2833] = 5, - ACTIONS(4855), 1, - anon_sym_LBRACK, - ACTIONS(5767), 1, - anon_sym_LBRACE, - STATE(1905), 1, - sym_brack_group_text, - STATE(2056), 1, - sym_curly_group_text_list, + [3930] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6640), 1, + anon_sym_RBRACE, + STATE(2034), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2850] = 4, - ACTIONS(5835), 1, + [3944] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5837), 1, + ACTIONS(6642), 1, anon_sym_RBRACE, - STATE(1787), 1, + STATE(2070), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2864] = 4, - ACTIONS(5839), 1, + [3958] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5841), 1, + ACTIONS(6644), 1, anon_sym_RBRACE, - STATE(1781), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2878] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5845), 1, - anon_sym_RBRACE, - STATE(1782), 1, - aux_sym_curly_group_path_list_repeat1, + [3972] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6646), 1, + sym_command_name, + STATE(2038), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2892] = 4, - ACTIONS(5847), 1, + [3986] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5850), 1, + ACTIONS(6648), 1, anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(2035), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2906] = 4, - ACTIONS(5852), 1, + [4000] = 4, + ACTIONS(6650), 1, sym_command_name, - ACTIONS(5854), 1, + ACTIONS(6652), 1, anon_sym_LBRACE, - STATE(1538), 1, + STATE(734), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2920] = 4, - ACTIONS(5839), 1, + [4014] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5856), 1, + ACTIONS(6654), 1, anon_sym_RBRACE, - STATE(1797), 1, + STATE(2006), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2934] = 4, - ACTIONS(5843), 1, + [4028] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5858), 1, + ACTIONS(6656), 1, anon_sym_RBRACE, - STATE(1779), 1, + STATE(2074), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2948] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5860), 1, + [4042] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6658), 1, anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2962] = 3, - ACTIONS(5864), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5715), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(5862), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [2974] = 4, - ACTIONS(5854), 1, + [4056] = 4, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5866), 1, + ACTIONS(6660), 1, sym_command_name, - STATE(1537), 1, + STATE(1994), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2988] = 4, - ACTIONS(5835), 1, + [4070] = 2, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(6662), 3, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(5868), 1, anon_sym_RBRACE, - STATE(1783), 1, + [4080] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6664), 1, + anon_sym_RBRACE, + STATE(2070), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3002] = 4, - ACTIONS(5870), 1, + [4094] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5873), 1, + ACTIONS(6666), 1, anon_sym_RBRACE, - STATE(1787), 1, + STATE(2044), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3016] = 4, - ACTIONS(5873), 1, - anon_sym_RBRACK, - ACTIONS(5875), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_curly_group_key_value_repeat1, + [4108] = 4, + ACTIONS(6668), 1, + sym_command_name, + ACTIONS(6670), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4122] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6672), 1, + sym_command_name, + STATE(2082), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3030] = 4, - ACTIONS(5835), 1, + [4136] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5878), 1, + ACTIONS(6674), 1, anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3044] = 4, - ACTIONS(5843), 1, + [4150] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5880), 1, + ACTIONS(6676), 1, anon_sym_RBRACE, - STATE(1795), 1, + STATE(2074), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3058] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, + [4164] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6678), 1, + sym_command_name, + STATE(2046), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4178] = 4, + ACTIONS(6509), 1, + anon_sym_BSLASHand, + ACTIONS(6680), 1, anon_sym_RBRACE, - STATE(1806), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3072] = 4, - ACTIONS(5884), 1, - sym_command_name, - ACTIONS(5886), 1, + [4192] = 4, + ACTIONS(6670), 1, anon_sym_LBRACE, - STATE(1323), 1, + ACTIONS(6682), 1, + sym_command_name, + STATE(788), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3086] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5888), 1, - anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + [4206] = 4, + ACTIONS(6652), 1, + anon_sym_LBRACE, + ACTIONS(6684), 1, + sym_command_name, + STATE(743), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3100] = 4, - ACTIONS(5835), 1, + [4220] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5890), 1, + ACTIONS(6686), 1, anon_sym_RBRACE, - STATE(1789), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2048), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3114] = 4, - ACTIONS(5843), 1, + [4234] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5892), 1, + ACTIONS(6688), 1, anon_sym_RBRACE, - STATE(1779), 1, + STATE(2049), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3128] = 4, - ACTIONS(5894), 1, - sym_command_name, - ACTIONS(5896), 1, - anon_sym_LBRACE, - STATE(676), 1, - sym_curly_group_impl, + [4248] = 3, + ACTIONS(6692), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3142] = 4, - ACTIONS(5898), 1, + ACTIONS(6690), 2, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(5901), 1, - anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + [4260] = 4, + ACTIONS(6567), 1, + anon_sym_COMMA, + ACTIONS(6694), 1, + anon_sym_RBRACK, + STATE(2001), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3156] = 4, - ACTIONS(5835), 1, + [4274] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5903), 1, + ACTIONS(6696), 1, anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1984), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3170] = 4, - ACTIONS(5835), 1, + [4288] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5905), 1, + ACTIONS(6698), 1, anon_sym_RBRACE, - STATE(1798), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2039), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3184] = 4, - ACTIONS(5907), 1, - sym_command_name, - ACTIONS(5909), 1, + [4302] = 4, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(791), 1, + ACTIONS(6700), 1, + sym_command_name, + STATE(2014), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3198] = 4, - ACTIONS(5839), 1, + [4316] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5911), 1, + ACTIONS(6702), 1, anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(2040), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3212] = 4, - ACTIONS(5843), 1, + [4330] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5913), 1, + ACTIONS(6704), 1, anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(2015), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3226] = 2, + [4344] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5915), 3, + ACTIONS(6706), 3, anon_sym_LBRACK, anon_sym_LBRACE, sym_command_name, - [3236] = 4, - ACTIONS(5843), 1, + [4354] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6708), 1, + sym_command_name, + STATE(2004), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4368] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5917), 1, + ACTIONS(6710), 1, anon_sym_RBRACE, - STATE(1824), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3250] = 4, - ACTIONS(5909), 1, + [4382] = 4, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5919), 1, + ACTIONS(6712), 1, sym_command_name, - STATE(753), 1, + STATE(2011), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3264] = 4, - ACTIONS(5839), 1, + [4396] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACE, + ACTIONS(6714), 1, + sym_command_name, + STATE(2032), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4410] = 3, + ACTIONS(6716), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(6690), 2, anon_sym_COMMA, - ACTIONS(5921), 1, anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + [4422] = 4, + ACTIONS(6718), 1, + anon_sym_RBRACE, + ACTIONS(6720), 1, + anon_sym_BSLASHand, + STATE(2069), 1, + aux_sym_curly_group_author_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3278] = 4, - ACTIONS(5839), 1, + [4436] = 4, + ACTIONS(6723), 1, anon_sym_COMMA, - ACTIONS(5923), 1, + ACTIONS(6726), 1, anon_sym_RBRACE, - STATE(1801), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3292] = 4, - ACTIONS(5839), 1, + [4450] = 2, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(6728), 3, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(5925), 1, anon_sym_RBRACE, - STATE(1825), 1, - aux_sym_curly_group_text_list_repeat1, + [4460] = 4, + ACTIONS(6511), 1, + anon_sym_COMMA, + ACTIONS(6730), 1, + anon_sym_RBRACE, + STATE(2084), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3306] = 4, - ACTIONS(5843), 1, + [4474] = 4, + ACTIONS(6726), 1, + anon_sym_RBRACK, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(5927), 1, + STATE(2073), 1, + aux_sym_curly_group_key_value_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4488] = 4, + ACTIONS(6735), 1, + anon_sym_COMMA, + ACTIONS(6738), 1, anon_sym_RBRACE, - STATE(1802), 1, + STATE(2074), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3320] = 4, - ACTIONS(5713), 1, + [4502] = 4, + ACTIONS(6525), 1, + anon_sym_COMMA, + ACTIONS(6740), 1, + anon_sym_RBRACE, + STATE(2083), 1, + aux_sym_curly_group_text_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [4516] = 4, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(5929), 1, + ACTIONS(6742), 1, sym_command_name, - STATE(1780), 1, + STATE(693), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3334] = 4, - ACTIONS(5713), 1, + [4530] = 3, + ACTIONS(6746), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(6744), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [4542] = 4, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5931), 1, + ACTIONS(6748), 1, sym_command_name, - STATE(1815), 1, + STATE(2019), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3348] = 4, - ACTIONS(5839), 1, + [4556] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5933), 1, + ACTIONS(6750), 1, anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(2070), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3362] = 4, - ACTIONS(5935), 1, + [4570] = 4, + ACTIONS(6752), 1, sym_command_name, - ACTIONS(5937), 1, + ACTIONS(6754), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(838), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3376] = 4, - ACTIONS(5843), 1, + [4584] = 4, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(5939), 1, + ACTIONS(6756), 1, anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(2079), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3390] = 4, - ACTIONS(5886), 1, + [4598] = 4, + ACTIONS(6754), 1, anon_sym_LBRACE, - ACTIONS(5941), 1, + ACTIONS(6758), 1, sym_command_name, - STATE(1330), 1, + STATE(845), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3404] = 4, - ACTIONS(5835), 1, + [4612] = 4, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(5943), 1, + ACTIONS(6760), 1, anon_sym_RBRACE, - STATE(1817), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2006), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3418] = 4, - ACTIONS(5835), 1, + [4626] = 4, + ACTIONS(6511), 1, anon_sym_COMMA, - ACTIONS(5945), 1, + ACTIONS(6762), 1, anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(2074), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3432] = 2, + [4640] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2106), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5947), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RBRACE, - [3442] = 4, - ACTIONS(5896), 1, + [4651] = 3, + ACTIONS(6549), 1, anon_sym_LBRACE, - ACTIONS(5949), 1, - sym_command_name, - STATE(683), 1, + STATE(1681), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3456] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5951), 1, - anon_sym_RBRACE, - STATE(1812), 1, - aux_sym_curly_group_text_list_repeat1, + [4662] = 3, + ACTIONS(6764), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3470] = 2, + [4673] = 3, + ACTIONS(6766), 1, + anon_sym_LBRACE, + STATE(1105), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5953), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RBRACE, - [3480] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5955), 1, - anon_sym_RBRACE, - STATE(1814), 1, - aux_sym_curly_group_path_list_repeat1, + [4684] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3494] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5957), 1, - anon_sym_RBRACE, - STATE(1829), 1, - aux_sym_curly_group_path_list_repeat1, + [4695] = 3, + ACTIONS(6770), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3508] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5959), 1, - anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + [4706] = 3, + ACTIONS(6443), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3522] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5961), 1, - anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + [4717] = 3, + ACTIONS(6465), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3536] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5963), 1, - anon_sym_RBRACE, - STATE(1831), 1, - aux_sym_curly_group_text_list_repeat1, + [4728] = 3, + ACTIONS(619), 1, + anon_sym_LBRACE, + STATE(1100), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3550] = 4, - ACTIONS(5965), 1, - sym_command_name, - ACTIONS(5967), 1, + [4739] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - STATE(1412), 1, - sym_curly_group_impl, + STATE(1111), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3564] = 4, - ACTIONS(5937), 1, + [4750] = 3, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(5969), 1, - sym_command_name, - STATE(819), 1, + STATE(859), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3578] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5971), 1, - anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3592] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5973), 1, - anon_sym_RBRACE, - STATE(1836), 1, - aux_sym_curly_group_key_value_repeat1, + [4761] = 3, + ACTIONS(619), 1, + anon_sym_LBRACE, + STATE(1098), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3606] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5975), 1, - anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, + [4772] = 3, + ACTIONS(6754), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3620] = 4, - ACTIONS(5967), 1, + [4783] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - ACTIONS(5977), 1, - sym_command_name, - STATE(1406), 1, + STATE(2519), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3634] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5979), 1, - anon_sym_RBRACE, - STATE(1776), 1, - aux_sym_curly_group_key_value_repeat1, + [4794] = 3, + ACTIONS(619), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3648] = 4, - ACTIONS(5713), 1, + [4805] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(5981), 1, - sym_command_name, - STATE(1796), 1, - sym_curly_group_impl, + STATE(1119), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3662] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5983), 1, - anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + [4816] = 3, + ACTIONS(6465), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3676] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5985), 1, - anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_curly_group_key_value_repeat1, + [4827] = 3, + ACTIONS(619), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3690] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(5987), 1, - anon_sym_RBRACE, - STATE(1835), 1, - aux_sym_curly_group_key_value_repeat1, + [4838] = 3, + ACTIONS(6772), 1, + anon_sym_minted, + STATE(2853), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3704] = 4, - ACTIONS(5989), 1, - sym_command_name, - ACTIONS(5991), 1, + [4849] = 3, + ACTIONS(6754), 1, anon_sym_LBRACE, - STATE(699), 1, + STATE(1096), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3718] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(5993), 1, - anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3732] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(5995), 1, - anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + [4860] = 3, + ACTIONS(619), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3746] = 4, - ACTIONS(5997), 1, - sym_command_name, - ACTIONS(5999), 1, + [4871] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(657), 1, - sym_curly_group_impl, + STATE(868), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3760] = 4, - ACTIONS(5713), 1, + [4882] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - ACTIONS(6001), 1, - sym_command_name, - STATE(1828), 1, - sym_curly_group_impl, + STATE(2137), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3774] = 3, - ACTIONS(6005), 1, - anon_sym_EQ, + [4893] = 3, + ACTIONS(723), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(6003), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [3786] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(1840), 1, - aux_sym_curly_group_path_list_repeat1, + [4904] = 3, + ACTIONS(6477), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3800] = 4, - ACTIONS(6009), 1, - anon_sym_RBRACK, - ACTIONS(6011), 1, - anon_sym_COMMA, - STATE(1848), 1, - aux_sym_curly_group_key_value_repeat1, + [4915] = 3, + ACTIONS(265), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3814] = 4, - ACTIONS(5843), 1, - anon_sym_COMMA, - ACTIONS(6013), 1, - anon_sym_RBRACE, - STATE(1849), 1, - aux_sym_curly_group_path_list_repeat1, + [4926] = 3, + ACTIONS(6774), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3828] = 3, - ACTIONS(6015), 1, - anon_sym_EQ, + [4937] = 3, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2175), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [3840] = 4, - ACTIONS(6011), 1, - anon_sym_COMMA, - ACTIONS(6017), 1, - anon_sym_RBRACK, - STATE(1788), 1, - aux_sym_curly_group_key_value_repeat1, + [4948] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3854] = 4, - ACTIONS(5843), 1, + ACTIONS(6776), 2, anon_sym_COMMA, - ACTIONS(6019), 1, anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_path_list_repeat1, + [4957] = 3, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3868] = 4, - ACTIONS(5713), 1, + [4968] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(6021), 1, - sym_command_name, - STATE(1838), 1, - sym_curly_group_impl, + STATE(2551), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3882] = 3, - ACTIONS(6025), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5715), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6023), 2, + [4979] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [3894] = 4, - ACTIONS(5835), 1, - anon_sym_COMMA, - ACTIONS(6027), 1, - anon_sym_RBRACE, - STATE(1793), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1178), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3908] = 4, - ACTIONS(5713), 1, + [4990] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(6029), 1, - sym_command_name, - STATE(1832), 1, - sym_curly_group_impl, + STATE(742), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3922] = 4, - ACTIONS(5713), 1, + [5001] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - ACTIONS(6031), 1, - sym_command_name, - STATE(1861), 1, - sym_curly_group_impl, + STATE(2211), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3936] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(6033), 1, - anon_sym_RBRACE, - STATE(1856), 1, - aux_sym_curly_group_text_list_repeat1, + [5012] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3950] = 4, - ACTIONS(5839), 1, + ACTIONS(6778), 2, anon_sym_COMMA, - ACTIONS(6035), 1, anon_sym_RBRACE, - STATE(1797), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3964] = 2, + [5021] = 3, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(6037), 3, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_command_name, - [3974] = 4, - ACTIONS(5713), 1, + [5032] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - ACTIONS(6039), 1, - sym_command_name, - STATE(1800), 1, - sym_curly_group_impl, + STATE(2240), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3988] = 4, - ACTIONS(5991), 1, + [5043] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - ACTIONS(6041), 1, - sym_command_name, - STATE(686), 1, - sym_curly_group_impl, + STATE(2273), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4002] = 4, - ACTIONS(5839), 1, - anon_sym_COMMA, - ACTIONS(6043), 1, - anon_sym_RBRACE, - STATE(1839), 1, - aux_sym_curly_group_text_list_repeat1, + [5054] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4016] = 4, - ACTIONS(5999), 1, + [5065] = 3, + ACTIONS(6435), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - sym_command_name, - STATE(661), 1, - sym_curly_group_impl, + STATE(1186), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4030] = 3, - ACTIONS(6047), 1, - anon_sym_BSLASHend, - STATE(1095), 1, - sym__trivia_end_minted, - ACTIONS(3), 2, + [5076] = 3, + ACTIONS(6780), 1, + anon_sym_RBRACE, + ACTIONS(6782), 1, + sym_path, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [4041] = 3, - ACTIONS(6049), 1, - anon_sym_pycode, - STATE(2533), 1, - sym__trivia_text_pycode, + [5087] = 3, + ACTIONS(6421), 1, + anon_sym_LBRACE, + STATE(2322), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4052] = 3, - ACTIONS(5771), 1, + [5098] = 3, + ACTIONS(6441), 1, anon_sym_LBRACE, - STATE(919), 1, - sym_curly_group_path, + STATE(1234), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4063] = 3, - ACTIONS(5771), 1, + [5109] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(921), 1, - sym_curly_group_path, + STATE(2366), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4074] = 3, - ACTIONS(5771), 1, + [5120] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(925), 1, - sym_curly_group_path, + STATE(1191), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4085] = 3, - ACTIONS(5757), 1, + [5131] = 3, + ACTIONS(6423), 1, anon_sym_LBRACE, - STATE(928), 1, - sym_curly_group_text, + STATE(1192), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4096] = 3, - ACTIONS(5761), 1, + [5142] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(929), 1, - sym_curly_group_text_list, + STATE(1193), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4107] = 3, - ACTIONS(5767), 1, + [5153] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1959), 1, - sym_curly_group_text_list, + STATE(1233), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4118] = 3, - ACTIONS(5757), 1, + [5164] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(934), 1, - sym_curly_group_text, + STATE(2408), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4129] = 3, - ACTIONS(5777), 1, + [5175] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(935), 1, - sym_curly_group_path_list, + STATE(852), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4140] = 3, - ACTIONS(835), 1, + [5186] = 3, + ACTIONS(6447), 1, anon_sym_LBRACE, - STATE(936), 1, - sym_curly_group, + STATE(1232), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4151] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2269), 1, - sym_curly_group_text, + [5197] = 3, + ACTIONS(6784), 1, + anon_sym_BSLASHend, + STATE(1077), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4162] = 3, + [5208] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(726), 1, + STATE(2449), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4173] = 3, - ACTIONS(5815), 1, + [5219] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(736), 1, + STATE(1279), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4184] = 3, - ACTIONS(6051), 1, - anon_sym_LBRACE, - STATE(735), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4195] = 3, - ACTIONS(6053), 1, + [5230] = 3, + ACTIONS(6786), 1, anon_sym_RBRACE, - ACTIONS(6055), 1, + ACTIONS(6788), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [4206] = 3, - ACTIONS(5777), 1, + [5241] = 3, + ACTIONS(6423), 1, anon_sym_LBRACE, - STATE(994), 1, + STATE(1252), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4217] = 3, - ACTIONS(5771), 1, + [5252] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(1253), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4228] = 3, - ACTIONS(5775), 1, + [5263] = 3, + ACTIONS(6427), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1254), 1, sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4239] = 3, - ACTIONS(5771), 1, + [5274] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1255), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4250] = 3, - ACTIONS(5771), 1, + [5285] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1256), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4261] = 3, - ACTIONS(5771), 1, + [5296] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(1257), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4272] = 3, - ACTIONS(5771), 1, + [5307] = 3, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(1258), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4283] = 3, - ACTIONS(835), 1, + [5318] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(1259), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4294] = 3, - ACTIONS(5757), 1, + [5329] = 3, + ACTIONS(6790), 1, + anon_sym_BSLASHend, + STATE(805), 1, + sym__trivia_end_minted, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5340] = 3, + ACTIONS(6792), 1, + anon_sym_BSLASHend, + STATE(1076), 1, + sym__trivia_end_minted, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5351] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(1262), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4305] = 3, - ACTIONS(835), 1, + [5362] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1005), 1, + STATE(1263), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4316] = 3, - ACTIONS(6057), 1, + [5373] = 3, + ACTIONS(6794), 1, + anon_sym_BSLASHend, + STATE(1075), 1, + sym__trivia_end_listing, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5384] = 3, + ACTIONS(6796), 1, sym_command_name, - ACTIONS(6059), 1, + ACTIONS(6798), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4327] = 3, - ACTIONS(6061), 1, + [5395] = 3, + ACTIONS(6800), 1, anon_sym_LBRACE, - STATE(1008), 1, + STATE(1266), 1, sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4338] = 3, - ACTIONS(5757), 1, + [5406] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1009), 1, + STATE(1267), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4349] = 3, - ACTIONS(5757), 1, + [5417] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1010), 1, + STATE(1268), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4360] = 3, - ACTIONS(5757), 1, + [5428] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(669), 1, + STATE(714), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4371] = 3, - ACTIONS(5757), 1, + [5439] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1042), 1, + STATE(1300), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4382] = 3, - ACTIONS(6063), 1, - sym_command_name, - ACTIONS(6065), 1, - anon_sym_EQ, + [5450] = 3, + ACTIONS(6802), 1, + anon_sym_BSLASHend, + STATE(1074), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4393] = 3, - ACTIONS(6067), 1, + [5461] = 3, + ACTIONS(6804), 1, anon_sym_BSLASHend, - STATE(1044), 1, + STATE(1302), 1, sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4404] = 3, - ACTIONS(6069), 1, + [5472] = 3, + ACTIONS(6806), 1, anon_sym_BSLASHend, - STATE(1045), 1, + STATE(1303), 1, sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4415] = 3, - ACTIONS(6071), 1, + [5483] = 3, + ACTIONS(6808), 1, anon_sym_BSLASHend, - STATE(1046), 1, + STATE(1304), 1, sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4426] = 3, - ACTIONS(6073), 1, + [5494] = 3, + ACTIONS(6810), 1, anon_sym_BSLASHend, - STATE(1047), 1, + STATE(1305), 1, sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4437] = 3, - ACTIONS(6075), 1, + [5505] = 3, + ACTIONS(6812), 1, anon_sym_BSLASHend, - STATE(1048), 1, + STATE(1306), 1, sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4448] = 3, - ACTIONS(6077), 1, + [5516] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(797), 1, - sym__trivia_curly_group_minted, + STATE(2453), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4459] = 3, - ACTIONS(5767), 1, + [5527] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1999), 1, - sym_curly_group_text_list, + STATE(2454), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4470] = 2, + [5538] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2458), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5059), 2, + [5549] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - sym_command_name, - [4479] = 3, - ACTIONS(5767), 1, + STATE(1229), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5560] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(2022), 1, - sym_curly_group_text_list, + STATE(1227), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4490] = 2, + [5571] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1855), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [4499] = 3, - ACTIONS(5767), 1, + [5582] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(2049), 1, - sym_curly_group_text_list, + STATE(1808), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4510] = 2, + [5593] = 3, + ACTIONS(6816), 1, + anon_sym_BSLASHend, + STATE(1073), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(6081), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [4519] = 3, - ACTIONS(5767), 1, + [5604] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(2090), 1, - sym_curly_group_text_list, + STATE(875), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4530] = 3, - ACTIONS(5767), 1, + [5615] = 3, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2102), 1, - sym_curly_group_text_list, + STATE(1071), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4541] = 3, - ACTIONS(5761), 1, + [5626] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1061), 1, - sym_curly_group_text_list, + STATE(2507), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4552] = 3, - ACTIONS(6049), 1, - anon_sym_pycode, - STATE(2458), 1, - sym__trivia_text_pycode, + [5637] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2508), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4563] = 3, - ACTIONS(5767), 1, + [5648] = 3, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2146), 1, + STATE(707), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5659] = 3, + ACTIONS(6435), 1, + anon_sym_LBRACE, + STATE(1320), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4574] = 3, - ACTIONS(5991), 1, + [5670] = 3, + ACTIONS(6465), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5681] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2528), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5692] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2529), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5703] = 3, + ACTIONS(6465), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5714] = 3, + ACTIONS(6670), 1, anon_sym_LBRACE, - STATE(1066), 1, + STATE(1325), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4585] = 3, - ACTIONS(835), 1, + [5725] = 3, + ACTIONS(6429), 1, + anon_sym_LBRACE, + STATE(1278), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5736] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1327), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4596] = 3, - ACTIONS(835), 1, + [5747] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(1329), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4607] = 3, - ACTIONS(5757), 1, + [5758] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1072), 1, + STATE(1331), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4618] = 3, - ACTIONS(6083), 1, + [5769] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(1073), 1, + STATE(1332), 1, sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4629] = 3, - ACTIONS(6085), 1, + [5780] = 3, + ACTIONS(6820), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(1333), 1, sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4640] = 3, - ACTIONS(6087), 1, + [5791] = 3, + ACTIONS(6822), 1, anon_sym_LBRACE, - STATE(1075), 1, + STATE(1334), 1, sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4651] = 3, - ACTIONS(6089), 1, + [5802] = 3, + ACTIONS(6824), 1, anon_sym_LBRACE, - STATE(1076), 1, + STATE(1335), 1, sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4662] = 3, - ACTIONS(6091), 1, + [5813] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(1077), 1, + STATE(1336), 1, sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4673] = 3, - ACTIONS(5759), 1, + [5824] = 3, + ACTIONS(6828), 1, anon_sym_LBRACE, - STATE(2265), 1, - sym_curly_group_text, + STATE(1037), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4684] = 3, - ACTIONS(5815), 1, - anon_sym_LBRACE, - STATE(476), 1, - sym_curly_group_text, + [5835] = 3, + ACTIONS(6830), 1, + sym_command_name, + ACTIONS(6832), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4695] = 3, - ACTIONS(835), 1, + [5846] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - STATE(1080), 1, + STATE(1034), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4706] = 3, - ACTIONS(45), 1, + [5857] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(731), 1, + STATE(1340), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4717] = 3, - ACTIONS(5759), 1, + [5868] = 3, + ACTIONS(6445), 1, + anon_sym_LBRACE, + STATE(1226), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [5879] = 3, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2266), 1, + STATE(1033), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4728] = 3, - ACTIONS(5991), 1, + [5890] = 3, + ACTIONS(6670), 1, anon_sym_LBRACE, - STATE(1084), 1, + STATE(1344), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4739] = 3, - ACTIONS(6093), 1, - anon_sym_BSLASHend, - STATE(871), 1, - sym__trivia_end_listing, + [5901] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2558), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4750] = 3, - ACTIONS(835), 1, + [5912] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1086), 1, + STATE(1346), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4761] = 3, - ACTIONS(835), 1, + [5923] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1088), 1, + STATE(1348), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4772] = 3, - ACTIONS(5757), 1, + [5934] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1089), 1, + STATE(1349), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4783] = 3, - ACTIONS(835), 1, + [5945] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1090), 1, + STATE(1350), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4794] = 3, - ACTIONS(6095), 1, + [5956] = 3, + ACTIONS(6772), 1, anon_sym_minted, - STATE(2548), 1, + STATE(2836), 1, sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4805] = 3, - ACTIONS(573), 1, + [5967] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - STATE(869), 1, + STATE(1030), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4816] = 3, - ACTIONS(835), 1, + [5978] = 3, + ACTIONS(265), 1, anon_sym_LBRACE, - STATE(1093), 1, + STATE(1353), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4827] = 3, - ACTIONS(5815), 1, + [5989] = 3, + ACTIONS(6445), 1, + anon_sym_LBRACE, + STATE(1225), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [6000] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(730), 1, + STATE(1859), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4838] = 3, - ACTIONS(6095), 1, - anon_sym_minted, - STATE(2524), 1, - sym__trivia_text_minted, + [6011] = 3, + ACTIONS(6814), 1, + anon_sym_LBRACE, + STATE(1804), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4849] = 3, - ACTIONS(573), 1, + [6022] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(2578), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4860] = 3, - ACTIONS(5827), 1, + [6033] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(865), 1, - sym_curly_group_text, + STATE(1776), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4871] = 3, - ACTIONS(573), 1, + [6044] = 3, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(864), 1, - sym_curly_group, + STATE(1773), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4882] = 3, - ACTIONS(573), 1, + [6055] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(862), 1, - sym_curly_group, + STATE(1029), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4893] = 3, - ACTIONS(5787), 1, + [6066] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(1028), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4904] = 3, - ACTIONS(5937), 1, + [6077] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(860), 1, - sym_curly_group_impl, + STATE(1738), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4915] = 3, - ACTIONS(5787), 1, + [6088] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(1145), 1, + STATE(1027), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4926] = 3, - ACTIONS(45), 1, + [6099] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(2264), 1, - sym_curly_group, + STATE(1762), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4937] = 3, - ACTIONS(573), 1, + [6110] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(897), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4948] = 3, - ACTIONS(6097), 1, + [6121] = 3, + ACTIONS(6485), 1, anon_sym_LBRACE, - STATE(853), 1, - sym__trivia_curly_group_pycode, + STATE(1025), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4959] = 3, - ACTIONS(5787), 1, + [6132] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(1149), 1, + STATE(1024), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4970] = 3, - ACTIONS(6099), 1, + [6143] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(852), 1, - sym__trivia_curly_group_minted, + STATE(1788), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4981] = 3, - ACTIONS(6101), 1, + [6154] = 3, + ACTIONS(6487), 1, anon_sym_LBRACE, - STATE(851), 1, - sym__trivia_curly_group_listing, + STATE(1023), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4992] = 3, - ACTIONS(5759), 1, + [6165] = 3, + ACTIONS(6836), 1, + anon_sym_RBRACE, + ACTIONS(6838), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [6176] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(1792), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5003] = 3, - ACTIONS(5795), 1, + [6187] = 3, + ACTIONS(6455), 1, anon_sym_LBRACE, - STATE(1153), 1, + STATE(1780), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5014] = 3, - ACTIONS(6095), 1, - anon_sym_minted, - STATE(2464), 1, - sym__trivia_text_minted, + [6198] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2579), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5025] = 3, - ACTIONS(6103), 1, + [6209] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(850), 1, - sym__trivia_curly_group_verbatim, + STATE(2237), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5036] = 3, - ACTIONS(6105), 1, + [6220] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(849), 1, - sym__trivia_curly_group_comment, + STATE(2615), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5047] = 3, - ACTIONS(5827), 1, + [6231] = 3, + ACTIONS(6840), 1, anon_sym_LBRACE, - STATE(848), 1, - sym_curly_group_text, + STATE(873), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5058] = 3, - ACTIONS(5759), 1, + [6242] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1158), 1, + STATE(1772), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5069] = 3, - ACTIONS(5785), 1, + [6253] = 3, + ACTIONS(6449), 1, anon_sym_LBRACE, - STATE(1159), 1, + STATE(1752), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5080] = 3, - ACTIONS(193), 1, + [6264] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(1446), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5091] = 3, - ACTIONS(45), 1, + [6275] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2178), 1, - sym_curly_group, + STATE(2581), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5102] = 3, - ACTIONS(5781), 1, + [6286] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(725), 1, - sym_curly_group_path, + STATE(2603), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5113] = 3, - ACTIONS(5781), 1, + [6297] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(724), 1, - sym_curly_group_path, + STATE(1224), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5124] = 3, - ACTIONS(5781), 1, + [6308] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(723), 1, - sym_curly_group_path, + STATE(830), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5135] = 3, - ACTIONS(5781), 1, + [6319] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(721), 1, - sym_curly_group_path, + STATE(1863), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5146] = 3, - ACTIONS(5783), 1, + [6330] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(720), 1, - sym_curly_group_glob_pattern, + STATE(1806), 1, + sym_curly_group_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [6341] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5157] = 3, - ACTIONS(6107), 1, + [6352] = 3, + ACTIONS(6842), 1, anon_sym_RBRACE, - ACTIONS(6109), 1, + ACTIONS(6844), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [5168] = 3, - ACTIONS(5785), 1, + [6363] = 3, + ACTIONS(6449), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(1790), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5179] = 3, - ACTIONS(5787), 1, + [6374] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1219), 1, + STATE(1778), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5190] = 3, - ACTIONS(5789), 1, + [6385] = 3, + ACTIONS(6453), 1, anon_sym_LBRACE, - STATE(1220), 1, + STATE(1770), 1, sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5201] = 3, - ACTIONS(5787), 1, + [6396] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1221), 1, + STATE(1764), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5212] = 3, - ACTIONS(5787), 1, + [6407] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1222), 1, + STATE(1750), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5223] = 3, - ACTIONS(5787), 1, + [6418] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1223), 1, + STATE(1728), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5234] = 3, - ACTIONS(5787), 1, + [6429] = 3, + ACTIONS(6451), 1, anon_sym_LBRACE, - STATE(1224), 1, + STATE(1783), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5245] = 3, - ACTIONS(193), 1, + [6440] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1225), 1, + STATE(1784), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5256] = 3, - ACTIONS(573), 1, + [6451] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(2665), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5267] = 3, - ACTIONS(573), 1, + [6462] = 3, + ACTIONS(6846), 1, anon_sym_LBRACE, - STATE(844), 1, - sym_curly_group, + STATE(871), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5278] = 3, - ACTIONS(5759), 1, + [6473] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1228), 1, + STATE(1787), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5289] = 3, - ACTIONS(193), 1, + [6484] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1229), 1, + STATE(1789), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5300] = 3, - ACTIONS(5937), 1, + [6495] = 3, + ACTIONS(6848), 1, anon_sym_LBRACE, - STATE(842), 1, - sym_curly_group_impl, + STATE(869), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5311] = 3, - ACTIONS(6111), 1, + [6506] = 3, + ACTIONS(6850), 1, sym_command_name, - ACTIONS(6113), 1, + ACTIONS(6852), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5322] = 3, - ACTIONS(6115), 1, + [6517] = 3, + ACTIONS(6854), 1, anon_sym_LBRACE, - STATE(1232), 1, + STATE(1732), 1, sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5333] = 3, - ACTIONS(5759), 1, + [6528] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1233), 1, + STATE(1779), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5344] = 3, - ACTIONS(5759), 1, + [6539] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1234), 1, + STATE(1755), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5355] = 3, - ACTIONS(5759), 1, + [6550] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(659), 1, + STATE(1707), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5366] = 3, - ACTIONS(5759), 1, + [6561] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(1423), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5377] = 3, - ACTIONS(5767), 1, - anon_sym_LBRACE, - STATE(2227), 1, - sym_curly_group_text_list, + [6572] = 3, + ACTIONS(6856), 1, + anon_sym_BSLASHend, + STATE(806), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5388] = 3, - ACTIONS(6117), 1, + [6583] = 3, + ACTIONS(6858), 1, anon_sym_BSLASHend, - STATE(1268), 1, + STATE(1425), 1, sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5399] = 3, - ACTIONS(6119), 1, + [6594] = 3, + ACTIONS(6860), 1, anon_sym_BSLASHend, - STATE(1269), 1, + STATE(1426), 1, sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5410] = 3, - ACTIONS(6121), 1, + [6605] = 3, + ACTIONS(6862), 1, anon_sym_BSLASHend, - STATE(1270), 1, + STATE(1427), 1, sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5421] = 3, - ACTIONS(6123), 1, + [6616] = 3, + ACTIONS(6864), 1, anon_sym_BSLASHend, - STATE(1271), 1, + STATE(1399), 1, sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5432] = 3, - ACTIONS(6125), 1, + [6627] = 3, + ACTIONS(6866), 1, anon_sym_BSLASHend, - STATE(1272), 1, + STATE(1429), 1, sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5443] = 3, - ACTIONS(45), 1, + [6638] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2179), 1, - sym_curly_group, + STATE(2666), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5454] = 3, - ACTIONS(5759), 1, + [6649] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2180), 1, + STATE(2667), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5465] = 3, - ACTIONS(5759), 1, + [6660] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(2181), 1, + STATE(1221), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5476] = 3, - ACTIONS(6127), 1, - anon_sym_lstlisting, - STATE(2453), 1, - sym__trivia_text_listing, + [6671] = 3, + ACTIONS(723), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5487] = 3, - ACTIONS(6129), 1, - anon_sym_verbatim, - STATE(2452), 1, - sym__trivia_text_verbatim, + [6682] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1868), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5498] = 3, - ACTIONS(5759), 1, + [6693] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1646), 1, - sym_curly_group_text, + STATE(1800), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5509] = 3, - ACTIONS(6131), 1, + [6704] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1631), 1, - sym_curly_group_command_name, + STATE(2681), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5520] = 3, - ACTIONS(5781), 1, + [6715] = 3, + ACTIONS(6868), 1, anon_sym_LBRACE, - STATE(719), 1, - sym_curly_group_path, + STATE(867), 1, + sym__trivia_curly_group_minted, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [6726] = 3, + ACTIONS(6870), 1, + anon_sym_BSLASHend, + STATE(803), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5531] = 3, + [6737] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2256), 1, + STATE(2680), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5542] = 3, - ACTIONS(45), 1, + [6748] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2257), 1, - sym_curly_group, + STATE(2679), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5553] = 3, - ACTIONS(5759), 1, + [6759] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2258), 1, + STATE(2678), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5564] = 3, - ACTIONS(5823), 1, + [6770] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_curly_group_text_list, + STATE(964), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5575] = 3, - ACTIONS(5795), 1, + [6781] = 3, + ACTIONS(6455), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(1733), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5586] = 3, - ACTIONS(5815), 1, + [6792] = 3, + ACTIONS(6487), 1, anon_sym_LBRACE, - STATE(739), 1, - sym_curly_group_text, + STATE(963), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5597] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2259), 1, - sym_curly_group_text, + [6803] = 3, + ACTIONS(6872), 1, + sym_command_name, + ACTIONS(6874), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5608] = 3, - ACTIONS(6133), 1, - anon_sym_comment, - STATE(2450), 1, - sym__trivia_text_comment, + [6814] = 3, + ACTIONS(6876), 1, + anon_sym_BSLASHend, + STATE(802), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5619] = 3, - ACTIONS(45), 1, + [6825] = 3, + ACTIONS(6465), 1, anon_sym_LBRACE, - STATE(2211), 1, - sym_curly_group, + STATE(962), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5630] = 3, - ACTIONS(5909), 1, + [6836] = 3, + ACTIONS(6598), 1, anon_sym_LBRACE, - STATE(1252), 1, + STATE(1737), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5641] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_curly_group_text, + [6847] = 3, + ACTIONS(6878), 1, + anon_sym_BSLASHend, + STATE(801), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5652] = 3, - ACTIONS(193), 1, + [6858] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1250), 1, + STATE(1740), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5663] = 3, - ACTIONS(193), 1, + [6869] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1248), 1, + STATE(1742), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5674] = 3, - ACTIONS(5759), 1, + [6880] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1247), 1, + STATE(1746), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5685] = 3, - ACTIONS(6135), 1, + [6891] = 3, + ACTIONS(6880), 1, anon_sym_LBRACE, - STATE(1246), 1, + STATE(1455), 1, sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5696] = 3, - ACTIONS(6137), 1, + [6902] = 3, + ACTIONS(6882), 1, anon_sym_LBRACE, - STATE(1244), 1, + STATE(1456), 1, sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5707] = 3, - ACTIONS(6139), 1, + [6913] = 3, + ACTIONS(6884), 1, anon_sym_LBRACE, - STATE(1243), 1, + STATE(1457), 1, sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5718] = 3, - ACTIONS(6141), 1, + [6924] = 3, + ACTIONS(6886), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1458), 1, sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5729] = 3, - ACTIONS(6143), 1, + [6935] = 3, + ACTIONS(6888), 1, anon_sym_LBRACE, - STATE(1241), 1, + STATE(1459), 1, sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5740] = 3, - ACTIONS(6145), 1, - anon_sym_BSLASHend, - STATE(742), 1, - sym__trivia_end_comment, + [6946] = 3, + ACTIONS(6890), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5751] = 3, - ACTIONS(6131), 1, + [6957] = 3, + ACTIONS(6443), 1, anon_sym_LBRACE, - STATE(1621), 1, - sym_curly_group_command_name, + STATE(957), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [6968] = 3, + ACTIONS(6465), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5762] = 3, - ACTIONS(193), 1, + [6979] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1238), 1, + STATE(1751), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5773] = 3, - ACTIONS(5779), 1, + [6990] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(718), 1, - sym_curly_group_path_list, + STATE(787), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5784] = 3, - ACTIONS(45), 1, + [7001] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(2312), 1, - sym_curly_group, + STATE(953), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5795] = 3, - ACTIONS(5909), 1, + [7012] = 3, + ACTIONS(6598), 1, anon_sym_LBRACE, - STATE(1216), 1, + STATE(1756), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5806] = 3, - ACTIONS(45), 1, + [7023] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(2329), 1, - sym_curly_group, + STATE(949), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5817] = 3, - ACTIONS(193), 1, + [7034] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1212), 1, + STATE(1758), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5828] = 3, - ACTIONS(193), 1, + [7045] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(1761), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5839] = 3, - ACTIONS(5759), 1, + [7056] = 3, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1766), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5850] = 3, - ACTIONS(193), 1, + [7067] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1205), 1, + STATE(1767), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5861] = 3, - ACTIONS(6095), 1, + [7078] = 3, + ACTIONS(6772), 1, anon_sym_minted, - STATE(2534), 1, + STATE(2811), 1, sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5872] = 3, - ACTIONS(5759), 1, + [7089] = 3, + ACTIONS(6477), 1, anon_sym_LBRACE, - STATE(2331), 1, - sym_curly_group_text, + STATE(947), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5883] = 3, - ACTIONS(193), 1, + [7100] = 3, + ACTIONS(6351), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(1771), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5894] = 3, - ACTIONS(6147), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - sym_path, - ACTIONS(5715), 2, - sym__whitespace, - sym_line_comment, - [5905] = 3, - ACTIONS(5759), 1, + [7111] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(2332), 1, - sym_curly_group_text, + STATE(2229), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5916] = 3, + [7122] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(2228), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5927] = 3, - ACTIONS(6151), 1, + [7133] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2436), 1, + STATE(2200), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5938] = 3, - ACTIONS(5815), 1, + [7144] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(780), 1, + STATE(2173), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5949] = 3, - ACTIONS(5759), 1, + [7155] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1683), 1, - sym_curly_group_text, + STATE(1492), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5960] = 3, - ACTIONS(5807), 1, + [7166] = 3, + ACTIONS(6892), 1, anon_sym_LBRACE, - STATE(1549), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5971] = 3, - ACTIONS(6153), 1, - anon_sym_BSLASHend, - STATE(873), 1, - sym__trivia_end_pycode, + STATE(1493), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [5982] = 3, - ACTIONS(5807), 1, + [7177] = 3, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(1553), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5993] = 3, - ACTIONS(6155), 1, - anon_sym_BSLASHend, - STATE(872), 1, - sym__trivia_end_minted, + STATE(944), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6004] = 3, - ACTIONS(6131), 1, + [7188] = 3, + ACTIONS(619), 1, anon_sym_LBRACE, - STATE(1627), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6015] = 3, - ACTIONS(6157), 1, - anon_sym_BSLASHend, - STATE(870), 1, - sym__trivia_end_verbatim, + STATE(943), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6026] = 3, - ACTIONS(5807), 1, + [7199] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1496), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6037] = 3, - ACTIONS(6159), 1, - anon_sym_BSLASHend, - STATE(859), 1, - sym__trivia_end_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6048] = 3, - ACTIONS(6161), 1, - anon_sym_BSLASHend, - STATE(744), 1, - sym__trivia_end_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6059] = 3, - ACTIONS(5791), 1, + [7210] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(1876), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6070] = 3, - ACTIONS(5811), 1, - anon_sym_LBRACE, - STATE(1562), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6081] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2390), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6092] = 3, - ACTIONS(5827), 1, + [7221] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(841), 1, - sym_curly_group_text, + STATE(1498), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6103] = 3, - ACTIONS(5827), 1, + [7232] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(662), 1, - sym_curly_group_text, + STATE(1802), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6114] = 3, - ACTIONS(5827), 1, + [7243] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(890), 1, - sym_curly_group_text, + STATE(2652), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6125] = 3, - ACTIONS(5791), 1, + [7254] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1566), 1, - sym_curly_group_text, + STATE(2651), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6136] = 3, - ACTIONS(5805), 1, + [7265] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1587), 1, - sym_curly_group_path_list, + STATE(1502), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6147] = 3, - ACTIONS(3373), 1, + [7276] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1354), 1, + STATE(895), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6158] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2391), 1, - sym_curly_group, + [7287] = 3, + ACTIONS(6772), 1, + anon_sym_minted, + STATE(2783), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6169] = 3, - ACTIONS(5759), 1, + [7298] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(2392), 1, + STATE(1505), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6180] = 3, - ACTIONS(5759), 1, + [7309] = 3, + ACTIONS(6503), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym_curly_group_text, + STATE(1506), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6191] = 3, - ACTIONS(5827), 1, + [7320] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(891), 1, + STATE(2650), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6202] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(781), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6213] = 3, - ACTIONS(45), 1, + [7331] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(783), 1, + STATE(901), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6224] = 3, - ACTIONS(6163), 1, - anon_sym_RBRACE, - ACTIONS(6165), 1, - sym_path, - ACTIONS(5715), 2, - sym__whitespace, - sym_line_comment, - [6235] = 3, - ACTIONS(5805), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6246] = 3, - ACTIONS(5807), 1, + [7342] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(1574), 1, - sym_curly_group_path, + STATE(900), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6257] = 3, - ACTIONS(5809), 1, + [7353] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1577), 1, - sym_curly_group_glob_pattern, + STATE(899), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6268] = 3, - ACTIONS(5807), 1, + [7364] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1579), 1, - sym_curly_group_path, + STATE(1511), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6279] = 3, - ACTIONS(5807), 1, + [7375] = 3, + ACTIONS(6489), 1, anon_sym_LBRACE, - STATE(1580), 1, - sym_curly_group_path, + STATE(1512), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6290] = 3, - ACTIONS(5807), 1, + [7386] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1581), 1, - sym_curly_group_path, + STATE(1632), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6301] = 3, - ACTIONS(5807), 1, + [7397] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(1582), 1, - sym_curly_group_path, + STATE(391), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6312] = 3, - ACTIONS(5697), 1, + [7408] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(1543), 1, - sym_curly_group, + STATE(781), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6323] = 3, - ACTIONS(6167), 1, + [7419] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(892), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6334] = 3, - ACTIONS(6169), 1, - sym_command_name, - ACTIONS(6171), 1, - anon_sym_EQ, + STATE(2115), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6345] = 3, - ACTIONS(5791), 1, + [7430] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1586), 1, + STATE(1274), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6356] = 3, - ACTIONS(5697), 1, + [7441] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(1567), 1, - sym_curly_group, + STATE(780), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6367] = 3, - ACTIONS(573), 1, + [7452] = 3, + ACTIONS(6896), 1, anon_sym_LBRACE, - STATE(895), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6378] = 3, - ACTIONS(6173), 1, - sym_command_name, - ACTIONS(6175), 1, - anon_sym_EQ, + STATE(779), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6389] = 3, - ACTIONS(6177), 1, - anon_sym_LBRACE, - STATE(1590), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, + [7463] = 3, + ACTIONS(6898), 1, + anon_sym_RBRACE, + ACTIONS(6900), 1, + sym_path, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [6400] = 3, - ACTIONS(5791), 1, + [7474] = 3, + ACTIONS(6489), 1, anon_sym_LBRACE, - STATE(1591), 1, - sym_curly_group_text, + STATE(1488), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6411] = 3, - ACTIONS(5791), 1, + [7485] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1592), 1, - sym_curly_group_text, + STATE(1489), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6422] = 3, - ACTIONS(5791), 1, + [7496] = 3, + ACTIONS(6491), 1, anon_sym_LBRACE, - STATE(1528), 1, - sym_curly_group_text, + STATE(1491), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6433] = 3, - ACTIONS(5825), 1, + [7507] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1332), 1, - sym_curly_group_text, + STATE(1487), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6444] = 3, - ACTIONS(6131), 1, + [7518] = 3, + ACTIONS(6459), 1, anon_sym_LBRACE, - STATE(1614), 1, - sym_curly_group_command_name, + STATE(1486), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6455] = 3, - ACTIONS(6179), 1, - anon_sym_BSLASHend, - STATE(1386), 1, - sym__trivia_end_comment, + [7529] = 3, + ACTIONS(6459), 1, + anon_sym_LBRACE, + STATE(1485), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6466] = 3, - ACTIONS(6181), 1, - anon_sym_BSLASHend, - STATE(1387), 1, - sym__trivia_end_verbatim, + [7540] = 3, + ACTIONS(6459), 1, + anon_sym_LBRACE, + STATE(1484), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6477] = 3, - ACTIONS(6183), 1, - anon_sym_BSLASHend, - STATE(1388), 1, - sym__trivia_end_listing, + [7551] = 3, + ACTIONS(3515), 1, + anon_sym_LBRACE, + STATE(1482), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6488] = 3, - ACTIONS(6185), 1, - anon_sym_BSLASHend, - STATE(1389), 1, - sym__trivia_end_minted, + [7562] = 3, + ACTIONS(6902), 1, + sym_command_name, + ACTIONS(6904), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6499] = 3, - ACTIONS(6187), 1, - anon_sym_BSLASHend, - STATE(1390), 1, - sym__trivia_end_pycode, + [7573] = 3, + ACTIONS(6545), 1, + anon_sym_LBRACE, + STATE(903), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6510] = 3, - ACTIONS(5759), 1, + [7584] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1643), 1, + STATE(1477), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6521] = 3, - ACTIONS(6131), 1, + [7595] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1612), 1, - sym_curly_group_command_name, + STATE(1476), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6532] = 3, - ACTIONS(45), 1, + [7606] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(2378), 1, + STATE(908), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6543] = 3, - ACTIONS(45), 1, + [7617] = 3, + ACTIONS(6906), 1, + sym_command_name, + ACTIONS(6908), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [7628] = 3, + ACTIONS(6910), 1, anon_sym_LBRACE, - STATE(2377), 1, - sym_curly_group, + STATE(1473), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6554] = 3, - ACTIONS(5759), 1, + [7639] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(2376), 1, + STATE(1472), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6565] = 3, - ACTIONS(5759), 1, + [7650] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(2375), 1, + STATE(1471), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6576] = 3, - ACTIONS(5999), 1, + [7661] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(788), 1, - sym_curly_group_impl, + STATE(1388), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6587] = 2, + [7672] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5079), 2, + [7683] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - sym_command_name, - [6596] = 3, - ACTIONS(5827), 1, + STATE(1216), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [7694] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(1215), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6607] = 3, - ACTIONS(5759), 1, + [7705] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1657), 1, + STATE(1880), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6618] = 3, - ACTIONS(6131), 1, + [7716] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(1796), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6629] = 3, - ACTIONS(573), 1, + [7727] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(2623), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6640] = 3, - ACTIONS(5811), 1, + [7738] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1602), 1, - sym_curly_group_text_list, + STATE(745), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6651] = 3, - ACTIONS(6189), 1, - anon_sym_BSLASHend, - STATE(749), 1, - sym__trivia_end_listing, + [7749] = 3, + ACTIONS(6912), 1, + sym_command_name, + ACTIONS(6914), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6662] = 3, - ACTIONS(45), 1, + [7760] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2349), 1, - sym_curly_group, + STATE(913), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6673] = 3, + [7771] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2348), 1, + STATE(2622), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6684] = 3, - ACTIONS(5819), 1, + [7782] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(912), 1, - sym_curly_group_path, + STATE(2621), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6695] = 3, - ACTIONS(5854), 1, + [7793] = 3, + ACTIONS(6918), 1, anon_sym_LBRACE, - STATE(1547), 1, - sym_curly_group_impl, + STATE(915), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6706] = 3, - ACTIONS(5819), 1, + [7804] = 3, + ACTIONS(6503), 1, anon_sym_LBRACE, - STATE(916), 1, - sym_curly_group_path, + STATE(1460), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6717] = 3, - ACTIONS(5697), 1, + [7815] = 3, + ACTIONS(6920), 1, anon_sym_LBRACE, - STATE(1551), 1, - sym_curly_group, + STATE(916), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6728] = 3, - ACTIONS(5697), 1, + [7826] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1554), 1, - sym_curly_group, + STATE(2620), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6739] = 3, - ACTIONS(5791), 1, + [7837] = 3, + ACTIONS(6922), 1, anon_sym_LBRACE, - STATE(1570), 1, - sym_curly_group_text, + STATE(917), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6750] = 3, - ACTIONS(6191), 1, + [7848] = 3, + ACTIONS(6924), 1, anon_sym_LBRACE, - STATE(1415), 1, + STATE(918), 1, sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6761] = 3, - ACTIONS(6193), 1, + [7859] = 3, + ACTIONS(6519), 1, anon_sym_LBRACE, - STATE(1416), 1, - sym__trivia_curly_group_verbatim, + STATE(1452), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6772] = 3, - ACTIONS(6195), 1, + [7870] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1417), 1, - sym__trivia_curly_group_listing, + STATE(710), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6783] = 3, - ACTIONS(6197), 1, + [7881] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1418), 1, - sym__trivia_curly_group_minted, + STATE(1450), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6794] = 3, - ACTIONS(6199), 1, + [7892] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1419), 1, - sym__trivia_curly_group_pycode, + STATE(1448), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6805] = 3, - ACTIONS(5819), 1, + [7903] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(889), 1, - sym_curly_group_path, + STATE(1447), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6816] = 3, - ACTIONS(5819), 1, + [7914] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_curly_group_path, + STATE(919), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6827] = 3, - ACTIONS(5697), 1, + [7925] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1576), 1, + STATE(920), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6838] = 3, - ACTIONS(5759), 1, + [7936] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(2347), 1, - sym_curly_group_text, + STATE(922), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6849] = 3, - ACTIONS(5821), 1, + [7947] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(938), 1, - sym_curly_group_glob_pattern, + STATE(1442), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6860] = 3, - ACTIONS(5854), 1, + [7958] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1593), 1, + STATE(770), 1, + sym_curly_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [7969] = 3, + ACTIONS(6439), 1, + anon_sym_LBRACE, + STATE(1213), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [7980] = 3, + ACTIONS(6519), 1, + anon_sym_LBRACE, + STATE(1440), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6871] = 3, - ACTIONS(5819), 1, + [7991] = 3, + ACTIONS(6545), 1, anon_sym_LBRACE, - STATE(939), 1, - sym_curly_group_path, + STATE(925), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6882] = 3, - ACTIONS(5697), 1, + [8002] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1596), 1, + STATE(1438), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6893] = 3, - ACTIONS(5697), 1, + [8013] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1603), 1, + STATE(1431), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6904] = 3, - ACTIONS(5791), 1, + [8024] = 3, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(1605), 1, + STATE(1430), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6915] = 3, - ACTIONS(5697), 1, + [8035] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(1607), 1, + STATE(1428), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6926] = 3, - ACTIONS(6095), 1, - anon_sym_minted, - STATE(2505), 1, - sym__trivia_text_minted, + [8046] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6937] = 3, - ACTIONS(5817), 1, + [8057] = 3, + ACTIONS(3515), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_curly_group_path_list, + STATE(1420), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6948] = 3, - ACTIONS(5697), 1, + [8068] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(1609), 1, - sym_curly_group, + STATE(767), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8079] = 3, + ACTIONS(6469), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6959] = 3, + [8090] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(786), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6970] = 3, - ACTIONS(5779), 1, + [8101] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_curly_group_path_list, + STATE(748), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6981] = 3, - ACTIONS(5815), 1, + [8112] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(833), 1, - sym_curly_group_text, + STATE(1695), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6992] = 3, - ACTIONS(6201), 1, - anon_sym_RBRACE, - ACTIONS(6203), 1, - sym_path, - ACTIONS(5715), 2, + [8123] = 3, + ACTIONS(6926), 1, + anon_sym_LBRACE, + STATE(1696), 1, + sym_curly_group_author_list, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7003] = 3, - ACTIONS(6205), 1, - anon_sym_BSLASHend, - STATE(752), 1, - sym__trivia_end_minted, + [8134] = 3, + ACTIONS(6814), 1, + anon_sym_LBRACE, + STATE(1801), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7014] = 3, - ACTIONS(6207), 1, + [8145] = 3, + ACTIONS(6928), 1, anon_sym_BSLASHend, - STATE(754), 1, - sym__trivia_end_pycode, + STATE(1211), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7025] = 3, - ACTIONS(5829), 1, + [8156] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1425), 1, + STATE(1698), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7036] = 3, - ACTIONS(5759), 1, + [8167] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2346), 1, - sym_curly_group_text, + STATE(876), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7047] = 3, - ACTIONS(5829), 1, + [8178] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1427), 1, + STATE(1693), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7058] = 3, + [8189] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(792), 1, + STATE(2592), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7069] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1670), 1, - sym_curly_group_text, + [8200] = 3, + ACTIONS(6930), 1, + anon_sym_BSLASHend, + STATE(1210), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7080] = 3, - ACTIONS(6131), 1, + [8211] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1623), 1, - sym_curly_group_command_name, + STATE(2590), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7091] = 3, - ACTIONS(5829), 1, + [8222] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1431), 1, + STATE(1666), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7102] = 3, - ACTIONS(573), 1, + [8233] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_curly_group, + STATE(2589), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7113] = 3, - ACTIONS(5817), 1, + [8244] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(950), 1, - sym_curly_group_path_list, + STATE(2588), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7124] = 3, - ACTIONS(5825), 1, + [8255] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1434), 1, + STATE(1627), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7135] = 3, - ACTIONS(5813), 1, + [8266] = 3, + ACTIONS(6493), 1, anon_sym_LBRACE, - STATE(1435), 1, + STATE(1621), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7146] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2318), 1, - sym_curly_group, + [8277] = 3, + ACTIONS(6932), 1, + anon_sym_BSLASHend, + STATE(1209), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7157] = 3, - ACTIONS(5827), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_curly_group_text, + [8288] = 3, + ACTIONS(6934), 1, + anon_sym_BSLASHend, + STATE(1208), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7168] = 3, - ACTIONS(45), 1, + [8299] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2316), 1, - sym_curly_group, + STATE(1894), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7179] = 3, - ACTIONS(5823), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_curly_group_text_list, + [8310] = 3, + ACTIONS(6936), 1, + anon_sym_BSLASHend, + STATE(979), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7190] = 3, - ACTIONS(5825), 1, + [8321] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1413), 1, + STATE(1625), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7201] = 3, - ACTIONS(5833), 1, + [8332] = 3, + ACTIONS(6501), 1, anon_sym_LBRACE, - STATE(1414), 1, + STATE(1626), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7212] = 3, - ACTIONS(3837), 1, + [8343] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1470), 1, + STATE(1533), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7223] = 3, - ACTIONS(5827), 1, + [8354] = 3, + ACTIONS(6431), 1, anon_sym_LBRACE, - STATE(956), 1, - sym_curly_group_text, + STATE(782), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7234] = 3, - ACTIONS(5819), 1, + [8365] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(959), 1, + STATE(761), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7245] = 3, - ACTIONS(5819), 1, + [8376] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(814), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7256] = 3, - ACTIONS(5819), 1, + [8387] = 3, + ACTIONS(6437), 1, anon_sym_LBRACE, - STATE(965), 1, - sym_curly_group_path, + STATE(824), 1, + sym_curly_group_glob_pattern, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8398] = 3, + ACTIONS(6938), 1, + anon_sym_BSLASHend, + STATE(980), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7267] = 3, - ACTIONS(5759), 1, + [8409] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2315), 1, - sym_curly_group_text, + STATE(861), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7278] = 3, - ACTIONS(6209), 1, + [8420] = 3, + ACTIONS(6940), 1, anon_sym_RBRACE, - ACTIONS(6211), 1, + ACTIONS(6942), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [7289] = 3, - ACTIONS(5833), 1, + [8431] = 3, + ACTIONS(6501), 1, anon_sym_LBRACE, - STATE(1400), 1, + STATE(1635), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7300] = 3, - ACTIONS(5829), 1, + [8442] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1399), 1, + STATE(1636), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7311] = 3, - ACTIONS(5831), 1, + [8453] = 3, + ACTIONS(6499), 1, anon_sym_LBRACE, - STATE(1392), 1, + STATE(1637), 1, sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7322] = 3, - ACTIONS(5829), 1, + [8464] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1391), 1, + STATE(1638), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7333] = 3, - ACTIONS(5829), 1, + [8475] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1383), 1, + STATE(1639), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7344] = 3, - ACTIONS(5829), 1, + [8486] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1382), 1, + STATE(1640), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7355] = 3, - ACTIONS(5829), 1, + [8497] = 3, + ACTIONS(6497), 1, anon_sym_LBRACE, - STATE(1381), 1, + STATE(1641), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7366] = 3, - ACTIONS(3373), 1, + [8508] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1380), 1, + STATE(1642), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7377] = 3, - ACTIONS(5759), 1, + [8519] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(2314), 1, - sym_curly_group_text, + STATE(1809), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7388] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1678), 1, - sym_curly_group_text, + [8530] = 3, + ACTIONS(6944), 1, + anon_sym_BSLASHend, + STATE(981), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7399] = 3, - ACTIONS(5825), 1, + [8541] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1377), 1, + STATE(1645), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7410] = 3, - ACTIONS(3373), 1, + [8552] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1376), 1, + STATE(1646), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7421] = 3, - ACTIONS(5769), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_curly_group_text_list, + [8563] = 3, + ACTIONS(6946), 1, + anon_sym_BSLASHend, + STATE(982), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7432] = 3, - ACTIONS(6213), 1, + [8574] = 3, + ACTIONS(6948), 1, sym_command_name, - ACTIONS(6215), 1, + ACTIONS(6950), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7443] = 3, - ACTIONS(6217), 1, + [8585] = 3, + ACTIONS(6952), 1, anon_sym_LBRACE, - STATE(1373), 1, + STATE(1649), 1, sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7454] = 3, - ACTIONS(5825), 1, + [8596] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1372), 1, + STATE(1650), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7465] = 3, - ACTIONS(5825), 1, + [8607] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1371), 1, + STATE(1651), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7476] = 3, - ACTIONS(5825), 1, + [8618] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1319), 1, + STATE(1605), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7487] = 3, - ACTIONS(6131), 1, + [8629] = 3, + ACTIONS(6954), 1, anon_sym_LBRACE, - STATE(1629), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7498] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym_curly_group, + STATE(783), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7509] = 3, + [8640] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2283), 1, + STATE(2559), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7520] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2282), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7531] = 3, - ACTIONS(45), 1, + [8651] = 3, + ACTIONS(6431), 1, anon_sym_LBRACE, - STATE(2280), 1, - sym_curly_group, + STATE(882), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7542] = 3, - ACTIONS(5713), 1, - anon_sym_LBRACE, - STATE(2278), 1, - sym_curly_group_impl, - ACTIONS(3), 2, + [8662] = 3, + ACTIONS(6956), 1, + anon_sym_RBRACE, + ACTIONS(6958), 1, + sym_path, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [7553] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1876), 1, - sym_curly_group_text, + [8673] = 3, + ACTIONS(6960), 1, + anon_sym_BSLASHend, + STATE(983), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7564] = 3, - ACTIONS(685), 1, + [8684] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(2557), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7575] = 3, - ACTIONS(6219), 1, + [8695] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(796), 1, - sym__trivia_curly_group_pycode, + STATE(2556), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7586] = 3, - ACTIONS(5759), 1, + [8706] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(2272), 1, + STATE(985), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7597] = 3, - ACTIONS(6095), 1, - anon_sym_minted, - STATE(2457), 1, - sym__trivia_text_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7608] = 3, - ACTIONS(5813), 1, + [8717] = 3, + ACTIONS(6493), 1, anon_sym_LBRACE, - STATE(1352), 1, + STATE(1662), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7619] = 3, - ACTIONS(685), 1, + [8728] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(1012), 1, - sym_curly_group, + STATE(703), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7630] = 3, + [8739] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2270), 1, + STATE(2554), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7641] = 3, - ACTIONS(5759), 1, + [8750] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(1652), 1, - sym_curly_group_text, + STATE(2552), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7652] = 3, - ACTIONS(5773), 1, + [8761] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(1013), 1, + STATE(986), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7663] = 3, - ACTIONS(5886), 1, + [8772] = 3, + ACTIONS(6549), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(1667), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7674] = 3, - ACTIONS(685), 1, + [8783] = 3, + ACTIONS(6962), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym_curly_group, + STATE(2830), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7685] = 3, - ACTIONS(3373), 1, + [8794] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1669), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7696] = 3, - ACTIONS(3373), 1, + [8805] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1345), 1, + STATE(1671), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7707] = 3, - ACTIONS(5825), 1, + [8816] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(1673), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7718] = 3, - ACTIONS(685), 1, + [8827] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(1016), 1, - sym_curly_group, + STATE(987), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7729] = 3, - ACTIONS(5896), 1, + [8838] = 3, + ACTIONS(6964), 1, anon_sym_LBRACE, - STATE(1018), 1, - sym_curly_group_impl, + STATE(988), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7740] = 3, - ACTIONS(3373), 1, + [8849] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1341), 1, + STATE(995), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7751] = 3, - ACTIONS(45), 1, + [8860] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(2034), 1, + STATE(1677), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7762] = 3, - ACTIONS(685), 1, + [8871] = 3, + ACTIONS(6966), 1, + anon_sym_BSLASHend, + STATE(1207), 1, + sym__trivia_end_pycode, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8882] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1020), 1, + STATE(991), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7773] = 3, - ACTIONS(5886), 1, + [8893] = 3, + ACTIONS(6968), 1, anon_sym_LBRACE, - STATE(1339), 1, - sym_curly_group_impl, + STATE(1103), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7784] = 3, - ACTIONS(6221), 1, + [8904] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(1023), 1, - sym__trivia_curly_group_pycode, + STATE(992), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7795] = 3, - ACTIONS(3373), 1, + [8915] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1337), 1, + STATE(1683), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7806] = 3, - ACTIONS(3373), 1, + [8926] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(1685), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7817] = 3, - ACTIONS(5825), 1, + [8937] = 3, + ACTIONS(6495), 1, anon_sym_LBRACE, - STATE(1370), 1, + STATE(1686), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7828] = 3, - ACTIONS(3373), 1, + [8948] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1393), 1, + STATE(1687), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7839] = 3, - ACTIONS(6223), 1, + [8959] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(1024), 1, - sym__trivia_curly_group_minted, + STATE(1016), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7850] = 3, - ACTIONS(3373), 1, + [8970] = 3, + ACTIONS(4273), 1, anon_sym_LBRACE, - STATE(1402), 1, + STATE(1690), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7861] = 3, + [8981] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2545), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8992] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(772), 1, + STATE(2543), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7872] = 3, - ACTIONS(6225), 1, + [9003] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(801), 1, - sym__trivia_curly_group_verbatim, + STATE(825), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7883] = 3, - ACTIONS(6131), 1, + [9014] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1669), 1, - sym_curly_group_command_name, + STATE(1602), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7894] = 3, - ACTIONS(6227), 1, + [9025] = 3, + ACTIONS(6970), 1, anon_sym_LBRACE, - STATE(1025), 1, - sym__trivia_curly_group_listing, + STATE(1601), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7905] = 3, - ACTIONS(6229), 1, + [9036] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1026), 1, - sym__trivia_curly_group_verbatim, + STATE(997), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7916] = 3, - ACTIONS(5799), 1, + [9047] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(998), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7927] = 3, - ACTIONS(6231), 1, + [9058] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1027), 1, - sym__trivia_curly_group_comment, + STATE(1594), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7938] = 3, - ACTIONS(5799), 1, + [9069] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(999), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7949] = 3, - ACTIONS(5773), 1, + [9080] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1028), 1, - sym_curly_group_text, + STATE(1592), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7960] = 3, - ACTIONS(685), 1, + [9091] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1029), 1, - sym_curly_group, + STATE(1002), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7971] = 3, - ACTIONS(685), 1, + [9102] = 3, + ACTIONS(6467), 1, anon_sym_LBRACE, - STATE(1031), 1, - sym_curly_group, + STATE(1003), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7982] = 3, - ACTIONS(5799), 1, + [9113] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(1518), 1, + STATE(1004), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [7993] = 3, - ACTIONS(5896), 1, + [9124] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1033), 1, - sym_curly_group_impl, + STATE(1588), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8004] = 3, - ACTIONS(6233), 1, + [9135] = 3, + ACTIONS(6461), 1, anon_sym_LBRACE, - STATE(802), 1, - sym__trivia_curly_group_comment, + STATE(1005), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8015] = 3, - ACTIONS(5797), 1, + [9146] = 3, + ACTIONS(6972), 1, + anon_sym_RBRACE, + ACTIONS(6974), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [9157] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1515), 1, + STATE(1584), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8026] = 3, - ACTIONS(5793), 1, + [9168] = 3, + ACTIONS(6473), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1583), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8037] = 3, - ACTIONS(45), 1, + [9179] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2007), 1, - sym_curly_group, + STATE(2524), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8048] = 3, - ACTIONS(5759), 1, + [9190] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(2252), 1, - sym_curly_group_text, + STATE(1924), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8059] = 3, - ACTIONS(6235), 1, + [9201] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1105), 1, - sym_curly_group_key_value, + STATE(841), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8070] = 3, - ACTIONS(6131), 1, - anon_sym_LBRACE, - STATE(1633), 1, - sym_curly_group_command_name, + [9212] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8081] = 3, - ACTIONS(5797), 1, + ACTIONS(5839), 2, anon_sym_LBRACE, - STATE(1508), 1, + sym_command_name, + [9221] = 3, + ACTIONS(6475), 1, + anon_sym_LBRACE, + STATE(1579), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8092] = 3, - ACTIONS(5803), 1, + [9232] = 3, + ACTIONS(6483), 1, anon_sym_LBRACE, - STATE(1506), 1, + STATE(1578), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8103] = 3, - ACTIONS(5759), 1, + [9243] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1924), 1, + STATE(2521), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8114] = 3, - ACTIONS(5759), 1, + [9254] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1935), 1, + STATE(2520), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8125] = 3, - ACTIONS(5767), 1, + [9265] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_curly_group_text_list, + STATE(2516), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8136] = 3, - ACTIONS(5815), 1, + [9276] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(795), 1, - sym_curly_group_text, + STATE(2479), 1, + sym_curly_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [9287] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2477), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8147] = 3, - ACTIONS(6237), 1, + [9298] = 3, + ACTIONS(6976), 1, anon_sym_RBRACE, - ACTIONS(6239), 1, + ACTIONS(6978), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [8158] = 3, - ACTIONS(5803), 1, + [9309] = 3, + ACTIONS(6483), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(1571), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8169] = 3, - ACTIONS(5799), 1, + [9320] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(1570), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8180] = 3, - ACTIONS(5801), 1, + [9331] = 3, + ACTIONS(6481), 1, anon_sym_LBRACE, - STATE(1499), 1, + STATE(1569), 1, sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8191] = 3, - ACTIONS(5799), 1, + [9342] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(1568), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8202] = 3, - ACTIONS(5799), 1, + [9353] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1497), 1, + STATE(1567), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8213] = 3, - ACTIONS(5799), 1, + [9364] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(1516), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8224] = 3, - ACTIONS(5799), 1, + [9375] = 3, + ACTIONS(6479), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(1565), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8235] = 3, - ACTIONS(3837), 1, + [9386] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1494), 1, + STATE(1564), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8246] = 3, - ACTIONS(5759), 1, + [9397] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2249), 1, - sym_curly_group_text, + STATE(774), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8257] = 3, - ACTIONS(5759), 1, + [9408] = 3, + ACTIONS(6610), 1, anon_sym_LBRACE, - STATE(2248), 1, - sym_curly_group_text, + STATE(837), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8268] = 3, - ACTIONS(5797), 1, + [9419] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1491), 1, + STATE(1561), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8279] = 3, - ACTIONS(3837), 1, + [9430] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1490), 1, + STATE(1560), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8290] = 3, - ACTIONS(5781), 1, + [9441] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(2244), 1, - sym_curly_group_path, + STATE(1041), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8301] = 3, - ACTIONS(6241), 1, + [9452] = 3, + ACTIONS(6980), 1, sym_command_name, - ACTIONS(6243), 1, + ACTIONS(6982), 1, anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8312] = 3, - ACTIONS(6245), 1, + [9463] = 3, + ACTIONS(6984), 1, anon_sym_LBRACE, - STATE(1440), 1, + STATE(1557), 1, sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8323] = 3, - ACTIONS(5797), 1, + [9474] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(1556), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8334] = 3, - ACTIONS(5797), 1, + [9485] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(1555), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8345] = 3, - ACTIONS(5797), 1, + [9496] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1324), 1, + STATE(1397), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8356] = 3, - ACTIONS(45), 1, + [9507] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2210), 1, - sym_curly_group, + STATE(2476), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8367] = 3, + [9518] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(2474), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8378] = 3, - ACTIONS(5759), 1, + [9529] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2207), 1, + STATE(2400), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [9540] = 3, + ACTIONS(6419), 1, + anon_sym_LBRACE, + STATE(785), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8389] = 3, - ACTIONS(45), 1, + [9551] = 3, + ACTIONS(6461), 1, anon_sym_LBRACE, - STATE(2205), 1, - sym_curly_group, + STATE(1042), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8400] = 3, - ACTIONS(5713), 1, + [9562] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2203), 1, + STATE(2086), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8411] = 3, - ACTIONS(5759), 1, + [9573] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(2465), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8422] = 3, - ACTIONS(45), 1, + [9584] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(2195), 1, - sym_curly_group, + STATE(1043), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8433] = 3, - ACTIONS(5793), 1, + [9595] = 3, + ACTIONS(6473), 1, anon_sym_LBRACE, - STATE(1439), 1, + STATE(1545), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8444] = 3, + [9606] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(807), 1, + STATE(2463), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8455] = 3, - ACTIONS(5759), 1, + [9617] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2036), 1, - sym_curly_group_text, + STATE(797), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8466] = 3, - ACTIONS(5815), 1, + [9628] = 3, + ACTIONS(6469), 1, anon_sym_LBRACE, - STATE(803), 1, - sym_curly_group_text, + STATE(1048), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8477] = 3, - ACTIONS(6247), 1, + [9639] = 3, + ACTIONS(6471), 1, anon_sym_LBRACE, - STATE(799), 1, - sym__trivia_curly_group_listing, + STATE(1049), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8488] = 3, - ACTIONS(5967), 1, + [9650] = 3, + ACTIONS(6626), 1, anon_sym_LBRACE, - STATE(1463), 1, + STATE(1542), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8499] = 3, - ACTIONS(45), 1, + [9661] = 3, + ACTIONS(6463), 1, anon_sym_LBRACE, - STATE(2061), 1, - sym_curly_group, + STATE(1052), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8510] = 3, - ACTIONS(3837), 1, + [9672] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1461), 1, + STATE(1540), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8521] = 3, - ACTIONS(3837), 1, + [9683] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1459), 1, + STATE(1538), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8532] = 3, - ACTIONS(5797), 1, + [9694] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1458), 1, + STATE(1537), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8543] = 3, - ACTIONS(6249), 1, - anon_sym_BSLASHend, - STATE(1094), 1, - sym__trivia_end_pycode, + [9705] = 3, + ACTIONS(6463), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8554] = 3, - ACTIONS(6251), 1, - anon_sym_BSLASHend, - STATE(1096), 1, - sym__trivia_end_listing, + [9716] = 3, + ACTIONS(6463), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8565] = 3, - ACTIONS(3837), 1, + [9727] = 3, + ACTIONS(6986), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(1061), 1, + sym_curly_group_author_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [9738] = 3, + ACTIONS(4165), 1, + anon_sym_LBRACE, + STATE(1532), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8576] = 3, - ACTIONS(5781), 1, + [9749] = 3, + ACTIONS(1024), 1, anon_sym_LBRACE, - STATE(1960), 1, - sym_curly_group_path, + STATE(1062), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8587] = 3, - ACTIONS(6253), 1, - anon_sym_BSLASHend, - STATE(1097), 1, - sym__trivia_end_verbatim, + [9760] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(834), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8598] = 3, - ACTIONS(5967), 1, + [9771] = 3, + ACTIONS(6626), 1, anon_sym_LBRACE, - STATE(1453), 1, + STATE(1530), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8609] = 3, - ACTIONS(6255), 1, - anon_sym_BSLASHend, - STATE(1098), 1, - sym__trivia_end_comment, + [9782] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(832), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8620] = 3, - ACTIONS(3837), 1, + [9793] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1451), 1, + STATE(1528), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8631] = 3, - ACTIONS(3837), 1, + [9804] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1449), 1, + STATE(1526), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8642] = 3, - ACTIONS(5797), 1, + [9815] = 3, + ACTIONS(6475), 1, anon_sym_LBRACE, - STATE(1448), 1, + STATE(1525), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8653] = 3, - ACTIONS(3837), 1, + [9826] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1447), 1, + STATE(1524), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8664] = 3, - ACTIONS(45), 1, + [9837] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(2201), 1, - sym_curly_group, + STATE(831), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8675] = 3, - ACTIONS(3837), 1, + [9848] = 3, + ACTIONS(4165), 1, anon_sym_LBRACE, - STATE(1444), 1, + STATE(1520), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8686] = 3, - ACTIONS(5781), 1, + [9859] = 3, + ACTIONS(6988), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_curly_group_path, + STATE(860), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8697] = 3, - ACTIONS(5773), 1, + [9870] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(1100), 1, - sym_curly_group_text, + STATE(1132), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8708] = 3, - ACTIONS(5773), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_curly_group_text, + [9881] = 3, + ACTIONS(6772), 1, + anon_sym_minted, + STATE(2699), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8719] = 3, - ACTIONS(5773), 1, + [9892] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1101), 1, + STATE(2341), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8730] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2173), 1, - sym_curly_group_text, + [9903] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8741] = 3, - ACTIONS(5781), 1, + ACTIONS(5813), 2, anon_sym_LBRACE, - STATE(690), 1, - sym_curly_group_path, + sym_command_name, + [9912] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1972), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8752] = 3, - ACTIONS(5773), 1, + [9923] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1102), 1, - sym_curly_group_text, + STATE(1812), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8763] = 3, - ACTIONS(5781), 1, + [9934] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2323), 1, + STATE(2208), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8774] = 3, - ACTIONS(5759), 1, + [9945] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2308), 1, + STATE(2269), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8785] = 3, - ACTIONS(5759), 1, + [9956] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2307), 1, + STATE(2270), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8796] = 3, - ACTIONS(6131), 1, + [9967] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1684), 1, + STATE(1843), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8807] = 3, - ACTIONS(6131), 1, + [9978] = 3, + ACTIONS(6441), 1, anon_sym_LBRACE, - STATE(1738), 1, - sym_curly_group_command_name, + STATE(1273), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8818] = 3, - ACTIONS(5759), 1, + [9989] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2229), 1, + STATE(2295), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8829] = 3, - ACTIONS(5759), 1, + [10000] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2170), 1, + STATE(2444), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8840] = 3, - ACTIONS(5759), 1, + [10011] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(2169), 1, - sym_curly_group_text, + STATE(1952), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8851] = 3, - ACTIONS(5781), 1, + [10022] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2165), 1, - sym_curly_group_path, + STATE(2441), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8862] = 3, - ACTIONS(6049), 1, - anon_sym_pycode, - STATE(2476), 1, - sym__trivia_text_pycode, + [10033] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2440), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8873] = 3, - ACTIONS(6127), 1, - anon_sym_lstlisting, - STATE(2477), 1, - sym__trivia_text_listing, + [10044] = 3, + ACTIONS(6433), 1, + anon_sym_LBRACE, + STATE(2436), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8884] = 3, - ACTIONS(6129), 1, - anon_sym_verbatim, - STATE(2478), 1, - sym__trivia_text_verbatim, + [10055] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2396), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8895] = 3, - ACTIONS(6133), 1, - anon_sym_comment, - STATE(2479), 1, - sym__trivia_text_comment, + [10066] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2394), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8906] = 3, - ACTIONS(6257), 1, - sym_command_name, - ACTIONS(6259), 1, - anon_sym_EQ, + [10077] = 3, + ACTIONS(723), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8917] = 3, - ACTIONS(685), 1, + [10088] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_curly_group, + STATE(2393), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8928] = 3, - ACTIONS(5773), 1, + [10099] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1109), 1, - sym_curly_group_text, + STATE(1282), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8939] = 3, - ACTIONS(685), 1, + [10110] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1112), 1, - sym_curly_group, + STATE(1138), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8950] = 3, + [10121] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2221), 1, + STATE(2673), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8961] = 3, - ACTIONS(5759), 1, + [10132] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2219), 1, + STATE(2668), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8972] = 3, - ACTIONS(45), 1, + [10143] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(2128), 1, + STATE(1139), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8983] = 3, - ACTIONS(5713), 1, + [10154] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2199), 1, + STATE(2614), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8994] = 3, + [10165] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2198), 1, + STATE(2478), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9005] = 3, - ACTIONS(5759), 1, + [10176] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2192), 1, + STATE(2583), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9016] = 3, + [10187] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2189), 1, + STATE(2580), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9027] = 3, - ACTIONS(5781), 1, + [10198] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(693), 1, - sym_curly_group_path, + STATE(1968), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9038] = 3, + [10209] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2184), 1, + STATE(2561), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9049] = 3, - ACTIONS(6133), 1, + [10220] = 3, + ACTIONS(6990), 1, anon_sym_comment, - STATE(2521), 1, + STATE(2755), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9060] = 3, - ACTIONS(6129), 1, + [10231] = 3, + ACTIONS(6992), 1, anon_sym_verbatim, - STATE(2522), 1, + STATE(2781), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9071] = 3, - ACTIONS(6127), 1, + [10242] = 3, + ACTIONS(6994), 1, anon_sym_lstlisting, - STATE(2523), 1, + STATE(2782), 1, sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9082] = 3, - ACTIONS(6049), 1, + [10253] = 3, + ACTIONS(6996), 1, anon_sym_pycode, - STATE(2525), 1, + STATE(2784), 1, sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9093] = 3, - ACTIONS(5755), 1, + [10264] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1114), 1, - sym_curly_group_path, + STATE(2387), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9104] = 3, - ACTIONS(5755), 1, + [10275] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1115), 1, - sym_curly_group_path, + STATE(2397), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9115] = 3, - ACTIONS(5781), 1, + [10286] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2104), 1, + STATE(2485), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9126] = 3, - ACTIONS(5759), 1, + [10297] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2096), 1, + STATE(2473), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9137] = 3, - ACTIONS(5759), 1, + [10308] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2075), 1, + STATE(2471), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9148] = 3, - ACTIONS(6131), 1, + [10319] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1774), 1, + STATE(1947), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9159] = 3, + [10330] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2125), 1, + STATE(2391), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9170] = 3, - ACTIONS(5759), 1, + [10341] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(2467), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9181] = 3, - ACTIONS(5759), 1, + [10352] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2124), 1, - sym_curly_group_text, + STATE(2389), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9192] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym_curly_group, + [10363] = 3, + ACTIONS(6996), 1, + anon_sym_pycode, + STATE(2723), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9203] = 3, - ACTIONS(5713), 1, + [10374] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2120), 1, - sym_curly_group_impl, + STATE(2382), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9214] = 3, - ACTIONS(5713), 1, + [10385] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2094), 1, - sym_curly_group_impl, + STATE(2380), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9225] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2109), 1, - sym_curly_group_text, + [10396] = 3, + ACTIONS(6772), 1, + anon_sym_minted, + STATE(2828), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9236] = 3, - ACTIONS(5755), 1, + [10407] = 3, + ACTIONS(6421), 1, anon_sym_LBRACE, - STATE(1116), 1, - sym_curly_group_path, + STATE(878), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9247] = 3, - ACTIONS(45), 1, + [10418] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(2107), 1, - sym_curly_group, + STATE(716), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9258] = 3, - ACTIONS(5755), 1, + [10429] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(1117), 1, - sym_curly_group_path, + STATE(1292), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9269] = 3, - ACTIONS(5765), 1, + [10440] = 3, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(1118), 1, - sym_curly_group_glob_pattern, + STATE(877), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9280] = 3, - ACTIONS(5755), 1, + [10451] = 3, + ACTIONS(6652), 1, anon_sym_LBRACE, - STATE(1119), 1, - sym_curly_group_path, + STATE(1141), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9291] = 3, - ACTIONS(5763), 1, + [10462] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1120), 1, - sym_curly_group_path_list, + STATE(2482), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9302] = 3, + [10473] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1975), 1, + STATE(2385), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9313] = 3, - ACTIONS(5759), 1, + [10484] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1955), 1, + STATE(2383), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9324] = 3, - ACTIONS(6261), 1, - anon_sym_RBRACE, - ACTIONS(6263), 1, - sym_path, - ACTIONS(5715), 2, + [10495] = 3, + ACTIONS(723), 1, + anon_sym_LBRACE, + STATE(1147), 1, + sym_curly_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9335] = 3, - ACTIONS(5713), 1, + [10506] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(1942), 1, + STATE(2352), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9346] = 3, + [10517] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1940), 1, + STATE(2219), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9357] = 3, - ACTIONS(5759), 1, + [10528] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1938), 1, + STATE(2331), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9368] = 3, + [10539] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1937), 1, + STATE(2330), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9379] = 3, + [10550] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1933), 1, + STATE(2325), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9390] = 3, - ACTIONS(6133), 1, + [10561] = 3, + ACTIONS(6990), 1, anon_sym_comment, - STATE(2551), 1, + STATE(2848), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9401] = 3, - ACTIONS(6129), 1, + [10572] = 3, + ACTIONS(6992), 1, anon_sym_verbatim, - STATE(2550), 1, + STATE(2850), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9412] = 3, - ACTIONS(6127), 1, + [10583] = 3, + ACTIONS(6994), 1, anon_sym_lstlisting, - STATE(2549), 1, + STATE(2852), 1, sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9423] = 3, - ACTIONS(6049), 1, + [10594] = 3, + ACTIONS(6996), 1, anon_sym_pycode, - STATE(2547), 1, + STATE(2854), 1, sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9434] = 3, - ACTIONS(5781), 1, + [10605] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1884), 1, + STATE(2214), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9445] = 3, - ACTIONS(5759), 1, + [10616] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1886), 1, + STATE(2198), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9456] = 3, - ACTIONS(5759), 1, + [10627] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1887), 1, + STATE(2195), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9467] = 3, - ACTIONS(6131), 1, + [10638] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(1874), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9478] = 3, - ACTIONS(5999), 1, + [10649] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(809), 1, - sym_curly_group_impl, + STATE(2357), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9489] = 3, - ACTIONS(5759), 1, + [10660] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1889), 1, + STATE(2193), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9500] = 3, - ACTIONS(45), 1, + [10671] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(805), 1, - sym_curly_group, + STATE(1970), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9511] = 3, - ACTIONS(5767), 1, + [10682] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(813), 1, - sym_curly_group_text_list, + STATE(2354), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9522] = 3, - ACTIONS(5759), 1, + [10693] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2077), 1, + STATE(2353), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9533] = 3, - ACTIONS(6131), 1, + [10704] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1772), 1, - sym_curly_group_command_name, + STATE(2349), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9544] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(2074), 1, - sym_curly_group_text, + [10715] = 3, + ACTIONS(6996), 1, + anon_sym_pycode, + STATE(2794), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9555] = 3, - ACTIONS(5759), 1, + [10726] = 3, + ACTIONS(6998), 1, anon_sym_LBRACE, - STATE(2073), 1, - sym_curly_group_text, + STATE(1151), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9566] = 3, - ACTIONS(5781), 1, - anon_sym_LBRACE, - STATE(2069), 1, - sym_curly_group_path, + [10737] = 3, + ACTIONS(6994), 1, + anon_sym_lstlisting, + STATE(2795), 1, + sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9577] = 3, - ACTIONS(6049), 1, - anon_sym_pycode, - STATE(2504), 1, - sym__trivia_text_pycode, + [10748] = 3, + ACTIONS(7000), 1, + anon_sym_LBRACE, + STATE(1152), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9588] = 3, - ACTIONS(685), 1, + [10759] = 3, + ACTIONS(7002), 1, anon_sym_LBRACE, - STATE(1162), 1, - sym_curly_group, + STATE(1153), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9599] = 3, - ACTIONS(5763), 1, + [10770] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1163), 1, - sym_curly_group_path_list, + STATE(1286), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9610] = 3, - ACTIONS(5773), 1, + [10781] = 3, + ACTIONS(7004), 1, anon_sym_LBRACE, - STATE(1164), 1, - sym_curly_group_text, + STATE(1154), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9621] = 3, + [10792] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(2096), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9632] = 3, - ACTIONS(5759), 1, + [10803] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(2092), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9643] = 3, - ACTIONS(6127), 1, - anon_sym_lstlisting, - STATE(2506), 1, - sym__trivia_text_listing, + [10814] = 3, + ACTIONS(7006), 1, + anon_sym_LBRACE, + STATE(1165), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9654] = 3, - ACTIONS(5713), 1, + [10825] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(1926), 1, + STATE(2097), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9665] = 3, + [10836] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1928), 1, + STATE(2099), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9676] = 3, - ACTIONS(5759), 1, + [10847] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1930), 1, + STATE(2101), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9687] = 3, + [10858] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1931), 1, + STATE(2102), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9698] = 3, + [10869] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1934), 1, + STATE(2105), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9709] = 3, - ACTIONS(6133), 1, + [10880] = 3, + ACTIONS(6990), 1, anon_sym_comment, - STATE(2537), 1, + STATE(2839), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9720] = 3, - ACTIONS(6129), 1, + [10891] = 3, + ACTIONS(6992), 1, anon_sym_verbatim, - STATE(2536), 1, + STATE(2838), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9731] = 3, - ACTIONS(6127), 1, + [10902] = 3, + ACTIONS(6994), 1, anon_sym_lstlisting, - STATE(2535), 1, + STATE(2837), 1, sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9742] = 3, - ACTIONS(5815), 1, - anon_sym_LBRACE, - STATE(737), 1, - sym_curly_group_text, + [10913] = 3, + ACTIONS(6996), 1, + anon_sym_pycode, + STATE(2835), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9753] = 3, - ACTIONS(5781), 1, + [10924] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1972), 1, + STATE(2146), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9764] = 3, - ACTIONS(5759), 1, + [10935] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1976), 1, + STATE(2150), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9775] = 3, - ACTIONS(5759), 1, + [10946] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1977), 1, + STATE(2151), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9786] = 3, - ACTIONS(6131), 1, + [10957] = 3, + ACTIONS(6814), 1, anon_sym_LBRACE, - STATE(1725), 1, + STATE(1867), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9797] = 3, - ACTIONS(6129), 1, + [10968] = 3, + ACTIONS(6992), 1, anon_sym_verbatim, - STATE(2507), 1, + STATE(2796), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9808] = 3, - ACTIONS(5759), 1, + [10979] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1980), 1, + STATE(2154), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9819] = 3, - ACTIONS(6133), 1, + [10990] = 3, + ACTIONS(6990), 1, anon_sym_comment, - STATE(2508), 1, + STATE(2797), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9830] = 3, + [11001] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(2309), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9841] = 3, + [11012] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2028), 1, + STATE(2306), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9852] = 3, - ACTIONS(5759), 1, + [11023] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2027), 1, + STATE(2305), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9863] = 3, + [11034] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2025), 1, + STATE(2303), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9874] = 3, - ACTIONS(5769), 1, + [11045] = 3, + ACTIONS(6439), 1, anon_sym_LBRACE, - STATE(1168), 1, - sym_curly_group_text_list, + STATE(1167), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9885] = 3, - ACTIONS(5713), 1, + [11056] = 3, + ACTIONS(6373), 1, anon_sym_LBRACE, - STATE(2023), 1, + STATE(2301), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9896] = 3, - ACTIONS(5773), 1, + [11067] = 3, + ACTIONS(6445), 1, anon_sym_LBRACE, - STATE(1169), 1, - sym_curly_group_text, + STATE(1288), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9907] = 3, - ACTIONS(5755), 1, + [11078] = 3, + ACTIONS(6433), 1, anon_sym_LBRACE, - STATE(1172), 1, + STATE(863), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9918] = 3, - ACTIONS(5755), 1, + [11089] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_curly_group_path, + STATE(1171), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9929] = 3, - ACTIONS(5755), 1, + [11100] = 3, + ACTIONS(723), 1, anon_sym_LBRACE, - STATE(1178), 1, - sym_curly_group_path, + STATE(1190), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9940] = 3, + [11111] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2010), 1, + STATE(2185), 1, + sym_curly_group, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11122] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2187), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11133] = 3, + ACTIONS(6990), 1, + anon_sym_comment, + STATE(2778), 1, + sym__trivia_text_comment, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11144] = 3, + ACTIONS(6373), 1, + anon_sym_LBRACE, + STATE(2199), 1, + sym_curly_group_impl, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11155] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2201), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9951] = 3, - ACTIONS(5759), 1, + [11166] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2012), 1, + STATE(2203), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9962] = 2, - ACTIONS(6265), 1, - anon_sym_RBRACE, + [11177] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2204), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9970] = 2, - ACTIONS(6267), 1, - sym_path, - ACTIONS(5715), 2, + [11188] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2207), 1, + sym_curly_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9978] = 2, - ACTIONS(6269), 1, - sym__trivia_raw_env_pycode, + [11199] = 3, + ACTIONS(6990), 1, + anon_sym_comment, + STATE(2814), 1, + sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9986] = 2, - ACTIONS(6271), 1, - sym__trivia_raw_env_minted, + [11210] = 3, + ACTIONS(6992), 1, + anon_sym_verbatim, + STATE(2813), 1, + sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9994] = 2, - ACTIONS(6273), 1, - sym__trivia_raw_env_listing, + [11221] = 3, + ACTIONS(6994), 1, + anon_sym_lstlisting, + STATE(2812), 1, + sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10002] = 2, - ACTIONS(6275), 1, - sym__trivia_raw_env_verbatim, + [11232] = 3, + ACTIONS(6996), 1, + anon_sym_pycode, + STATE(2810), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10010] = 2, - ACTIONS(6277), 1, - sym__trivia_raw_env_comment, + [11243] = 3, + ACTIONS(6433), 1, + anon_sym_LBRACE, + STATE(2248), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10018] = 2, - ACTIONS(6279), 1, - sym_command_name, + [11254] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2252), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10026] = 2, - ACTIONS(6281), 1, - sym_command_name, + [11265] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2253), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10034] = 2, - ACTIONS(6283), 1, - anon_sym_RBRACE, + [11276] = 3, + ACTIONS(6814), 1, + anon_sym_LBRACE, + STATE(1902), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10042] = 2, - ACTIONS(6285), 1, - sym_path, - ACTIONS(5715), 2, + [11287] = 3, + ACTIONS(6994), 1, + anon_sym_lstlisting, + STATE(2746), 1, + sym__trivia_text_listing, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10050] = 2, - ACTIONS(6287), 1, + [11298] = 3, + ACTIONS(6417), 1, anon_sym_LBRACE, + STATE(2256), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10058] = 2, - ACTIONS(6289), 1, - sym__trivia_raw_env_pycode, + [11309] = 3, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(2289), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10066] = 2, - ACTIONS(6291), 1, - sym__trivia_raw_env_minted, + [11320] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2287), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10074] = 2, - ACTIONS(6293), 1, - sym_command_name, + [11331] = 3, + ACTIONS(6429), 1, + anon_sym_LBRACE, + STATE(1198), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10082] = 2, - ACTIONS(6295), 1, - sym__trivia_raw_env_listing, + [11342] = 3, + ACTIONS(7008), 1, + anon_sym_LBRACE, + STATE(1291), 1, + sym_curly_group_author_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10090] = 2, - ACTIONS(6297), 1, - sym__trivia_raw_env_comment, + [11353] = 3, + ACTIONS(6992), 1, + anon_sym_verbatim, + STATE(2749), 1, + sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10098] = 2, - ACTIONS(6299), 1, - sym__trivia_raw_env_verbatim, + [11364] = 3, + ACTIONS(6652), 1, + anon_sym_LBRACE, + STATE(1195), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10106] = 2, - ACTIONS(6301), 1, - sym__trivia_raw_env_listing, + [11375] = 2, + ACTIONS(7010), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10114] = 2, - ACTIONS(6303), 1, + [11383] = 2, + ACTIONS(7012), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11391] = 2, + ACTIONS(7014), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11399] = 2, + ACTIONS(7016), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10122] = 2, - ACTIONS(6305), 1, - sym__trivia_raw_env_pycode, + [11407] = 2, + ACTIONS(7018), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10130] = 2, - ACTIONS(6307), 1, + [11415] = 2, + ACTIONS(7020), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10138] = 2, - ACTIONS(6309), 1, + [11423] = 2, + ACTIONS(7022), 1, + sym__trivia_raw_env_comment, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11431] = 2, + ACTIONS(7024), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11439] = 2, + ACTIONS(7026), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [10146] = 2, - ACTIONS(6311), 1, - anon_sym_RBRACE, + [11447] = 2, + ACTIONS(7028), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10154] = 2, - ACTIONS(6313), 1, - sym__trivia_raw_env_comment, + [11455] = 2, + ACTIONS(7030), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10162] = 2, - ACTIONS(6315), 1, - sym_command_name, + [11463] = 2, + ACTIONS(7032), 1, + sym__trivia_raw_env_listing, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11471] = 2, + ACTIONS(7034), 1, + sym__trivia_raw_env_verbatim, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11479] = 2, + ACTIONS(7036), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10170] = 2, - ACTIONS(6317), 1, + [11487] = 2, + ACTIONS(7038), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10178] = 2, - ACTIONS(6319), 1, + [11495] = 2, + ACTIONS(7040), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [10186] = 2, - ACTIONS(6321), 1, + [11503] = 2, + ACTIONS(7042), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10194] = 2, - ACTIONS(6323), 1, + [11511] = 2, + ACTIONS(7044), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10202] = 2, - ACTIONS(6325), 1, + [11519] = 2, + ACTIONS(7046), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10210] = 2, - ACTIONS(6327), 1, + [11527] = 2, + ACTIONS(7048), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10218] = 2, - ACTIONS(6329), 1, + [11535] = 2, + ACTIONS(7050), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10226] = 2, - ACTIONS(6331), 1, + [11543] = 2, + ACTIONS(7052), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10234] = 2, - ACTIONS(6333), 1, - sym__trivia_raw_env_minted, + [11551] = 2, + ACTIONS(7054), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10242] = 2, - ACTIONS(6335), 1, + [11559] = 2, + ACTIONS(7056), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11567] = 2, + ACTIONS(7058), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [10250] = 2, - ACTIONS(6337), 1, - sym_argc, + [11575] = 2, + ACTIONS(7060), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11583] = 2, + ACTIONS(7062), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [11591] = 2, + ACTIONS(7064), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10258] = 2, - ACTIONS(6339), 1, + [11599] = 2, + ACTIONS(7066), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10266] = 2, - ACTIONS(6341), 1, + [11607] = 2, + ACTIONS(7068), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10274] = 2, - ACTIONS(6343), 1, + [11615] = 2, + ACTIONS(7070), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10282] = 2, - ACTIONS(6345), 1, + [11623] = 2, + ACTIONS(7072), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10290] = 2, - ACTIONS(6347), 1, + [11631] = 2, + ACTIONS(7074), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10298] = 2, - ACTIONS(6349), 1, + [11639] = 2, + ACTIONS(7076), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10306] = 2, - ACTIONS(6351), 1, + [11647] = 2, + ACTIONS(7078), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10314] = 2, - ACTIONS(6353), 1, - anon_sym_RBRACE, + [11655] = 2, + ACTIONS(7080), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [11663] = 2, + ACTIONS(7082), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10322] = 2, - ACTIONS(6355), 1, - anon_sym_RBRACK, + [11671] = 2, + ACTIONS(7084), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10330] = 2, - ACTIONS(6357), 1, - sym_path, - ACTIONS(5715), 2, + [11679] = 2, + ACTIONS(7086), 1, + sym__trivia_raw_env_minted, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10338] = 2, - ACTIONS(6359), 1, - anon_sym_RBRACE, + [11687] = 2, + ACTIONS(7088), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10346] = 2, - ACTIONS(6361), 1, - anon_sym_RBRACE, + [11695] = 2, + ACTIONS(7090), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10354] = 2, - ACTIONS(6363), 1, + [11703] = 2, + ACTIONS(7092), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10362] = 2, - ACTIONS(6365), 1, - anon_sym_RBRACE, + [11711] = 2, + ACTIONS(7094), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10370] = 2, - ACTIONS(6367), 1, + [11719] = 2, + ACTIONS(7096), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11727] = 2, + ACTIONS(7098), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [11735] = 2, + ACTIONS(7100), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10378] = 2, - ACTIONS(6369), 1, + [11743] = 2, + ACTIONS(7102), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11751] = 2, + ACTIONS(7104), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11759] = 2, + ACTIONS(7106), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10386] = 2, - ACTIONS(5123), 1, - sym__trivia_raw_env_minted, + [11767] = 2, + ACTIONS(7108), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10394] = 2, - ACTIONS(6371), 1, + [11775] = 2, + ACTIONS(7110), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10402] = 2, - ACTIONS(6373), 1, + [11783] = 2, + ACTIONS(7112), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10410] = 2, - ACTIONS(6375), 1, + [11791] = 2, + ACTIONS(7114), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10418] = 2, - ACTIONS(6377), 1, + [11799] = 2, + ACTIONS(7116), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10426] = 2, - ACTIONS(6379), 1, + [11807] = 2, + ACTIONS(7118), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10434] = 2, - ACTIONS(6381), 1, - anon_sym_RBRACE, + [11815] = 2, + ACTIONS(7120), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10442] = 2, - ACTIONS(6383), 1, - anon_sym_RBRACE, + [11823] = 2, + ACTIONS(7122), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10450] = 2, - ACTIONS(6385), 1, + [11831] = 2, + ACTIONS(7124), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10458] = 2, - ACTIONS(6387), 1, - anon_sym_RBRACE, + [11839] = 2, + ACTIONS(7126), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10466] = 2, - ACTIONS(6389), 1, - sym_command_name, + [11847] = 2, + ACTIONS(7128), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10474] = 2, - ACTIONS(6391), 1, + [11855] = 2, + ACTIONS(7130), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11863] = 2, + ACTIONS(7132), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10482] = 2, - ACTIONS(6393), 1, + [11871] = 2, + ACTIONS(7134), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10490] = 2, - ACTIONS(6395), 1, + [11879] = 2, + ACTIONS(7136), 1, sym_path, - ACTIONS(5715), 2, + ACTIONS(6375), 2, sym__whitespace, sym_line_comment, - [10498] = 2, - ACTIONS(6397), 1, + [11887] = 2, + ACTIONS(7138), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [11895] = 2, + ACTIONS(7140), 1, + sym__trivia_raw_env_pycode, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11903] = 2, + ACTIONS(7142), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10506] = 2, - ACTIONS(6399), 1, - sym_command_name, + [11911] = 2, + ACTIONS(5875), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10514] = 2, - ACTIONS(6401), 1, - sym_command_name, + [11919] = 2, + ACTIONS(7144), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10522] = 2, - ACTIONS(6403), 1, - anon_sym_RBRACE, + [11927] = 2, + ACTIONS(7146), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10530] = 2, - ACTIONS(6405), 1, + [11935] = 2, + ACTIONS(7148), 1, + sym__trivia_raw_env_verbatim, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11943] = 2, + ACTIONS(7150), 1, + sym__trivia_raw_env_listing, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11951] = 2, + ACTIONS(7152), 1, + sym__trivia_raw_env_pycode, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [11959] = 2, + ACTIONS(7154), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10538] = 2, - ACTIONS(6407), 1, + [11967] = 2, + ACTIONS(7156), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10546] = 2, - ACTIONS(6409), 1, + [11975] = 2, + ACTIONS(7158), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10554] = 2, - ACTIONS(6411), 1, + [11983] = 2, + ACTIONS(7160), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10562] = 2, - ACTIONS(6413), 1, - anon_sym_RBRACE, + [11991] = 2, + ACTIONS(7162), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10570] = 2, - ACTIONS(6415), 1, - anon_sym_RBRACE, + [11999] = 2, + ACTIONS(7164), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [12007] = 2, + ACTIONS(7166), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10578] = 2, - ACTIONS(6417), 1, + [12015] = 2, + ACTIONS(7168), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10586] = 2, - ACTIONS(6419), 1, - anon_sym_RBRACE, + [12023] = 2, + ACTIONS(7170), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10594] = 2, - ACTIONS(5119), 1, - sym__trivia_raw_env_comment, + [12031] = 2, + ACTIONS(7172), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10602] = 2, - ACTIONS(6421), 1, - anon_sym_RBRACK, + [12039] = 2, + ACTIONS(7174), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10610] = 2, - ACTIONS(6423), 1, + [12047] = 2, + ACTIONS(7176), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10618] = 2, - ACTIONS(5115), 1, - sym__trivia_raw_env_verbatim, + [12055] = 2, + ACTIONS(7178), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10626] = 2, - ACTIONS(5103), 1, - sym__trivia_raw_env_listing, + [12063] = 2, + ACTIONS(7180), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10634] = 2, - ACTIONS(6425), 1, + [12071] = 2, + ACTIONS(7182), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10642] = 2, - ACTIONS(6427), 1, + [12079] = 2, + ACTIONS(7184), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10650] = 2, - ACTIONS(6429), 1, + [12087] = 2, + ACTIONS(7186), 1, + sym_path, + ACTIONS(6375), 2, + sym__whitespace, + sym_line_comment, + [12095] = 2, + ACTIONS(7188), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10658] = 2, - ACTIONS(5083), 1, - sym__trivia_raw_env_pycode, + [12103] = 2, + ACTIONS(7190), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10666] = 2, - ACTIONS(6431), 1, + [12111] = 2, + ACTIONS(7192), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10674] = 2, - ACTIONS(6433), 1, - anon_sym_LBRACE, + [12119] = 2, + ACTIONS(7194), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10682] = 2, - ACTIONS(6435), 1, - sym_path, - ACTIONS(5715), 2, + [12127] = 2, + ACTIONS(7196), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10690] = 2, - ACTIONS(6437), 1, + [12135] = 2, + ACTIONS(7198), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10698] = 2, - ACTIONS(6439), 1, + [12143] = 2, + ACTIONS(7200), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10706] = 2, - ACTIONS(6441), 1, - anon_sym_RBRACK, + [12151] = 2, + ACTIONS(7202), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10714] = 2, - ACTIONS(6443), 1, + [12159] = 2, + ACTIONS(7204), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10722] = 2, - ACTIONS(6445), 1, - anon_sym_RBRACK, + [12167] = 2, + ACTIONS(7206), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10730] = 2, - ACTIONS(6447), 1, - ts_builtin_sym_end, + [12175] = 2, + ACTIONS(7208), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10738] = 2, - ACTIONS(6449), 1, - sym__trivia_raw_env_comment, + [12183] = 2, + ACTIONS(7210), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10746] = 2, - ACTIONS(6451), 1, + [12191] = 2, + ACTIONS(7212), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10754] = 2, - ACTIONS(6453), 1, - anon_sym_RBRACE, + [12199] = 2, + ACTIONS(5859), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10762] = 2, - ACTIONS(6455), 1, - anon_sym_RBRACE, + [12207] = 2, + ACTIONS(5863), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10770] = 2, - ACTIONS(6457), 1, + [12215] = 2, + ACTIONS(5867), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10778] = 2, - ACTIONS(6459), 1, - anon_sym_RBRACE, + [12223] = 2, + ACTIONS(5871), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10786] = 2, - ACTIONS(6461), 1, - anon_sym_RBRACE, + [12231] = 2, + ACTIONS(7214), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10794] = 2, - ACTIONS(6463), 1, - anon_sym_RBRACE, + [12239] = 2, + ACTIONS(7216), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10802] = 2, - ACTIONS(6465), 1, + [12247] = 2, + ACTIONS(7218), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10810] = 2, - ACTIONS(6467), 1, + [12255] = 2, + ACTIONS(7220), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10818] = 2, - ACTIONS(6469), 1, + [12263] = 2, + ACTIONS(7222), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [12271] = 2, + ACTIONS(7224), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10826] = 2, - ACTIONS(6471), 1, - anon_sym_RBRACK, + [12279] = 2, + ACTIONS(7226), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10834] = 2, - ACTIONS(6473), 1, - sym__trivia_raw_env_minted, + [12287] = 2, + ACTIONS(7228), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10842] = 2, - ACTIONS(6475), 1, - sym__trivia_raw_env_pycode, + [12295] = 2, + ACTIONS(7230), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10850] = 2, - ACTIONS(6477), 1, - sym__trivia_raw_env_comment, + [12303] = 2, + ACTIONS(7232), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10858] = 2, - ACTIONS(6479), 1, - sym__trivia_raw_env_verbatim, + [12311] = 2, + ACTIONS(7234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10866] = 2, - ACTIONS(6481), 1, - sym__trivia_raw_env_listing, + [12319] = 2, + ACTIONS(7236), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10874] = 2, - ACTIONS(6483), 1, - sym_command_name, + [12327] = 2, + ACTIONS(7238), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10882] = 2, - ACTIONS(6485), 1, + [12335] = 2, + ACTIONS(7240), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10890] = 2, - ACTIONS(6487), 1, - anon_sym_RBRACK, + [12343] = 2, + ACTIONS(7242), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10898] = 2, - ACTIONS(6489), 1, + [12351] = 2, + ACTIONS(7244), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10906] = 2, - ACTIONS(6491), 1, - sym__trivia_raw_env_pycode, + [12359] = 2, + ACTIONS(7246), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10914] = 2, - ACTIONS(6493), 1, + [12367] = 2, + ACTIONS(7248), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10922] = 2, - ACTIONS(6495), 1, + [12375] = 2, + ACTIONS(7250), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10930] = 2, - ACTIONS(6497), 1, + [12383] = 2, + ACTIONS(7252), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10938] = 2, - ACTIONS(6499), 1, + [12391] = 2, + ACTIONS(7254), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [12399] = 2, + ACTIONS(7256), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10946] = 2, - ACTIONS(6501), 1, + [12407] = 2, + ACTIONS(7258), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10954] = 2, - ACTIONS(6503), 1, + [12415] = 2, + ACTIONS(7260), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10962] = 2, - ACTIONS(6505), 1, + [12423] = 2, + ACTIONS(7262), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10970] = 2, - ACTIONS(6507), 1, - sym_path, - ACTIONS(5715), 2, + [12431] = 2, + ACTIONS(7264), 1, + sym__trivia_raw_env_minted, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10978] = 2, - ACTIONS(6509), 1, + [12439] = 2, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [12447] = 2, + ACTIONS(7268), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10986] = 2, - ACTIONS(6511), 1, + [12455] = 2, + ACTIONS(7270), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10994] = 2, - ACTIONS(6513), 1, + [12463] = 2, + ACTIONS(7272), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11002] = 2, - ACTIONS(6515), 1, - sym_command_name, + [12471] = 2, + ACTIONS(7274), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11010] = 2, - ACTIONS(6517), 1, + [12479] = 2, + ACTIONS(7276), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11018] = 2, - ACTIONS(6519), 1, + [12487] = 2, + ACTIONS(7278), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11026] = 2, - ACTIONS(6521), 1, + [12495] = 2, + ACTIONS(7280), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11034] = 2, - ACTIONS(6523), 1, + [12503] = 2, + ACTIONS(7282), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11042] = 2, - ACTIONS(6525), 1, + [12511] = 2, + ACTIONS(7284), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11050] = 2, - ACTIONS(6527), 1, + [12519] = 2, + ACTIONS(7286), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [12527] = 2, + ACTIONS(7288), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11058] = 2, - ACTIONS(6529), 1, + [12535] = 2, + ACTIONS(7290), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11066] = 2, - ACTIONS(6531), 1, - sym__trivia_raw_env_listing, + [12543] = 2, + ACTIONS(7292), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11074] = 2, - ACTIONS(6533), 1, - sym_command_name, + [12551] = 2, + ACTIONS(7294), 1, + sym_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11082] = 2, - ACTIONS(6535), 1, + [12559] = 2, + ACTIONS(7296), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11090] = 2, - ACTIONS(6537), 1, - sym_command_name, + [12567] = 2, + ACTIONS(7298), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11098] = 2, - ACTIONS(6539), 1, + [12575] = 2, + ACTIONS(7300), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11106] = 2, - ACTIONS(6541), 1, - anon_sym_LBRACE, + [12583] = 2, + ACTIONS(7302), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11114] = 2, - ACTIONS(6543), 1, + [12591] = 2, + ACTIONS(7304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11122] = 2, - ACTIONS(6545), 1, - anon_sym_RBRACE, + [12599] = 2, + ACTIONS(7306), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11130] = 2, - ACTIONS(6547), 1, + [12607] = 2, + ACTIONS(7308), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11138] = 2, - ACTIONS(6549), 1, + [12615] = 2, + ACTIONS(7310), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11146] = 2, - ACTIONS(6551), 1, + [12623] = 2, + ACTIONS(7312), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11154] = 2, - ACTIONS(6553), 1, + [12631] = 2, + ACTIONS(7314), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11162] = 2, - ACTIONS(6555), 1, + [12639] = 2, + ACTIONS(7316), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11170] = 2, - ACTIONS(6557), 1, - anon_sym_RBRACK, + [12647] = 2, + ACTIONS(7318), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [11178] = 2, - ACTIONS(6559), 1, + [12655] = 2, + ACTIONS(7320), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, @@ -481510,950 +536655,1070 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1611)] = 0, - [SMALL_STATE(1612)] = 26, - [SMALL_STATE(1613)] = 46, - [SMALL_STATE(1614)] = 64, - [SMALL_STATE(1615)] = 84, - [SMALL_STATE(1616)] = 102, - [SMALL_STATE(1617)] = 120, - [SMALL_STATE(1618)] = 138, - [SMALL_STATE(1619)] = 156, - [SMALL_STATE(1620)] = 174, - [SMALL_STATE(1621)] = 192, - [SMALL_STATE(1622)] = 212, - [SMALL_STATE(1623)] = 230, - [SMALL_STATE(1624)] = 250, - [SMALL_STATE(1625)] = 270, - [SMALL_STATE(1626)] = 288, - [SMALL_STATE(1627)] = 306, - [SMALL_STATE(1628)] = 326, - [SMALL_STATE(1629)] = 344, - [SMALL_STATE(1630)] = 364, - [SMALL_STATE(1631)] = 382, - [SMALL_STATE(1632)] = 402, - [SMALL_STATE(1633)] = 419, - [SMALL_STATE(1634)] = 436, - [SMALL_STATE(1635)] = 453, - [SMALL_STATE(1636)] = 470, - [SMALL_STATE(1637)] = 487, - [SMALL_STATE(1638)] = 504, - [SMALL_STATE(1639)] = 521, - [SMALL_STATE(1640)] = 538, - [SMALL_STATE(1641)] = 555, - [SMALL_STATE(1642)] = 572, - [SMALL_STATE(1643)] = 589, - [SMALL_STATE(1644)] = 606, - [SMALL_STATE(1645)] = 623, - [SMALL_STATE(1646)] = 640, - [SMALL_STATE(1647)] = 657, - [SMALL_STATE(1648)] = 674, - [SMALL_STATE(1649)] = 691, - [SMALL_STATE(1650)] = 708, - [SMALL_STATE(1651)] = 725, - [SMALL_STATE(1652)] = 742, - [SMALL_STATE(1653)] = 759, - [SMALL_STATE(1654)] = 776, - [SMALL_STATE(1655)] = 793, - [SMALL_STATE(1656)] = 810, - [SMALL_STATE(1657)] = 827, - [SMALL_STATE(1658)] = 844, - [SMALL_STATE(1659)] = 861, - [SMALL_STATE(1660)] = 878, - [SMALL_STATE(1661)] = 895, - [SMALL_STATE(1662)] = 912, - [SMALL_STATE(1663)] = 929, - [SMALL_STATE(1664)] = 946, - [SMALL_STATE(1665)] = 963, - [SMALL_STATE(1666)] = 980, - [SMALL_STATE(1667)] = 997, - [SMALL_STATE(1668)] = 1014, - [SMALL_STATE(1669)] = 1031, - [SMALL_STATE(1670)] = 1048, - [SMALL_STATE(1671)] = 1065, - [SMALL_STATE(1672)] = 1082, - [SMALL_STATE(1673)] = 1099, - [SMALL_STATE(1674)] = 1116, - [SMALL_STATE(1675)] = 1133, - [SMALL_STATE(1676)] = 1150, - [SMALL_STATE(1677)] = 1167, - [SMALL_STATE(1678)] = 1184, - [SMALL_STATE(1679)] = 1201, - [SMALL_STATE(1680)] = 1218, - [SMALL_STATE(1681)] = 1235, - [SMALL_STATE(1682)] = 1252, - [SMALL_STATE(1683)] = 1269, - [SMALL_STATE(1684)] = 1286, - [SMALL_STATE(1685)] = 1303, - [SMALL_STATE(1686)] = 1320, - [SMALL_STATE(1687)] = 1337, - [SMALL_STATE(1688)] = 1354, - [SMALL_STATE(1689)] = 1371, - [SMALL_STATE(1690)] = 1388, - [SMALL_STATE(1691)] = 1405, - [SMALL_STATE(1692)] = 1422, - [SMALL_STATE(1693)] = 1439, - [SMALL_STATE(1694)] = 1456, - [SMALL_STATE(1695)] = 1473, - [SMALL_STATE(1696)] = 1490, - [SMALL_STATE(1697)] = 1507, - [SMALL_STATE(1698)] = 1524, - [SMALL_STATE(1699)] = 1541, - [SMALL_STATE(1700)] = 1558, - [SMALL_STATE(1701)] = 1575, - [SMALL_STATE(1702)] = 1592, - [SMALL_STATE(1703)] = 1609, - [SMALL_STATE(1704)] = 1626, - [SMALL_STATE(1705)] = 1643, - [SMALL_STATE(1706)] = 1660, - [SMALL_STATE(1707)] = 1677, - [SMALL_STATE(1708)] = 1694, - [SMALL_STATE(1709)] = 1711, - [SMALL_STATE(1710)] = 1728, - [SMALL_STATE(1711)] = 1745, - [SMALL_STATE(1712)] = 1762, - [SMALL_STATE(1713)] = 1779, - [SMALL_STATE(1714)] = 1796, - [SMALL_STATE(1715)] = 1813, - [SMALL_STATE(1716)] = 1830, - [SMALL_STATE(1717)] = 1847, - [SMALL_STATE(1718)] = 1864, - [SMALL_STATE(1719)] = 1881, - [SMALL_STATE(1720)] = 1898, - [SMALL_STATE(1721)] = 1915, - [SMALL_STATE(1722)] = 1932, - [SMALL_STATE(1723)] = 1949, - [SMALL_STATE(1724)] = 1966, - [SMALL_STATE(1725)] = 1983, - [SMALL_STATE(1726)] = 2000, - [SMALL_STATE(1727)] = 2017, - [SMALL_STATE(1728)] = 2034, - [SMALL_STATE(1729)] = 2051, - [SMALL_STATE(1730)] = 2068, - [SMALL_STATE(1731)] = 2085, - [SMALL_STATE(1732)] = 2102, - [SMALL_STATE(1733)] = 2119, - [SMALL_STATE(1734)] = 2136, - [SMALL_STATE(1735)] = 2153, - [SMALL_STATE(1736)] = 2170, - [SMALL_STATE(1737)] = 2187, - [SMALL_STATE(1738)] = 2204, - [SMALL_STATE(1739)] = 2221, - [SMALL_STATE(1740)] = 2238, - [SMALL_STATE(1741)] = 2255, - [SMALL_STATE(1742)] = 2272, - [SMALL_STATE(1743)] = 2289, - [SMALL_STATE(1744)] = 2306, - [SMALL_STATE(1745)] = 2323, - [SMALL_STATE(1746)] = 2340, - [SMALL_STATE(1747)] = 2357, - [SMALL_STATE(1748)] = 2374, - [SMALL_STATE(1749)] = 2391, - [SMALL_STATE(1750)] = 2408, - [SMALL_STATE(1751)] = 2425, - [SMALL_STATE(1752)] = 2442, - [SMALL_STATE(1753)] = 2459, - [SMALL_STATE(1754)] = 2476, - [SMALL_STATE(1755)] = 2493, - [SMALL_STATE(1756)] = 2510, - [SMALL_STATE(1757)] = 2527, - [SMALL_STATE(1758)] = 2544, - [SMALL_STATE(1759)] = 2561, - [SMALL_STATE(1760)] = 2578, - [SMALL_STATE(1761)] = 2595, - [SMALL_STATE(1762)] = 2612, - [SMALL_STATE(1763)] = 2629, - [SMALL_STATE(1764)] = 2646, - [SMALL_STATE(1765)] = 2663, - [SMALL_STATE(1766)] = 2680, - [SMALL_STATE(1767)] = 2697, - [SMALL_STATE(1768)] = 2714, - [SMALL_STATE(1769)] = 2731, - [SMALL_STATE(1770)] = 2748, - [SMALL_STATE(1771)] = 2765, - [SMALL_STATE(1772)] = 2782, - [SMALL_STATE(1773)] = 2799, - [SMALL_STATE(1774)] = 2816, - [SMALL_STATE(1775)] = 2833, - [SMALL_STATE(1776)] = 2850, - [SMALL_STATE(1777)] = 2864, - [SMALL_STATE(1778)] = 2878, - [SMALL_STATE(1779)] = 2892, - [SMALL_STATE(1780)] = 2906, - [SMALL_STATE(1781)] = 2920, - [SMALL_STATE(1782)] = 2934, - [SMALL_STATE(1783)] = 2948, - [SMALL_STATE(1784)] = 2962, - [SMALL_STATE(1785)] = 2974, - [SMALL_STATE(1786)] = 2988, - [SMALL_STATE(1787)] = 3002, - [SMALL_STATE(1788)] = 3016, - [SMALL_STATE(1789)] = 3030, - [SMALL_STATE(1790)] = 3044, - [SMALL_STATE(1791)] = 3058, - [SMALL_STATE(1792)] = 3072, - [SMALL_STATE(1793)] = 3086, - [SMALL_STATE(1794)] = 3100, - [SMALL_STATE(1795)] = 3114, - [SMALL_STATE(1796)] = 3128, - [SMALL_STATE(1797)] = 3142, - [SMALL_STATE(1798)] = 3156, - [SMALL_STATE(1799)] = 3170, - [SMALL_STATE(1800)] = 3184, - [SMALL_STATE(1801)] = 3198, - [SMALL_STATE(1802)] = 3212, - [SMALL_STATE(1803)] = 3226, - [SMALL_STATE(1804)] = 3236, - [SMALL_STATE(1805)] = 3250, - [SMALL_STATE(1806)] = 3264, - [SMALL_STATE(1807)] = 3278, - [SMALL_STATE(1808)] = 3292, - [SMALL_STATE(1809)] = 3306, - [SMALL_STATE(1810)] = 3320, - [SMALL_STATE(1811)] = 3334, - [SMALL_STATE(1812)] = 3348, - [SMALL_STATE(1813)] = 3362, - [SMALL_STATE(1814)] = 3376, - [SMALL_STATE(1815)] = 3390, - [SMALL_STATE(1816)] = 3404, - [SMALL_STATE(1817)] = 3418, - [SMALL_STATE(1818)] = 3432, - [SMALL_STATE(1819)] = 3442, - [SMALL_STATE(1820)] = 3456, - [SMALL_STATE(1821)] = 3470, - [SMALL_STATE(1822)] = 3480, - [SMALL_STATE(1823)] = 3494, - [SMALL_STATE(1824)] = 3508, - [SMALL_STATE(1825)] = 3522, - [SMALL_STATE(1826)] = 3536, - [SMALL_STATE(1827)] = 3550, - [SMALL_STATE(1828)] = 3564, - [SMALL_STATE(1829)] = 3578, - [SMALL_STATE(1830)] = 3592, - [SMALL_STATE(1831)] = 3606, - [SMALL_STATE(1832)] = 3620, - [SMALL_STATE(1833)] = 3634, - [SMALL_STATE(1834)] = 3648, - [SMALL_STATE(1835)] = 3662, - [SMALL_STATE(1836)] = 3676, - [SMALL_STATE(1837)] = 3690, - [SMALL_STATE(1838)] = 3704, - [SMALL_STATE(1839)] = 3718, - [SMALL_STATE(1840)] = 3732, - [SMALL_STATE(1841)] = 3746, - [SMALL_STATE(1842)] = 3760, - [SMALL_STATE(1843)] = 3774, - [SMALL_STATE(1844)] = 3786, - [SMALL_STATE(1845)] = 3800, - [SMALL_STATE(1846)] = 3814, - [SMALL_STATE(1847)] = 3828, - [SMALL_STATE(1848)] = 3840, - [SMALL_STATE(1849)] = 3854, - [SMALL_STATE(1850)] = 3868, - [SMALL_STATE(1851)] = 3882, - [SMALL_STATE(1852)] = 3894, - [SMALL_STATE(1853)] = 3908, - [SMALL_STATE(1854)] = 3922, - [SMALL_STATE(1855)] = 3936, - [SMALL_STATE(1856)] = 3950, - [SMALL_STATE(1857)] = 3964, - [SMALL_STATE(1858)] = 3974, - [SMALL_STATE(1859)] = 3988, - [SMALL_STATE(1860)] = 4002, - [SMALL_STATE(1861)] = 4016, - [SMALL_STATE(1862)] = 4030, - [SMALL_STATE(1863)] = 4041, - [SMALL_STATE(1864)] = 4052, - [SMALL_STATE(1865)] = 4063, - [SMALL_STATE(1866)] = 4074, - [SMALL_STATE(1867)] = 4085, - [SMALL_STATE(1868)] = 4096, - [SMALL_STATE(1869)] = 4107, - [SMALL_STATE(1870)] = 4118, - [SMALL_STATE(1871)] = 4129, - [SMALL_STATE(1872)] = 4140, - [SMALL_STATE(1873)] = 4151, - [SMALL_STATE(1874)] = 4162, - [SMALL_STATE(1875)] = 4173, - [SMALL_STATE(1876)] = 4184, - [SMALL_STATE(1877)] = 4195, - [SMALL_STATE(1878)] = 4206, - [SMALL_STATE(1879)] = 4217, - [SMALL_STATE(1880)] = 4228, - [SMALL_STATE(1881)] = 4239, - [SMALL_STATE(1882)] = 4250, - [SMALL_STATE(1883)] = 4261, - [SMALL_STATE(1884)] = 4272, - [SMALL_STATE(1885)] = 4283, - [SMALL_STATE(1886)] = 4294, - [SMALL_STATE(1887)] = 4305, - [SMALL_STATE(1888)] = 4316, - [SMALL_STATE(1889)] = 4327, - [SMALL_STATE(1890)] = 4338, - [SMALL_STATE(1891)] = 4349, - [SMALL_STATE(1892)] = 4360, - [SMALL_STATE(1893)] = 4371, - [SMALL_STATE(1894)] = 4382, - [SMALL_STATE(1895)] = 4393, - [SMALL_STATE(1896)] = 4404, - [SMALL_STATE(1897)] = 4415, - [SMALL_STATE(1898)] = 4426, - [SMALL_STATE(1899)] = 4437, - [SMALL_STATE(1900)] = 4448, - [SMALL_STATE(1901)] = 4459, - [SMALL_STATE(1902)] = 4470, - [SMALL_STATE(1903)] = 4479, - [SMALL_STATE(1904)] = 4490, - [SMALL_STATE(1905)] = 4499, - [SMALL_STATE(1906)] = 4510, - [SMALL_STATE(1907)] = 4519, - [SMALL_STATE(1908)] = 4530, - [SMALL_STATE(1909)] = 4541, - [SMALL_STATE(1910)] = 4552, - [SMALL_STATE(1911)] = 4563, - [SMALL_STATE(1912)] = 4574, - [SMALL_STATE(1913)] = 4585, - [SMALL_STATE(1914)] = 4596, - [SMALL_STATE(1915)] = 4607, - [SMALL_STATE(1916)] = 4618, - [SMALL_STATE(1917)] = 4629, - [SMALL_STATE(1918)] = 4640, - [SMALL_STATE(1919)] = 4651, - [SMALL_STATE(1920)] = 4662, - [SMALL_STATE(1921)] = 4673, - [SMALL_STATE(1922)] = 4684, - [SMALL_STATE(1923)] = 4695, - [SMALL_STATE(1924)] = 4706, - [SMALL_STATE(1925)] = 4717, - [SMALL_STATE(1926)] = 4728, - [SMALL_STATE(1927)] = 4739, - [SMALL_STATE(1928)] = 4750, - [SMALL_STATE(1929)] = 4761, - [SMALL_STATE(1930)] = 4772, - [SMALL_STATE(1931)] = 4783, - [SMALL_STATE(1932)] = 4794, - [SMALL_STATE(1933)] = 4805, - [SMALL_STATE(1934)] = 4816, - [SMALL_STATE(1935)] = 4827, - [SMALL_STATE(1936)] = 4838, - [SMALL_STATE(1937)] = 4849, - [SMALL_STATE(1938)] = 4860, - [SMALL_STATE(1939)] = 4871, - [SMALL_STATE(1940)] = 4882, - [SMALL_STATE(1941)] = 4893, - [SMALL_STATE(1942)] = 4904, - [SMALL_STATE(1943)] = 4915, - [SMALL_STATE(1944)] = 4926, - [SMALL_STATE(1945)] = 4937, - [SMALL_STATE(1946)] = 4948, - [SMALL_STATE(1947)] = 4959, - [SMALL_STATE(1948)] = 4970, - [SMALL_STATE(1949)] = 4981, - [SMALL_STATE(1950)] = 4992, - [SMALL_STATE(1951)] = 5003, - [SMALL_STATE(1952)] = 5014, - [SMALL_STATE(1953)] = 5025, - [SMALL_STATE(1954)] = 5036, - [SMALL_STATE(1955)] = 5047, - [SMALL_STATE(1956)] = 5058, - [SMALL_STATE(1957)] = 5069, - [SMALL_STATE(1958)] = 5080, - [SMALL_STATE(1959)] = 5091, - [SMALL_STATE(1960)] = 5102, - [SMALL_STATE(1961)] = 5113, - [SMALL_STATE(1962)] = 5124, - [SMALL_STATE(1963)] = 5135, - [SMALL_STATE(1964)] = 5146, - [SMALL_STATE(1965)] = 5157, - [SMALL_STATE(1966)] = 5168, - [SMALL_STATE(1967)] = 5179, - [SMALL_STATE(1968)] = 5190, - [SMALL_STATE(1969)] = 5201, - [SMALL_STATE(1970)] = 5212, - [SMALL_STATE(1971)] = 5223, - [SMALL_STATE(1972)] = 5234, - [SMALL_STATE(1973)] = 5245, - [SMALL_STATE(1974)] = 5256, - [SMALL_STATE(1975)] = 5267, - [SMALL_STATE(1976)] = 5278, - [SMALL_STATE(1977)] = 5289, - [SMALL_STATE(1978)] = 5300, - [SMALL_STATE(1979)] = 5311, - [SMALL_STATE(1980)] = 5322, - [SMALL_STATE(1981)] = 5333, - [SMALL_STATE(1982)] = 5344, - [SMALL_STATE(1983)] = 5355, - [SMALL_STATE(1984)] = 5366, - [SMALL_STATE(1985)] = 5377, - [SMALL_STATE(1986)] = 5388, - [SMALL_STATE(1987)] = 5399, - [SMALL_STATE(1988)] = 5410, - [SMALL_STATE(1989)] = 5421, - [SMALL_STATE(1990)] = 5432, - [SMALL_STATE(1991)] = 5443, - [SMALL_STATE(1992)] = 5454, - [SMALL_STATE(1993)] = 5465, - [SMALL_STATE(1994)] = 5476, - [SMALL_STATE(1995)] = 5487, - [SMALL_STATE(1996)] = 5498, - [SMALL_STATE(1997)] = 5509, - [SMALL_STATE(1998)] = 5520, - [SMALL_STATE(1999)] = 5531, - [SMALL_STATE(2000)] = 5542, - [SMALL_STATE(2001)] = 5553, - [SMALL_STATE(2002)] = 5564, - [SMALL_STATE(2003)] = 5575, - [SMALL_STATE(2004)] = 5586, - [SMALL_STATE(2005)] = 5597, - [SMALL_STATE(2006)] = 5608, - [SMALL_STATE(2007)] = 5619, - [SMALL_STATE(2008)] = 5630, - [SMALL_STATE(2009)] = 5641, - [SMALL_STATE(2010)] = 5652, - [SMALL_STATE(2011)] = 5663, - [SMALL_STATE(2012)] = 5674, - [SMALL_STATE(2013)] = 5685, - [SMALL_STATE(2014)] = 5696, - [SMALL_STATE(2015)] = 5707, - [SMALL_STATE(2016)] = 5718, - [SMALL_STATE(2017)] = 5729, - [SMALL_STATE(2018)] = 5740, - [SMALL_STATE(2019)] = 5751, - [SMALL_STATE(2020)] = 5762, - [SMALL_STATE(2021)] = 5773, - [SMALL_STATE(2022)] = 5784, - [SMALL_STATE(2023)] = 5795, - [SMALL_STATE(2024)] = 5806, - [SMALL_STATE(2025)] = 5817, - [SMALL_STATE(2026)] = 5828, - [SMALL_STATE(2027)] = 5839, - [SMALL_STATE(2028)] = 5850, - [SMALL_STATE(2029)] = 5861, - [SMALL_STATE(2030)] = 5872, - [SMALL_STATE(2031)] = 5883, - [SMALL_STATE(2032)] = 5894, - [SMALL_STATE(2033)] = 5905, - [SMALL_STATE(2034)] = 5916, - [SMALL_STATE(2035)] = 5927, - [SMALL_STATE(2036)] = 5938, - [SMALL_STATE(2037)] = 5949, - [SMALL_STATE(2038)] = 5960, - [SMALL_STATE(2039)] = 5971, - [SMALL_STATE(2040)] = 5982, - [SMALL_STATE(2041)] = 5993, - [SMALL_STATE(2042)] = 6004, - [SMALL_STATE(2043)] = 6015, - [SMALL_STATE(2044)] = 6026, - [SMALL_STATE(2045)] = 6037, - [SMALL_STATE(2046)] = 6048, - [SMALL_STATE(2047)] = 6059, - [SMALL_STATE(2048)] = 6070, - [SMALL_STATE(2049)] = 6081, - [SMALL_STATE(2050)] = 6092, - [SMALL_STATE(2051)] = 6103, - [SMALL_STATE(2052)] = 6114, - [SMALL_STATE(2053)] = 6125, - [SMALL_STATE(2054)] = 6136, - [SMALL_STATE(2055)] = 6147, - [SMALL_STATE(2056)] = 6158, - [SMALL_STATE(2057)] = 6169, - [SMALL_STATE(2058)] = 6180, - [SMALL_STATE(2059)] = 6191, - [SMALL_STATE(2060)] = 6202, - [SMALL_STATE(2061)] = 6213, - [SMALL_STATE(2062)] = 6224, - [SMALL_STATE(2063)] = 6235, - [SMALL_STATE(2064)] = 6246, - [SMALL_STATE(2065)] = 6257, - [SMALL_STATE(2066)] = 6268, - [SMALL_STATE(2067)] = 6279, - [SMALL_STATE(2068)] = 6290, - [SMALL_STATE(2069)] = 6301, - [SMALL_STATE(2070)] = 6312, - [SMALL_STATE(2071)] = 6323, - [SMALL_STATE(2072)] = 6334, - [SMALL_STATE(2073)] = 6345, - [SMALL_STATE(2074)] = 6356, - [SMALL_STATE(2075)] = 6367, - [SMALL_STATE(2076)] = 6378, - [SMALL_STATE(2077)] = 6389, - [SMALL_STATE(2078)] = 6400, - [SMALL_STATE(2079)] = 6411, - [SMALL_STATE(2080)] = 6422, - [SMALL_STATE(2081)] = 6433, - [SMALL_STATE(2082)] = 6444, - [SMALL_STATE(2083)] = 6455, - [SMALL_STATE(2084)] = 6466, - [SMALL_STATE(2085)] = 6477, - [SMALL_STATE(2086)] = 6488, - [SMALL_STATE(2087)] = 6499, - [SMALL_STATE(2088)] = 6510, - [SMALL_STATE(2089)] = 6521, - [SMALL_STATE(2090)] = 6532, - [SMALL_STATE(2091)] = 6543, - [SMALL_STATE(2092)] = 6554, - [SMALL_STATE(2093)] = 6565, - [SMALL_STATE(2094)] = 6576, - [SMALL_STATE(2095)] = 6587, - [SMALL_STATE(2096)] = 6596, - [SMALL_STATE(2097)] = 6607, - [SMALL_STATE(2098)] = 6618, - [SMALL_STATE(2099)] = 6629, - [SMALL_STATE(2100)] = 6640, - [SMALL_STATE(2101)] = 6651, - [SMALL_STATE(2102)] = 6662, - [SMALL_STATE(2103)] = 6673, - [SMALL_STATE(2104)] = 6684, - [SMALL_STATE(2105)] = 6695, - [SMALL_STATE(2106)] = 6706, - [SMALL_STATE(2107)] = 6717, - [SMALL_STATE(2108)] = 6728, - [SMALL_STATE(2109)] = 6739, - [SMALL_STATE(2110)] = 6750, - [SMALL_STATE(2111)] = 6761, - [SMALL_STATE(2112)] = 6772, - [SMALL_STATE(2113)] = 6783, - [SMALL_STATE(2114)] = 6794, - [SMALL_STATE(2115)] = 6805, - [SMALL_STATE(2116)] = 6816, - [SMALL_STATE(2117)] = 6827, - [SMALL_STATE(2118)] = 6838, - [SMALL_STATE(2119)] = 6849, - [SMALL_STATE(2120)] = 6860, - [SMALL_STATE(2121)] = 6871, - [SMALL_STATE(2122)] = 6882, - [SMALL_STATE(2123)] = 6893, - [SMALL_STATE(2124)] = 6904, - [SMALL_STATE(2125)] = 6915, - [SMALL_STATE(2126)] = 6926, - [SMALL_STATE(2127)] = 6937, - [SMALL_STATE(2128)] = 6948, - [SMALL_STATE(2129)] = 6959, - [SMALL_STATE(2130)] = 6970, - [SMALL_STATE(2131)] = 6981, - [SMALL_STATE(2132)] = 6992, - [SMALL_STATE(2133)] = 7003, - [SMALL_STATE(2134)] = 7014, - [SMALL_STATE(2135)] = 7025, - [SMALL_STATE(2136)] = 7036, - [SMALL_STATE(2137)] = 7047, - [SMALL_STATE(2138)] = 7058, - [SMALL_STATE(2139)] = 7069, - [SMALL_STATE(2140)] = 7080, - [SMALL_STATE(2141)] = 7091, - [SMALL_STATE(2142)] = 7102, - [SMALL_STATE(2143)] = 7113, - [SMALL_STATE(2144)] = 7124, - [SMALL_STATE(2145)] = 7135, - [SMALL_STATE(2146)] = 7146, - [SMALL_STATE(2147)] = 7157, - [SMALL_STATE(2148)] = 7168, - [SMALL_STATE(2149)] = 7179, - [SMALL_STATE(2150)] = 7190, - [SMALL_STATE(2151)] = 7201, - [SMALL_STATE(2152)] = 7212, - [SMALL_STATE(2153)] = 7223, - [SMALL_STATE(2154)] = 7234, - [SMALL_STATE(2155)] = 7245, - [SMALL_STATE(2156)] = 7256, - [SMALL_STATE(2157)] = 7267, - [SMALL_STATE(2158)] = 7278, - [SMALL_STATE(2159)] = 7289, - [SMALL_STATE(2160)] = 7300, - [SMALL_STATE(2161)] = 7311, - [SMALL_STATE(2162)] = 7322, - [SMALL_STATE(2163)] = 7333, - [SMALL_STATE(2164)] = 7344, - [SMALL_STATE(2165)] = 7355, - [SMALL_STATE(2166)] = 7366, - [SMALL_STATE(2167)] = 7377, - [SMALL_STATE(2168)] = 7388, - [SMALL_STATE(2169)] = 7399, - [SMALL_STATE(2170)] = 7410, - [SMALL_STATE(2171)] = 7421, - [SMALL_STATE(2172)] = 7432, - [SMALL_STATE(2173)] = 7443, - [SMALL_STATE(2174)] = 7454, - [SMALL_STATE(2175)] = 7465, - [SMALL_STATE(2176)] = 7476, - [SMALL_STATE(2177)] = 7487, - [SMALL_STATE(2178)] = 7498, - [SMALL_STATE(2179)] = 7509, - [SMALL_STATE(2180)] = 7520, - [SMALL_STATE(2181)] = 7531, - [SMALL_STATE(2182)] = 7542, - [SMALL_STATE(2183)] = 7553, - [SMALL_STATE(2184)] = 7564, - [SMALL_STATE(2185)] = 7575, - [SMALL_STATE(2186)] = 7586, - [SMALL_STATE(2187)] = 7597, - [SMALL_STATE(2188)] = 7608, - [SMALL_STATE(2189)] = 7619, - [SMALL_STATE(2190)] = 7630, - [SMALL_STATE(2191)] = 7641, - [SMALL_STATE(2192)] = 7652, - [SMALL_STATE(2193)] = 7663, - [SMALL_STATE(2194)] = 7674, - [SMALL_STATE(2195)] = 7685, - [SMALL_STATE(2196)] = 7696, - [SMALL_STATE(2197)] = 7707, - [SMALL_STATE(2198)] = 7718, - [SMALL_STATE(2199)] = 7729, - [SMALL_STATE(2200)] = 7740, - [SMALL_STATE(2201)] = 7751, - [SMALL_STATE(2202)] = 7762, - [SMALL_STATE(2203)] = 7773, - [SMALL_STATE(2204)] = 7784, - [SMALL_STATE(2205)] = 7795, - [SMALL_STATE(2206)] = 7806, - [SMALL_STATE(2207)] = 7817, - [SMALL_STATE(2208)] = 7828, - [SMALL_STATE(2209)] = 7839, - [SMALL_STATE(2210)] = 7850, - [SMALL_STATE(2211)] = 7861, - [SMALL_STATE(2212)] = 7872, - [SMALL_STATE(2213)] = 7883, - [SMALL_STATE(2214)] = 7894, - [SMALL_STATE(2215)] = 7905, - [SMALL_STATE(2216)] = 7916, - [SMALL_STATE(2217)] = 7927, - [SMALL_STATE(2218)] = 7938, - [SMALL_STATE(2219)] = 7949, - [SMALL_STATE(2220)] = 7960, - [SMALL_STATE(2221)] = 7971, - [SMALL_STATE(2222)] = 7982, - [SMALL_STATE(2223)] = 7993, - [SMALL_STATE(2224)] = 8004, - [SMALL_STATE(2225)] = 8015, - [SMALL_STATE(2226)] = 8026, - [SMALL_STATE(2227)] = 8037, - [SMALL_STATE(2228)] = 8048, - [SMALL_STATE(2229)] = 8059, - [SMALL_STATE(2230)] = 8070, - [SMALL_STATE(2231)] = 8081, - [SMALL_STATE(2232)] = 8092, - [SMALL_STATE(2233)] = 8103, - [SMALL_STATE(2234)] = 8114, - [SMALL_STATE(2235)] = 8125, - [SMALL_STATE(2236)] = 8136, - [SMALL_STATE(2237)] = 8147, - [SMALL_STATE(2238)] = 8158, - [SMALL_STATE(2239)] = 8169, - [SMALL_STATE(2240)] = 8180, - [SMALL_STATE(2241)] = 8191, - [SMALL_STATE(2242)] = 8202, - [SMALL_STATE(2243)] = 8213, - [SMALL_STATE(2244)] = 8224, - [SMALL_STATE(2245)] = 8235, - [SMALL_STATE(2246)] = 8246, - [SMALL_STATE(2247)] = 8257, - [SMALL_STATE(2248)] = 8268, - [SMALL_STATE(2249)] = 8279, - [SMALL_STATE(2250)] = 8290, - [SMALL_STATE(2251)] = 8301, - [SMALL_STATE(2252)] = 8312, - [SMALL_STATE(2253)] = 8323, - [SMALL_STATE(2254)] = 8334, - [SMALL_STATE(2255)] = 8345, - [SMALL_STATE(2256)] = 8356, - [SMALL_STATE(2257)] = 8367, - [SMALL_STATE(2258)] = 8378, - [SMALL_STATE(2259)] = 8389, - [SMALL_STATE(2260)] = 8400, - [SMALL_STATE(2261)] = 8411, - [SMALL_STATE(2262)] = 8422, - [SMALL_STATE(2263)] = 8433, - [SMALL_STATE(2264)] = 8444, - [SMALL_STATE(2265)] = 8455, - [SMALL_STATE(2266)] = 8466, - [SMALL_STATE(2267)] = 8477, - [SMALL_STATE(2268)] = 8488, - [SMALL_STATE(2269)] = 8499, - [SMALL_STATE(2270)] = 8510, - [SMALL_STATE(2271)] = 8521, - [SMALL_STATE(2272)] = 8532, - [SMALL_STATE(2273)] = 8543, - [SMALL_STATE(2274)] = 8554, - [SMALL_STATE(2275)] = 8565, - [SMALL_STATE(2276)] = 8576, - [SMALL_STATE(2277)] = 8587, - [SMALL_STATE(2278)] = 8598, - [SMALL_STATE(2279)] = 8609, - [SMALL_STATE(2280)] = 8620, - [SMALL_STATE(2281)] = 8631, - [SMALL_STATE(2282)] = 8642, - [SMALL_STATE(2283)] = 8653, - [SMALL_STATE(2284)] = 8664, - [SMALL_STATE(2285)] = 8675, - [SMALL_STATE(2286)] = 8686, - [SMALL_STATE(2287)] = 8697, - [SMALL_STATE(2288)] = 8708, - [SMALL_STATE(2289)] = 8719, - [SMALL_STATE(2290)] = 8730, - [SMALL_STATE(2291)] = 8741, - [SMALL_STATE(2292)] = 8752, - [SMALL_STATE(2293)] = 8763, - [SMALL_STATE(2294)] = 8774, - [SMALL_STATE(2295)] = 8785, - [SMALL_STATE(2296)] = 8796, - [SMALL_STATE(2297)] = 8807, - [SMALL_STATE(2298)] = 8818, - [SMALL_STATE(2299)] = 8829, - [SMALL_STATE(2300)] = 8840, - [SMALL_STATE(2301)] = 8851, - [SMALL_STATE(2302)] = 8862, - [SMALL_STATE(2303)] = 8873, - [SMALL_STATE(2304)] = 8884, - [SMALL_STATE(2305)] = 8895, - [SMALL_STATE(2306)] = 8906, - [SMALL_STATE(2307)] = 8917, - [SMALL_STATE(2308)] = 8928, - [SMALL_STATE(2309)] = 8939, - [SMALL_STATE(2310)] = 8950, - [SMALL_STATE(2311)] = 8961, - [SMALL_STATE(2312)] = 8972, - [SMALL_STATE(2313)] = 8983, - [SMALL_STATE(2314)] = 8994, - [SMALL_STATE(2315)] = 9005, - [SMALL_STATE(2316)] = 9016, - [SMALL_STATE(2317)] = 9027, - [SMALL_STATE(2318)] = 9038, - [SMALL_STATE(2319)] = 9049, - [SMALL_STATE(2320)] = 9060, - [SMALL_STATE(2321)] = 9071, - [SMALL_STATE(2322)] = 9082, - [SMALL_STATE(2323)] = 9093, - [SMALL_STATE(2324)] = 9104, - [SMALL_STATE(2325)] = 9115, - [SMALL_STATE(2326)] = 9126, - [SMALL_STATE(2327)] = 9137, - [SMALL_STATE(2328)] = 9148, - [SMALL_STATE(2329)] = 9159, - [SMALL_STATE(2330)] = 9170, - [SMALL_STATE(2331)] = 9181, - [SMALL_STATE(2332)] = 9192, - [SMALL_STATE(2333)] = 9203, - [SMALL_STATE(2334)] = 9214, - [SMALL_STATE(2335)] = 9225, - [SMALL_STATE(2336)] = 9236, - [SMALL_STATE(2337)] = 9247, - [SMALL_STATE(2338)] = 9258, - [SMALL_STATE(2339)] = 9269, - [SMALL_STATE(2340)] = 9280, - [SMALL_STATE(2341)] = 9291, - [SMALL_STATE(2342)] = 9302, - [SMALL_STATE(2343)] = 9313, - [SMALL_STATE(2344)] = 9324, - [SMALL_STATE(2345)] = 9335, - [SMALL_STATE(2346)] = 9346, - [SMALL_STATE(2347)] = 9357, - [SMALL_STATE(2348)] = 9368, - [SMALL_STATE(2349)] = 9379, - [SMALL_STATE(2350)] = 9390, - [SMALL_STATE(2351)] = 9401, - [SMALL_STATE(2352)] = 9412, - [SMALL_STATE(2353)] = 9423, - [SMALL_STATE(2354)] = 9434, - [SMALL_STATE(2355)] = 9445, - [SMALL_STATE(2356)] = 9456, - [SMALL_STATE(2357)] = 9467, - [SMALL_STATE(2358)] = 9478, - [SMALL_STATE(2359)] = 9489, - [SMALL_STATE(2360)] = 9500, - [SMALL_STATE(2361)] = 9511, - [SMALL_STATE(2362)] = 9522, - [SMALL_STATE(2363)] = 9533, - [SMALL_STATE(2364)] = 9544, - [SMALL_STATE(2365)] = 9555, - [SMALL_STATE(2366)] = 9566, - [SMALL_STATE(2367)] = 9577, - [SMALL_STATE(2368)] = 9588, - [SMALL_STATE(2369)] = 9599, - [SMALL_STATE(2370)] = 9610, - [SMALL_STATE(2371)] = 9621, - [SMALL_STATE(2372)] = 9632, - [SMALL_STATE(2373)] = 9643, - [SMALL_STATE(2374)] = 9654, - [SMALL_STATE(2375)] = 9665, - [SMALL_STATE(2376)] = 9676, - [SMALL_STATE(2377)] = 9687, - [SMALL_STATE(2378)] = 9698, - [SMALL_STATE(2379)] = 9709, - [SMALL_STATE(2380)] = 9720, - [SMALL_STATE(2381)] = 9731, - [SMALL_STATE(2382)] = 9742, - [SMALL_STATE(2383)] = 9753, - [SMALL_STATE(2384)] = 9764, - [SMALL_STATE(2385)] = 9775, - [SMALL_STATE(2386)] = 9786, - [SMALL_STATE(2387)] = 9797, - [SMALL_STATE(2388)] = 9808, - [SMALL_STATE(2389)] = 9819, - [SMALL_STATE(2390)] = 9830, - [SMALL_STATE(2391)] = 9841, - [SMALL_STATE(2392)] = 9852, - [SMALL_STATE(2393)] = 9863, - [SMALL_STATE(2394)] = 9874, - [SMALL_STATE(2395)] = 9885, - [SMALL_STATE(2396)] = 9896, - [SMALL_STATE(2397)] = 9907, - [SMALL_STATE(2398)] = 9918, - [SMALL_STATE(2399)] = 9929, - [SMALL_STATE(2400)] = 9940, - [SMALL_STATE(2401)] = 9951, - [SMALL_STATE(2402)] = 9962, - [SMALL_STATE(2403)] = 9970, - [SMALL_STATE(2404)] = 9978, - [SMALL_STATE(2405)] = 9986, - [SMALL_STATE(2406)] = 9994, - [SMALL_STATE(2407)] = 10002, - [SMALL_STATE(2408)] = 10010, - [SMALL_STATE(2409)] = 10018, - [SMALL_STATE(2410)] = 10026, - [SMALL_STATE(2411)] = 10034, - [SMALL_STATE(2412)] = 10042, - [SMALL_STATE(2413)] = 10050, - [SMALL_STATE(2414)] = 10058, - [SMALL_STATE(2415)] = 10066, - [SMALL_STATE(2416)] = 10074, - [SMALL_STATE(2417)] = 10082, - [SMALL_STATE(2418)] = 10090, - [SMALL_STATE(2419)] = 10098, - [SMALL_STATE(2420)] = 10106, - [SMALL_STATE(2421)] = 10114, - [SMALL_STATE(2422)] = 10122, - [SMALL_STATE(2423)] = 10130, - [SMALL_STATE(2424)] = 10138, - [SMALL_STATE(2425)] = 10146, - [SMALL_STATE(2426)] = 10154, - [SMALL_STATE(2427)] = 10162, - [SMALL_STATE(2428)] = 10170, - [SMALL_STATE(2429)] = 10178, - [SMALL_STATE(2430)] = 10186, - [SMALL_STATE(2431)] = 10194, - [SMALL_STATE(2432)] = 10202, - [SMALL_STATE(2433)] = 10210, - [SMALL_STATE(2434)] = 10218, - [SMALL_STATE(2435)] = 10226, - [SMALL_STATE(2436)] = 10234, - [SMALL_STATE(2437)] = 10242, - [SMALL_STATE(2438)] = 10250, - [SMALL_STATE(2439)] = 10258, - [SMALL_STATE(2440)] = 10266, - [SMALL_STATE(2441)] = 10274, - [SMALL_STATE(2442)] = 10282, - [SMALL_STATE(2443)] = 10290, - [SMALL_STATE(2444)] = 10298, - [SMALL_STATE(2445)] = 10306, - [SMALL_STATE(2446)] = 10314, - [SMALL_STATE(2447)] = 10322, - [SMALL_STATE(2448)] = 10330, - [SMALL_STATE(2449)] = 10338, - [SMALL_STATE(2450)] = 10346, - [SMALL_STATE(2451)] = 10354, - [SMALL_STATE(2452)] = 10362, - [SMALL_STATE(2453)] = 10370, - [SMALL_STATE(2454)] = 10378, - [SMALL_STATE(2455)] = 10386, - [SMALL_STATE(2456)] = 10394, - [SMALL_STATE(2457)] = 10402, - [SMALL_STATE(2458)] = 10410, - [SMALL_STATE(2459)] = 10418, - [SMALL_STATE(2460)] = 10426, - [SMALL_STATE(2461)] = 10434, - [SMALL_STATE(2462)] = 10442, - [SMALL_STATE(2463)] = 10450, - [SMALL_STATE(2464)] = 10458, - [SMALL_STATE(2465)] = 10466, - [SMALL_STATE(2466)] = 10474, - [SMALL_STATE(2467)] = 10482, - [SMALL_STATE(2468)] = 10490, - [SMALL_STATE(2469)] = 10498, - [SMALL_STATE(2470)] = 10506, - [SMALL_STATE(2471)] = 10514, - [SMALL_STATE(2472)] = 10522, - [SMALL_STATE(2473)] = 10530, - [SMALL_STATE(2474)] = 10538, - [SMALL_STATE(2475)] = 10546, - [SMALL_STATE(2476)] = 10554, - [SMALL_STATE(2477)] = 10562, - [SMALL_STATE(2478)] = 10570, - [SMALL_STATE(2479)] = 10578, - [SMALL_STATE(2480)] = 10586, - [SMALL_STATE(2481)] = 10594, - [SMALL_STATE(2482)] = 10602, - [SMALL_STATE(2483)] = 10610, - [SMALL_STATE(2484)] = 10618, - [SMALL_STATE(2485)] = 10626, - [SMALL_STATE(2486)] = 10634, - [SMALL_STATE(2487)] = 10642, - [SMALL_STATE(2488)] = 10650, - [SMALL_STATE(2489)] = 10658, - [SMALL_STATE(2490)] = 10666, - [SMALL_STATE(2491)] = 10674, - [SMALL_STATE(2492)] = 10682, - [SMALL_STATE(2493)] = 10690, - [SMALL_STATE(2494)] = 10698, - [SMALL_STATE(2495)] = 10706, - [SMALL_STATE(2496)] = 10714, - [SMALL_STATE(2497)] = 10722, - [SMALL_STATE(2498)] = 10730, - [SMALL_STATE(2499)] = 10738, - [SMALL_STATE(2500)] = 10746, - [SMALL_STATE(2501)] = 10754, - [SMALL_STATE(2502)] = 10762, - [SMALL_STATE(2503)] = 10770, - [SMALL_STATE(2504)] = 10778, - [SMALL_STATE(2505)] = 10786, - [SMALL_STATE(2506)] = 10794, - [SMALL_STATE(2507)] = 10802, - [SMALL_STATE(2508)] = 10810, - [SMALL_STATE(2509)] = 10818, - [SMALL_STATE(2510)] = 10826, - [SMALL_STATE(2511)] = 10834, - [SMALL_STATE(2512)] = 10842, - [SMALL_STATE(2513)] = 10850, - [SMALL_STATE(2514)] = 10858, - [SMALL_STATE(2515)] = 10866, - [SMALL_STATE(2516)] = 10874, - [SMALL_STATE(2517)] = 10882, - [SMALL_STATE(2518)] = 10890, - [SMALL_STATE(2519)] = 10898, - [SMALL_STATE(2520)] = 10906, - [SMALL_STATE(2521)] = 10914, - [SMALL_STATE(2522)] = 10922, - [SMALL_STATE(2523)] = 10930, - [SMALL_STATE(2524)] = 10938, - [SMALL_STATE(2525)] = 10946, - [SMALL_STATE(2526)] = 10954, - [SMALL_STATE(2527)] = 10962, - [SMALL_STATE(2528)] = 10970, - [SMALL_STATE(2529)] = 10978, - [SMALL_STATE(2530)] = 10986, - [SMALL_STATE(2531)] = 10994, - [SMALL_STATE(2532)] = 11002, - [SMALL_STATE(2533)] = 11010, - [SMALL_STATE(2534)] = 11018, - [SMALL_STATE(2535)] = 11026, - [SMALL_STATE(2536)] = 11034, - [SMALL_STATE(2537)] = 11042, - [SMALL_STATE(2538)] = 11050, - [SMALL_STATE(2539)] = 11058, - [SMALL_STATE(2540)] = 11066, - [SMALL_STATE(2541)] = 11074, - [SMALL_STATE(2542)] = 11082, - [SMALL_STATE(2543)] = 11090, - [SMALL_STATE(2544)] = 11098, - [SMALL_STATE(2545)] = 11106, - [SMALL_STATE(2546)] = 11114, - [SMALL_STATE(2547)] = 11122, - [SMALL_STATE(2548)] = 11130, - [SMALL_STATE(2549)] = 11138, - [SMALL_STATE(2550)] = 11146, - [SMALL_STATE(2551)] = 11154, - [SMALL_STATE(2552)] = 11162, - [SMALL_STATE(2553)] = 11170, - [SMALL_STATE(2554)] = 11178, + [SMALL_STATE(1795)] = 0, + [SMALL_STATE(1796)] = 26, + [SMALL_STATE(1797)] = 46, + [SMALL_STATE(1798)] = 64, + [SMALL_STATE(1799)] = 82, + [SMALL_STATE(1800)] = 100, + [SMALL_STATE(1801)] = 120, + [SMALL_STATE(1802)] = 140, + [SMALL_STATE(1803)] = 160, + [SMALL_STATE(1804)] = 178, + [SMALL_STATE(1805)] = 198, + [SMALL_STATE(1806)] = 216, + [SMALL_STATE(1807)] = 236, + [SMALL_STATE(1808)] = 254, + [SMALL_STATE(1809)] = 274, + [SMALL_STATE(1810)] = 294, + [SMALL_STATE(1811)] = 312, + [SMALL_STATE(1812)] = 330, + [SMALL_STATE(1813)] = 350, + [SMALL_STATE(1814)] = 368, + [SMALL_STATE(1815)] = 386, + [SMALL_STATE(1816)] = 404, + [SMALL_STATE(1817)] = 422, + [SMALL_STATE(1818)] = 440, + [SMALL_STATE(1819)] = 457, + [SMALL_STATE(1820)] = 474, + [SMALL_STATE(1821)] = 491, + [SMALL_STATE(1822)] = 508, + [SMALL_STATE(1823)] = 525, + [SMALL_STATE(1824)] = 542, + [SMALL_STATE(1825)] = 559, + [SMALL_STATE(1826)] = 576, + [SMALL_STATE(1827)] = 593, + [SMALL_STATE(1828)] = 610, + [SMALL_STATE(1829)] = 627, + [SMALL_STATE(1830)] = 644, + [SMALL_STATE(1831)] = 661, + [SMALL_STATE(1832)] = 678, + [SMALL_STATE(1833)] = 695, + [SMALL_STATE(1834)] = 712, + [SMALL_STATE(1835)] = 729, + [SMALL_STATE(1836)] = 746, + [SMALL_STATE(1837)] = 763, + [SMALL_STATE(1838)] = 780, + [SMALL_STATE(1839)] = 797, + [SMALL_STATE(1840)] = 814, + [SMALL_STATE(1841)] = 831, + [SMALL_STATE(1842)] = 848, + [SMALL_STATE(1843)] = 865, + [SMALL_STATE(1844)] = 882, + [SMALL_STATE(1845)] = 899, + [SMALL_STATE(1846)] = 916, + [SMALL_STATE(1847)] = 933, + [SMALL_STATE(1848)] = 950, + [SMALL_STATE(1849)] = 967, + [SMALL_STATE(1850)] = 984, + [SMALL_STATE(1851)] = 1001, + [SMALL_STATE(1852)] = 1018, + [SMALL_STATE(1853)] = 1035, + [SMALL_STATE(1854)] = 1052, + [SMALL_STATE(1855)] = 1069, + [SMALL_STATE(1856)] = 1086, + [SMALL_STATE(1857)] = 1103, + [SMALL_STATE(1858)] = 1120, + [SMALL_STATE(1859)] = 1137, + [SMALL_STATE(1860)] = 1154, + [SMALL_STATE(1861)] = 1171, + [SMALL_STATE(1862)] = 1188, + [SMALL_STATE(1863)] = 1205, + [SMALL_STATE(1864)] = 1222, + [SMALL_STATE(1865)] = 1239, + [SMALL_STATE(1866)] = 1256, + [SMALL_STATE(1867)] = 1273, + [SMALL_STATE(1868)] = 1290, + [SMALL_STATE(1869)] = 1307, + [SMALL_STATE(1870)] = 1324, + [SMALL_STATE(1871)] = 1341, + [SMALL_STATE(1872)] = 1358, + [SMALL_STATE(1873)] = 1375, + [SMALL_STATE(1874)] = 1392, + [SMALL_STATE(1875)] = 1409, + [SMALL_STATE(1876)] = 1426, + [SMALL_STATE(1877)] = 1443, + [SMALL_STATE(1878)] = 1460, + [SMALL_STATE(1879)] = 1477, + [SMALL_STATE(1880)] = 1494, + [SMALL_STATE(1881)] = 1511, + [SMALL_STATE(1882)] = 1528, + [SMALL_STATE(1883)] = 1545, + [SMALL_STATE(1884)] = 1562, + [SMALL_STATE(1885)] = 1579, + [SMALL_STATE(1886)] = 1596, + [SMALL_STATE(1887)] = 1613, + [SMALL_STATE(1888)] = 1630, + [SMALL_STATE(1889)] = 1647, + [SMALL_STATE(1890)] = 1664, + [SMALL_STATE(1891)] = 1681, + [SMALL_STATE(1892)] = 1698, + [SMALL_STATE(1893)] = 1715, + [SMALL_STATE(1894)] = 1732, + [SMALL_STATE(1895)] = 1749, + [SMALL_STATE(1896)] = 1766, + [SMALL_STATE(1897)] = 1783, + [SMALL_STATE(1898)] = 1800, + [SMALL_STATE(1899)] = 1817, + [SMALL_STATE(1900)] = 1834, + [SMALL_STATE(1901)] = 1851, + [SMALL_STATE(1902)] = 1868, + [SMALL_STATE(1903)] = 1885, + [SMALL_STATE(1904)] = 1902, + [SMALL_STATE(1905)] = 1919, + [SMALL_STATE(1906)] = 1936, + [SMALL_STATE(1907)] = 1953, + [SMALL_STATE(1908)] = 1970, + [SMALL_STATE(1909)] = 1987, + [SMALL_STATE(1910)] = 2004, + [SMALL_STATE(1911)] = 2021, + [SMALL_STATE(1912)] = 2038, + [SMALL_STATE(1913)] = 2055, + [SMALL_STATE(1914)] = 2072, + [SMALL_STATE(1915)] = 2089, + [SMALL_STATE(1916)] = 2106, + [SMALL_STATE(1917)] = 2123, + [SMALL_STATE(1918)] = 2140, + [SMALL_STATE(1919)] = 2157, + [SMALL_STATE(1920)] = 2174, + [SMALL_STATE(1921)] = 2191, + [SMALL_STATE(1922)] = 2208, + [SMALL_STATE(1923)] = 2225, + [SMALL_STATE(1924)] = 2242, + [SMALL_STATE(1925)] = 2259, + [SMALL_STATE(1926)] = 2276, + [SMALL_STATE(1927)] = 2293, + [SMALL_STATE(1928)] = 2310, + [SMALL_STATE(1929)] = 2327, + [SMALL_STATE(1930)] = 2344, + [SMALL_STATE(1931)] = 2361, + [SMALL_STATE(1932)] = 2378, + [SMALL_STATE(1933)] = 2395, + [SMALL_STATE(1934)] = 2412, + [SMALL_STATE(1935)] = 2429, + [SMALL_STATE(1936)] = 2446, + [SMALL_STATE(1937)] = 2463, + [SMALL_STATE(1938)] = 2480, + [SMALL_STATE(1939)] = 2497, + [SMALL_STATE(1940)] = 2514, + [SMALL_STATE(1941)] = 2531, + [SMALL_STATE(1942)] = 2548, + [SMALL_STATE(1943)] = 2565, + [SMALL_STATE(1944)] = 2582, + [SMALL_STATE(1945)] = 2599, + [SMALL_STATE(1946)] = 2616, + [SMALL_STATE(1947)] = 2633, + [SMALL_STATE(1948)] = 2650, + [SMALL_STATE(1949)] = 2667, + [SMALL_STATE(1950)] = 2684, + [SMALL_STATE(1951)] = 2701, + [SMALL_STATE(1952)] = 2718, + [SMALL_STATE(1953)] = 2735, + [SMALL_STATE(1954)] = 2752, + [SMALL_STATE(1955)] = 2769, + [SMALL_STATE(1956)] = 2786, + [SMALL_STATE(1957)] = 2803, + [SMALL_STATE(1958)] = 2820, + [SMALL_STATE(1959)] = 2837, + [SMALL_STATE(1960)] = 2854, + [SMALL_STATE(1961)] = 2871, + [SMALL_STATE(1962)] = 2888, + [SMALL_STATE(1963)] = 2905, + [SMALL_STATE(1964)] = 2922, + [SMALL_STATE(1965)] = 2939, + [SMALL_STATE(1966)] = 2956, + [SMALL_STATE(1967)] = 2973, + [SMALL_STATE(1968)] = 2990, + [SMALL_STATE(1969)] = 3007, + [SMALL_STATE(1970)] = 3024, + [SMALL_STATE(1971)] = 3041, + [SMALL_STATE(1972)] = 3058, + [SMALL_STATE(1973)] = 3075, + [SMALL_STATE(1974)] = 3092, + [SMALL_STATE(1975)] = 3109, + [SMALL_STATE(1976)] = 3126, + [SMALL_STATE(1977)] = 3143, + [SMALL_STATE(1978)] = 3160, + [SMALL_STATE(1979)] = 3177, + [SMALL_STATE(1980)] = 3194, + [SMALL_STATE(1981)] = 3208, + [SMALL_STATE(1982)] = 3222, + [SMALL_STATE(1983)] = 3236, + [SMALL_STATE(1984)] = 3250, + [SMALL_STATE(1985)] = 3264, + [SMALL_STATE(1986)] = 3278, + [SMALL_STATE(1987)] = 3292, + [SMALL_STATE(1988)] = 3306, + [SMALL_STATE(1989)] = 3320, + [SMALL_STATE(1990)] = 3334, + [SMALL_STATE(1991)] = 3348, + [SMALL_STATE(1992)] = 3362, + [SMALL_STATE(1993)] = 3376, + [SMALL_STATE(1994)] = 3390, + [SMALL_STATE(1995)] = 3404, + [SMALL_STATE(1996)] = 3418, + [SMALL_STATE(1997)] = 3432, + [SMALL_STATE(1998)] = 3446, + [SMALL_STATE(1999)] = 3460, + [SMALL_STATE(2000)] = 3472, + [SMALL_STATE(2001)] = 3486, + [SMALL_STATE(2002)] = 3500, + [SMALL_STATE(2003)] = 3514, + [SMALL_STATE(2004)] = 3528, + [SMALL_STATE(2005)] = 3542, + [SMALL_STATE(2006)] = 3556, + [SMALL_STATE(2007)] = 3570, + [SMALL_STATE(2008)] = 3584, + [SMALL_STATE(2009)] = 3598, + [SMALL_STATE(2010)] = 3612, + [SMALL_STATE(2011)] = 3626, + [SMALL_STATE(2012)] = 3640, + [SMALL_STATE(2013)] = 3654, + [SMALL_STATE(2014)] = 3668, + [SMALL_STATE(2015)] = 3682, + [SMALL_STATE(2016)] = 3696, + [SMALL_STATE(2017)] = 3710, + [SMALL_STATE(2018)] = 3720, + [SMALL_STATE(2019)] = 3734, + [SMALL_STATE(2020)] = 3748, + [SMALL_STATE(2021)] = 3762, + [SMALL_STATE(2022)] = 3776, + [SMALL_STATE(2023)] = 3790, + [SMALL_STATE(2024)] = 3804, + [SMALL_STATE(2025)] = 3818, + [SMALL_STATE(2026)] = 3832, + [SMALL_STATE(2027)] = 3846, + [SMALL_STATE(2028)] = 3860, + [SMALL_STATE(2029)] = 3874, + [SMALL_STATE(2030)] = 3888, + [SMALL_STATE(2031)] = 3902, + [SMALL_STATE(2032)] = 3916, + [SMALL_STATE(2033)] = 3930, + [SMALL_STATE(2034)] = 3944, + [SMALL_STATE(2035)] = 3958, + [SMALL_STATE(2036)] = 3972, + [SMALL_STATE(2037)] = 3986, + [SMALL_STATE(2038)] = 4000, + [SMALL_STATE(2039)] = 4014, + [SMALL_STATE(2040)] = 4028, + [SMALL_STATE(2041)] = 4042, + [SMALL_STATE(2042)] = 4056, + [SMALL_STATE(2043)] = 4070, + [SMALL_STATE(2044)] = 4080, + [SMALL_STATE(2045)] = 4094, + [SMALL_STATE(2046)] = 4108, + [SMALL_STATE(2047)] = 4122, + [SMALL_STATE(2048)] = 4136, + [SMALL_STATE(2049)] = 4150, + [SMALL_STATE(2050)] = 4164, + [SMALL_STATE(2051)] = 4178, + [SMALL_STATE(2052)] = 4192, + [SMALL_STATE(2053)] = 4206, + [SMALL_STATE(2054)] = 4220, + [SMALL_STATE(2055)] = 4234, + [SMALL_STATE(2056)] = 4248, + [SMALL_STATE(2057)] = 4260, + [SMALL_STATE(2058)] = 4274, + [SMALL_STATE(2059)] = 4288, + [SMALL_STATE(2060)] = 4302, + [SMALL_STATE(2061)] = 4316, + [SMALL_STATE(2062)] = 4330, + [SMALL_STATE(2063)] = 4344, + [SMALL_STATE(2064)] = 4354, + [SMALL_STATE(2065)] = 4368, + [SMALL_STATE(2066)] = 4382, + [SMALL_STATE(2067)] = 4396, + [SMALL_STATE(2068)] = 4410, + [SMALL_STATE(2069)] = 4422, + [SMALL_STATE(2070)] = 4436, + [SMALL_STATE(2071)] = 4450, + [SMALL_STATE(2072)] = 4460, + [SMALL_STATE(2073)] = 4474, + [SMALL_STATE(2074)] = 4488, + [SMALL_STATE(2075)] = 4502, + [SMALL_STATE(2076)] = 4516, + [SMALL_STATE(2077)] = 4530, + [SMALL_STATE(2078)] = 4542, + [SMALL_STATE(2079)] = 4556, + [SMALL_STATE(2080)] = 4570, + [SMALL_STATE(2081)] = 4584, + [SMALL_STATE(2082)] = 4598, + [SMALL_STATE(2083)] = 4612, + [SMALL_STATE(2084)] = 4626, + [SMALL_STATE(2085)] = 4640, + [SMALL_STATE(2086)] = 4651, + [SMALL_STATE(2087)] = 4662, + [SMALL_STATE(2088)] = 4673, + [SMALL_STATE(2089)] = 4684, + [SMALL_STATE(2090)] = 4695, + [SMALL_STATE(2091)] = 4706, + [SMALL_STATE(2092)] = 4717, + [SMALL_STATE(2093)] = 4728, + [SMALL_STATE(2094)] = 4739, + [SMALL_STATE(2095)] = 4750, + [SMALL_STATE(2096)] = 4761, + [SMALL_STATE(2097)] = 4772, + [SMALL_STATE(2098)] = 4783, + [SMALL_STATE(2099)] = 4794, + [SMALL_STATE(2100)] = 4805, + [SMALL_STATE(2101)] = 4816, + [SMALL_STATE(2102)] = 4827, + [SMALL_STATE(2103)] = 4838, + [SMALL_STATE(2104)] = 4849, + [SMALL_STATE(2105)] = 4860, + [SMALL_STATE(2106)] = 4871, + [SMALL_STATE(2107)] = 4882, + [SMALL_STATE(2108)] = 4893, + [SMALL_STATE(2109)] = 4904, + [SMALL_STATE(2110)] = 4915, + [SMALL_STATE(2111)] = 4926, + [SMALL_STATE(2112)] = 4937, + [SMALL_STATE(2113)] = 4948, + [SMALL_STATE(2114)] = 4957, + [SMALL_STATE(2115)] = 4968, + [SMALL_STATE(2116)] = 4979, + [SMALL_STATE(2117)] = 4990, + [SMALL_STATE(2118)] = 5001, + [SMALL_STATE(2119)] = 5012, + [SMALL_STATE(2120)] = 5021, + [SMALL_STATE(2121)] = 5032, + [SMALL_STATE(2122)] = 5043, + [SMALL_STATE(2123)] = 5054, + [SMALL_STATE(2124)] = 5065, + [SMALL_STATE(2125)] = 5076, + [SMALL_STATE(2126)] = 5087, + [SMALL_STATE(2127)] = 5098, + [SMALL_STATE(2128)] = 5109, + [SMALL_STATE(2129)] = 5120, + [SMALL_STATE(2130)] = 5131, + [SMALL_STATE(2131)] = 5142, + [SMALL_STATE(2132)] = 5153, + [SMALL_STATE(2133)] = 5164, + [SMALL_STATE(2134)] = 5175, + [SMALL_STATE(2135)] = 5186, + [SMALL_STATE(2136)] = 5197, + [SMALL_STATE(2137)] = 5208, + [SMALL_STATE(2138)] = 5219, + [SMALL_STATE(2139)] = 5230, + [SMALL_STATE(2140)] = 5241, + [SMALL_STATE(2141)] = 5252, + [SMALL_STATE(2142)] = 5263, + [SMALL_STATE(2143)] = 5274, + [SMALL_STATE(2144)] = 5285, + [SMALL_STATE(2145)] = 5296, + [SMALL_STATE(2146)] = 5307, + [SMALL_STATE(2147)] = 5318, + [SMALL_STATE(2148)] = 5329, + [SMALL_STATE(2149)] = 5340, + [SMALL_STATE(2150)] = 5351, + [SMALL_STATE(2151)] = 5362, + [SMALL_STATE(2152)] = 5373, + [SMALL_STATE(2153)] = 5384, + [SMALL_STATE(2154)] = 5395, + [SMALL_STATE(2155)] = 5406, + [SMALL_STATE(2156)] = 5417, + [SMALL_STATE(2157)] = 5428, + [SMALL_STATE(2158)] = 5439, + [SMALL_STATE(2159)] = 5450, + [SMALL_STATE(2160)] = 5461, + [SMALL_STATE(2161)] = 5472, + [SMALL_STATE(2162)] = 5483, + [SMALL_STATE(2163)] = 5494, + [SMALL_STATE(2164)] = 5505, + [SMALL_STATE(2165)] = 5516, + [SMALL_STATE(2166)] = 5527, + [SMALL_STATE(2167)] = 5538, + [SMALL_STATE(2168)] = 5549, + [SMALL_STATE(2169)] = 5560, + [SMALL_STATE(2170)] = 5571, + [SMALL_STATE(2171)] = 5582, + [SMALL_STATE(2172)] = 5593, + [SMALL_STATE(2173)] = 5604, + [SMALL_STATE(2174)] = 5615, + [SMALL_STATE(2175)] = 5626, + [SMALL_STATE(2176)] = 5637, + [SMALL_STATE(2177)] = 5648, + [SMALL_STATE(2178)] = 5659, + [SMALL_STATE(2179)] = 5670, + [SMALL_STATE(2180)] = 5681, + [SMALL_STATE(2181)] = 5692, + [SMALL_STATE(2182)] = 5703, + [SMALL_STATE(2183)] = 5714, + [SMALL_STATE(2184)] = 5725, + [SMALL_STATE(2185)] = 5736, + [SMALL_STATE(2186)] = 5747, + [SMALL_STATE(2187)] = 5758, + [SMALL_STATE(2188)] = 5769, + [SMALL_STATE(2189)] = 5780, + [SMALL_STATE(2190)] = 5791, + [SMALL_STATE(2191)] = 5802, + [SMALL_STATE(2192)] = 5813, + [SMALL_STATE(2193)] = 5824, + [SMALL_STATE(2194)] = 5835, + [SMALL_STATE(2195)] = 5846, + [SMALL_STATE(2196)] = 5857, + [SMALL_STATE(2197)] = 5868, + [SMALL_STATE(2198)] = 5879, + [SMALL_STATE(2199)] = 5890, + [SMALL_STATE(2200)] = 5901, + [SMALL_STATE(2201)] = 5912, + [SMALL_STATE(2202)] = 5923, + [SMALL_STATE(2203)] = 5934, + [SMALL_STATE(2204)] = 5945, + [SMALL_STATE(2205)] = 5956, + [SMALL_STATE(2206)] = 5967, + [SMALL_STATE(2207)] = 5978, + [SMALL_STATE(2208)] = 5989, + [SMALL_STATE(2209)] = 6000, + [SMALL_STATE(2210)] = 6011, + [SMALL_STATE(2211)] = 6022, + [SMALL_STATE(2212)] = 6033, + [SMALL_STATE(2213)] = 6044, + [SMALL_STATE(2214)] = 6055, + [SMALL_STATE(2215)] = 6066, + [SMALL_STATE(2216)] = 6077, + [SMALL_STATE(2217)] = 6088, + [SMALL_STATE(2218)] = 6099, + [SMALL_STATE(2219)] = 6110, + [SMALL_STATE(2220)] = 6121, + [SMALL_STATE(2221)] = 6132, + [SMALL_STATE(2222)] = 6143, + [SMALL_STATE(2223)] = 6154, + [SMALL_STATE(2224)] = 6165, + [SMALL_STATE(2225)] = 6176, + [SMALL_STATE(2226)] = 6187, + [SMALL_STATE(2227)] = 6198, + [SMALL_STATE(2228)] = 6209, + [SMALL_STATE(2229)] = 6220, + [SMALL_STATE(2230)] = 6231, + [SMALL_STATE(2231)] = 6242, + [SMALL_STATE(2232)] = 6253, + [SMALL_STATE(2233)] = 6264, + [SMALL_STATE(2234)] = 6275, + [SMALL_STATE(2235)] = 6286, + [SMALL_STATE(2236)] = 6297, + [SMALL_STATE(2237)] = 6308, + [SMALL_STATE(2238)] = 6319, + [SMALL_STATE(2239)] = 6330, + [SMALL_STATE(2240)] = 6341, + [SMALL_STATE(2241)] = 6352, + [SMALL_STATE(2242)] = 6363, + [SMALL_STATE(2243)] = 6374, + [SMALL_STATE(2244)] = 6385, + [SMALL_STATE(2245)] = 6396, + [SMALL_STATE(2246)] = 6407, + [SMALL_STATE(2247)] = 6418, + [SMALL_STATE(2248)] = 6429, + [SMALL_STATE(2249)] = 6440, + [SMALL_STATE(2250)] = 6451, + [SMALL_STATE(2251)] = 6462, + [SMALL_STATE(2252)] = 6473, + [SMALL_STATE(2253)] = 6484, + [SMALL_STATE(2254)] = 6495, + [SMALL_STATE(2255)] = 6506, + [SMALL_STATE(2256)] = 6517, + [SMALL_STATE(2257)] = 6528, + [SMALL_STATE(2258)] = 6539, + [SMALL_STATE(2259)] = 6550, + [SMALL_STATE(2260)] = 6561, + [SMALL_STATE(2261)] = 6572, + [SMALL_STATE(2262)] = 6583, + [SMALL_STATE(2263)] = 6594, + [SMALL_STATE(2264)] = 6605, + [SMALL_STATE(2265)] = 6616, + [SMALL_STATE(2266)] = 6627, + [SMALL_STATE(2267)] = 6638, + [SMALL_STATE(2268)] = 6649, + [SMALL_STATE(2269)] = 6660, + [SMALL_STATE(2270)] = 6671, + [SMALL_STATE(2271)] = 6682, + [SMALL_STATE(2272)] = 6693, + [SMALL_STATE(2273)] = 6704, + [SMALL_STATE(2274)] = 6715, + [SMALL_STATE(2275)] = 6726, + [SMALL_STATE(2276)] = 6737, + [SMALL_STATE(2277)] = 6748, + [SMALL_STATE(2278)] = 6759, + [SMALL_STATE(2279)] = 6770, + [SMALL_STATE(2280)] = 6781, + [SMALL_STATE(2281)] = 6792, + [SMALL_STATE(2282)] = 6803, + [SMALL_STATE(2283)] = 6814, + [SMALL_STATE(2284)] = 6825, + [SMALL_STATE(2285)] = 6836, + [SMALL_STATE(2286)] = 6847, + [SMALL_STATE(2287)] = 6858, + [SMALL_STATE(2288)] = 6869, + [SMALL_STATE(2289)] = 6880, + [SMALL_STATE(2290)] = 6891, + [SMALL_STATE(2291)] = 6902, + [SMALL_STATE(2292)] = 6913, + [SMALL_STATE(2293)] = 6924, + [SMALL_STATE(2294)] = 6935, + [SMALL_STATE(2295)] = 6946, + [SMALL_STATE(2296)] = 6957, + [SMALL_STATE(2297)] = 6968, + [SMALL_STATE(2298)] = 6979, + [SMALL_STATE(2299)] = 6990, + [SMALL_STATE(2300)] = 7001, + [SMALL_STATE(2301)] = 7012, + [SMALL_STATE(2302)] = 7023, + [SMALL_STATE(2303)] = 7034, + [SMALL_STATE(2304)] = 7045, + [SMALL_STATE(2305)] = 7056, + [SMALL_STATE(2306)] = 7067, + [SMALL_STATE(2307)] = 7078, + [SMALL_STATE(2308)] = 7089, + [SMALL_STATE(2309)] = 7100, + [SMALL_STATE(2310)] = 7111, + [SMALL_STATE(2311)] = 7122, + [SMALL_STATE(2312)] = 7133, + [SMALL_STATE(2313)] = 7144, + [SMALL_STATE(2314)] = 7155, + [SMALL_STATE(2315)] = 7166, + [SMALL_STATE(2316)] = 7177, + [SMALL_STATE(2317)] = 7188, + [SMALL_STATE(2318)] = 7199, + [SMALL_STATE(2319)] = 7210, + [SMALL_STATE(2320)] = 7221, + [SMALL_STATE(2321)] = 7232, + [SMALL_STATE(2322)] = 7243, + [SMALL_STATE(2323)] = 7254, + [SMALL_STATE(2324)] = 7265, + [SMALL_STATE(2325)] = 7276, + [SMALL_STATE(2326)] = 7287, + [SMALL_STATE(2327)] = 7298, + [SMALL_STATE(2328)] = 7309, + [SMALL_STATE(2329)] = 7320, + [SMALL_STATE(2330)] = 7331, + [SMALL_STATE(2331)] = 7342, + [SMALL_STATE(2332)] = 7353, + [SMALL_STATE(2333)] = 7364, + [SMALL_STATE(2334)] = 7375, + [SMALL_STATE(2335)] = 7386, + [SMALL_STATE(2336)] = 7397, + [SMALL_STATE(2337)] = 7408, + [SMALL_STATE(2338)] = 7419, + [SMALL_STATE(2339)] = 7430, + [SMALL_STATE(2340)] = 7441, + [SMALL_STATE(2341)] = 7452, + [SMALL_STATE(2342)] = 7463, + [SMALL_STATE(2343)] = 7474, + [SMALL_STATE(2344)] = 7485, + [SMALL_STATE(2345)] = 7496, + [SMALL_STATE(2346)] = 7507, + [SMALL_STATE(2347)] = 7518, + [SMALL_STATE(2348)] = 7529, + [SMALL_STATE(2349)] = 7540, + [SMALL_STATE(2350)] = 7551, + [SMALL_STATE(2351)] = 7562, + [SMALL_STATE(2352)] = 7573, + [SMALL_STATE(2353)] = 7584, + [SMALL_STATE(2354)] = 7595, + [SMALL_STATE(2355)] = 7606, + [SMALL_STATE(2356)] = 7617, + [SMALL_STATE(2357)] = 7628, + [SMALL_STATE(2358)] = 7639, + [SMALL_STATE(2359)] = 7650, + [SMALL_STATE(2360)] = 7661, + [SMALL_STATE(2361)] = 7672, + [SMALL_STATE(2362)] = 7683, + [SMALL_STATE(2363)] = 7694, + [SMALL_STATE(2364)] = 7705, + [SMALL_STATE(2365)] = 7716, + [SMALL_STATE(2366)] = 7727, + [SMALL_STATE(2367)] = 7738, + [SMALL_STATE(2368)] = 7749, + [SMALL_STATE(2369)] = 7760, + [SMALL_STATE(2370)] = 7771, + [SMALL_STATE(2371)] = 7782, + [SMALL_STATE(2372)] = 7793, + [SMALL_STATE(2373)] = 7804, + [SMALL_STATE(2374)] = 7815, + [SMALL_STATE(2375)] = 7826, + [SMALL_STATE(2376)] = 7837, + [SMALL_STATE(2377)] = 7848, + [SMALL_STATE(2378)] = 7859, + [SMALL_STATE(2379)] = 7870, + [SMALL_STATE(2380)] = 7881, + [SMALL_STATE(2381)] = 7892, + [SMALL_STATE(2382)] = 7903, + [SMALL_STATE(2383)] = 7914, + [SMALL_STATE(2384)] = 7925, + [SMALL_STATE(2385)] = 7936, + [SMALL_STATE(2386)] = 7947, + [SMALL_STATE(2387)] = 7958, + [SMALL_STATE(2388)] = 7969, + [SMALL_STATE(2389)] = 7980, + [SMALL_STATE(2390)] = 7991, + [SMALL_STATE(2391)] = 8002, + [SMALL_STATE(2392)] = 8013, + [SMALL_STATE(2393)] = 8024, + [SMALL_STATE(2394)] = 8035, + [SMALL_STATE(2395)] = 8046, + [SMALL_STATE(2396)] = 8057, + [SMALL_STATE(2397)] = 8068, + [SMALL_STATE(2398)] = 8079, + [SMALL_STATE(2399)] = 8090, + [SMALL_STATE(2400)] = 8101, + [SMALL_STATE(2401)] = 8112, + [SMALL_STATE(2402)] = 8123, + [SMALL_STATE(2403)] = 8134, + [SMALL_STATE(2404)] = 8145, + [SMALL_STATE(2405)] = 8156, + [SMALL_STATE(2406)] = 8167, + [SMALL_STATE(2407)] = 8178, + [SMALL_STATE(2408)] = 8189, + [SMALL_STATE(2409)] = 8200, + [SMALL_STATE(2410)] = 8211, + [SMALL_STATE(2411)] = 8222, + [SMALL_STATE(2412)] = 8233, + [SMALL_STATE(2413)] = 8244, + [SMALL_STATE(2414)] = 8255, + [SMALL_STATE(2415)] = 8266, + [SMALL_STATE(2416)] = 8277, + [SMALL_STATE(2417)] = 8288, + [SMALL_STATE(2418)] = 8299, + [SMALL_STATE(2419)] = 8310, + [SMALL_STATE(2420)] = 8321, + [SMALL_STATE(2421)] = 8332, + [SMALL_STATE(2422)] = 8343, + [SMALL_STATE(2423)] = 8354, + [SMALL_STATE(2424)] = 8365, + [SMALL_STATE(2425)] = 8376, + [SMALL_STATE(2426)] = 8387, + [SMALL_STATE(2427)] = 8398, + [SMALL_STATE(2428)] = 8409, + [SMALL_STATE(2429)] = 8420, + [SMALL_STATE(2430)] = 8431, + [SMALL_STATE(2431)] = 8442, + [SMALL_STATE(2432)] = 8453, + [SMALL_STATE(2433)] = 8464, + [SMALL_STATE(2434)] = 8475, + [SMALL_STATE(2435)] = 8486, + [SMALL_STATE(2436)] = 8497, + [SMALL_STATE(2437)] = 8508, + [SMALL_STATE(2438)] = 8519, + [SMALL_STATE(2439)] = 8530, + [SMALL_STATE(2440)] = 8541, + [SMALL_STATE(2441)] = 8552, + [SMALL_STATE(2442)] = 8563, + [SMALL_STATE(2443)] = 8574, + [SMALL_STATE(2444)] = 8585, + [SMALL_STATE(2445)] = 8596, + [SMALL_STATE(2446)] = 8607, + [SMALL_STATE(2447)] = 8618, + [SMALL_STATE(2448)] = 8629, + [SMALL_STATE(2449)] = 8640, + [SMALL_STATE(2450)] = 8651, + [SMALL_STATE(2451)] = 8662, + [SMALL_STATE(2452)] = 8673, + [SMALL_STATE(2453)] = 8684, + [SMALL_STATE(2454)] = 8695, + [SMALL_STATE(2455)] = 8706, + [SMALL_STATE(2456)] = 8717, + [SMALL_STATE(2457)] = 8728, + [SMALL_STATE(2458)] = 8739, + [SMALL_STATE(2459)] = 8750, + [SMALL_STATE(2460)] = 8761, + [SMALL_STATE(2461)] = 8772, + [SMALL_STATE(2462)] = 8783, + [SMALL_STATE(2463)] = 8794, + [SMALL_STATE(2464)] = 8805, + [SMALL_STATE(2465)] = 8816, + [SMALL_STATE(2466)] = 8827, + [SMALL_STATE(2467)] = 8838, + [SMALL_STATE(2468)] = 8849, + [SMALL_STATE(2469)] = 8860, + [SMALL_STATE(2470)] = 8871, + [SMALL_STATE(2471)] = 8882, + [SMALL_STATE(2472)] = 8893, + [SMALL_STATE(2473)] = 8904, + [SMALL_STATE(2474)] = 8915, + [SMALL_STATE(2475)] = 8926, + [SMALL_STATE(2476)] = 8937, + [SMALL_STATE(2477)] = 8948, + [SMALL_STATE(2478)] = 8959, + [SMALL_STATE(2479)] = 8970, + [SMALL_STATE(2480)] = 8981, + [SMALL_STATE(2481)] = 8992, + [SMALL_STATE(2482)] = 9003, + [SMALL_STATE(2483)] = 9014, + [SMALL_STATE(2484)] = 9025, + [SMALL_STATE(2485)] = 9036, + [SMALL_STATE(2486)] = 9047, + [SMALL_STATE(2487)] = 9058, + [SMALL_STATE(2488)] = 9069, + [SMALL_STATE(2489)] = 9080, + [SMALL_STATE(2490)] = 9091, + [SMALL_STATE(2491)] = 9102, + [SMALL_STATE(2492)] = 9113, + [SMALL_STATE(2493)] = 9124, + [SMALL_STATE(2494)] = 9135, + [SMALL_STATE(2495)] = 9146, + [SMALL_STATE(2496)] = 9157, + [SMALL_STATE(2497)] = 9168, + [SMALL_STATE(2498)] = 9179, + [SMALL_STATE(2499)] = 9190, + [SMALL_STATE(2500)] = 9201, + [SMALL_STATE(2501)] = 9212, + [SMALL_STATE(2502)] = 9221, + [SMALL_STATE(2503)] = 9232, + [SMALL_STATE(2504)] = 9243, + [SMALL_STATE(2505)] = 9254, + [SMALL_STATE(2506)] = 9265, + [SMALL_STATE(2507)] = 9276, + [SMALL_STATE(2508)] = 9287, + [SMALL_STATE(2509)] = 9298, + [SMALL_STATE(2510)] = 9309, + [SMALL_STATE(2511)] = 9320, + [SMALL_STATE(2512)] = 9331, + [SMALL_STATE(2513)] = 9342, + [SMALL_STATE(2514)] = 9353, + [SMALL_STATE(2515)] = 9364, + [SMALL_STATE(2516)] = 9375, + [SMALL_STATE(2517)] = 9386, + [SMALL_STATE(2518)] = 9397, + [SMALL_STATE(2519)] = 9408, + [SMALL_STATE(2520)] = 9419, + [SMALL_STATE(2521)] = 9430, + [SMALL_STATE(2522)] = 9441, + [SMALL_STATE(2523)] = 9452, + [SMALL_STATE(2524)] = 9463, + [SMALL_STATE(2525)] = 9474, + [SMALL_STATE(2526)] = 9485, + [SMALL_STATE(2527)] = 9496, + [SMALL_STATE(2528)] = 9507, + [SMALL_STATE(2529)] = 9518, + [SMALL_STATE(2530)] = 9529, + [SMALL_STATE(2531)] = 9540, + [SMALL_STATE(2532)] = 9551, + [SMALL_STATE(2533)] = 9562, + [SMALL_STATE(2534)] = 9573, + [SMALL_STATE(2535)] = 9584, + [SMALL_STATE(2536)] = 9595, + [SMALL_STATE(2537)] = 9606, + [SMALL_STATE(2538)] = 9617, + [SMALL_STATE(2539)] = 9628, + [SMALL_STATE(2540)] = 9639, + [SMALL_STATE(2541)] = 9650, + [SMALL_STATE(2542)] = 9661, + [SMALL_STATE(2543)] = 9672, + [SMALL_STATE(2544)] = 9683, + [SMALL_STATE(2545)] = 9694, + [SMALL_STATE(2546)] = 9705, + [SMALL_STATE(2547)] = 9716, + [SMALL_STATE(2548)] = 9727, + [SMALL_STATE(2549)] = 9738, + [SMALL_STATE(2550)] = 9749, + [SMALL_STATE(2551)] = 9760, + [SMALL_STATE(2552)] = 9771, + [SMALL_STATE(2553)] = 9782, + [SMALL_STATE(2554)] = 9793, + [SMALL_STATE(2555)] = 9804, + [SMALL_STATE(2556)] = 9815, + [SMALL_STATE(2557)] = 9826, + [SMALL_STATE(2558)] = 9837, + [SMALL_STATE(2559)] = 9848, + [SMALL_STATE(2560)] = 9859, + [SMALL_STATE(2561)] = 9870, + [SMALL_STATE(2562)] = 9881, + [SMALL_STATE(2563)] = 9892, + [SMALL_STATE(2564)] = 9903, + [SMALL_STATE(2565)] = 9912, + [SMALL_STATE(2566)] = 9923, + [SMALL_STATE(2567)] = 9934, + [SMALL_STATE(2568)] = 9945, + [SMALL_STATE(2569)] = 9956, + [SMALL_STATE(2570)] = 9967, + [SMALL_STATE(2571)] = 9978, + [SMALL_STATE(2572)] = 9989, + [SMALL_STATE(2573)] = 10000, + [SMALL_STATE(2574)] = 10011, + [SMALL_STATE(2575)] = 10022, + [SMALL_STATE(2576)] = 10033, + [SMALL_STATE(2577)] = 10044, + [SMALL_STATE(2578)] = 10055, + [SMALL_STATE(2579)] = 10066, + [SMALL_STATE(2580)] = 10077, + [SMALL_STATE(2581)] = 10088, + [SMALL_STATE(2582)] = 10099, + [SMALL_STATE(2583)] = 10110, + [SMALL_STATE(2584)] = 10121, + [SMALL_STATE(2585)] = 10132, + [SMALL_STATE(2586)] = 10143, + [SMALL_STATE(2587)] = 10154, + [SMALL_STATE(2588)] = 10165, + [SMALL_STATE(2589)] = 10176, + [SMALL_STATE(2590)] = 10187, + [SMALL_STATE(2591)] = 10198, + [SMALL_STATE(2592)] = 10209, + [SMALL_STATE(2593)] = 10220, + [SMALL_STATE(2594)] = 10231, + [SMALL_STATE(2595)] = 10242, + [SMALL_STATE(2596)] = 10253, + [SMALL_STATE(2597)] = 10264, + [SMALL_STATE(2598)] = 10275, + [SMALL_STATE(2599)] = 10286, + [SMALL_STATE(2600)] = 10297, + [SMALL_STATE(2601)] = 10308, + [SMALL_STATE(2602)] = 10319, + [SMALL_STATE(2603)] = 10330, + [SMALL_STATE(2604)] = 10341, + [SMALL_STATE(2605)] = 10352, + [SMALL_STATE(2606)] = 10363, + [SMALL_STATE(2607)] = 10374, + [SMALL_STATE(2608)] = 10385, + [SMALL_STATE(2609)] = 10396, + [SMALL_STATE(2610)] = 10407, + [SMALL_STATE(2611)] = 10418, + [SMALL_STATE(2612)] = 10429, + [SMALL_STATE(2613)] = 10440, + [SMALL_STATE(2614)] = 10451, + [SMALL_STATE(2615)] = 10462, + [SMALL_STATE(2616)] = 10473, + [SMALL_STATE(2617)] = 10484, + [SMALL_STATE(2618)] = 10495, + [SMALL_STATE(2619)] = 10506, + [SMALL_STATE(2620)] = 10517, + [SMALL_STATE(2621)] = 10528, + [SMALL_STATE(2622)] = 10539, + [SMALL_STATE(2623)] = 10550, + [SMALL_STATE(2624)] = 10561, + [SMALL_STATE(2625)] = 10572, + [SMALL_STATE(2626)] = 10583, + [SMALL_STATE(2627)] = 10594, + [SMALL_STATE(2628)] = 10605, + [SMALL_STATE(2629)] = 10616, + [SMALL_STATE(2630)] = 10627, + [SMALL_STATE(2631)] = 10638, + [SMALL_STATE(2632)] = 10649, + [SMALL_STATE(2633)] = 10660, + [SMALL_STATE(2634)] = 10671, + [SMALL_STATE(2635)] = 10682, + [SMALL_STATE(2636)] = 10693, + [SMALL_STATE(2637)] = 10704, + [SMALL_STATE(2638)] = 10715, + [SMALL_STATE(2639)] = 10726, + [SMALL_STATE(2640)] = 10737, + [SMALL_STATE(2641)] = 10748, + [SMALL_STATE(2642)] = 10759, + [SMALL_STATE(2643)] = 10770, + [SMALL_STATE(2644)] = 10781, + [SMALL_STATE(2645)] = 10792, + [SMALL_STATE(2646)] = 10803, + [SMALL_STATE(2647)] = 10814, + [SMALL_STATE(2648)] = 10825, + [SMALL_STATE(2649)] = 10836, + [SMALL_STATE(2650)] = 10847, + [SMALL_STATE(2651)] = 10858, + [SMALL_STATE(2652)] = 10869, + [SMALL_STATE(2653)] = 10880, + [SMALL_STATE(2654)] = 10891, + [SMALL_STATE(2655)] = 10902, + [SMALL_STATE(2656)] = 10913, + [SMALL_STATE(2657)] = 10924, + [SMALL_STATE(2658)] = 10935, + [SMALL_STATE(2659)] = 10946, + [SMALL_STATE(2660)] = 10957, + [SMALL_STATE(2661)] = 10968, + [SMALL_STATE(2662)] = 10979, + [SMALL_STATE(2663)] = 10990, + [SMALL_STATE(2664)] = 11001, + [SMALL_STATE(2665)] = 11012, + [SMALL_STATE(2666)] = 11023, + [SMALL_STATE(2667)] = 11034, + [SMALL_STATE(2668)] = 11045, + [SMALL_STATE(2669)] = 11056, + [SMALL_STATE(2670)] = 11067, + [SMALL_STATE(2671)] = 11078, + [SMALL_STATE(2672)] = 11089, + [SMALL_STATE(2673)] = 11100, + [SMALL_STATE(2674)] = 11111, + [SMALL_STATE(2675)] = 11122, + [SMALL_STATE(2676)] = 11133, + [SMALL_STATE(2677)] = 11144, + [SMALL_STATE(2678)] = 11155, + [SMALL_STATE(2679)] = 11166, + [SMALL_STATE(2680)] = 11177, + [SMALL_STATE(2681)] = 11188, + [SMALL_STATE(2682)] = 11199, + [SMALL_STATE(2683)] = 11210, + [SMALL_STATE(2684)] = 11221, + [SMALL_STATE(2685)] = 11232, + [SMALL_STATE(2686)] = 11243, + [SMALL_STATE(2687)] = 11254, + [SMALL_STATE(2688)] = 11265, + [SMALL_STATE(2689)] = 11276, + [SMALL_STATE(2690)] = 11287, + [SMALL_STATE(2691)] = 11298, + [SMALL_STATE(2692)] = 11309, + [SMALL_STATE(2693)] = 11320, + [SMALL_STATE(2694)] = 11331, + [SMALL_STATE(2695)] = 11342, + [SMALL_STATE(2696)] = 11353, + [SMALL_STATE(2697)] = 11364, + [SMALL_STATE(2698)] = 11375, + [SMALL_STATE(2699)] = 11383, + [SMALL_STATE(2700)] = 11391, + [SMALL_STATE(2701)] = 11399, + [SMALL_STATE(2702)] = 11407, + [SMALL_STATE(2703)] = 11415, + [SMALL_STATE(2704)] = 11423, + [SMALL_STATE(2705)] = 11431, + [SMALL_STATE(2706)] = 11439, + [SMALL_STATE(2707)] = 11447, + [SMALL_STATE(2708)] = 11455, + [SMALL_STATE(2709)] = 11463, + [SMALL_STATE(2710)] = 11471, + [SMALL_STATE(2711)] = 11479, + [SMALL_STATE(2712)] = 11487, + [SMALL_STATE(2713)] = 11495, + [SMALL_STATE(2714)] = 11503, + [SMALL_STATE(2715)] = 11511, + [SMALL_STATE(2716)] = 11519, + [SMALL_STATE(2717)] = 11527, + [SMALL_STATE(2718)] = 11535, + [SMALL_STATE(2719)] = 11543, + [SMALL_STATE(2720)] = 11551, + [SMALL_STATE(2721)] = 11559, + [SMALL_STATE(2722)] = 11567, + [SMALL_STATE(2723)] = 11575, + [SMALL_STATE(2724)] = 11583, + [SMALL_STATE(2725)] = 11591, + [SMALL_STATE(2726)] = 11599, + [SMALL_STATE(2727)] = 11607, + [SMALL_STATE(2728)] = 11615, + [SMALL_STATE(2729)] = 11623, + [SMALL_STATE(2730)] = 11631, + [SMALL_STATE(2731)] = 11639, + [SMALL_STATE(2732)] = 11647, + [SMALL_STATE(2733)] = 11655, + [SMALL_STATE(2734)] = 11663, + [SMALL_STATE(2735)] = 11671, + [SMALL_STATE(2736)] = 11679, + [SMALL_STATE(2737)] = 11687, + [SMALL_STATE(2738)] = 11695, + [SMALL_STATE(2739)] = 11703, + [SMALL_STATE(2740)] = 11711, + [SMALL_STATE(2741)] = 11719, + [SMALL_STATE(2742)] = 11727, + [SMALL_STATE(2743)] = 11735, + [SMALL_STATE(2744)] = 11743, + [SMALL_STATE(2745)] = 11751, + [SMALL_STATE(2746)] = 11759, + [SMALL_STATE(2747)] = 11767, + [SMALL_STATE(2748)] = 11775, + [SMALL_STATE(2749)] = 11783, + [SMALL_STATE(2750)] = 11791, + [SMALL_STATE(2751)] = 11799, + [SMALL_STATE(2752)] = 11807, + [SMALL_STATE(2753)] = 11815, + [SMALL_STATE(2754)] = 11823, + [SMALL_STATE(2755)] = 11831, + [SMALL_STATE(2756)] = 11839, + [SMALL_STATE(2757)] = 11847, + [SMALL_STATE(2758)] = 11855, + [SMALL_STATE(2759)] = 11863, + [SMALL_STATE(2760)] = 11871, + [SMALL_STATE(2761)] = 11879, + [SMALL_STATE(2762)] = 11887, + [SMALL_STATE(2763)] = 11895, + [SMALL_STATE(2764)] = 11903, + [SMALL_STATE(2765)] = 11911, + [SMALL_STATE(2766)] = 11919, + [SMALL_STATE(2767)] = 11927, + [SMALL_STATE(2768)] = 11935, + [SMALL_STATE(2769)] = 11943, + [SMALL_STATE(2770)] = 11951, + [SMALL_STATE(2771)] = 11959, + [SMALL_STATE(2772)] = 11967, + [SMALL_STATE(2773)] = 11975, + [SMALL_STATE(2774)] = 11983, + [SMALL_STATE(2775)] = 11991, + [SMALL_STATE(2776)] = 11999, + [SMALL_STATE(2777)] = 12007, + [SMALL_STATE(2778)] = 12015, + [SMALL_STATE(2779)] = 12023, + [SMALL_STATE(2780)] = 12031, + [SMALL_STATE(2781)] = 12039, + [SMALL_STATE(2782)] = 12047, + [SMALL_STATE(2783)] = 12055, + [SMALL_STATE(2784)] = 12063, + [SMALL_STATE(2785)] = 12071, + [SMALL_STATE(2786)] = 12079, + [SMALL_STATE(2787)] = 12087, + [SMALL_STATE(2788)] = 12095, + [SMALL_STATE(2789)] = 12103, + [SMALL_STATE(2790)] = 12111, + [SMALL_STATE(2791)] = 12119, + [SMALL_STATE(2792)] = 12127, + [SMALL_STATE(2793)] = 12135, + [SMALL_STATE(2794)] = 12143, + [SMALL_STATE(2795)] = 12151, + [SMALL_STATE(2796)] = 12159, + [SMALL_STATE(2797)] = 12167, + [SMALL_STATE(2798)] = 12175, + [SMALL_STATE(2799)] = 12183, + [SMALL_STATE(2800)] = 12191, + [SMALL_STATE(2801)] = 12199, + [SMALL_STATE(2802)] = 12207, + [SMALL_STATE(2803)] = 12215, + [SMALL_STATE(2804)] = 12223, + [SMALL_STATE(2805)] = 12231, + [SMALL_STATE(2806)] = 12239, + [SMALL_STATE(2807)] = 12247, + [SMALL_STATE(2808)] = 12255, + [SMALL_STATE(2809)] = 12263, + [SMALL_STATE(2810)] = 12271, + [SMALL_STATE(2811)] = 12279, + [SMALL_STATE(2812)] = 12287, + [SMALL_STATE(2813)] = 12295, + [SMALL_STATE(2814)] = 12303, + [SMALL_STATE(2815)] = 12311, + [SMALL_STATE(2816)] = 12319, + [SMALL_STATE(2817)] = 12327, + [SMALL_STATE(2818)] = 12335, + [SMALL_STATE(2819)] = 12343, + [SMALL_STATE(2820)] = 12351, + [SMALL_STATE(2821)] = 12359, + [SMALL_STATE(2822)] = 12367, + [SMALL_STATE(2823)] = 12375, + [SMALL_STATE(2824)] = 12383, + [SMALL_STATE(2825)] = 12391, + [SMALL_STATE(2826)] = 12399, + [SMALL_STATE(2827)] = 12407, + [SMALL_STATE(2828)] = 12415, + [SMALL_STATE(2829)] = 12423, + [SMALL_STATE(2830)] = 12431, + [SMALL_STATE(2831)] = 12439, + [SMALL_STATE(2832)] = 12447, + [SMALL_STATE(2833)] = 12455, + [SMALL_STATE(2834)] = 12463, + [SMALL_STATE(2835)] = 12471, + [SMALL_STATE(2836)] = 12479, + [SMALL_STATE(2837)] = 12487, + [SMALL_STATE(2838)] = 12495, + [SMALL_STATE(2839)] = 12503, + [SMALL_STATE(2840)] = 12511, + [SMALL_STATE(2841)] = 12519, + [SMALL_STATE(2842)] = 12527, + [SMALL_STATE(2843)] = 12535, + [SMALL_STATE(2844)] = 12543, + [SMALL_STATE(2845)] = 12551, + [SMALL_STATE(2846)] = 12559, + [SMALL_STATE(2847)] = 12567, + [SMALL_STATE(2848)] = 12575, + [SMALL_STATE(2849)] = 12583, + [SMALL_STATE(2850)] = 12591, + [SMALL_STATE(2851)] = 12599, + [SMALL_STATE(2852)] = 12607, + [SMALL_STATE(2853)] = 12615, + [SMALL_STATE(2854)] = 12623, + [SMALL_STATE(2855)] = 12631, + [SMALL_STATE(2856)] = 12639, + [SMALL_STATE(2857)] = 12647, + [SMALL_STATE(2858)] = 12655, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -482461,2698 +537726,3010 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), - [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(281), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(538), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(651), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(652), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(663), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(663), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(73), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(776), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(776), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(774), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1675), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1676), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2317), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1686), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2291), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1687), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1688), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1689), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2286), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2276), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1698), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2236), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2234), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2234), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2213), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2213), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2470), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2471), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2082), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2191), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2183), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1741), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1742), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1745), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1747), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1747), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1751), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1768), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2129), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(429), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(667), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(769), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(769), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1196), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1196), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1195), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(70), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(72), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1644), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1645), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2399), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2398), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1649), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1632), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1651), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2397), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2293), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1653), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1654), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1654), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2396), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2394), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2394), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2294), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2294), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2295), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2410), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2444), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2177), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1658), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1679), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1659), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1660), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1660), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1673), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1696), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2370), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2369), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2368), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(647), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(665), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(830), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(830), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(741), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(741), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(835), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(835), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(83), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(986), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(986), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(983), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(86), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(86), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(96), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1743), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1744), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2156), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1746), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2155), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1748), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1749), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1750), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2154), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1752), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1753), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1753), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2153), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2149), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2149), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2326), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2326), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2327), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2328), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2328), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2488), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2435), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2140), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2139), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2330), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1757), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1638), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1758), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1759), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1759), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1642), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1650), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2147), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2143), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2142), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(670), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(701), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(701), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(709), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(709), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(711), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(711), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(93), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1103), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1103), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1104), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(94), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(115), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1692), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1693), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1941), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1694), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1943), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1697), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1700), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1701), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1947), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2383), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1705), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1950), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1951), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1951), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2384), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2384), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2385), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2541), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2409), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2089), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2088), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2388), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1709), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1662), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1714), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1716), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1716), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1665), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1775), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1956), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1957), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1958), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(348), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(822), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(822), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(824), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(824), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(825), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(825), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(826), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(826), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(827), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(827), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(828), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(828), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(92), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(879), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(879), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(880), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1668), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1667), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1864), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1666), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1865), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1663), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1661), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1656), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1866), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2354), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1640), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1640), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1867), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1868), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1868), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2355), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2355), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2356), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2357), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2357), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2554), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2428), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2098), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2097), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2359), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1637), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1641), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1636), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1635), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1635), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1655), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1769), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1870), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1871), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1872), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(281), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(538), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(192), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(73), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(776), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(776), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(774), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(60), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(89), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(89), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(105), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1611), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1675), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1676), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2317), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1686), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2291), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1687), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1688), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1689), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2286), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2276), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1698), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2236), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2234), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2234), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2233), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2213), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2213), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2470), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2471), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2082), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2191), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2183), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1741), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1742), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1745), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1747), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1747), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1751), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1768), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2131), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2130), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2129), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(348), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(656), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(196), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(92), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(879), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(879), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(880), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(71), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(41), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(41), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(48), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1668), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1864), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1865), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1663), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1661), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1656), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1866), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1640), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1640), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1867), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1868), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1868), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2355), - [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2355), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2356), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2357), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2357), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2554), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2428), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2098), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2097), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2359), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1637), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1641), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1636), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1635), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1635), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1655), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1769), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1870), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1871), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1872), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(429), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(667), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(201), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(65), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1196), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1196), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1195), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(70), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(39), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(39), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(72), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1644), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1645), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2399), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1647), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2398), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1649), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1632), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1651), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2397), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2293), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1653), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1654), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1654), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2396), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2394), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2394), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2294), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2294), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2295), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2410), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2444), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2168), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1658), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1679), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1659), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1660), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1660), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1696), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2370), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2369), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2368), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(556), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(670), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(202), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(93), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1103), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1103), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1104), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(94), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(108), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(108), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(115), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1692), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1693), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1941), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1694), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1943), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1697), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1700), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1701), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1947), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2383), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1705), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1706), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1706), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1950), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1951), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1951), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2384), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2384), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2385), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2386), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2386), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2541), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2409), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2089), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2088), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2388), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1709), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1662), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1714), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1716), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1716), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1665), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1775), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1956), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1957), - [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1958), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(647), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(665), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(83), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(986), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(986), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(983), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(86), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(86), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(96), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1743), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1744), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2156), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1746), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2155), - [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1748), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1749), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1750), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2154), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1752), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1753), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1753), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2153), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2149), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2149), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2326), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2326), - [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2327), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2328), - [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2328), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2488), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2435), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2140), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2139), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2330), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1757), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1638), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1758), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1759), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1759), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1642), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1650), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2147), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2143), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2142), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(281), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(538), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(776), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(776), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(774), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1675), - [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1676), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2317), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1686), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2291), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1688), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1689), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2286), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2276), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1698), - [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2236), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2235), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2235), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2234), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2234), - [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2233), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2213), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2213), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2470), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2471), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2082), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2191), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2183), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1741), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1742), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1745), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1747), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1747), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1751), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1768), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2131), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2130), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(348), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(656), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(879), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(879), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(880), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1668), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1667), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1864), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1666), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1865), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1663), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1661), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1656), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1866), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2354), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1640), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1640), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1867), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1868), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1868), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2355), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2355), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2356), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2357), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2357), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2554), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2428), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2098), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2097), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2359), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1637), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1641), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1636), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1635), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1635), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1655), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1769), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1870), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1871), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(429), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(667), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1196), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1196), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1195), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1644), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1645), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2399), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1647), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2398), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1649), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1632), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1651), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2397), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2293), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1653), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2396), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2394), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2394), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2294), - [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2294), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2295), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2410), - [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2444), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2177), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2168), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1658), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1679), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1659), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1660), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1660), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1673), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1696), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2370), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2369), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(556), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(670), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1103), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1103), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1104), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1692), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1693), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1941), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1694), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1943), - [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1697), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1700), - [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1701), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1947), - [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2383), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1705), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1706), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1706), - [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1950), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1951), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1951), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2384), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2384), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2385), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2386), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2386), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2541), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2409), - [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2089), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2088), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2388), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1709), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1662), - [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1714), - [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1716), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1716), - [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1665), - [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1775), - [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1956), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1957), - [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(647), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(665), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(986), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(986), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(983), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1743), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1744), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2156), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1746), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2155), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1748), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1749), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1750), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2154), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1752), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1753), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1753), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2153), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2149), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2149), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2326), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2326), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2327), - [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2328), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2328), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2488), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2435), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2140), - [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2139), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2330), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1757), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1638), - [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1758), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1759), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1759), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1642), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1650), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2147), - [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2143), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1315), - [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1320), - [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(238), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), - [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(220), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(106), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1437), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1437), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1438), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(102), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(101), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(101), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(100), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1611), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1767), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1766), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2135), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1765), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2137), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1764), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1763), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1762), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2141), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2301), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1761), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1760), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1760), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2144), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2145), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2145), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2300), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2300), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2299), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2297), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2297), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2490), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2445), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2019), - [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2009), - [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2290), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1756), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1680), - [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1755), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1754), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1754), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1722), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2150), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2151), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2055), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1315), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1320), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(240), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(232), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), - [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(106), - [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1437), - [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1437), - [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1438), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(102), - [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(101), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(101), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(100), - [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1611), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1767), - [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1766), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2135), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1765), - [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2137), - [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1764), - [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1763), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1762), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2141), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2301), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1761), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1760), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1760), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2144), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2145), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2145), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2300), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2300), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2299), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2297), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2297), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2490), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2445), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2019), - [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2009), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2290), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1756), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1680), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1755), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1754), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1754), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1722), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2150), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2151), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2055), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1322), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1325), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(242), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(224), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(47), - [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1465), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1465), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1473), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(46), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(45), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(45), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(54), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1721), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1720), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2216), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1719), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2218), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1718), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1717), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1715), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2222), - [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2250), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1713), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1712), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1712), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2225), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2226), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2226), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2247), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2247), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2246), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2230), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2230), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2467), - [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2465), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1997), - [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1996), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2228), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1710), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1685), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1708), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1707), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1707), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1695), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1691), - [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2231), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2232), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2152), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(244), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(82), - [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(88), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(88), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1322), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1325), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(47), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), - [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1465), - [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1465), - [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1473), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(56), - [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(55), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(55), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(54), - [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1721), - [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1720), - [4147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2216), - [4150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1719), - [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2218), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1718), - [4159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1717), - [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1715), - [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2222), - [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2250), - [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1713), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1712), - [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1712), - [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2225), - [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2226), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2226), - [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2247), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2247), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2246), - [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2230), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2230), - [4204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2467), - [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2465), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1997), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1996), - [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2228), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1710), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1685), - [4225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1708), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1707), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1707), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1695), - [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1691), - [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2231), - [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2232), - [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2152), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1315), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1320), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1437), - [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1437), - [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1438), - [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1767), - [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1766), - [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), - [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1765), - [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2137), - [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1764), - [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1763), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1762), - [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2141), - [4319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2301), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1761), - [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1760), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1760), - [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2144), - [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2145), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2145), - [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), - [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2299), - [4349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), - [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2490), - [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2445), - [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2019), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2009), - [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2290), - [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1756), - [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1680), - [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1755), - [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1754), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1754), - [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1682), - [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1722), - [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2150), - [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2151), - [4397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1322), - [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1325), - [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1465), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1465), - [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1473), - [4412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1721), - [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1720), - [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2216), - [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1719), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2218), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1718), - [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1717), - [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1715), - [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2222), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2250), - [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1713), - [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2225), - [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2226), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2226), - [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2247), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2247), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2246), - [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2230), - [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2230), - [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2467), - [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2465), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1997), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1996), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2228), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1710), - [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1685), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1708), - [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1707), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1707), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1695), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1691), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2231), - [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2232), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(222), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(73), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), - [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(663), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(663), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(660), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(660), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(655), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(655), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(654), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(654), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(653), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(653), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(652), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(652), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(651), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(651), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), - [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(650), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(650), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(228), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(93), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(712), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(712), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(711), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(711), - [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(709), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(709), - [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(706), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(706), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(704), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(704), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(703), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(703), - [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(702), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(702), - [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(701), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(701), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(239), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(83), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(834), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(834), - [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(835), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(835), - [4815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(770), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(770), - [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(741), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(741), - [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(832), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(832), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(831), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(831), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(830), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(830), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(785), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(785), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(769), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(769), - [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(768), - [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(768), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(767), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(767), - [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(766), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(766), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(765), - [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(765), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(764), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(764), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(763), - [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(763), - [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(759), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(759), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(233), - [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(65), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(821), - [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(821), - [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(822), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(822), - [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(823), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(823), - [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(824), - [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(824), - [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(825), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(825), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(826), - [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(826), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(827), - [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(827), - [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(221), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(92), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(828), - [4978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(828), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 55), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 55), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 60), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 60), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 72), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 72), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 40), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 40), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 29), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 29), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 30), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 30), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 30), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 30), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 30), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 30), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 32), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 32), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 33), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 33), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 34), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 34), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 36), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 36), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 24), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 24), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), - [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), - [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 41), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 41), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 43), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 43), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 44), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 44), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), - [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), - [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), - [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), - [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 22), - [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 22), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 80), - [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 80), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 63), - [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 63), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 79), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 79), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 78), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 78), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 77), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 77), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 76), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 76), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 75), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 75), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 74), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 74), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), - [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), - [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 73), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 73), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), - [5379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 71), - [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 71), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 70), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 70), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 67), - [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 67), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 65), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 65), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 61), - [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 61), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), - [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), - [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 57), - [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 57), - [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), - [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 56), - [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 56), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), - [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), - [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 51), - [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 51), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1525), - [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1535), - [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1588), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1588), - [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1569), - [5508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1728), - [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1729), - [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2038), - [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1730), - [5520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2040), - [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1731), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1732), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1733), - [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2044), - [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2366), - [5538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1735), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1736), - [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1736), - [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2047), - [5550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2048), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2048), - [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2365), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2365), - [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2364), - [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2363), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2363), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2516), - [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2416), - [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2042), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2037), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2362), - [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1737), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1672), - [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1740), - [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1703), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1703), - [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1674), - [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1723), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2053), - [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2054), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), - [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 25), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 25), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(238), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(106), - [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(218), - [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(47), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(231), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(57), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1630), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), - [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1613), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 66), SHIFT_REPEAT(2492), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 66), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1290), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 64), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1288), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1296), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 68), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 69), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 48), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 62), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 28), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 52), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 46), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 49), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 26), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 48), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6447] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 63), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), + [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(355), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(492), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(692), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(692), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(698), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(698), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(701), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(701), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(705), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(705), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(793), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(793), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(54), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1795), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2406), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2448), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1856), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1857), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2538), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1861), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2611), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1866), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1870), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1873), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2671), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2530), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1881), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1883), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1883), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2613), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2610), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2610), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2598), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2598), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2597), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2591), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2591), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2732), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2734), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2566), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1896), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1897), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1819), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1903), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1903), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1910), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1917), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2531), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2423), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2518), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(46), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(848), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(848), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(850), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(850), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(887), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(887), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(796), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(796), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(725), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(725), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1134), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1134), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1135), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(109), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2110), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2111), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1825), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1827), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2114), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1837), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2116), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1849), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1850), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1851), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2120), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2657), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1854), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1858), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1858), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2123), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2124), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2124), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2658), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2658), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2659), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2660), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2660), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2849), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2712), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2321), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2319), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2662), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1860), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1844), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1862), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1842), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1828), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2129), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(676), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(688), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(723), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(723), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(722), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(722), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(721), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(721), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(720), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(720), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(719), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(719), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(718), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(718), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(717), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(717), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(47), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1131), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1131), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(45), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(49), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2550), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2548), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1907), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2547), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1909), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2546), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1912), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2542), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2599), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1915), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1916), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1916), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2539), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2539), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2600), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2600), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2601), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2602), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2602), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2747), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2731), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2403), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2395), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2604), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1920), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1848), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1922), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1922), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1847), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1830), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2535), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2532), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2522), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(443), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(110), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(822), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(822), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(817), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(817), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(815), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(815), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1314), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1314), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1354), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2612), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2695), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1872), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1877), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2670), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1878), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2643), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1895), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1889), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1891), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2582), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2567), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1954), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1904), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1904), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2138), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2568), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2568), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2569), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2570), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2570), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2846), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2741), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2438), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2418), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2572), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1864), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1853), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1943), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1951), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1951), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1852), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1831), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2339), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2571), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2108), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(387), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(689), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(888), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(888), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(889), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(889), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(890), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(890), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(891), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(891), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(886), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(886), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(884), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(884), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(883), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(883), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(905), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(905), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(906), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(86), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2317), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2316), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1945), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1942), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2308), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1941), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2302), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1940), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1932), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1928), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2300), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2628), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1926), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1923), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1923), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2297), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2629), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2629), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2630), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2631), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2631), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2805), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2720), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2365), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2364), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2633), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1919), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1846), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1914), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1908), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1908), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1845), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1829), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2284), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2281), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(355), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(492), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(204), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(117), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(793), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(793), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(792), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(54), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(55), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(55), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1795), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2406), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2448), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1856), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1857), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2538), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1861), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2611), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1866), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1870), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1873), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2671), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2530), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1881), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1883), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1883), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2613), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2610), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2610), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2598), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2598), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2597), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2591), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2591), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2732), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2734), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2566), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2565), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2563), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1896), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1897), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1819), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1903), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1903), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1910), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1917), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2531), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2423), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2518), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(443), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(700), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(211), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(78), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1314), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1314), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1354), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(77), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(76), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(76), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(69), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2612), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2695), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1872), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1877), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2670), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1878), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2643), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1895), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1889), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1891), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2582), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2567), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1954), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1904), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1904), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2138), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2184), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2184), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2568), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2568), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2569), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2570), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2570), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2846), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2741), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2438), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2418), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2572), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1864), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1853), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1943), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1951), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1951), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1852), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1831), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2339), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2571), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2108), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(676), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(688), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(215), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(47), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1131), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1131), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1130), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(45), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(48), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(48), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(49), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2550), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2548), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1907), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2547), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1909), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2546), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1911), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1912), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1913), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2542), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2599), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1915), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1916), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1916), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2540), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2539), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2539), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2600), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2600), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2601), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2602), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2602), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2747), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2731), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2403), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2395), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2604), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1920), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1848), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1921), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1922), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1922), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1847), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1830), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2535), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2532), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2522), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(661), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(697), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(216), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1134), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1134), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1135), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(107), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(108), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(108), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(109), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2110), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2111), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1825), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1827), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2114), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1837), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2116), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1849), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1850), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1851), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2120), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2657), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1854), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1858), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1858), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2123), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2124), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2124), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2658), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2658), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2659), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2660), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2660), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2849), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2712), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2321), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2319), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2662), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1860), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1844), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1862), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1842), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1828), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2129), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2130), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2131), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(387), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(689), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(218), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(80), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(905), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(905), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(906), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(81), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(82), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(82), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(86), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2317), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2316), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1945), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1942), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2308), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1941), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2302), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1940), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1932), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1928), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2300), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2628), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1926), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1923), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1923), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2297), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2629), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2629), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2630), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2631), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2631), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2805), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2720), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2365), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2364), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2633), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1919), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1846), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1914), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1908), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1908), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1845), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1829), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2284), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2281), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(355), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(492), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(793), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(793), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(792), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2406), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2448), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1856), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1857), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2538), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1861), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2611), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1866), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1870), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1873), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2671), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2530), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1881), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1883), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1883), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2613), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2610), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2610), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2598), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2598), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2597), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2591), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2591), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2732), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2734), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2566), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2565), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2563), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1896), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1897), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1819), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1903), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1903), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1910), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1917), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2531), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2423), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(387), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(689), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(905), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(905), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(906), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2317), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2316), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1945), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1942), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2308), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1941), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2302), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1940), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1932), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1928), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2628), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1926), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1923), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1923), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2629), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2629), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2630), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2631), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2631), + [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2805), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2720), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2365), + [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2364), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2633), + [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1919), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1846), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1914), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1908), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1908), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1845), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1829), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2284), + [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2281), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(443), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(700), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1314), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1314), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1354), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2612), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2695), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1872), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1877), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2670), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1878), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2643), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1895), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1889), + [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1891), + [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2582), + [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2567), + [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1954), + [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1904), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1904), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2138), + [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2184), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2184), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2568), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2568), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2569), + [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2570), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2570), + [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2846), + [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2741), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2438), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2418), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2572), + [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1864), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1853), + [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1943), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1951), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1951), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1852), + [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1831), + [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2339), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2571), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(676), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(688), + [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1131), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1131), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1130), + [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2550), + [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2548), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1907), + [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2547), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1909), + [3286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2546), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1911), + [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1912), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1913), + [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2542), + [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2599), + [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1915), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1916), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1916), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2540), + [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2539), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2539), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2600), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2600), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2601), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2602), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2602), + [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2747), + [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2731), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2403), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2395), + [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2604), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1920), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1848), + [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1921), + [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1922), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1922), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1847), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1830), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2535), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2532), + [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(661), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(697), + [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1134), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1134), + [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1135), + [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2110), + [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2111), + [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1825), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1827), + [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2114), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1837), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2116), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1849), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1850), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1851), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2120), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2657), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1854), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1858), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1858), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2123), + [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2124), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2124), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2658), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2658), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2659), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2660), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2660), + [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2849), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2712), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2321), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2319), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2662), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1860), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1844), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1862), + [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1842), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1828), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2129), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2130), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1384), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1386), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(232), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(249), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(44), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1478), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1478), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1479), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(127), + [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(124), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(124), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(122), + [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1795), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2314), + [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2315), + [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1946), + [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1948), + [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2318), + [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1949), + [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2320), + [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1899), + [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1979), + [3685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1978), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2324), + [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2637), + [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1977), + [3697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1976), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1976), + [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2327), + [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2328), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2328), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2636), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2636), + [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2635), + [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2634), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2634), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2800), + [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2719), + [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2239), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2238), + [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2632), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1975), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1838), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1974), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1973), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1973), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1836), + [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1823), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2333), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2334), + [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2233), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1384), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1386), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(253), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(243), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(44), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1478), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1478), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1479), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(127), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(124), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(124), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(122), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1795), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2314), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2315), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1946), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1948), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2318), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1949), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2320), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1899), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1979), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1978), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2324), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2637), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1977), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1976), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1976), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2327), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2328), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2328), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2636), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2636), + [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2635), + [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2634), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2634), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2800), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2719), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2239), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2238), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2632), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1975), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1838), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1974), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1973), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1973), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1836), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1823), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2333), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2334), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2233), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1390), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1393), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(255), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(231), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(104), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1586), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1586), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1591), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(53), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(52), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(52), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(129), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2483), + [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2484), + [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1939), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1938), + [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2487), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1937), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2489), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1936), + [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1935), + [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1934), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2493), + [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2506), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1933), + [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1931), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1931), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2496), + [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2497), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2497), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2505), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2505), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2504), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2499), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2499), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2760), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2759), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2171), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2170), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2498), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1930), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1833), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1929), + [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1927), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1927), + [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1832), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1820), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2502), + [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2503), + [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2422), + [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(256), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(74), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(73), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(73), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1419), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1608), + [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(65), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1629), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1629), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1630), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(83), + [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(84), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(84), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(85), + [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2401), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2402), + [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1965), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1964), + [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2405), + [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1963), + [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2407), + [4440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1962), + [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1961), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1960), + [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2411), + [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2577), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1959), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1958), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1958), + [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2414), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2415), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2415), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2576), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2576), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2575), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2574), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2574), + [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2745), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2739), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2210), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2209), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2573), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1957), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1835), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1956), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1955), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1955), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1834), + [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1821), + [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2420), + [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2421), + [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2335), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2, .production_id = 48), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2, .production_id = 48), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1390), + [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1393), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(104), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1586), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1586), + [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1591), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(133), + [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(130), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(130), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(129), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2483), + [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2484), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1939), + [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1938), + [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2487), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1937), + [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2489), + [4642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1936), + [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1935), + [4648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1934), + [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2493), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2506), + [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1933), + [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1931), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1931), + [4666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2496), + [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2497), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2497), + [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2505), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2505), + [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2504), + [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2499), + [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2499), + [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2760), + [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2759), + [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2171), + [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2170), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2498), + [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1930), + [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1833), + [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1929), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1927), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1927), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1832), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1820), + [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2502), + [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2503), + [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2422), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1384), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1386), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1478), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1478), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1479), + [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2314), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2315), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1946), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1948), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2318), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1949), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2320), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1899), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1979), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1978), + [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2324), + [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2637), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1977), + [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1976), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1976), + [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2327), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2328), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2328), + [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2636), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2636), + [4820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2635), + [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2634), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2634), + [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2800), + [4832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2719), + [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), + [4838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2238), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2632), + [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1975), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1838), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1974), + [4853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1973), + [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1973), + [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1836), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1823), + [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2333), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2334), + [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1390), + [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1393), + [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1586), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1586), + [4883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1591), + [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2483), + [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2484), + [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1939), + [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1938), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2487), + [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1937), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2489), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1936), + [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1935), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1934), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2493), + [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2506), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1933), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1931), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1931), + [4931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2496), + [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2497), + [4937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2497), + [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2505), + [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2505), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2504), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2499), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2499), + [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2760), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2759), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2171), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2170), + [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2498), + [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1930), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1833), + [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1929), + [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1927), + [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1927), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1832), + [4988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1820), + [4991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2502), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2503), + [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1419), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1608), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1629), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1629), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1630), + [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2401), + [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2402), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1965), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1964), + [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2405), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1963), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2407), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1962), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1961), + [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1960), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2411), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2577), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1959), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1958), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1958), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2414), + [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2415), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2415), + [5066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2576), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2576), + [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2575), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2574), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2574), + [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2745), + [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2739), + [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2210), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2209), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2573), + [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1957), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1835), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1956), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1955), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1955), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1834), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1821), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2420), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2421), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(235), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(117), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), + [5255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(705), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(705), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), + [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(698), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(698), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), + [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), + [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(692), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(692), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), + [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(704), + [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(704), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), + [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [5317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), + [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), + [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), + [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(701), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(701), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), + [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(702), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(702), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(888), + [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(888), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(889), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(889), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(890), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(890), + [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(891), + [5380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(891), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(236), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(47), + [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(768), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(768), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(886), + [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(886), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(884), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(884), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(883), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(883), + [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(804), + [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(804), + [5431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(717), + [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(717), + [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(718), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(718), + [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(719), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(719), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(720), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(720), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(721), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(721), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(722), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(722), + [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(723), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(723), + [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(823), + [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(823), + [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(822), + [5482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(822), + [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(821), + [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(821), + [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(818), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(818), + [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(817), + [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(817), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(816), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(816), + [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(815), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(815), + [5521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(247), + [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(80), + [5527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(239), + [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(106), + [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(726), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(726), + [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(725), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(725), + [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(724), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(724), + [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(796), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(796), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(229), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(78), + [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(811), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(811), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(887), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(887), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(850), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(850), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(848), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(848), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 61), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 61), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 56), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 56), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [5619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), + [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1714), + [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1724), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1724), + [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1736), + [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2212), + [5637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2213), + [5640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1879), + [5643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1882), + [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2216), + [5649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1884), + [5652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2218), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1885), + [5658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1886), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1887), + [5664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2222), + [5667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2686), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1890), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1892), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1892), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2225), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2226), + [5685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2226), + [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2687), + [5691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2687), + [5694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2688), + [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2689), + [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2689), + [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2825), + [5706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2705), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2272), + [5712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), + [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2691), + [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1893), + [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1841), + [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1898), + [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1900), + [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1900), + [5733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1839), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1826), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2231), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2232), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 73), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 73), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), + [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 60), + [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 60), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), + [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 34), + [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 34), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_author_declaration, 2), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_author_declaration, 2), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 33), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 33), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), + [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), + [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 2), + [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 2), + [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), + [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), + [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 81), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 81), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 64), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 64), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 80), + [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 80), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 3, .production_id = 48), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 3, .production_id = 48), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 79), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 79), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 78), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 78), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 77), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 77), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 76), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 76), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 75), + [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 75), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 49), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 49), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 74), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 74), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 72), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 72), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 71), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 71), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 50), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 50), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 50), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 50), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 68), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 68), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 51), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 51), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 66), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 66), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 52), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 52), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 54), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 54), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 55), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 55), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 4, .production_id = 48), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 4, .production_id = 48), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 57), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 57), + [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), + [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 30), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 30), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 58), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 58), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 62), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 62), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_title_declaration, 2), + [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_title_declaration, 2), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 29), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 29), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 25), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 25), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(253), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(44), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(234), + [6314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(104), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(233), + [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(65), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 1), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 1), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(251), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(125), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1814), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), + [6402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1813), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), + [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 69), SHIFT_REPEAT(1374), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 69), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 53), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 63), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 28), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 70), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), + [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(302), + [6723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1361), + [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 65), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 49), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1231), + [6735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(2787), + [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 67), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), + [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 46), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 50), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7120] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), + [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 49), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 26), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 64), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), }; #ifdef __cplusplus diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 155f5be2c..ac6512a11 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -150,3 +150,24 @@ Command definition with default arg (curly_group (text (placeholder))))) + +================================================================================ +Author command +================================================================================ + +\author{John Doe \and Foo Bar} + +-------------------------------------------------------------------------------- + +(source_file + (author_declaration + (curly_group_author_list + (author + (text + (word) + (word))) + (command_name) + (author + (text + (word) + (word))))))